
/* Facelift CSS
* Version: 1.2.27 (2025-11-23)
 */
/* Facelift overrides: ensure nav matches body across all sizes */
/* Shared pill tokens */
:root {
  --pill-bg: #f3f3f5;
  --pill-border: #f3f3f5;
  --pill-radius: 14px;
  --pill-pad-v: 8px;
  --pill-pad-h: 16px;
  --pill-font: 14px;
  --pill-font-family: 'Siena-Thin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --pill-line-height: 1.3;
}
.nav-sections,
.sections.nav-sections,
.nav-sections .section-items,
.nav-sections .nav-sections-items,
.nav-sections .nav-sections-item-title,
.nav-sections .nav-sections-item-content,
.nav-sections .mobile-menu-sticky,
.nav-sections .mobile-menu-info,
.navigation {
  background: #FBF9F7;
  background-color: #FBF9F7;
}

.sticky-header {
  background: #FBF9F7;
}

/* Inner navigation container in the header sections */
.nav-sections-item-content .navigation {
  background: #FBF9F7;
  background-color: #FBF9F7;
}

@media (min-width: 768px) {
  .nav-sections-item-content .navigation {
    background: #FBF9F7 !important;
    background-color: #FBF9F7 !important;
  }

}

/* Match Magento's desktop media rule for sorter dropdown list */
@media (min-width: 768px), print {
  .toolbar .sorter .custom-sorter-options .sorter-options-list .items {
    min-width: 240px !important;
  }
  /* Remove extra padding on each list item wrapper */
  .toolbar .sorter .custom-sorter-options .sorter-options-list .items .item {
    padding: 0 !important;
  }
}

/* ===============================
   Form controls: search, sort, filters
   =============================== */
/* Search input (header) */
.header.content .search-wrapper-div .block-search input,
.block-search .control .input-text,
.block-search input#search {
  background: var(--pill-bg) !important;
  background-color: var(--pill-bg) !important;
  border: 1px solid var(--pill-border) !important;
  border-radius: var(--pill-radius) !important;
  padding: var(--pill-pad-v) var(--pill-pad-h) !important;
  font-size: var(--pill-font) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
}

/* Sort / Limiter selects in toolbar */
.toolbar .toolbar-sorter .sorter-options,
.toolbar .limiter .limiter-options,
.toolbar .field .control select {
  background: var(--pill-bg) !important;
  background-color: var(--pill-bg) !important;
  border: 1px solid var(--pill-border) !important;
  border-radius: var(--pill-radius) !important;
  padding: var(--pill-pad-v) var(--pill-pad-h) !important;
  font-size: var(--pill-font) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
}

/* Sorter custom options (selected chip and options list) */
.toolbar .custom-sorter-options .sorter-option-selected,
.toolbar .custom-sorter-options .sorter-options-list a {
  background: var(--pill-bg) !important;
  background-color: var(--pill-bg) !important;
  border: 1px solid var(--pill-border) !important;
  border-radius: var(--pill-radius) !important;
  padding: var(--pill-pad-v) var(--pill-pad-h) !important;
  font-size: var(--pill-font) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
  display: inline-flex;
  align-items: center;
}

/* Ensure inner text nodes inside sorter chips inherit size/family */
.toolbar .custom-sorter-options .sorter-option-selected *,
.toolbar .custom-sorter-options .sorter-options-list a * {
  font-size: var(--pill-font) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
}

