/* ============================================================
   HOUMES â€” the art of living
   Custom branding: fonts (logo-matched) + Soft Linen palette
   ============================================================ */

:root {
  --houmes-serif:
    "Frank Ruhl Libre", "Cormorant Garamond", "David Libre", "Times New Roman",
    serif;
  --houmes-sans:
    "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Brand palette */
  --houmes-ivory: #f8f5f0; /* Site background */
  --houmes-oat: #ece3d6; /* light neutral   */
  --houmes-taupe: #d9cfc5; /* Secondary       */
  --houmes-sand: #b9a99a; /* Primary (alt)   */
  --houmes-clay: #b9a99a; /* Primary         */
  --houmes-secondary: #d9cfc5;
  --houmes-espresso: #2e2a25; /* dark text */
}

/* ---------- Typography ---------- */
body,
.bacola-wrapper,
button,
input,
select,
textarea,
.woocommerce-page,
p,
li,
a,
span,
td,
label,
.elementor-widget-text-editor,
.product-title,
.price,
.menu-item a {
  font-family: var(--houmes-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title *,
.elementor-heading-title,
.widget-title,
.widget-title *,
.entry-title,
.woocommerce-loop-product__title,
.product-title,
.products-grid .product-title a,
.product .product-name a,
.single-product .product_title,
.brand-text,
blockquote,
.woocommerce-Tabs-panel h2 {
  font-family: var(--houmes-serif) !important;
  letter-spacing: 0.2px;
}

/* Heading weight a touch lighter for the refined Didone feel */
.section-title,
.elementor-heading-title,
.entry-title,
.single-product .product_title {
  font-weight: 500;
}

/* ---------- Soft Linen colour touches ---------- */
body {
  background-color: var(--houmes-ivory);
  color: var(--houmes-espresso);
}

/* Headings + key text in espresso */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.woocommerce-loop-product__title,
.product-title a,
.single-product .product_title {
  color: var(--houmes-espresso);
}

/* Primary buttons / accents -> Dusty Clay */
.btn-primary,
.button.alt,
.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button.alt,
.add_to_cart_button,
.elementor-button,
.bacola-btn,
.btn-cart {
  background-color: var(--houmes-clay) !important;
  border-color: var(--houmes-clay) !important;
  color: var(
    --houmes-espresso
  ) !important; /* dark text on light taupe for readability */
}

/* Secondary buttons + sale badges use the light secondary -> keep dark text */
.button-secondary,
button.button-secondary,
.badge.onsale,
.products .badge.onsale {
  color: var(--houmes-espresso) !important;
}

.btn-primary:hover,
.button.alt:hover,
.single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover,
.add_to_cart_button:hover,
.elementor-button:hover,
.bacola-btn:hover,
.btn-cart:hover {
  background-color: var(--houmes-espresso) !important;
  border-color: var(--houmes-espresso) !important;
  color: #fff !important;
}

/* Links / accents */
a:hover {
  color: var(--houmes-clay);
}

/* Sale badge -> primary taupe with dark text */
.onsale,
.bacola-badge,
.product-label .label-sale,
span.badge.sale {
  background-color: var(--houmes-sand) !important;
  color: var(--houmes-espresso) !important;
}

/* Category / section dividers in soft taupe */
.section-title:after {
  background-color: var(--houmes-taupe);
}

/* Header keeps clean ivory/white feel */
.bacola-header,
.header-middle {
  background-color: #fff;
}

/* ---------- Logo sizing (logo art is wide; cap its height) ---------- */
.desktop-logo,
.mobile-logo,
.header-logo img,
.site-branding img,
.canvas-logo img,
.brand-logo img,
a.logo img {
  max-height: 70px !important;
  width: auto !important;
  height: auto !important;
}
.mobile-logo {
  max-height: 40px !important;
}

/* ---------- Home slider readability ---------- */
.module-slider .entry-title {
  color: var(--houmes-espresso) !important;
  font-family: var(--houmes-serif) !important;
  font-weight: 500;
}
.module-slider .content-description,
.module-slider .content-text,
.module-slider .price,
.module-slider .price-text {
  color: var(--houmes-espresso) !important;
}
.module-slider .content-discount {
  color: var(--houmes-clay) !important;
}
.module-slider .button-secondary {
  background-color: var(--houmes-clay) !important;
  border-color: var(--houmes-clay) !important;
  color: #fff !important;
}

/* Soft Linen section backgrounds for hero/slider */
.module-slider {
  background-color: var(--houmes-oat);
}

/* Dark overlay over slider image + white text */
.module-slider .slider-item {
  position: relative;
}
.module-slider .slider-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.module-slider .content-wrapper {
  z-index: 2 !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}
.module-slider .entry-title {
  font-size: 46px;
  line-height: 1.1;
  opacity: 1 !important;
}
.module-slider .content-main {
  opacity: 1 !important;
}

/* white slider text */
.module-slider .entry-title,
.module-slider .content-description,
.module-slider .content-text,
.module-slider .price,
.module-slider .price-text {
  color: #ffffff !important;
}
.module-slider .content-discount {
  color: var(--houmes-taupe) !important;
}

/* Fixed slider height: 800px, image fills via cover */
.module-slider .site-slider,
.module-slider .slider-item,
.module-slider .slider-wrapper,
.module-slider .image-wrapper {
  height: 800px !important;
}
.module-slider .slick-list,
.module-slider .slick-track {
  height: 800px !important;
}
.module-slider .image-wrapper img {
  width: 100% !important;
  height: 800px !important;
  object-fit: cover !important;
  object-position: center;
}
/* keep the text vertically centred within the taller hero (desktop only â€” there .content-wrapper is absolute) */
@media (min-width: 1024px) {
  .module-slider .content-wrapper {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .module-slider .site-slider,
  .module-slider .slider-item,
  .module-slider .slider-wrapper,
  .module-slider .image-wrapper,
  .module-slider .slick-list,
  .module-slider .slick-track,
  .module-slider .image-wrapper img {
    height: 460px !important;
  }
}

/* ---------- Uniform banner-box image heights (image covers the box) ---------- */
.elementor-widget-bacola-banner-box3 .module-banner {
}
.elementor-widget-bacola-banner-box3 .module-banner {
  position: relative;
}
/* complete the height chain so a fixed .module-banner height reaches the image:
   .module-banner -> .module-body -> .banner-wrapper all fill 100%, otherwise
   .module-body collapses to text height and the image leaves an empty gap. */
.elementor-widget-bacola-banner-box3 .module-banner .module-body,
.elementor-widget-bacola-banner-box3 .module-banner .banner-wrapper {
  height: 100%;
}
.elementor-widget-bacola-banner-box3 .module-banner .banner-thumbnail {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.elementor-widget-bacola-banner-box3 .module-banner .banner-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}
.elementor-widget-bacola-banner-box3 .module-banner .banner-content {
  position: relative;
  z-index: 2;
}
/* On-Sale (במבצע) banners: overlay text white for contrast over the photos */
.elementor-widget-bacola-banner-box3 .module-banner .banner-content .entry-title,
.elementor-widget-bacola-banner-box3 .module-banner .banner-content .entry-subtitle,
.elementor-widget-bacola-banner-box3 .module-banner .banner-content .entry-subtitle.xlight,
.elementor-widget-bacola-banner-box3 .module-banner .banner-content .discount-text,
.elementor-widget-bacola-banner-box3 .module-banner .banner-content .entry-text {
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1024px) {
  .elementor-widget-bacola-banner-box3 .module-banner {
    height: 260px;
  }
}
@media (max-width: 600px) {
  .elementor-widget-bacola-banner-box3 .module-banner {
    height: 210px;
  }
}

/* ---------- Uniform category thumbnails (circular) ---------- */
.module-category .category-image img {
  width: 52px !important;
  height: 52px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

/* homepage categories: Hebrew section heading above the grid */
.module-category.style-1 .module-body::before {
  content: "קטגוריות";
  display: block;
  text-align: center;
  font-family: "Frank Ruhl Libre", "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  color: #2e2a25;
  margin: 2px 0 16px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .module-category.style-1 .module-body::before {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

/* homepage categories: 2-row HORIZONTAL slider.
   The theme splits them into a featured ".first" + ".categories-wrapper";
   we flatten those (display:contents) so every card becomes a direct grid
   item, then lay them out column-by-column across exactly 2 rows. When the
   columns exceed the width the block scrolls sideways (arrows via JS + swipe).
   Visible columns: 6 desktop / 4 tablet / 3 mobile. */
.module-category.style-1 .categories {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-template-rows: repeat(2, auto) !important;
  grid-template-columns: none !important;
  grid-auto-columns: calc((100% - 40px) / 6) !important; /* 6 cols, 5*8px gaps */
  gap: 10px 8px !important;
  max-width: none;
  margin: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x proximity !important;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2px;
  justify-content: center; /* few items: centre the block; overriden when it overflows */
}
.module-category.style-1.has-overflow .categories {
  justify-content: start !important; /* many items: anchor to start so nothing is clipped */
}
.module-category.style-1 .categories::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
.module-category.style-1 .categories.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
}
.module-category.style-1 .categories .category {
  scroll-snap-align: start;
}
.module-category.style-1 .categories .first,
.module-category.style-1 .categories .categories-wrapper {
  display: contents !important;
}
.module-category.style-1 .categories .categories-wrapper::before {
  display: none !important;
}
.module-category.style-1 .categories .category {
  display: flex !important;
  flex-direction: row !important; /* circular image on the right, text beside it */
  align-items: center !important;
  gap: 8px;
  text-align: right !important;
  flex: none !important;
  max-width: 100% !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 6px 4px !important;
  border: 0 !important;
  overflow: hidden !important;
  border-radius: 0;
  background: transparent !important;
}
.module-category.style-1 .categories .category .category-image {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  flex: 0 0 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  display: block !important;
}
.module-category.style-1 .categories .category .category-image a {
  display: block !important;
  width: 52px !important;
  height: 52px !important;
}
.module-category.style-1 .categories .category .category-image img {
  width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}
.module-category.style-1 .categories .category .category-detail {
  text-align: right !important;
}
/* smaller, lighter category item-count ("N פריטים") */
.module-category .category-count {
  font-size: 10px !important;
  font-weight: 300 !important;
}
@media (max-width: 1200px) {
  .module-category.style-1 .categories {
    grid-auto-columns: calc((100% - 24px) / 4) !important; /* 4 cols, 3*8px gaps */
  }
}
@media (max-width: 767px) {
  .module-category.style-1 .categories {
    /* show 3.5 columns so the 4th peeks in — signals "swipe for more" */
    grid-auto-columns: calc((100% - 24px) / 3.5) !important;
    /* never centre on mobile, so the peek stays visible on the left edge */
    justify-content: start !important;
  }
  /* stack each card (image on top, name below) so the narrower peek columns
     still show the FULL category name instead of clipping it. */
  .module-category.style-1 .categories .category {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 6px 2px !important;
  }
  .module-category.style-1 .categories .category .category-detail {
    text-align: center !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .module-category.style-1 .categories .category .entry-category {
    white-space: normal !important;
    line-height: 1.2 !important;
  }
}

/* ---------- category slider: prev/next arrows (desktop) ---------- */
.houmes-cat-slider {
  position: relative !important;
}
.houmes-cat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--houmes-oat, #e6ddce);
  box-shadow: 0 3px 12px rgba(46, 42, 37, 0.16);
  cursor: pointer;
  z-index: 6;
  display: none; /* shown only when the row overflows (JS adds .has-overflow) */
  align-items: center;
  justify-content: center;
  color: #2e2a25;
  padding: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.module-category.style-1.has-overflow .houmes-cat-nav {
  display: flex;
}
.houmes-cat-nav.prev { right: -4px; }
.houmes-cat-nav.next { left: -4px; }
.houmes-cat-nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.houmes-cat-nav::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.houmes-cat-nav.next::before { transform: rotate(135deg); margin-left: 3px; }  /* points left  */
.houmes-cat-nav.prev::before { transform: rotate(-45deg); margin-right: 3px; } /* points right */

/* mobile: no arrows — swipe instead (keeps the row clear) */
@media (max-width: 767px) {
  .module-category.style-1 .houmes-cat-nav { display: none !important; }
}
/* full-width category banner (top of category archive) */
.houmes-cat-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin: 4px 0 22px;
  background: #efe7da;
}
.houmes-cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .houmes-cat-banner {
    height: 240px;
  }
}

/* shop-page categories block spacing */
.houmes-shop-cats {
  margin: 4px 0 26px !important;
}
.houmes-shop-cats .module-body {
  padding: 18px !important;
}
.houmes-shop-cats .category {
  cursor: pointer;
}
.houmes-shop-cats .category.is-active .entry-category a {
  color: var(--houmes-clay) !important;
  text-decoration: underline;
}
.houmes-shop-cats .category.is-active .category-image {
  box-shadow: 0 0 0 2px var(--houmes-clay);
}
/* smooth fade while the AJAX filter swaps the products */
.houmes-shop-results {
  transition: opacity 0.2s ease;
}

/* ============================================================
   Cart page — clean, clearly-columned table
   (theme renders the header labels in a near-invisible light grey;
   make them dark + tidy the columns so it reads as a real table)
   ============================================================ */
/* force a real single-row table (the theme/WooCommerce responsive CSS makes the
   cells display:block so each item stacks — put every item back on ONE row) */
.woocommerce-cart .woocommerce-cart-form table.cart {
  display: table !important;
  width: 100% !important;
  border-collapse: collapse !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart thead {
  display: table-header-group !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart tbody {
  display: table-row-group !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart tr {
  display: table-row !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart th,
.woocommerce-cart .woocommerce-cart-form table.cart td {
  display: table-cell !important;
  float: none !important;
}
/* hide the mobile "data-title" labels that the stacked layout injects */
.woocommerce-cart .woocommerce-cart-form table.cart td::before {
  display: none !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart th {
  color: var(--houmes-espresso) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 14px 12px !important;
  text-align: right !important;
  border-bottom: 1px solid #e4dccf !important;
  text-transform: none !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart td {
  padding: 18px 12px !important;
  vertical-align: middle !important;
  text-align: right !important;
  border-bottom: 1px solid #efe7da !important;
}
/* image column */
.woocommerce-cart .woocommerce-cart-form table.cart th.product-thumbnail,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-thumbnail {
  width: 96px !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-thumbnail img {
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
}
/* details column takes the remaining width */
.woocommerce-cart .woocommerce-cart-form table.cart th.product-name,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-name {
  width: auto !important;
  font-weight: 500 !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-name .variation,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-name dl {
  font-size: 12px;
  color: #8a7f71;
  margin-top: 4px;
}
/* price / quantity / total: centered, snug */
.woocommerce-cart .woocommerce-cart-form table.cart th.product-price,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-price,
.woocommerce-cart .woocommerce-cart-form table.cart th.product-quantity,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-quantity,
.woocommerce-cart .woocommerce-cart-form table.cart th.product-subtotal,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-subtotal {
  text-align: center !important;
  white-space: nowrap;
  width: 1% !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-price,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-subtotal {
  font-size: 15px !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-quantity .quantity {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-subtotal {
  font-weight: 600 !important;
  color: var(--houmes-espresso) !important;
}
/* price shown inside the details column */
.woocommerce-cart .woocommerce-cart-form table.cart td.product-name .houmes-cart-price {
  margin-top: 6px;
  font-weight: 600;
  color: var(--houmes-espresso);
}
/* remove (trash) sits next to the quantity stepper */
.woocommerce-cart .woocommerce-cart-form table.cart td.product-quantity {
  white-space: nowrap;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-quantity .remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-inline-start: 12px;
  color: #b0201a !important;
  font-size: 16px;
  vertical-align: middle;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-quantity .remove:hover {
  color: #000 !important;
}
/* remove (trash) column */
.woocommerce-cart .woocommerce-cart-form table.cart th.product-remove,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-remove {
  width: 44px !important;
  text-align: center !important;
}

/* ---------- wishlist page: mobile = 2 product cards per row ---------- */
@media (max-width: 768px) {
  .tinv-wishlist table.tinvwl-table-manage-list {
    display: block;
  }
  /* tbody becomes a 2-column grid; each row is a card */
  .tinv-wishlist table.tinvwl-table-manage-list tbody {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .tinv-wishlist table.tinvwl-table-manage-list tbody tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #e6ddd0;
    border-radius: 10px;
    margin: 0 !important;
    padding: 8px 6px;
    background: #fff;
    width: auto !important;
  }
  .tinv-wishlist table.tinvwl-table-manage-list tbody td {
    display: block !important;
    width: auto !important;
    text-align: center !important;
    padding: 5px 6px !important;
    border: 0 !important;
    justify-content: center !important;
  }
  /* hide the select checkbox column on mobile (keep the × remove) */
  .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-cb,
  .tinv-wishlist table.tinvwl-table-manage-list thead th.product-cb {
    display: none !important;
  }
  .tinv-wishlist .product-thumbnail img {
    max-width: 120px !important;
    margin: 0 auto !important;
  }
  .tinv-wishlist table.tinvwl-table-manage-list td.product-name {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
  }
  .tinv-wishlist table.tinvwl-table-manage-list td.product-action .button {
    width: 100%;
    font-size: 12px;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  /* footer actions stack neatly */
  .tinv-wishlist table.tinvwl-table-manage-list tfoot td {
    display: block;
    text-align: center;
  }
}

/* ---------- shop pagination ---------- */
/* outline the numeric page links (2, 3, …); current stays filled */
.woocommerce-pagination ul li a.page-numbers:not(.prev):not(.next) {
  border: 1px solid var(--houmes-secondary, #d9cfc5);
}
.woocommerce-pagination ul li a.page-numbers:not(.prev):not(.next):hover {
  border-color: var(--houmes-clay, #b9a99a);
}
/* enlarge the prev/next arrow */
.woocommerce-pagination ul li a.page-numbers.prev,
.woocommerce-pagination ul li a.page-numbers.next {
  font-size: 1.4rem;
}

/* ============================================================
   Zara-Home-style shop / category archive
   Minimal editorial grid: big portrait images, no card chrome,
   name + price only, generous whitespace.
   ============================================================ */

/* breadcrumb: small, uppercase, muted */
.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px;
  color: #9a8f82;
  margin: 6px 0 24px;
}

/* toolbar: airy and subtle */
.post-type-archive-product .shop-toolbar,
.tax-product_cat .shop-toolbar,
.post-type-archive-product .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header {
  border: 0 !important;
}

/* grid spacing */
.post-type-archive-product .products,
.tax-product_cat .products {
  margin-top: 18px;
}

/* strip all card chrome */
.post-type-archive-product .products .product,
.tax-product_cat .products .product {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 46px;
}
.post-type-archive-product .products .product .product-wrapper,
.tax-product_cat .products .product .product-wrapper {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* image: portrait, edge-to-edge, subtle zoom on hover */
/* uniform-height box; image shown in full (contain, no crop) on a soft backdrop */
.post-type-archive-product .products .product .thumbnail-wrapper,
.tax-product_cat .products .product .thumbnail-wrapper {
  overflow: hidden;
  border-radius: 0 !important;
  height: 420px;
  background: #efe9e1;
}
.post-type-archive-product .products .product .thumbnail-wrapper img,
.tax-product_cat .products .product .thumbnail-wrapper img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}
@media (max-width: 768px) {
  .post-type-archive-product .products .product .thumbnail-wrapper,
  .tax-product_cat .products .product .thumbnail-wrapper {
    height: 300px;
  }
}

/* hide the clutter: stock label, add-to-cart block, sale badge */
.post-type-archive-product .products .product .product-meta,
.tax-product_cat .products .product .product-meta,
.post-type-archive-product .products .product .product-fade-block,
.tax-product_cat .products .product .product-fade-block,
.post-type-archive-product .products .product .star-rating,
.tax-product_cat .products .product .star-rating,
.post-type-archive-product .products .product .onsale,
.tax-product_cat .products .product .onsale,
.post-type-archive-product .products .product .bacola-badge,
.tax-product_cat .products .product .bacola-badge {
  display: none !important;
}

/* wishlist / quick-view: reveal softly on hover only */
.post-type-archive-product .products .product .product-buttons,
.tax-product_cat .products .product .product-buttons {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-type-archive-product .products .product:hover .product-buttons,
.tax-product_cat .products .product:hover .product-buttons {
  opacity: 1;
}

/* product name: small, light, letter-spaced */
.post-type-archive-product .products .product .content-wrapper,
.tax-product_cat .products .product .content-wrapper {
  padding: 0 !important;
  text-align: center;
}
.post-type-archive-product .products .product .product-title,
.tax-product_cat .products .product .product-title {
  font-family: var(--houmes-sans) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px;
  line-height: 1.5;
  margin: 16px 0 5px !important;
  padding: 0 !important;
}
.post-type-archive-product .products .product .product-title a,
.tax-product_cat .products .product .product-title a {
  color: var(--houmes-espresso) !important;
}
/* price: small, muted, beneath the name */
.post-type-archive-product .products .product .price,
.tax-product_cat .products .product .price {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #8a7f71 !important;
}
.post-type-archive-product .products .product .price del,
.tax-product_cat .products .product .price del {
  opacity: 0.5;
  margin-inline-end: 6px;
}
.post-type-archive-product .products .product .price ins,
.tax-product_cat .products .product .price ins {
  text-decoration: none;
  color: var(--houmes-espresso) !important;
}

/* mini-cart (cart dropdown) product row: the shop-card .thumbnail-wrapper
   rules below leak into the mini-cart, blowing up its thumbnail. Pin the
   mini-cart thumbnail back to a tidy small square. */
.site-header .header-cart .cart-dropdown-wrapper .products .product .thumbnail-wrapper {
  flex: 0 0 3.5rem !important;
  width: 3.5rem !important;
  max-width: 3.5rem !important;
  height: 3.5rem !important;
  overflow: hidden !important;
  background: #f2ece4;
  border-radius: 6px;
  margin-inline-start: 0.625rem;
  margin-inline-end: 0.85rem; /* gap between the thumbnail and the title/price */
}
.site-header .header-cart .cart-dropdown-wrapper .products .product .thumbnail-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: static !important;
  aspect-ratio: auto !important;
  display: block;
}
.site-header .header-cart .cart-dropdown-wrapper .products .product .product-wrapper {
  align-items: flex-start !important;
}

/* ---------- Quick View popup gallery ---------- */
/* The theme's slick gallery in the quick view is fragile (never revealed, and
   multi-image sliders don't init). houmes-quickview.js replaces it with this
   simple static gallery. Make sure the wrapper itself is always visible. */
.quick-product-wrapper .slider-wrapper,
.quickview-product .slider-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
}
.houmes-qv-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.houmes-qv-main {
  width: 100%;
  height: 440px;
  background: #f8f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.houmes-qv-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.houmes-qv-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.houmes-qv-thumb {
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid #e5ddd2;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.houmes-qv-thumb.active,
.houmes-qv-thumb:hover {
  border-color: #b9a99a;
}
.houmes-qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* balance the two columns + breathing room */
.quick-product-wrapper .product-wrapper .product-thumbnails {
  padding-inline-end: 1.75rem;
}
.quick-product-wrapper .product-detail {
  padding-inline-start: 0.5rem;
}
@media (max-width: 768px) {
  .houmes-qv-main {
    height: 320px;
  }
}

/* ---------- product-card image slider (hs-*) ---------- */
.thumbnail-wrapper {
  position: relative;
  overflow: hidden;
}
/* cross-fade slides: stacked absolutely, only .active visible (no edge bleed) */
.thumbnail-wrapper .hs-slide {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.thumbnail-wrapper .hs-slide.active {
  opacity: 1;
  z-index: 2;
}
.thumbnail-wrapper .hs-slide img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block;
}
.thumbnail-wrapper .hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 0; /* hide the text glyph; the chevron is drawn on ::before */
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}
/* same chevron as the main slider: klbtheme icon font in a white circle */
.thumbnail-wrapper .hs-nav::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "klbtheme";
  font-size: 0.75rem;
  color: var(--houmes-espresso, #2e2a25);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}
.thumbnail-wrapper .hs-prev::before {
  content: "\e8d6";
}
.thumbnail-wrapper .hs-next::before {
  content: "\e8d7";
}
.thumbnail-wrapper .hs-nav:hover::before {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}
.thumbnail-wrapper:hover .hs-nav {
  opacity: 1;
}
.thumbnail-wrapper .hs-prev {
  left: 12px;
}
.thumbnail-wrapper .hs-next {
  right: 12px;
}
.thumbnail-wrapper .hs-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  gap: 5px;
  justify-content: center;
  z-index: 4;
}
.thumbnail-wrapper .hs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease;
}
.thumbnail-wrapper .hs-dot.active {
  background: #2e2a25;
}

/* ---------- colour swatches ---------- */
.hs-swatches {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 9px;
  margin-bottom: 18px;
}
.hs-swatch {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.2s ease;
}
.hs-swatch.active {
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 2px #2e2a25;
}

/* fix arrow glyph orientation (RTL mirrors the â€¹ â€º characters otherwise) */
.thumbnail-wrapper .hs-nav {
  direction: ltr;
  unicode-bidi: isolate;
}

/* 10px horizontal spacing between products */
.post-type-archive-product .products .product,
.tax-product_cat .products .product {
  box-sizing: border-box;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* ---------- single product page: colour swatches ---------- */
.houmes-hidden-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  margin: 0 !important;
}
.houmes-swatches-wrap {
  margin-bottom: 6px;
}
.houmes-swatch-name {
  display: block;
  font-size: 13px;
  color: var(--houmes-espresso);
  font-weight: 600;
  margin-bottom: 9px;
}
.houmes-swatch-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.houmes-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.houmes-swatch:hover {
  transform: scale(1.08);
}
.houmes-swatch.active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px var(--houmes-espresso);
}
/* hide the WooCommerce "clear" link (auto-selected) */
.single-product .variations .reset_variations {
  display: none !important;
}

/* ============================================================
   Zara-Home-style single product page
   ============================================================ */
.single-product .woocommerce-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 11px;
  color: #9a8f82;
}

/* bigger, clean gallery */
.single-product .product-images {
  padding-inline-end: 30px;
}
.single-product .woocommerce-product-gallery img,
.single-product .woocommerce-product-gallery__image img {
  border-radius: 0 !important;
}

/* info column: narrow, airy */
.single-product .product-detail .column {
  max-width: 470px;
}
.single-product .product_title.entry-title {
  font-family: var(--houmes-serif) !important;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.25;
  margin: 6px 0 16px;
}

/* price: strikethrough + Zara-style red sale */
.single-product .product-detail > .column .price {
  font-size: 19px;
  font-weight: 500;
  color: var(--houmes-espresso);
  margin-bottom: 18px;
  display: block;
}
.single-product .product-detail .price del {
  opacity: 0.55;
  font-weight: 400;
  margin-inline-end: 8px;
}
.single-product .product-detail .price ins {
  text-decoration: none;
  color: #a5453b;
}

/* colour label + swatches spacing */
.single-product .variations {
  border: 0 !important;
  margin-bottom: 18px;
}
.single-product .variations td,
.single-product .variations th {
  border: 0 !important;
  padding: 0 !important;
  display: block;
}
.single-product .variations th.label label {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8a7f71;
}

/* single-variation price block */
.single-product .single_variation .price {
  font-size: 19px;
  font-weight: 500;
}

/* "Add to cart" styled like the departments (כל הקטגוריות) button:
   taupe (clay) fill + border, white text, rounded, with a cart icon. */
.single-product .single_add_to_cart_button.button.alt {
  width: 100% !important;
  border-radius: 30px !important;
  background: var(--houmes-clay) !important;
  border: 1px solid var(--houmes-clay) !important;
  color: #fff !important;
  padding: 16px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.6px;
  text-transform: none;
  font-weight: 500;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}
.single-product .single_add_to_cart_button.button.alt::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.single-product .single_add_to_cart_button.button.alt:hover {
  background: var(--houmes-espresso) !important;
  border-color: var(--houmes-espresso) !important;
  color: #fff !important;
}
/* wishlist: keep just the heart icon (its label comes from plugin JS, untranslatable via gettext) */
.single-product .product-detail .tinvwl_add_to_wishlist-text {
  display: none !important;
}
/* hide compare on single product (Zara-clean) */
.single-product .product-detail .woosc-btn,
.single-product .product-detail .compare-button,
.single-product .product-detail a.compare {
  display: none !important;
}
.single-product .woocommerce-variation-add-to-cart,
.single-product form.cart {
  display: block;
}
.single-product form.cart .quantity {
  display: none !important; /* Zara has no qty stepper; defaults to 1 */
}

/* hide the clutter Zara doesn't show */
.single-product .product-meta.top,
.single-product .product-brand,
.single-product .woocommerce-product-attributes,
.single-product .product-detail .stock,
.single-product .single_variation .stock,
.single-product .woocommerce-product-rating,
.single-product .star-rating,
.single-product .product-detail [class*="compare"],
.single-product .product-detail .yith-wcwl-add-to-wishlist .yith,
.single-product .product-detail .social-share,
.single-product .product-detail .site-social {
  display: none !important;
}

/* wishlist link: minimal text */
.single-product .product-detail .tinvwl_add_to_wishlist_button {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8a7f71 !important;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* meta (category): small muted */
.single-product .product_meta {
  font-size: 12px;
  color: #9a8f82;
  border-top: 1px solid #ece3d6;
  padding-top: 16px;
  margin-top: 20px;
}
.single-product .product_meta a {
  color: var(--houmes-espresso);
}

/* short description */
.single-product .woocommerce-product-details__short-description {
  font-size: 14px;
  line-height: 1.7;
  color: #6f6559;
  margin: 14px 0 20px;
}

/* tabs -> clean, minimal */
.single-product .woocommerce-tabs ul.tabs {
  border: 0 !important;
  padding: 0 !important;
  display: flex;
  gap: 26px;
  margin: 0 0 4px;
}
.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
  background: none !important;
  padding: 0 0 8px !important;
  margin: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
  color: #9a8f82 !important;
  padding: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--houmes-espresso) !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  padding-top: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #6f6559;
}

/* remove the white card background -> blend with the ivory page */
.single-content.single-gray {
  background-color: transparent !important;
}
.single-content.single-gray .single-wrapper > .product {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* tighten the info-column spacing */
.single-product .product-detail .column {
  gap: 0;
}
.single-product .product_title.entry-title {
  margin: 0 0 10px !important;
}
.single-product .product-detail > .column .price {
  margin: 0 0 12px !important;
}
.single-product .woocommerce-product-details__short-description {
  margin: 0 0 16px !important;
}
.single-product .variations_form .variations {
  margin: 0 0 12px !important;
}
.single-product .single_variation_wrap .woocommerce-variation-price {
  margin: 6px 0 14px !important;
}
.single-product .single_variation_wrap {
  margin: 0 !important;
}
.single-product form.cart {
  margin: 0 0 8px !important;
}
/* wishlist row: pull it up close to the button */
.single-product .product-detail .yith-wcwl-add-to-wishlist,
.single-product .product-detail .tinv-wishlist,
.single-product .product-detail .product-buttons-wrapper,
.single-product .product-detail .share-and-wishlist {
  margin: 10px 0 0 !important;
}
.single-product .product_meta {
  margin-top: 16px !important;
}

/* gallery slider: clean thumbnails + main image */
.single-product .woocommerce-product-gallery {
  margin-bottom: 0;
}
.single-product .woocommerce-product-gallery .flex-viewport img,
.single-product .woocommerce-product-gallery__image img {
  border-radius: 0 !important;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs {
  gap: 8px;
  margin-top: 0;
  width: 170px;
  margin-left: 10px;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs img {
  border-radius: 0 !important;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.single-product
  .woocommerce-product-gallery
  .flex-control-thumbs
  img.flex-active,
.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover {
  opacity: 1;
}
/* gallery prev/next arrows (if present) - subtle */
.single-product .woocommerce-product-gallery a.flex-prev,
.single-product .woocommerce-product-gallery a.flex-next {
  background: rgba(255, 255, 255, 0.9);
  color: var(--houmes-espresso);
}

/* ============================================================
   HOUMES custom single-product gallery (main image + vertical thumbs)
   main image on the LEFT, thumbnail strip on the RIGHT, fixed height.
   ============================================================ */
/* keep the whole product area inside the viewport so the thumb strip stays on-screen */
.single-product .single-wrapper > .product,
.single-product .product-content {
  max-width: 1280px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.single-product .product-images {
  overflow: hidden;
  min-width: 0;
}
.houmes-gallery {
  display: flex;
  direction: ltr; /* main image = left, thumbnails = right */
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  max-width: 620px; /* keep the whole gallery (image + thumbs) inside the column/viewport */
}
.houmes-gallery-main {
  order: 1;
  flex: 1 1 0; /* fill remaining space only -> never overflows */
  min-width: 0;
  height: 640px;
  overflow: hidden;
  background: #efe9e1;
}
.houmes-gallery-main img {
  width: 100%;
  height: 640px;
  object-fit: cover; /* fills the frame, no left/right gaps */
  object-position: center;
  display: block;
  cursor: zoom-in;
  transition: transform 0.12s ease-out;
  will-change: transform;
}
.houmes-gallery-thumbs {
  order: 2;
  flex: 0 0 78px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.houmes-thumb {
  border: 0;
  padding: 0;
  margin: 0;
  background: #efe9e1;
  cursor: pointer;
  width: 78px;
  height: 96px;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.houmes-thumb.active,
.houmes-thumb:hover {
  opacity: 1;
}
.houmes-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .houmes-gallery-main,
  .houmes-gallery-main img {
    height: 440px;
  }
  .houmes-gallery-thumbs {
    flex-basis: 62px;
  }
  .houmes-thumb {
    width: 62px;
    height: 78px;
  }
}

/* ============================================================
   Login / My-account form — clean, even spacing
   (do NOT constrain .login-form width: the theme uses a 200%-wide
   sliding login/register tab container, and constraining it breaks it)
   ============================================================ */
.woocommerce-account .woocommerce-form-login .form-row {
  display: block;
  margin: 0 0 18px !important;
  padding: 0 !important;
}
.woocommerce-account .woocommerce-form-login label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #8a7f71;
  margin: 0 0 7px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-Input.input-text {
  width: 100%;
  height: 48px;
  border: 1px solid #e4dccf;
  border-radius: 0;
  padding: 0 14px;
  background: #fff;
  box-shadow: none;
}
.woocommerce-account .woocommerce-form-login .woocommerce-Input.input-text:focus {
  border-color: var(--houmes-espresso);
  outline: 0;
}
/* remove the stray "show password" box */
.woocommerce-account .login-form .show-password-input,
.woocommerce-account .login-form .password-input .show-password-input {
  display: none !important;
}
.woocommerce-account .login-form .password-input {
  display: block;
  width: 100%;
  position: relative;
}
/* remember-me row + submit spacing */
.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--houmes-espresso);
  margin: 0 0 4px;
}
.woocommerce-account .woocommerce-form-login__rememberme input {
  margin: 0;
  top: 0 !important;
}
/* full-width dark login button */
.woocommerce-account .woocommerce-form-login .woocommerce-button.button,
.woocommerce-account .woocommerce-form-login__submit {
  display: block;
  width: 100% !important;
  height: 50px;
  margin-top: 8px;
  border-radius: 0 !important;
  background: var(--houmes-espresso) !important;
  border: 1px solid var(--houmes-espresso) !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.25s ease;
}
.woocommerce-account .woocommerce-form-login .woocommerce-button.button:hover,
.woocommerce-account .woocommerce-form-login__submit:hover {
  background: #000 !important;
  border-color: #000 !important;
}
.woocommerce-account .woocommerce-LostPassword.lost_password {
  margin: 16px 0 0 !important;
  font-size: 13px;
}
.woocommerce-account .woocommerce-LostPassword a {
  color: #8a7f71;
}
.woocommerce-account .woocommerce-LostPassword a:hover {
  color: var(--houmes-espresso);
}

/* ============================================================
   Footer link columns on mobile — 2 per row (were full-width col-12,
   leaving the RTL text hugging the right with an empty left half)
   ============================================================ */
@media (max-width: 991px) {
  .footer-widgets .row {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .footer-widgets .row > .col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    margin-bottom: 28px;
  }
}
@media (max-width: 400px) {
  .footer-widgets .row > .col {
    margin-bottom: 22px;
  }
}

/* hide the green "In stock" (במלאי) label everywhere (keep out-of-stock notice) */
.product-available.in-stock {
  display: none !important;
}

/* ============================================================
   Floating widgets: WhatsApp + accessibility menu
   ============================================================ */
.houmes-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}
.houmes-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}
.houmes-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.houmes-a11y-toggle {
  position: fixed;
  bottom: 92px;
  left: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #2557a7;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}
.houmes-a11y-toggle:hover {
  transform: scale(1.08);
}
.houmes-a11y-toggle svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.houmes-a11y-panel {
  position: fixed;
  bottom: 160px;
  left: 24px;
  z-index: 9999;
  width: 258px;
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  padding: 14px;
  direction: rtl;
}
.houmes-a11y-panel[hidden] {
  display: none;
}
.houmes-a11y-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #2557a7;
  margin-bottom: 10px;
}
.houmes-a11y-close {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #777;
}
.houmes-a11y-panel button[data-a11y] {
  display: block;
  width: 100%;
  text-align: right;
  margin: 6px 0;
  padding: 10px 12px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #f7f7f7;
  color: #222;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.houmes-a11y-panel button[data-a11y]:hover {
  background: #eef2fb;
  border-color: #2557a7;
}
.houmes-a11y-panel button[data-a11y].active {
  background: #2557a7;
  border-color: #2557a7;
  color: #fff;
}
.houmes-a11y-panel button[data-a11y="reset"] {
  background: #fff2f2;
  border-color: #f0caca;
  color: #b0201a;
}

/* on mobile: place the two buttons side by side, clear of the bottom nav bar */
@media (max-width: 768px) {
  .houmes-whatsapp {
    bottom: 84px;
    left: 24px;
  }
  .houmes-a11y-toggle {
    bottom: 84px;
    left: 92px;
  }
  .houmes-a11y-panel {
    bottom: 152px;
    left: 24px;
  }
}

/* ---- accessibility page states (applied on <html>) ---- */
html.a11y-grayscale body {
  filter: grayscale(100%);
}
html.a11y-invert body {
  filter: invert(100%) hue-rotate(180deg);
}
html.a11y-invert body img,
html.a11y-invert body video,
html.a11y-invert body .houmes-whatsapp,
html.a11y-invert body .houmes-a11y-toggle {
  filter: invert(100%) hue-rotate(180deg);
}
html.a11y-links a {
  text-decoration: underline !important;
  outline: 1px dashed currentColor;
  outline-offset: 2px;
}
html.a11y-readable body,
html.a11y-readable body * {
  font-family: Arial, "Segoe UI", "Noto Sans Hebrew", sans-serif !important;
}
html.a11y-contrast body,
html.a11y-contrast body *:not(.houmes-whatsapp):not(.houmes-whatsapp svg):not(.houmes-whatsapp path) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
html.a11y-contrast a,
html.a11y-contrast a * {
  color: #ffea00 !important;
}
html.a11y-contrast img {
  filter: none !important;
}

/* ============================================================
   Compact header — trim vertical space on every header row
   ============================================================ */
/* main row: much less padding, smaller logo, shorter search */
.site-header .header-main {
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}
/* vertically center the logo, search and buttons on one line */
.site-header .header-main > .container {
  align-items: center !important;
}
.site-header .header-main .site-brand {
  display: flex;
  align-items: center;
}
.site-header .header-main .site-brand img {
  height: 40px !important;
}
/* small breathing gap below the whole header */
.site-header {
  margin-bottom: 12px;
}
/* mobile: centre the logo in the viewport (cart + menu stay clickable underneath) */
@media (max-width: 768px) {
  .site-header .header-main > .container {
    position: relative;
  }
  .site-header .header-main .site-brand {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0.55rem !important;
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
    pointer-events: none; /* let clicks pass to the cart / menu buttons */
    z-index: 1;
  }
  .site-header .header-main .site-brand a,
  .site-header .header-main .site-brand img {
    pointer-events: auto;
    display: inline-block;
  }
  /* keep the buttons above the centred logo overlay */
  .site-header .header-main .column-left,
  .site-header .header-main .column-right,
  .site-header .header-main .header-buttons {
    position: relative;
    z-index: 2;
  }
}
.site-header .header-main .header-search input[type="search"] {
  height: 44px !important;
}
.site-header .header-main .header-search form {
  min-height: 44px;
}
/* tighten the gap between the logo and the search bar */
.site-header .header-main .column-center {
  padding-left: 0.9rem !important;
  padding-right: 0.9rem !important;
}
.site-header .header-main .header-search,
.site-header .header-main .header-search form {
  width: 100% !important;
}
.site-header .header-main .site-brand {
  margin-left: 0.6rem !important;
  margin-right: 0.6rem !important;
}
/* center the "total N products" pill inside the department button */
.site-header .all-categories > a .description {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
}
/* info bar (service / contact / top links) */
.site-header .header-top .container {
  min-height: 2rem !important;
}
.site-header .header-top .site-menu .menu > .menu-item {
  height: 2rem !important;
}
/* announcement notice bar */
.site-header .topbar-notice {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
/* bottom navigation row */
.site-header .primary-menu {
  padding-top: 0.55rem !important;
}
.site-header .primary-menu .menu > .menu-item {
  padding-bottom: 0.55rem !important;
}

/* remove the free-shipping progress bar everywhere (also disabled via theme mods) */
.klb-free-progress-bar {
  display: none !important;
}

/* contact page cards: fill with the site background (#f8f5f0) instead of grey,
   keeping the card border/radius. Cover every element that could hold the fill. */
body.elementor-page-1685 .elementor-widget-bacola-icon-box,
body.elementor-page-1685 .elementor-widget-bacola-icon-box > .elementor-widget-container,
body.elementor-page-1685 .klb-icon-box.contact-icon,
body.elementor-page-1685 .elementor-element.elementor-col-33 > .elementor-widget-wrap,
body.elementor-page-1685 .elementor-element.elementor-col-33 > .elementor-widget-wrap.elementor-element-populated {
  background-color: var(--houmes-ivory) !important;
  background-image: none !important;
}

/* ============================================================
   Mobile header: logo EXACTLY centered in the viewport.
   Overrides the earlier absolute block + the unconditional
   .site-brand margins (both broke true centering). Kept last
   in the file so it always wins the cascade.
   ============================================================ */
@media (max-width: 768px) {
  /* container is the positioning context and spans the full row.
     IMPORTANT: the side columns must stay position:static so the
     brand centres against the CONTAINER (viewport), not a column. */
  .site-header .header-main > .container {
    position: relative !important;
  }
  .site-header .header-main .column-left,
  .site-header .header-main .column-right,
  .site-header .header-main .header-buttons {
    position: static !important;
  }
  /* brand shrinks to the logo and is pinned to the exact centre */
  .site-header .header-main .site-brand {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    max-width: 60vw !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    pointer-events: none; /* clicks pass through to cart / menu */
    z-index: 1;
  }
  .site-header .header-main .site-brand a,
  .site-header .header-main .site-brand img.mobile-logo {
    pointer-events: auto;
    display: inline-block;
    margin: 0 auto !important;
  }
}

/* ============================================================
   TikTok social icon — the klbth-icon font has no tiktok glyph,
   so render the logo from an inline SVG mask (inherits the icon
   colour via currentColor). Used by the social lists.
   ============================================================ */
i.klbth-icon-tiktok {
  font-family: inherit !important; /* not the icon font */
}
i.klbth-icon-tiktok::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20d='M448%20209.91a210.06%20210.06%200%200%201-122.77-39.25V349.38A162.55%20162.55%200%201%201%20185%20188.31V278.2a74.62%2074.62%200%201%200%2052.23%2071.18V0h88a121.18%20121.18%200%200%200%201.86%2022.17A122.18%20122.18%200%200%200%20381%20102.39a121.43%20121.43%200%200%200%2067%2020.14Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20d='M448%20209.91a210.06%20210.06%200%200%201-122.77-39.25V349.38A162.55%20162.55%200%201%201%20185%20188.31V278.2a74.62%2074.62%200%201%200%2052.23%2071.18V0h88a121.18%20121.18%200%200%200%201.86%2022.17A122.18%20122.18%200%200%200%20381%20102.39a121.43%20121.43%200%200%200%2067%2020.14Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ============================================================
   Home hero slider: move the text block to the LEFT.
   The theme lays the inline-block content out with text-align:right
   (RTL) which pushes it to the right edge; flipping to left moves
   the whole block — eyebrow, title, subtitle, price and button.
   ============================================================ */
.module-slider .content-wrapper,
.module-slider .content-wrapper .content-header,
.module-slider .content-wrapper .content-main,
.module-slider .content-wrapper .content-footer,
.module-slider .content-wrapper .entry-title,
.module-slider .content-wrapper .content-description,
.module-slider .content-wrapper .content-text,
.module-slider .content-wrapper .price-text,
.module-slider .content-wrapper .price,
.module-slider .content-wrapper .content-discount {
  text-align: left !important;
}
/* right-side padding→left so the text keeps its inset from the edge */
.module-slider .content-wrapper {
  padding-left: 80px !important;
  padding-right: 0 !important;
}
/* these rows are flex under direction:rtl, where flex-END is the VISUAL
   left — so anchor their contents to flex-end to sit on the left. */
.module-slider .content-wrapper .content-header,
.module-slider .content-wrapper .content-main,
.module-slider .content-wrapper .content-footer,
.module-slider .content-wrapper .content-footer a,
.module-slider .content-wrapper .button-secondary {
  justify-content: flex-end !important;
}
/* the eyebrow + title blocks have a FIXED width, so under direction:rtl
   they hug the right edge — pull them to the left with an auto right margin. */
.module-slider .content-wrapper .content-header,
.module-slider .content-wrapper .content-main,
.module-slider .content-wrapper .entry-title {
  margin-left: 0 !important;
  margin-right: auto !important;
  float: none !important;
}
/* Mobile: keep the card block on the LEFT, but let the Hebrew text read/align
   right-to-left (RTL, right-aligned) inside it. The wrapper shrinks to its
   content and is pushed left with margin-right:auto; text-align:right anchors
   every line to the block's right edge. */
@media (max-width: 768px) {
  .module-slider .content-wrapper {
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: 78% !important;
    left: 0 !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important; /* block hugs the LEFT */
    padding-left: 24px !important;
    padding-right: 0 !important;
    padding-top: 60% !important; /* push the hero text down into the lower area */
    text-align: right !important; /* text aligns RTL, to the block's right edge */
  }
  .module-slider .content-wrapper .content-header,
  .module-slider .content-wrapper .content-main,
  .module-slider .content-wrapper .content-footer,
  .module-slider .content-wrapper .entry-title,
  .module-slider .content-wrapper .content-text,
  .module-slider .content-wrapper .content-description,
  .module-slider .content-wrapper .price,
  .module-slider .content-wrapper .price-text {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    text-align: right !important;
    justify-content: flex-start !important; /* RTL: flex-start = right edge */
  }
  /* button hugs its label (no stretched empty area on the left) and sits at
     the block's right edge like the rest of the text. */
  .module-slider .content-wrapper .button-secondary {
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    float: none !important;
  }
}

/* ============================================================
   Weekly-deals countdown (.module-counter-product)
   - numbers read left-to-right (days:hours:minutes:seconds)
   - a unit label sits under each number box
   ============================================================ */
.module-counter-product .countdown {
  direction: ltr !important;
  padding-bottom: 20px !important;
}
.module-counter-product .countdown .count-item {
  position: relative !important;
}
.module-counter-product .countdown .count-item::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #6f6459;
  direction: rtl;
  white-space: nowrap;
}
.module-counter-product .countdown .count-item.days::after    { content: "ימים"; }
.module-counter-product .countdown .count-item.hours::after   { content: "שעות"; }
.module-counter-product .countdown .count-item.minutes::after { content: "דקות"; }
.module-counter-product .countdown .count-item.second::after  { content: "שניות"; }

/* deals product card: show the FULL title (was clamped to one line) and
   tighten the big gap between the price and the title. */
.module-counter-product .content-wrapper .counter-product-header {
  margin-bottom: 3px !important;
}
.module-counter-product .content-wrapper .product-title {
  height: auto !important;
  max-height: none !important;
  margin: 0 0 5px !important;
  line-height: 1.3 !important;
}
.module-counter-product .content-wrapper .product-title a {
  display: block !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

/* "חדש בקולקציה" grid: 6 products on desktop, only 4 on mobile (2×2). */
@media (max-width: 767px) {
  .elementor-element-3415f72 .module-products .products > .product:nth-child(n+5) {
    display: none !important;
  }
}

/* my-account login/register: show ONLY the active tab's form, full width.
   The theme placed login+register side-by-side (each ~50%) and toggled them
   by opacity (leaving an empty half). We switch to display-toggling driven by
   the .show-register-form class that loginform.js adds, so the active form
   fills the whole box and the inactive one takes no space. */
.site-login .login-form-container,
.site-login .login-form-container.show-register-form {
  display: block !important;
  transform: none !important; /* kill the theme's translateX(50%) slide */
}
.site-login .site-login-overflow { overflow: visible !important; }
.site-login .login-form-container .login-form,
.site-login .login-form-container .register-form {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
  opacity: 1 !important;
}
.site-login .login-form-container .login-form form,
.site-login .login-form-container .register-form form {
  width: 100% !important;
  max-width: 100% !important;
}
/* default (login tab active) */
.site-login .login-form-container .login-form { display: block !important; }
.site-login .login-form-container .register-form { display: none !important; }
/* register tab active */
.site-login .login-form-container.show-register-form .login-form { display: none !important; }
.site-login .login-form-container.show-register-form .register-form { display: block !important; }
/* force every inner element (form, rows, inputs, notes) to full width so the
   register fields aren't squeezed to half like the theme's side-by-side layout */
.site-login .login-form-container form,
.site-login .login-form-container .form-row,
.site-login .login-form-container .woocommerce-form-row,
.site-login .login-form-container input.input-text,
.site-login .login-form-container .woocommerce-privacy-policy-text {
  width: 100% !important;
  max-width: 100% !important;
  transform: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}
/* register form fields render in a right-hand half from the theme's original
   side-by-side layout — force them into a plain full-width block flow */
.site-login .register-form,
.site-login .register-form form,
.site-login .register-form .form-row,
.site-login .register-form .woocommerce-form-row {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  transform: none !important;
}
.site-login .register-form input.input-text {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* mobile: smaller xsmall buttons + smaller price text */
@media (max-width: 768px) {
  button:not(.button-text).xsmall,
  .button:not(.button-text).xsmall,
  input[type="submit"]:not(.button-text).xsmall,
  .submit:not(.button-text).xsmall {
    font-size: 10px !important;
    height: 2.125rem !important;
  }
  .price.amount {
    color: var(--color-price) !important;
    font-size: 14px !important;
  }
}

/* footer widgets: keep the Hebrew text right-aligned (RTL) */
.site-footer .footer-widgets .klbfooterwidget,
.site-footer .footer-widgets .klbfooterwidget .widget-title,
.site-footer .footer-widgets .klbfooterwidget ul,
.site-footer .footer-widgets .klbfooterwidget ul li,
.site-footer .footer-widgets .klbfooterwidget ul li a {
  text-align: right !important;
  direction: rtl !important;
}

/* off-canvas (mobile) "כל הקטגוריות" — reliable open/close toggle.
   houmes-menu.js tags it .hm-canvas-cats and toggles .hm-open on click. */
.site-canvas .all-categories.hm-canvas-cats .dropdown-categories {
  display: none !important;
}
.site-canvas .all-categories.hm-canvas-cats.hm-open .dropdown-categories {
  display: block !important;
}
.site-canvas .all-categories.hm-canvas-cats > a { cursor: pointer; }
.site-canvas .all-categories.hm-canvas-cats > a:after {
  transition: transform 0.2s ease;
}
.site-canvas .all-categories.hm-canvas-cats.hm-open > a:after {
  transform: rotate(180deg);
}

/* add-to-cart notice: no grey box — plain white text (shadow keeps it legible) */
.klb-notice-ajax .woocommerce-message {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  padding: 0.4rem 0 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.klb-notice-ajax .woocommerce-message a,
.klb-notice-ajax .woocommerce-message a.button {
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* footer: remove the "החנויות שלנו" (our stores) link */
.site-footer .footer-widgets .menu-item-2163 {
  display: none !important;
}

/* ============================================================
   Styling-session page + booking buttons + modal form
   ============================================================ */
.houmes-styling {
  max-width: 1140px;
  margin: 0 auto;
  direction: ltr; /* layout order: first child (text) on the LEFT, image on the RIGHT */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  line-height: 1.9;
  color: #3a352f;
  font-size: 16px;
}
.houmes-styling .hs-text {
  flex: 1 1 54%;
  direction: rtl; /* Hebrew content stays right-aligned inside the left column */
  text-align: right;
}
.houmes-styling .hs-media {
  flex: 0 0 40%;
  align-self: stretch;
}
.houmes-styling .hs-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .houmes-styling {
    flex-direction: column;
    gap: 26px;
  }
  .houmes-styling .hs-media {
    flex-basis: auto;
    width: 100%;
    order: -1; /* image on top on mobile */
  }
  .houmes-styling .hs-media img {
    max-height: 360px;
  }
}
.houmes-styling .hs-lead {
  font-family: "Frank Ruhl Libre", "Cormorant Garamond", serif;
  font-size: 24px;
  color: #2e2a25;
  margin-bottom: 18px;
}
.houmes-styling h2 {
  font-family: "Frank Ruhl Libre", "Cormorant Garamond", serif;
  font-size: 22px;
  color: #2e2a25;
  margin: 32px 0 12px;
}
.houmes-styling .hs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 8px;
}
.houmes-styling .hs-book-btn,
.houmes-styling .hs-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.houmes-styling .hs-book-btn { background: #2e2a25; color: #fff; }
.houmes-styling .hs-wa-btn { background: #25d366; color: #fff; }
.houmes-styling .hs-book-btn:hover,
.houmes-styling .hs-wa-btn:hover { opacity: 0.9; color: #fff; }
.houmes-styling .hs-wa-btn::before {
  content: "";
  width: 18px; height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M16 .5C7.44.5.5 7.44.5 16c0 2.82.74 5.47 2.03 7.77L.5 31.5l7.9-2.07A15.4 15.4 0 0 0 16 31.5C24.56 31.5 31.5 24.56 31.5 16S24.56.5 16 .5zm0 28.1a12.5 12.5 0 0 1-6.87-2.02l-.49-.29-4.69 1.23 1.25-4.57-.32-.5A12.5 12.5 0 1 1 16 28.6zm7.2-9.36c-.39-.2-2.32-1.15-2.68-1.28-.36-.13-.62-.2-.88.2-.26.39-1.01 1.28-1.24 1.54-.23.26-.46.29-.85.1-.39-.2-1.65-.61-3.14-1.94-1.16-1.03-1.94-2.31-2.17-2.7-.23-.39-.02-.6.17-.79.18-.18.39-.46.59-.69.2-.23.26-.39.39-.65.13-.26.06-.49-.03-.69-.1-.2-.88-2.12-1.2-2.9-.32-.76-.64-.66-.88-.67l-.75-.01c-.26 0-.68.1-1.03.49-.36.39-1.35 1.32-1.35 3.22s1.38 3.74 1.58 4c.2.26 2.72 4.15 6.59 5.82.92.4 1.64.63 2.2.81.92.29 1.76.25 2.42.15.74-.11 2.32-.95 2.65-1.86.33-.91.33-1.69.23-1.86-.1-.16-.36-.26-.75-.46z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%3E%3Cpath%20d='M16 .5C7.44.5.5 7.44.5 16c0 2.82.74 5.47 2.03 7.77L.5 31.5l7.9-2.07A15.4 15.4 0 0 0 16 31.5C24.56 31.5 31.5 24.56 31.5 16S24.56.5 16 .5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* modal */
body.hs-modal-open { overflow: hidden; }
.hs-modal[hidden] { display: none; }
.hs-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.hs-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, 0.55);
}
.hs-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #fbf8f3;
  border-radius: 14px;
  padding: 30px 26px 26px;
  direction: rtl;
  text-align: right;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.hs-modal-close {
  position: absolute;
  top: 12px;
  left: 14px;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: #8a7d6e;
  cursor: pointer;
}
.hs-modal-box h3 {
  font-family: "Frank Ruhl Libre", "Cormorant Garamond", serif;
  font-size: 22px;
  color: #2e2a25;
  margin: 0 0 4px;
}
.hs-modal-box .hs-modal-sub { font-size: 14px; color: #6f6459; margin: 0 0 18px; }
.hs-booking-form label {
  display: block;
  font-size: 13px;
  color: #4a443c;
  margin-bottom: 12px;
}
.hs-booking-form input {
  width: 100%;
  margin-top: 5px;
  padding: 11px 12px;
  border: 1px solid #e0d7c8;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  direction: rtl;
  box-sizing: border-box;
}
.hs-booking-form input:focus { outline: none; border-color: #b9a99a; }
.hs-booking-form .hs-submit {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 0;
  border-radius: 40px;
  background: #2e2a25;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.hs-booking-form .hs-submit:disabled { opacity: 0.6; cursor: default; }
.hs-form-msg { margin-top: 12px; font-size: 14px; text-align: center; }
.hs-form-msg.ok { color: #1f7a3d; }
.hs-form-msg.err { color: #c0392b; }
