/* ============================================================
   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: uniform, centered 3-per-row grid (2 rows for 6 items).
   The theme splits them into a featured ".first" + ".categories-wrapper"; we
   flatten those with display:contents so all cards join one clean grid. */
.module-category.style-1 .categories {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 6px 8px !important;
  max-width: none;
  margin: 0 auto !important;
}
.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;
}
@media (max-width: 1200px) {
  .module-category.style-1 .categories {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .module-category.style-1 .categories {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 480px) {
  .module-category.style-1 .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !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: tidy mobile layout ---------- */
@media (max-width: 768px) {
  /* each product becomes a clean bordered card */
  .tinv-wishlist table.tinvwl-table-manage-list tbody tr {
    display: block;
    border: 1px solid #e6ddd0;
    border-radius: 10px;
    margin-bottom: 16px;
    padding: 8px 6px;
    background: #fff;
  }
  .tinv-wishlist table.tinvwl-table-manage-list tbody td {
    text-align: center !important;
    padding: 8px 10px !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: 150px !important;
    margin: 0 auto !important;
  }
  .tinv-wishlist table.tinvwl-table-manage-list td.product-name {
    font-weight: 600;
    font-size: 15px;
  }
  .tinv-wishlist table.tinvwl-table-manage-list td.product-action .button {
    width: 100%;
  }
  /* 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;
}
.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;
}