/* Match the filter dropdown look for sorter dropdown values */
/* Container panel */
.toolbar .custom-sorter-options .sorter-options-list {
  background: #ffffff !important;
  border: 1px solid #f0f0f2 !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
/* List reset + spacing */
.toolbar .custom-sorter-options .sorter-options-list li {
  list-style: none;
  margin: 0;
}
/* Each option to look like filter dropdown items (not pills) */
.toolbar .custom-sorter-options .sorter-options-list a {
  display: block !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  border: none !important;
  border-radius: 8px !important;
  background: transparent !important; /* override earlier pill bg inside list */
  color: #333 !important;
}
.toolbar .custom-sorter-options .sorter-options-list a:hover,
.toolbar .custom-sorter-options .sorter-options-list a:focus,
.toolbar .custom-sorter-options .sorter-options-list a.active {
  background: #f0f0f0 !important;
}

/* Layered navigation filter triggers (pill style) */
.page-products .filter .filter-options-title,
.page-products .filter .filter-label,
.page-products .filter .filter-title {
  background: var(--pill-bg) !important;
  background-color: var(--pill-bg) !important;
  border: 1px solid var(--pill-border) !important;
  border-radius: var(--pill-radius) !important;
  padding: var(--pill-pad-v) var(--pill-pad-h) !important;
  font-size: var(--pill-font) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
  display: inline-block;
}

/* Mobile filter/sorter triggers (match pill styling; slightly larger text) */
.filter-button.mobile-show .open-filter,
.mobile-sorter.mobile-show .open-sorter {
  background: var(--pill-bg) !important;
  background-color: var(--pill-bg) !important;
  border: 1px solid var(--pill-border) !important;
  border-radius: var(--pill-radius) !important;
  padding: var(--pill-pad-v) var(--pill-pad-h) !important;
  font-size: calc(var(--pill-font) + 5px) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
  color: #333 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

/* Any select or text input within filters (fallback) */
.page-products .filter select,
.page-products .filter input[type='text'] {
  background: var(--pill-bg) !important;
  background-color: var(--pill-bg) !important;
  border: 1px solid var(--pill-border) !important;
  border-radius: var(--pill-radius) !important;
  padding: var(--pill-pad-v) var(--pill-pad-h) !important;
  font-size: var(--pill-font) !important;
  font-family: var(--pill-font-family) !important;
  line-height: var(--pill-line-height) !important;
}

/* Product grid/list: match image container bg to facelift palette */
.page-products .product-item-info .product-image-container {
  background-color: #f3f3f5 !important;
  border-radius: 14px !important;
  overflow: hidden; /* ensure inner image corners clip */
}

/* Grid toggle styling */
.toolbar .grid-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  vertical-align: middle;
  align-content: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding-right: 14px;
  margin-top: 1px;
}
.toolbar .grid-toggle .grid-toggle-label {
  font-family: 'Domaine Display', Georgia, serif; /* match Sort label family */
}
/* Icon-only circular buttons; match pill height (~36px); no fill by default */
.toolbar .grid-toggle .toggle {
  background: var(--pill-bg, #f3f3f5);
  border: 1px solid var(--pill-border, #f3f3f5);
  border-radius: 23px;
  padding: 10px 10px;
  font-size: 22px; /* icon size */
  line-height: 1;
  color: #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.toolbar .grid-toggle .toggle:hover,
.toolbar .grid-toggle .toggle:focus { color: #111; }
.toolbar .grid-toggle .toggle.active { color: #111; }
.toolbar .grid-toggle .toggle i { font-size: 14px; line-height: 1; }
/* No background fill change on active; icon color shift only */

/* Grid column rules scoped by wrapper class set by JS */
@media (min-width: 768px), print {
  .products.wrapper.grid-4 .product-item { width: calc((100% - 45px)/4) !important; margin-left: 15px !important; }
  /* Cancel base 3n rule when 4-col is active so the 4th item keeps its left gap */
  .products.wrapper.grid-4 .product-item:nth-child(3n + 1) { margin-left: 15px !important; }
  .products.wrapper.grid-4 .product-item:nth-child(4n + 1) { margin-left: 0 !important; }
  .products.wrapper.grid-3 .product-item { width: calc((100% - 30px)/3) !important; margin-left: 15px !important; }
  .products.wrapper.grid-3 .product-item:nth-child(3n + 1) { margin-left: 0 !important; }
}

/* First-paint no-jump selectors using html class set before products render */
@media (min-width: 768px), print {
  html.grid-4-mode .products.wrapper .product-item { width: calc((100% - 45px)/4) !important; margin-left: 15px !important; }
  html.grid-4-mode .products.wrapper .product-item:nth-child(3n + 1) { margin-left: 15px !important; }
html.grid-4-mode .products.wrapper .product-item:nth-child(4n + 1) { margin-left: 0 !important; }
}

/* Bottom toolbar pagination visibility + centering */
/* Hide top pager by default; we re-show the bottom pager below */
.toolbar.toolbar-products .pages { display: none !important; }
@media (min-width: 768px), print {
  .products.wrapper ~ .toolbar { position: static !important; float: none !important; margin-top: 20px; }
  .products.wrapper ~ .toolbar .pages {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    float: none !important;
  }
}


/* Ensure base body font-size (independent of core styles) */
body {
  font-size: 1.7rem !important;
}

/* ===============================
   PDP + Breadcrumb typography tweaks
   =============================== */
.breadcrumbs .items {
  color: #fc6173 !important;
  font-size: 1.7rem !important;
}

.product-info-top .product-info-item .brand-name {
  font-family: 'Siena-Thin', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  margin: 0 !important;
  margin-top: 5px !important;
  font-size: 1.8rem !important;
  color: #524949 !important;
}

.product-info-top .product-info-item .product.sku {
  margin: 10px 0 !important;
  font-size: 1.8rem !important;
}

.product-info-top .product-info-item .product-price .sale-price {
  font-size: 2.8rem !important;
}

.product-info-top .product-info-item .product-price .sale-price .price-label {
  font-size: 2.8rem !important;
  color: #000000 !important;
}

.product-info-top .product-info-item .product-price .old-price .price {
  text-decoration: line-through !important;
  font-size: 2.4rem !important;
}

.product-info-top .product-info-item .product-price .discount {
  float: right !important;
  font-size: 2.3rem !important;
  color: #d40c25 !important;
  margin-top: 7px !important;
  margin-bottom: 0 !important;
}

.product-add-form .box-tocart .fieldset .field.qty .control .qty-selected {
  vertical-align: middle !important;
  background: #f3f3f5 !important;
  border-radius: 30px !important;
  text-align: center !important;
  margin-bottom: 0 !important;
  font-size: 1.8rem !important;
  cursor: pointer !important;
  width: 57px !important;
  height: 57px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.product-favorite .addtoFav a,
.product-favorite .addtoFav span {
  font-size: 1.8rem !important;
  color: #333333 !important;
  margin-right: 10px !important;
  text-decoration: none !important;
}

/* PDP details accordion: See More styles */
.product-details-accordion .see-more {
  position: relative !important;
  display: block !important;
  background-color: #fbf9f7 !important;
}
.product-details-accordion .see-more.active:after {
  content: ' ';
  height: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fbf9f7) !important;
}

/* PDP: Promo exclusion notice */
.promo-exclusion-note {
  font-size: 1.6rem;
  border-top: 1px solid #e3e3e3;
  padding: 30px 0px 0px 0px;
  margin-top: 10px;
  border-radius: 4px;
  font-style: italic;
  text-align: center;
}

/* ===============================
   Container width overrides
   Ensure 1650px max width on desktop bundle
   =============================== */
@media (min-width: 768px), print {
  /* Core container list used across pages */
  .navigation,
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    max-width: 1650px !important;
  }

  /* Single block container width per request */
  .block-container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1650px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Sticky header inner container */
  .sticky-header .nav-sections-items {
    max-width: 1650px !important;
  }

  /* Common inner message wrapper */
  .category-content-view .message.info > div {
    max-width: 1650px !important;
  }

  /* Legacy foxhive layout wrappers */
  .page-layout-foxhive-layout .product-page-top,
  .page-layout-foxhive-layout .product-info-show,
  .page-layout-foxhive-layout .page.messages,
  .page-layout-foxhive-layout .page-title-wrapper,
  .page-layout-foxhive-layout .category-content-filter {
    max-width: 1650px !important;
  }
}

/* ===============================
   Category filter/top offsets
   Align to half of 1650px (= 825px)
   =============================== */
@media (min-width: 1200px) {
  .category-content-view .category-top-filter {
    margin-right: clamp(0px, calc(50vw - 825px), 2000px) !important;
  }
  .category-content-view .category-content-filter {
    margin-left: clamp(0px, calc(50vw - 825px), 2000px) !important;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 16px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
}

.footer-legal__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: inherit;
}

.footer-legal__link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal__link:hover,
.footer-legal__link:focus {
  text-decoration: underline;
}

.footer-legal__separator {
  color: rgba(0, 0, 0, 0.3);
}

.footer-legal__copyright {
  margin-left: auto;
  color: inherit;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-legal__copyright {
    margin-left: 0;
    white-space: normal;
    text-align: center;
  }

  .footer-legal__links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .footer-legal__separator {
    display: none;
  }

  .footer-legal__link {
    display: inline-block;
  }
}

/* ===============================
   Category product grid container width
   =============================== */
.page-products .products-grid .product-items {
  box-sizing: border-box;
  margin: 0 auto !important;
  max-width: 1650px;
  padding-left: 15px;
  padding-right: 15px;
}

/* ===============================
   Product title size (grid)
   Force 1.2em over inherited 1.4em
   =============================== */
.page-products .product-item-info .product-item-details h2.product-item-name {
  font-size: 1.2em !important;
  hyphens: none;
}

/* ===============================
   Grid Gutters: 15px across breakpoints
   - Desktop (>=768px): 3 columns
   - Tablet/Mobile (<768px): 2 columns
   - Narrow (<480px): 1 column
   =============================== */
@media (min-width: 768px), print {
  .page-products .products-grid .product-item,
  .products-grid .product-item {
    margin-left: 15px !important;
    width: calc((100% - 30px) / 3) !important;
    padding: 0 !important;
  }
  .page-products .products-grid .product-item:nth-child(3n + 1),
  .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .page-products .products-grid .product-item,
  .products-grid .product-item {
    margin-left: 15px !important;
    width: calc((100% - 15px) / 2) !important;
    padding: 0 !important;
  }
  .page-products .products-grid .product-item:nth-child(2n + 1),
  .products-grid .product-item:nth-child(2n + 1) {
    margin-left: 0 !important;
  }
}

/* ===============================
   PDP media/details split (desktop)
   Force product media 60% and info 40%
   =============================== */
@media (min-width: 768px), print {
  .page-layout-foxhive-layout .product.media { width: 60% !important; }
  .page-layout-foxhive-layout .product-info-main { width: 40% !important; }
}

@media (min-width: 768px) {
  .sticky {
    z-index: 2!important;
  }
}

/* ===============================
   PDP thumbnails: uniform square tiles
   - White background per tile
   - Keep images contained (no overlap)
   - Let Owl handle width per item; we enforce square via aspect-ratio
   =============================== */
.page-layout-foxhive-layout .product.media #gallery_images_sync .owl-item,
.page-layout-foxhive-layout .product.media #gallery_images_sync .item {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-radius: 14px;
  overflow: hidden;
}
.page-layout-foxhive-layout .product.media #gallery_images_sync .item {
  aspect-ratio: 1 / 1;
  width: auto !important;   /* Owl sets item width; we keep square */
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;         /* prevent tall images from spilling */
  box-sizing: border-box;
}
.page-layout-foxhive-layout .product.media #gallery_images_sync .item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important; /* letterbox inside square */
  object-position: center;
  display: block;
}

/* ===============================
   PDP vertical rail: widen container by +20px
   (tiles each grow ~ +20/items ≈ +3.3px with 6 items)
   =============================== */
/* Rail width is now driven dynamically by JS to match the main image height. */

/* ===============================
   PDP main image: white slide background
   Center image within square without cropping
   =============================== */
.page-layout-foxhive-layout .product.media #gallery_images .owl-item,
.page-layout-foxhive-layout .product.media #gallery_images .item {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-radius: 14px;
  overflow: hidden;
}
.page-layout-foxhive-layout .product.media #gallery_images .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PDP: indicate images are clickable to zoom (desktop only ≥992px) */
@media (min-width: 992px) {
  .page-layout-foxhive-layout .product.media #gallery_images .item:not(.isLoading) img,
  .page-layout-foxhive-layout .product.media #gallery_images .owl-item:not(.isLoading) img,
  .page-layout-foxhive-layout .product.media #gallery_stack .tile:not(.isLoading) img,
  #gallery_images .item:not(.isLoading) img,
  #gallery_images .owl-item:not(.isLoading) img,
  #gallery_stack .tile:not(.isLoading) img {
    cursor: zoom-in !important;
  }
}

/* Explicitly reset cursor on mobile/tablet (<992px) */
@media (max-width: 991px) {
  #gallery_images .item img,
  #gallery_images .owl-item img,
  #gallery_stack .tile img {
    cursor: auto !important;
  }
}

/* ===============================
   PDP: lightweight loader for native-lazy images
   - Add spinner while images are loading
   =============================== */
/* (Loader visuals use global theme .isLoading rules; no PDP override here) */

/* ===============================
   Stacked gallery layout (1 | 2 | 1 | 2 ...)
   =============================== */
.page-layout-foxhive-layout .product.media #gallery_stack.gallery-stack { display: block; width: 100%; }
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row { margin-bottom: 20px; }
/* Clamp first (single) tile to 942px square and center */
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row.single { max-width: 942px; margin-left: auto; margin-right: auto; }
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row.single .tile { background: #F3F3F5; background-color: #F3F3F5; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; width: 100%; }
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row.single .tile img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row.two-up .tile { background: #F3F3F5; background-color: #F3F3F5; border-radius: 14px; overflow: hidden; }
.page-layout-foxhive-layout .product.media #gallery_stack .stack-row.two-up .tile img { width: 100%; height: auto; object-fit: contain; display: block; }

/* Fade-in on image load using .isLoading toggle */
.page-layout-foxhive-layout .product.media #gallery_stack .tile img {
  opacity: 1;
  transition: opacity .4s ease;
  mix-blend-mode: multiply; /* match category product image treatment */
  filter: brightness(1.03);
}
/* Hide non-hero images while loading; never hide the hero */
.page-layout-foxhive-layout .product.media #gallery_stack .tile.isLoading:not(.stack-hero) img { opacity: 0; }
/* Never hide the hero image: show ASAP even if JS is slow */
.page-layout-foxhive-layout .product.media #gallery_stack .stack-hero.isLoading img { opacity: 1; }
/* Force hero visible regardless of other rules ordering */
.page-layout-foxhive-layout .product.media #gallery_stack .stack-hero img { opacity: 1 !important; }
/* Ensure spinner overlays above visible hero too */
.page-layout-foxhive-layout .product.media #gallery_stack .stack-hero.isLoading { position: relative; }
/* While loading: block clicks and show spinner */
.page-layout-foxhive-layout .product.media #gallery_stack .tile.isLoading:not(.stack-hero) img {
  pointer-events: none;
  cursor: progress;
}
.page-layout-foxhive-layout .product.media #gallery_images .item.isLoading img {
  pointer-events: none;
  cursor: progress;
}
.page-layout-foxhive-layout .product.media #gallery_stack .tile.isLoading { position: relative; }
.page-layout-foxhive-layout .product.media #gallery_stack .tile.isLoading:not(.stack-hero):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid rgba(212, 12, 37, 0.25);
  border-right-color: #d40c25; /* accent color */
  border-radius: 50%;
  animation: spin .6s linear infinite;
  -webkit-animation: spin .6s linear infinite;
  z-index: 2;
  pointer-events: none;
}

/* Local keyframes to ensure spinner animation */
@-webkit-keyframes spin { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Sticky right-side product info on desktop; grid mode on main images */
@media (min-width: 992px) {
  /* Remove sticky behavior from right column to avoid stacking issues */
  /* .page-layout-foxhive-layout .product-info-main { position: sticky; top: 80px; align-self: flex-start; } */
  .page-layout-foxhive-layout .product.media .main-gallery { width: 100% !important; }
  .page-layout-foxhive-layout .product.media .vertical-gallery { display: none !important; }
  /* Turn on grid for the single container */
  .page-layout-foxhive-layout .product.media #gallery_images.grid-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .page-layout-foxhive-layout .product.media #gallery_images.grid-mode .item { background: #fff; border-radius: 14px; overflow: hidden; }
  .page-layout-foxhive-layout .product.media #gallery_images.grid-mode .item:nth-child(3n+1) { grid-column: 1 / -1; }
  .page-layout-foxhive-layout .product.media #gallery_images.grid-mode .item img { width: 100%; height: auto; object-fit: contain; display: block; }
}
/* Mobile: ensure Owl slide images contain and center within square */
@media (max-width: 991px) {
  .page-layout-foxhive-layout .product.media #gallery_images .owl-stage .owl-item img {
    max-height: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
  }
  /* Reduce FOUC: before Owl initializes, show only first slide */
  #gallery_images:not(.owl-loaded) .item:not(:first-child) { display: none; }
}
/* Toggle helpers */
@media (min-width: 992px) {
  .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }
  .desktop-only-hide { display: none !important; }
}
@media (max-width: 991px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* ===============================
   PDP stacked gallery: collapsible preview (1 | 2 | 1)
   - Show first three rows, fade over half of row 4
   - Reveal all on click
   =============================== */
@media (min-width: 992px) {
  #gallery_stack_wrapper.gallery-collapsible {
    position: relative;
  }
  #gallery_stack_wrapper.gallery-collapsible.collapsed {
    overflow: hidden; /* allow clamp */
  }
  #gallery_stack_wrapper.gallery-collapsible.expanded {
    overflow: visible;
  }
  #gallery_stack_wrapper.gallery-collapsible.collapsed:after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 180px; /* visual fade height; JS clamps container height */
    pointer-events: none;
    z-index: 1;
    /* subtle fade to page bg (light) */
    background: linear-gradient(to bottom, rgba(243,243,245,0) 0%, rgba(243,243,245,0.6) 65%, rgba(243,243,245,1) 100%);
  }
  #gallery_stack_wrapper .gallery-show-more {
    position: absolute;
    left: 50%;
    bottom: 49px;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 26px;
    border: 1px solid #f3f3f5;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  #gallery_stack_wrapper:not(.collapsed) .gallery-show-more { display: none; }
}

/* Footer full-span component */
.footer-full-span {
    --footer-full-span-border: rgba(0, 0, 0, 0.12);
    background-color: var(--footer-full-span-bg);
    color: var(--footer-full-span-text);
    padding: 48px 0;
}

.footer-full-span a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-full-span a:hover,
.footer-full-span a:focus {
    color: #fc6173;
    text-decoration: none;
}

.footer-full-span .footer-full-span__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
    box-sizing: border-box;
}

.footer-full-span .footer-2modern {
    display: grid;
    gap: 32px;
    grid-template-columns: 1.1fr 1.1fr 1fr 1.2fr;
}

.footer-full-span .footer-collapsible {
    padding-top: 16px;
}

.footer-full-span .footer-collapsible + .footer-collapsible {
    margin-top: 12px;
}

.footer-full-span .item-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-full-span .item-title__text {
    flex: 1;
}

.footer-full-span .footer-accordion-icon {
    display: none;
    margin-left: 12px;
}

.footer-full-span .item-content {
    display: block;
    line-height: 1.7;
}

.footer-full-span .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.footer-full-span .footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-full-span .footer-links a:hover,
.footer-full-span .footer-links a:focus {
    color: #fc6173;
}

.full-span-block .content .item-links {
    display: block;
}

.footer-full-span .footer-link--emphasis {
    font-weight: 600;
}

.footer-full-span .footer-link--headline {
    font-size: inherit;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-full-span .footer-link--icon {
    position: relative;
    padding-left: 0;
}

.footer-full-span .footer-link--icon::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #fc6173;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.4rem;
}

.footer-full-span .footer-link--icon-showrooms::before {
    content: "\f21d";
}

.footer-full-span .footer-link--icon-inspire::before {
    content: "\f518";
}

.footer-full-span .footer-blurb {
    margin-bottom: 16px;
}

.footer-full-span .footer-blurb--catalog {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-full-span .footer-catalog__image-wrapper {
    flex: 0 0 90px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(-4deg);
}

.footer-full-span .footer-catalog__image {
    display: block;
    width: 100%;
    height: auto;
}

.footer-full-span .footer-catalog__content {
    flex: 1;
}

.footer-full-span .footer-blurb__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-full-span .footer-newsletter__copy {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.footer-full-span .footer-newsletter__form {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.footer-full-span .footer-newsletter__input {
    width: 100%;
    padding: 16px 128px 16px 22px;
    border: none;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    font-size: 1.5rem;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.footer-full-span .footer-newsletter__input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.footer-full-span .footer-newsletter__input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.footer-full-span .footer-newsletter__button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 9px 26px;
    border: none;
    border-radius: 24px;
    background: var(--footer-full-span-text);
    color: var(--footer-full-span-bg);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-full-span .footer-newsletter__button:hover,
.footer-full-span .footer-newsletter__button:focus {
    transform: translateY(-50%) scale(1.03);
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer-full-span .footer-socials__title {
    margin: 0 0 10px;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
}

.footer-full-span .footer-socials__tag {
    margin-left: 8px;
    padding-left: 13px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: inherit;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-full-span .footer-socials {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    justify-content: center;
}

.footer-full-span .footer-socials li {
    margin: 0;
}

.footer-full-span .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fc6173;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-full-span .footer-socials a:hover,
.footer-full-span .footer-socials a:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(252, 97, 115, 0.35);
    background: #fd6e81;
    color: #fff;
}

.footer-full-span .footer-socials i {
    font-size: 1.2rem;
}

.footer-full-span .footer-full-span__credibility {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.footer-full-span .footer-contact-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: inherit;
}

.footer-full-span .footer-contact-bar a {
    color: inherit;
}

.footer-full-span .footer-contact-bar__separator {
    opacity: 0.6;
}

.footer-full-span .footer-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0;
}

.footer-full-span .footer-support a {
    color: inherit;
}

.footer-full-span .footer-support__separator {
    font-weight: 500;
    opacity: 0.6;
}

.footer-full-span .footer-support--email {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 500;
}

@media (max-width: 1360px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 80px;
    }
}

@media (max-width: 1180px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 68px;
    }
}

@media (max-width: 1040px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 52px;
    }
}

@media (max-width: 920px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 32px;
    }
}

@media (max-width: 820px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 24px;
    }
}

@media (max-width: 680px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 16px;
    }
}

@media (max-width: 560px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 8px;
    }
}

@media (max-width: 520px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 16px;
    }

    .footer-full-span .footer-2modern {
        gap: 32px;
    }
}

@media (max-width: 420px) {
    .footer-full-span .footer-full-span__container {
        padding: 0 12px;
    }

    .footer-full-span .footer-2modern {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .footer-full-span .footer-2modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-full-span .footer-blurb--catalog {
        gap: 12px;
    }

    .footer-full-span .footer-catalog__image-wrapper {
        flex-basis: 80px;
    }

    .footer-full-span .footer-newsletter__input {
        padding-right: 120px;
    }

    .footer-full-span .footer-full-span__credibility {
        margin-top: 28px;
    }
}

@media (max-width: 768px) {
    .footer-full-span {
        padding: 30px 0;
    }

    .footer-full-span .footer-full-span__container {
        padding: 0 24px;
    }

    .footer-full-span .footer-2modern {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-full-span .footer-collapsible {
        padding-top: 0;
        margin-top: 0;
        border-top: 1px solid var(--footer-full-span-border);
    }

    .footer-full-span .footer-collapsible:first-child {
        border-top: none;
    }

    .footer-full-span .footer-collapsible + .footer-collapsible {
        margin-top: 0;
    }

    .footer-full-span .footer-newsletter__input {
        padding: 14px 108px 14px 20px;
    }

    .footer-full-span .footer-newsletter__button {
        right: 0;
        padding: 8px 22px;
    }

    .footer-full-span .footer-full-span__credibility {
        margin-top: 24px;
    }

    .footer-full-span .item-title {
        cursor: pointer;
        margin: 0;
        padding: 16px 0;
        font-size: 2.2rem;
    }

    .footer-full-span .footer-accordion-icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        font-size: 2.2rem;
        font-weight: 400;
        line-height: 1;
    }

    .footer-full-span .footer-collapsible .item-content {
        display: none;
    }

    .footer-full-span .footer-collapsible.is-open .item-content {
        display: block;
    }

    .footer-full-span .item-content {
        padding: 0 0 16px;
    }

    .footer-full-span .footer-links li + li {
        margin-top: 8px;
    }

    .footer-full-span .footer-blurb--catalog {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

.footer-full-span .footer-catalog__image-wrapper {
        flex-basis: auto;
        width: 120px;
    }

.footer-full-span .footer-newsletter__form {
        padding: 4px 4px 4px 12px;
    }
}

/* Override qty field spacing in add-to-cart areas */
.product-info-main .box-tocart .field.qty,
.product-options-bottom .box-tocart .field.qty {
  padding-right: 10px !important;
}
