/** Shopify CDN: Minification failed

Line 1445:19 Unexpected "#"
Line 3195:2 Expected identifier but found "clamp("

**/
/* Wasser Furniture - Luxury Typography Only */

/* ========== TYPOGRAPHY ========== */
/* Import premium fonts: Bodoni Moda (elegant serif) and Jost (refined sans-serif) */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@200;300;400;500;600&display=swap');

/* Apply Bodoni Moda to all headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
[class*="heading"],
.product-card__title,
.collection-card__title,
.footer__heading {
  font-family: 'Bodoni Moda', serif !important;
  letter-spacing: 0.02em;
}

/* Apply Jost to body text */
body,
p,
a,
button,
input,
textarea,
select,
.body-text,
.product-card__text,
.price,
.menu-list__link,
.menu__link,
.header__menu-item {
  font-family: 'Jost', sans-serif !important;
}

/* Smooth font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== LUXURY BUTTONS ========== */
/* Premium button styling */
.button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button),
button[type="submit"]:not(.button-unstyled),
.btn:not(.button-unstyled),
.product-form__submit,
[class*="button--primary"]:not(.button-unstyled),
.cart__checkout-button {
  font-family: 'Jost', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 0 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on buttons */
.button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button)::before,
button[type="submit"]:not(.button-unstyled)::before,
.btn:not(.button-unstyled)::before,
.product-form__submit::before,
[class*="button--primary"]:not(.button-unstyled)::before,
.cart__checkout-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button):hover::before,
button[type="submit"]:not(.button-unstyled):hover::before,
.btn:not(.button-unstyled):hover::before,
.product-form__submit:hover::before,
[class*="button--primary"]:not(.button-unstyled):hover::before,
.cart__checkout-button:hover::before {
  left: 100%;
}

/* Hover effects */
.button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button):hover,
button[type="submit"]:not(.button-unstyled):hover,
.btn:not(.button-unstyled):hover,
.product-form__submit:hover,
[class*="button--primary"]:not(.button-unstyled):hover,
.cart__checkout-button:hover {
  transform: translateY(-2px);
  letter-spacing: 0.18em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Secondary buttons */
[class*="button--secondary"],
.button--secondary {
  background-color: transparent !important;
  border: 1.5px solid currentColor !important;
  box-shadow: none;
}

[class*="button--secondary"]:hover,
.button--secondary:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Mobile button adjustments */
@media screen and (max-width: 768px) {
  .button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button),
  button[type="submit"]:not(.button-unstyled),
  .btn:not(.button-unstyled),
  .product-form__submit,
  [class*="button--primary"]:not(.button-unstyled),
  .cart__checkout-button {
    padding: 12px 28px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button):hover,
  button[type="submit"]:not(.button-unstyled):hover,
  .btn:not(.button-unstyled):hover,
  .product-form__submit:hover,
  [class*="button--primary"]:not(.button-unstyled):hover,
  .cart__checkout-button:hover {
    letter-spacing: 0.15em;
  }
}

@media screen and (max-width: 480px) {
  .button:not(.button-unstyled):not(.close-button):not(.header-actions__action):not(.account-button):not(.search-modal__button),
  button[type="submit"]:not(.button-unstyled),
  .btn:not(.button-unstyled),
  .product-form__submit,
  [class*="button--primary"]:not(.button-unstyled),
  .cart__checkout-button {
    padding: 10px 24px;
    font-size: 8px;
  }
}

/* ========== LUXURY PRODUCT CARDS ========== */
/* Refined product card styling */

.product-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Image wrapper effects */
.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay on hover */
.product-card__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.product-card:hover .product-card__image-wrapper::after {
  opacity: 1;
}

/* Image zoom on hover */
.product-card__image,
.product-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image,
.product-card:hover img {
  transform: scale(1.05);
}

/* Product brand/vendor styling - subtitle above title */
.product-card__vendor,
.product-card__brand,
.product-card .vendor,
.product-card [class*="vendor"],
.product-card [class*="brand"] {
  display: block;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  margin-bottom: 4px !important;
  line-height: 1.4;
}

/* Product title styling */
.product-card__title,
.product-card .text-block p {
  font-family: 'Bodoni Moda', serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
  color: #1a1a1a !important;
  transition: letter-spacing 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__title,
.product-card:hover .text-block p {
  letter-spacing: 0.04em !important;
}

/* Price styling */
.product-card__price,
.product-card .price,
.price-block,
.price {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  color: #333 !important;
  margin-top: 6px !important;
}

/* Card lift effect */
.product-card:hover {
  transform: translateY(-6px);
}

/* Elegant separator line (optional - only appears if content has ::before) */
.product-card__content::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 12px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__content::before {
  width: 60px;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Collection cards */
.collection-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-card__image,
.collection-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-card__image,
.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card__title {
  font-family: 'Bodoni Moda', serif !important;
  letter-spacing: 0.03em;
  transition: letter-spacing 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-card__title {
  letter-spacing: 0.05em;
}

/* Mobile card adjustments */
@media screen and (max-width: 768px) {
  .product-card:hover,
  .collection-card:hover {
    transform: translateY(-4px);
  }

  .product-card:hover img,
  .collection-card:hover img {
    transform: scale(1.03);
  }
}

/* ========== LUXURY HEADER ========== */
/* Refined, elegant header styling */

/* Header base */
.header {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.header-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.header__row {
  border-bottom: none !important;
}

/* Header row spacing */
.header__row {
  min-height: auto;
  /* padding: 8px 0; */
}

/* Menu section background (bottom row) */
.header__row--bottom {
  background-color: rgb(249 247 240) !important;
}

/* Navigation menu styling */
.header__menu-item,
.menu__link,
.menu-list__link {
  font-family: 'Jost', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 10px 28px;
}

/* Menu list items - increase spacing between items */
.menu-list__list-item {
  margin: 0 8px !important;
}

/* Top-level menu item text size - larger for prominence */
.menu-list {
  --menu-top-level-font-size-desktop: 1rem !important;
  --menu-top-level-font-size: 1rem !important;
}

@media screen and (min-width: 768px) { 
  .menu-list {
    width: 200% !important;
  }
}

.menu-list__link,
.menu-list__link-title {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

@media screen and (min-width: 990px) {
  .menu-list__link,
  .menu-list__link-title {
    font-size: 1rem !important;
    font-weight: 500 !important;
  }
}

/* Elegant underline animation */
.menu-list__link-title {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.menu-list__link-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.menu-list__link:hover .menu-list__link-title::after,
.menu-list__link--active .menu-list__link-title::after {
  width: 100%;
}

/* Alternative underline for other menu items */
.header__menu-item::after,
.menu__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

@media screen and (min-width: 750px) {
  .header--collapse-row-paddings .header__row--top .header__columns {
    padding-left: 12% !important;
    padding-right: 12% !important;
  }
}

@media screen and (min-width: 750px) {
  .header--collapse-row-paddings .header__row--bottom .header__columns{
    padding-left: 12% !important;
    padding-right: 12% !important;
  }
}

.header__menu-item:hover::after,
.menu__link:hover::after {
  width: 100%;
}



/* Logo styling */
.header-logo {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-inline: auto !important;
  justify-content: center !important;
  /* padding: 8px 0; */
}

.header-logo img,
.header-logo__image {
  max-height: 140px !important;
  height: 90px !important;
  width: auto !important;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 10px 0px;
}

/* Override inline CSS custom properties for logo size */
.header-logo img[style*="--header-logo-image-height"] {
  --header-logo-image-height: 160px !important;
  --header-logo-image-width: auto !important;
}

.header-logo:hover {
  opacity: 0.75;
  transform: scale(1.02);
}

/* Center logo in header layout */
.header__columns {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 4px 0;
}

.header__column--left {
  justify-self: start;
  display: flex;
  gap: 24px;
  align-items: center;
}

.header__column--center {
  justify-self: center;
}

.header__column--right {
  justify-self: end;
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Move logo to center if it's in left column */
/* .header__column--left:has(.header-logo) {
  grid-column: 2 !important;
  justify-self: center !important;
  display: block !important;
} */

/* Ensure actions stay on the right */
.header__column--right {
  grid-column: 3 !important;
}

/* Header icons - refined hover */
.header-actions__action,
.header__icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.header-actions__action svg,
.header__icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions__action:hover,
.header__icon:hover {
  transform: translateY(-3px) scale(1.05);
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Cart icon enhancement */
.header-actions__cart-icon {
  position: relative;
}

.cart-bubble {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Jost', sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-bubble__background {
  border-width: 2px;
}

/* Search button enhancement */
.search-modal__button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal__button:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Account button enhancement - force consistent sizing with other icons */
.account-button,
.header__column--right .account-button,
.header-actions .account-button,
anchored-popover-component .account-button,
.header-actions__action.account-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  padding: 14px !important;
  box-sizing: border-box !important;
}

.account-button:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Ensure account icon SVG is aligned and sized */
.account-button__icon,
.account-button .account-button__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

.account-button__icon svg,
.account-button svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

/* Header actions wrapper - two-row layout with icons and contact info */
header-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 8px !important;
}

.header-actions__icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Hide duplicate search icon rendered outside header-actions */
.header__column--right > .search-action {
  display: none !important;
}

/* Search icon inside header-actions icons */
.header-actions__icons .search-action {
  display: flex;
}

.header-actions__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.header-actions__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-actions__contact-item:hover {
  opacity: 1;
  letter-spacing: 0.08em;
}

.header-actions__contact-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.header-actions__contact-item:hover svg {
  opacity: 1;
}

.header-actions__contact-label {
  font-weight: 500;
  color: #333;
}

.header-actions__contact-value {
  font-weight: 600;
}

.header-actions__contact-divider {
  color: #666;
  font-weight: 400;
}

/* Hide contact info on mobile */
@media screen and (max-width: 749px) {
  .header-actions__contact {
    display: none;
  }
}

/* Align account popover wrapper */
.account-popover {
  display: flex;
  align-items: center;
}

/* Ensure all wrappers in right column are aligned */
.header__column--right > * {
  display: flex;
  align-items: center;
}

/* SVG wrapper styling */
.svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.svg-wrapper svg {
  width: 100%;
  height: 100%;
}

.header-actions__action:hover svg,
.header__icon:hover svg {
  transform: scale(1.1);
}

/* Sticky header refinement */
.header[data-sticky-state="active"] {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* Compact menu items when sticky */
.header[data-sticky-state="active"] .menu-list__link {
  padding: 8px 14px;
}

/* Ensure smooth transition on the header itself */
.header {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header[data-sticky-state="active"] {
  padding: 0;
}

/* Announcement bar styling */
.announcement-bar {
  font-family: 'Jost', sans-serif !important;
  letter-spacing: 0.12em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 14px 0;
  background-color: rgba(0, 0, 0, 0.01);
}

.announcement-bar__text {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* Mobile drawer menu */
.menu-drawer__menu-item {
  font-family: 'Jost', sans-serif !important;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-drawer__menu-item:hover {
  letter-spacing: 0.08em;
  padding-left: 4px;
}

/* Hamburger menu icon hover */
.header__icon--menu:hover {
  transform: scale(1.1);
}

/* Mobile header adjustments */
@media screen and (max-width: 749px) {
  .menu-list__link,
  .header__menu-item,
  .menu__link {
    letter-spacing: 0.12em;
  }

  .announcement-bar__text {
    font-size: 10px;
  }

  .header-logo img, .header-logo__image{
    transform: translate(-28%, 0%);
  }

  .product-details__content .product-details__panel{
    margin: 0 20px;
  }
  .grid.main-collection-grid{
    margin: 0 15px;
  }

  .facets__form,
  .facets__actions{
    background: #fff;
  }
  h3, .h3, .h3.h3, .text-block.h3 > *{
    font-size: 1.5rem;
  }
  .button.facets-drawer__close.button-unstyled.close-button {
    width: 20px;
    height: 20px;
    margin: 12px;
  }

  iframe {
    width: 100%;
  }
}

/* ========== LUXURY FORM STYLING ========== */
/* Refined form inputs with elegant borders */

input[type="text"]:not([class*="search"]):not([name*="search"]):not([id*="search"]),
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select,
.form-input:not([class*="search"]),
.field__input:not([class*="search"]),
.customer input,
.customer textarea,
.customer select {
  border: 1px solid rgba(0, 0, 0, .6) !important;
  border-radius: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input[type="text"]:not([class*="search"]):not([name*="search"]):not([id*="search"]):focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus,
.form-input:not([class*="search"]):focus,
.field__input:not([class*="search"]):focus,
.customer input:focus,
.customer textarea:focus,
.customer select:focus {
  border-color: #000 !important;
  outline: none !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Checkbox and Radio styling */
input[type="checkbox"],
input[type="radio"] {
  border: 1px solid rgba(0, 0, 0, .6) !important;
  border-radius: 0 !important;
}

/* Select dropdown arrow styling */
select {
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="rgba(0,0,0,0.6)"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 36px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Login page specific styling */
.luxury-account-page .form-input,
.customer .field__input {
  border: 1px solid rgba(0, 0, 0, .6) !important;
}

.luxury-account-page .form-input:focus,
.customer .field__input:focus {
  border-color: #000 !important;
}

/* Button borders for secondary/outline buttons */
.btn-cancel,
.button-secondary,
.btn-outline,
[class*="button--secondary"] {
  border: 1px solid rgba(0, 0, 0, .6) !important;
}

.btn-cancel:hover,
.button-secondary:hover,
.btn-outline:hover,
[class*="button--secondary"]:hover {
  border-color: #000 !important;
}

/* Box label styling (variant selectors, options) */
.box__label {
  border: 1px solid rgba(0, 0, 0, .6) !important;
  padding: 8px 16px !important;
  font-size: 0.75rem !important;
}

.box__label:hover {
  border-color: #000 !important;
}

.box__input:checked + .box__label,
.box__label.selected,
.box__label.active,
.box__label[aria-checked="true"] {
  border-color: #000 !important;
  border-width: 1px !important;
}

/* ========== LUXURY SPACING ========== */
/* Refined spacing for specific elements */

/* Page widths - wider, more spacious layout */
.page-width {
  max-width: 1800px;
  padding-left: 80px;
  padding-right: 80px;
}

/* Section heights - generous vertical breathing room */
/* .section:not(.header__row):not(.header-section) {
  padding-top: 100px;
  padding-bottom: 100px;
} */

/* Grid gaps - comfortable spacing between items */
.grid {
  gap: 40px;
}

/* Form spacing - comfortable, refined inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  padding: 16px 12px;
  margin-bottom: 20px;
}

/* Paragraph spacing - readable, elegant */
p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Footer spacing - luxurious, well-structured */
.shopify-section-group-footer-group,
.shopify-section-group-footer-group .section-background,
.shopify-section-group-footer-group .section {
  background: linear-gradient(135deg, #f5f1ed 0%, #e8e3dc 100%) !important;
  background-color: #f5f1ed !important;
}

.footer,
.site-footer,
footer[role="contentinfo"] {
  padding: 80px 0 50px !important;
  background: transparent !important;
  position: relative;
  border-top: none !important;
}

.footer::before,
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 119, 101, 0.2), transparent);
}

.footer__heading,
.site-footer .footer__heading,
.site-footer h4 {
  margin-bottom: 24px;
  color: #5a4a3a !important;
  font-family: 'Bodoni Moda', serif !important;
}

.footer__list {
  margin-bottom: 32px;
}

.footer a,
.site-footer a {
  color: #6b5b4a !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer a:hover,
.site-footer a:hover {
  color: #3a2a1a !important;
  letter-spacing: 0.05em;
}

.footer__copyright,
.footer__text,
.site-footer .footer__copyright,
.site-footer .footer__text,
.site-footer p {
  color: #7a6a5a !important;
}

/* Footer logo styling */
.site-footer .footer-logo img,
.footer-logo img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(90, 74, 58, 0.15));
}

.site-footer .footer-logo img:hover,
.footer-logo img:hover {
  transform: scale(1.03) translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(90, 74, 58, 0.25));
}

/* Footer layout - container and columns */
.footer-top {
  width: 100%;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--page-content-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--page-margin, 40px);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col.footer-logo {
  justify-content: flex-start;
}

.footer-col.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  text-decoration: none;
  font-size: 0.9rem;
}

/* Footer mobile responsive */
@media screen and (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media screen and (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col.footer-logo {
    align-items: center;
  }

  .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile spacing adjustments */
@media screen and (max-width: 768px) {
  .page-width {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section:not(.header__row):not(.header-section) {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid {
    gap: 32px;
    row-gap: 48px;
  }

  .footer {
    padding: 50px 0 30px;
  }

  .footer__heading {
    margin-bottom: 16px;
  }

  p {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .page-width {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section:not(.header__row):not(.header-section) {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .grid {
    gap: 24px;
    row-gap: 40px;
  }
}

/* Tablet spacing (769px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-width {
    padding-left: 60px;
    padding-right: 60px;
  }

  .grid {
    gap: 0px;
  }

  .product-details__content .product-details__panel{
    margin: 0 20px;
  }
}

/* ========== STATIC PAGE LAYOUT ========== */
/* Contained layout for static pages */

.page-width-content {
  --page-content-width: 1200px !important;
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2)) !important;
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page-width-content {
    --page-content-width: 900px !important;
  }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .page-width-content {
    --page-content-width: 100% !important;
  }
}

/* ========== SLIDESHOW FULL HEIGHT ========== */
/* Make slideshow occupy 80% of viewport height */

.section--full-width slideshow-component,
.section--full-width slideshow-container,
.section--full-width .slideshow {
  min-height: 80vh !important;
  height: 80vh !important;
}

.section--full-width slideshow-component .group-block-content,
.section--full-width slideshow-component .layout-panel-flex,
.section--full-width slideshow-component .layout-panel-flex--column,
.section--full-width slideshow-component .mobile-column {
  min-height: 80vh !important;
  height: 80vh !important;
}

.section--full-width slideshow-component .media,
.section--full-width slideshow-component .media-wrapper,
.section--full-width slideshow-component picture,
.section--full-width slideshow-component img,
.section--full-width slideshow-component video {
  min-height: 80vh !important;
  height: 80vh !important;
  object-fit: cover !important;
}

/* Override section height classes for slideshow */
.section--full-width:has(slideshow-component) {
  --section-min-height: 80vh !important;
  min-height: 80vh !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ========== REQUEST FOR QUOTE BUTTON ========== */
/* Luxurious grey gradient styling for Request for Quote button */

a[class*="button"][aria-disabled="true"],
.button[aria-disabled="true"],
a.button:contains("Request"),
[class*="button"]:has-text("Quote") {
  background: #5a5a5a !important;
  color: #fff !important;
  border: none !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* Target Request for Quote button specifically */
a.button[aria-disabled="true"],
.button--request-quote,
a[class*="button--"]:not([href]),
.product-form a.button[aria-disabled="true"] {
  background: linear-gradient(135deg, #6b6b6b 0%, #4a4a4a 50%, #5a5a5a 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  box-shadow:
    0 4px 20px rgba(90, 90, 90, 0.35),
    0 8px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Elegant shimmer effect */
a.button[aria-disabled="true"]::before,
.button--request-quote::before,
a[class*="button--"]:not([href])::before,
.product-form a.button[aria-disabled="true"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

a.button[aria-disabled="true"]:hover::before,
.button--request-quote:hover::before,
a[class*="button--"]:not([href]):hover::before,
.product-form a.button[aria-disabled="true"]:hover::before {
  left: 100%;
}

a.button[aria-disabled="true"]:hover,
.button--request-quote:hover,
a[class*="button--"]:not([href]):hover,
.product-form a.button[aria-disabled="true"]:hover {
  background: linear-gradient(135deg, #7a7a7a 0%, #5a5a5a 50%, #6b6b6b 100%) !important;
  box-shadow:
    0 8px 30px rgba(90, 90, 90, 0.45),
    0 12px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-3px);
  letter-spacing: 0.25em;
}

/* ========== PRODUCT DETAILS LUXURY STYLING ========== */
/* Enhanced product page details for luxury furniture */

/* Product Details Content - Remove padding (exclude luxury tabs section) */
.product-details > .group-block .product-details__content {
  padding: 0 !important;
}

/* Main Content Spacing - space between header and content */
/* Exclude home page (index template) to avoid gap with sliders */
#MainContent:not([data-template="index"]),
main#MainContent:not([data-template="index"]) {
  margin-top: 20px;
}

/* ========== COMPACT COLLECTION PAGE SPACING ========== */
/* Reduce spacing between header and collection title */
.collection-header,
.collection-hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Collection title section - remove bottom padding */
.section-content-wrapper:has(h1),
.layout-panel-flex:has(h1) {
  padding-bottom: 0 !important;
  --padding-block-end: 0 !important;
}

/* Collection title text block */
.text-block:has(h1) {
  padding-bottom: 0 !important;
  --padding-block-end: 0 !important;
}

/* Collection title spacing */
.collection-header__title,
.collection-hero__title,
.collection h1 {
  margin-bottom: 8px !important;
  padding-bottom: 0 !important;
}

/* Reduce spacing between title/description and sort/filter section */
.facets-container,
.facets-wrapper,
.collection-filters {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Sort section compact */
.facets-header,
.collection-sort,
.facets__header {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  margin-bottom: 16px !important;
}

/* Reduce gap between sort/filter and product grid */
.collection-product-list,
.product-grid-container,
.collection-products {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Product grid section */
.collection .product-grid,
.collection-product-list .product-grid {
  margin-top: 16px !important;
}

/* Force 4 products per row on desktop */
.product-grid,
.collection .product-grid,
.collection-product-list .product-grid {
  --columns-desktop: 4 !important;
  --columns: 4 !important;
}

@media screen and (min-width: 990px) {
  .product-grid,
  .collection .product-grid,
  .collection-product-list .product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* 3 columns on tablet */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .product-grid,
  .collection .product-grid,
  .collection-product-list .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    --columns: 3 !important;
  }
}

/* 2 columns on mobile */
/* @media screen and (max-width: 749px) {
  .product-grid, 
  .collection .product-grid,
  .collection-product-list .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    --columns: 2 !important;
  }
} */

/* Product Information Grid Enhancement */
.product-information__grid {
  gap: 64px;
}

@media screen and (min-width: 1200px) {
  .product-information__grid {
    gap: 32px;
  }
}

/* Luxury Product Title */
.product-information h1,
.product-details h1 {
  font-family: 'Bodoni Moda', serif !important;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* Product Price Luxury Styling */
.product-information .price,
.product-details .price {
  font-family: 'Jost', sans-serif !important;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  margin: 16px 0 24px;
}

/* Product description contact link → opens Podium chat */
.js-podium-contact #podium-website-widget-launcher {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.js-podium-contact ##podium-website-widget-launcher:hover {
  opacity: 0.75;
}

.product-details__podium-contact--theme {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

.product-details__podium-contact--theme[hidden] {
  display: none;
}

#podium-website-widget-button.podium-button--highlighted {
  outline: 3px solid #65533d !important;
  outline-offset: 4px !important;
  animation: podium-pulse 0.8s ease-in-out 2;
}

@keyframes podium-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* Variant Picker Luxury Styling */
.variant-picker {
  margin: 24px 0;
}

.variant-picker__label {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-foreground);
  opacity: 0.8;
}

/* Variant Option Sections - spacing between option groups */
.variant-option {
  margin-bottom: 34px !important;
}

.variant-option:last-child {
  margin-bottom: 0 !important;
}

/* Variant option header/label */
.variant-option__header {
  margin-bottom: 12px;
}

.variant-option__label {
  display: flex !important;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground);
}

.variant-option__name {
  flex-shrink: 0;
}

.variant-option__selected {
  font-weight: 500 !important;
  font-size: 1rem;
  color: #65533d !important;
  letter-spacing: 0.05em !important;
  opacity: 1 !important;
  font-style: italic;
  text-align: left;
  text-transform: none;
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
  overflow: visible;
}

/* Variant buttons container */
.variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Individual variant button */
.variant-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.variant-button:hover {
  border-color: var(--color-foreground);
}

.variant-button--selected,
.variant-button.selected {
  border-color: var(--color-foreground) !important;
  background: var(--color-foreground);
  color: var(--color-background, #fff);
}

.variant-button__label {
  font-family: 'Jost', sans-serif !important;
}

/* ========== SWATCH STYLING ========== */
/* Individual swatch spacing - use margin since container may be display:block */
.swatch {
  margin: 8px !important;
  display: inline-block !important;
}

/* Remove circular background from swatch label when it has an image */
.swatch.swatch--color:has(.swatch__visual--image) {
  background: none !important;
  border-radius: 0 !important;
}

/* Make sure the image swatch displays as square */
.swatch__visual--image {
  border-radius: 4px !important;
}

/* Luxury Divider Lines */
.product-details ._divider {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  height: 1px;
  margin: 32px 0;
}

/* Trust Badge Styling */
.product-trust-badges {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Made In Badge - Premium Highlight */
.made-in-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f8f6f3 0%, #ede9e3 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  margin: 16px 0;
}

.made-in-badge__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground);
  opacity: 0.6;
}

.made-in-badge__value {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground);
}

/* Luxury Accordion Animation */
.accordion--luxury .icon-caret {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion--luxury details[open] .icon-caret {
  transform: rotate(180deg);
}

/* Product Media Gallery Enhancement */
.product-information__media {
  position: relative;
}

.product-information__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

/* ========== LUXURY PRODUCT GALLERY ========== */
/* Large main image with elegant thumbnail slider */

/* Main Gallery Container */
.product-media-gallery {
  position: relative;
  width: 100%;
}

/* Force carousel presentation for luxury gallery */
.product-media-gallery__slideshow {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

/* Main Image Styling */
.product-media-gallery__slideshow .product-media {
  position: relative;
  background: #fafafa;
  border-radius: 4px;
  overflow: hidden;
}

.product-media-gallery__slideshow .product-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-media-gallery__slideshow .product-media:hover img {
  transform: scale(1.02);
}

/* Thumbnail Container Styling */
.product-media-gallery__thumbnails,
.slideshow__controls--thumbnails {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding: 8px 0;
}

/* Thumbnail List Container */
.product-media-gallery__thumbnails-list,
.slideshow-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Hide scrollbar but keep functionality */
.product-media-gallery__thumbnails-list::-webkit-scrollbar,
.slideshow-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-media-gallery__thumbnails-list::-webkit-scrollbar-track,
.slideshow-thumbnails::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.product-media-gallery__thumbnails-list::-webkit-scrollbar-thumb,
.slideshow-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.product-media-gallery__thumbnails-list::-webkit-scrollbar-thumb:hover,
.slideshow-thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Individual Thumbnail Styling */
.product-media-gallery__thumbnail,
.slideshow-thumbnail {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f8f8;
}

.product-media-gallery__thumbnail img,
.slideshow-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Thumbnail Hover Effect */
.product-media-gallery__thumbnail:hover,
.slideshow-thumbnail:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-media-gallery__thumbnail:hover img,
.slideshow-thumbnail:hover img {
  transform: scale(1.05);
}

/* Active Thumbnail */
.product-media-gallery__thumbnail--active,
.slideshow-thumbnail--active,
.slideshow-thumbnail[aria-current="true"] {
  border-color: var(--color-foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Thumbnail Navigation Arrows */
.thumbnail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-nav:hover {
  background: var(--color-foreground);
  border-color: var(--color-foreground);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.thumbnail-nav:hover svg {
  stroke: white;
}

.thumbnail-nav--prev {
  left: -18px;
}

.thumbnail-nav--next {
  right: -18px;
}

.thumbnail-nav svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-foreground);
  transition: stroke 0.3s ease;
}

/* Force thumbnail position to bottom for luxury layout */
.slideshow__controls--thumbnails[data-position="left"],
.slideshow__controls--thumbnails[data-position="right"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-top: 16px !important;
}

/* Zoom Button Enhancement */
.product-media__zoom-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  opacity: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-media:hover .product-media__zoom-button {
  opacity: 1;
}

.product-media__zoom-button:hover {
  background: var(--color-foreground);
  border-color: var(--color-foreground);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.product-media__zoom-button:hover svg {
  stroke: white;
}

/* Media Type Badges */
.product-media__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Large Screen Optimizations */
@media screen and (min-width: 1200px) {
  .product-media-gallery__thumbnail,
  .slideshow-thumbnail {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
  }

  .product-media-gallery__thumbnails-list,
  .slideshow-thumbnails {
    gap: 16px;
  }
}

/* Tablet Adjustments */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-media-gallery__thumbnail,
  .slideshow-thumbnail {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
  }
}

.variant-button:hover .variant-button__label {
  background: #000 !important;
  color: #fff !important;
}

/*** Brand card display ***/
.brands-filter-bar {
  max-width: 100%;
  margin: 40px auto 40px;
  text-align: center;
}

#brandSearch {
  width: 100%;
  max-width: 60%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.brand-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.brand-letters button {
  padding: 6px 12px;
  border: 1px solid #0f0f0f;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
  color: #000;
}

.brand-letters button:hover,
.brand-letters button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.brand-group {
  margin-bottom: 60px;
}

.brand-letter-heading {
  font-size: 28px;
  margin-bottom: 20px;
}

.brand-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.brand-card {
  border: 1px solid #eee;
  background: #fff;
  text-align: center;
  padding: 20px;
  transition: all .3s ease;
}

.brand-card img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
}

.brand-card span {
  font-size: 14px;
  letter-spacing: .04em;
}

.brand-card:hover {
  box-shadow: 0 2px 15px #0000001f;
  transform: translateY(-4px);
}

.brand-letters button.disabled {
  pointer-events: none;
  background: #ececec;
  color: #4a4a4a;
  border: 0;
}

.brand-hero {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px;
}

.brand-hero__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.brand-hero__content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 25px;
  align-items: center;
}

.brand-hero__logo img {
  max-width: 200px;
  height: auto;
}

.brand-hero__description {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  max-width: 750px;
}


/* Mobile Gallery Adjustments */
@media screen and (max-width: 767px) {
  .product-media-gallery__thumbnail,
  .slideshow-thumbnail {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }

  .product-media-gallery__thumbnails-list,
  .slideshow-thumbnails {
    gap: 8px;
  }

  .product-media__zoom-button {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }

  .thumbnail-nav {
    display: none; /* Hide arrows on mobile, rely on swipe */
  }

  .brand-hero__content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .brand-hero__logo {
    margin: 0 auto;
  }
}

/* Mobile Luxury Adjustments */
@media screen and (max-width: 767px) {
  .product-information h1,
  .product-details h1 {
    font-size: 2rem;
  }

  .product-information .price,
  .product-details .price {
    font-size: 1.25rem;
  }

  .product-information__grid {
    gap: 40px;
  }
}

/* Tablet Luxury Adjustments */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .product-information h1,
  .product-details h1 {
    font-size: 2.25rem;
  }

  .product-information__grid {
    gap: 26px !important;
  }

  .variant-option__selected {
    font-size: 0.9rem;
  }
}

/* ========== LUXURY ABOUT US PAGE ========== */
/* Elegant styling for About Us content */

.address_iframe{
  margin-top: 5rem;
}

.about-text {
  max-width: 900px;
  padding: 40px 20px;
  text-align: left;
}

.about-text .sub-title,
.tothetrade .sub-title {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-foreground);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.about-text .sub-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--color-foreground);
}

.about-text p {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--color-foreground);
  opacity: 0.85;
  margin-bottom: 28px;
}

.about-text h4 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-foreground);
  margin-top: 24px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.about-text h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.about-text .page_link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-foreground);
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid var(--color-foreground);
  margin-right: 16px;
  margin-top: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-text .page_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-foreground);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.about-text .page_link:hover {
  color: var(--color-background, #fff);
  letter-spacing: 0.15em;
}

.about-text .page_link:hover::before {
  left: 0;
}

/* Divider between links */
.about-text > a + a::before {
  content: none;
}

.availability--call {
  color: #2e7d32;
  font-weight: 600;
}

.quick-add__button.quick-add__button--choose{
  display: none !important;
}

/* Mobile adjustments for About page */
@media screen and (max-width: 768px) {
  .about-text {
    padding: 40px 24px;
  }

  .about-text .sub-title {
    font-size: 1.25rem;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-text h4 {
    font-size: 1.2rem;
    margin-top: 36px;
  }

  .about-text .page_link {
    display: block;
    text-align: center;
    margin-right: 0;
    margin-bottom: 12px;
  }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-text {
    padding: 50px 32px;
  }

  .about-text .sub-title {
    font-size: 1.35rem;
  }
}

/* ========== LUXURY PRIVACY POLICY PAGE ========== */
/* Elegant, readable styling for legal/policy pages */

.column.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  color: var(--color-foreground, #1a1a1a);
}

/* Headings with elegant vertical accent */
.column.main h4, .column.main h3  {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-foreground, #1a1a1a);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.column.main h4::before, .column.main h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg, var(--color-foreground, #1a1a1a) 0%, transparent 100%);
  border-radius: 2px;
}

.column.main h4:first-child, .column.main h3:first-child {
  margin-top: 0;
}

.column.main h3{
  font-size: 1.5rem;
}

/* Paragraphs */
.column.main p {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-foreground, #1a1a1a);
  opacity: 0.85;
  margin-bottom: 20px;
}

/* Links within content */
.column.main a {
  color: var(--color-foreground, #1a1a1a);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.column.main a:hover {
  border-bottom-color: var(--color-foreground, #1a1a1a);
  opacity: 0.7;
}

/* Styled Lists */
.column.main ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.column.main ul li {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-foreground, #1a1a1a);
  opacity: 0.85;
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.column.main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--color-foreground, #1a1a1a);
  border-radius: 50%;
  opacity: 0.5;
}

/* Elegant Data Table for Cookies */
.column.main .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: 'Jost', sans-serif;
}

.column.main .data-table thead {
  background: var(--color-foreground, #1a1a1a);
}

.column.main .data-table thead th {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-background, #fff);
  padding: 16px 20px;
  text-align: left;
  border: none;
}

.column.main .data-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease;
}

.column.main .data-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.column.main .data-table tbody td {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-foreground, #1a1a1a);
  padding: 16px 20px;
  vertical-align: top;
  opacity: 0.9;
}

.column.main .data-table tbody td:first-child {
  font-weight: 500;
  opacity: 1;
}

/* Cookie name styling */
.column.main .data-table code,
.column.main .data-table .cookie-name {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Duration/expiry styling */
.column.main .data-table .duration {
  font-size: 0.85rem;
  opacity: 0.7;
  white-space: nowrap;
}

/* Mobile adjustments for Privacy Policy */
@media screen and (max-width: 768px) {
  .column.main {
    padding: 40px 24px;
  }

  .column.main h4 {
    font-size: 1.2rem;
    margin-top: 36px;
    padding-left: 16px;
  }

  .column.main p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .column.main ul li {
    font-size: 0.95rem;
    padding-left: 24px;
  }

  /* Responsive table */
  .column.main .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .column.main .data-table thead th,
  .column.main .data-table tbody td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .column.main .data-table thead th {
    font-size: 0.7rem;
  }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .column.main {
    padding: 50px 32px;
  }

  .column.main h4 {
    font-size: 1.3rem;
  }
}

/* ========== LUXURY FILTER / FACETS STYLING ========== */
/* Elegant filter sidebar for collection pages */

.facets-block-wrapper {
  font-family: 'Jost', sans-serif;
}

/* Facets Container */
.facets,
.facets--vertical {
  background: transparent;
  border: none;
}

/* Individual Facet Items */
.facets__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
}

.facets__item:last-child {
  border-bottom: none;
}

/* Facet Panel/Accordion */
.facets__panel {
  border: none;
  background: transparent;
}

/* Facet Summary (Header) */
.facets__summary {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground);
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.facets__summary:hover {
  opacity: 0.7;
}

/* Facet Label */
.facets__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Caret Icon Animation */
.facets__summary .icon-caret {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.facets__panel[open] .facets__summary .icon-caret {
  transform: rotate(180deg);
}

/* Facet Content Panel */
.facets__panel-content,
.facets__inputs {
  padding: 6px 0 20px 0;
  background: transparent;
}

/* Checkbox Styling */
.facets__inputs-list {
  margin: 0;
  padding: 0;
}

.facets__inputs-list-item {
  margin-bottom: 12px;
}

.facets__inputs-list-item:last-child {
  margin-bottom: 0;
}

/* Custom Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-foreground);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 32px;
}

.checkbox__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  transition: all 0.2s ease;
}

.checkbox__label:hover::before {
  border-color: var(--color-foreground);
}

.checkbox__input:checked + .checkbox__label::before {
  background: var(--color-foreground);
  border-color: var(--color-foreground);
}

.checkbox__label .icon-checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  color: var(--color-background, #fff);
  transition: opacity 0.2s ease;
  padding: 2px;
}

.checkbox__input:checked + .checkbox__label .icon-checkmark {
  opacity: 1;
}

.checkbox__label-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Disabled state */
.checkbox__input:disabled + .checkbox__label {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Price Facet Styling */
.price-facet {
  padding: 8px 0;
}

.price-facet__inputs-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Fix price filter inputs being too small due to flex-direction: row override */
.facets__inputs-wrapper--row.price-facet__inputs-wrapper {
  flex-direction: row !important;
}

.facets__inputs-wrapper--row .price-facet__field {
  width: auto !important;
  flex: 1 !important;
  min-width: 80px !important;
}

.price-facet__field {
  flex: 1;
  position: relative;
}

.price-facet__input {
  width: 100%;
  padding: 14px 14px 14px 28px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.2s ease;
  min-height: 48px;
}

.price-facet__input:focus {
  border-color: var(--color-foreground) !important;
  outline: none;
}

.price-facet__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.price-facet__label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.price-facet__separator {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.5);
  text-transform: lowercase;
}

.price-facet__highest-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 12px;
}

/* Facet Status (selected count) */
.facets__status {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.5);
  margin-right: 8px;
}

/* Facet Actions / See Results Button */
.facets__actions {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 16px;
}

.facets__see-results {
  width: 100%;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 14px 24px !important;
}

/* Remove/Clear Filters */
.facets-remove {
  padding: 16px 0;
}

.facets-remove a,
.facets-remove button {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground);
  opacity: 0.6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.facets-remove a:hover,
.facets-remove button:hover {
  opacity: 1;
  border-bottom-color: var(--color-foreground);
}

/* Mobile Facets Adjustments */
@media screen and (max-width: 749px) {
  
  .facets__summary {
    padding: 16px 0;
  }

  .facets__label {
    font-size: 0.7rem;
  }

  .checkbox__label-text {
    font-size: 0.85rem;
  }

  .price-facet__input {
    padding: 12px 12px 12px 24px !important;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .section--full-width slideshow-component .group-block-content, .section--full-width slideshow-component .layout-panel-flex, .section--full-width slideshow-component .layout-panel-flex--column, .section--full-width slideshow-component .mobile-column {
    min-height: 40vh !important;
    height: 40vh !important;
  }
  .section--full-width slideshow-component, .section--full-width slideshow-container, .section--full-width .slideshow {
    min-height: auto !important;
    height: auto !important;
  }
  .section--full-width:has(slideshow-component) {
    --section-min-height: 40vh !important;
    min-height: 40vh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, [class*="heading"], .product-card__title, .collection-card__title, .footer__heading {
    font-size: 1.5rem;
  }
  .footer, .site-footer, footer[role="contentinfo"] {
    padding: 20px 0 20px !important;
  }
  .section:not(.header__row):not(.header-section) {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-col.footer-logo img {
    max-width: 160px;
  }
  .header-actions__icons{
    gap: 0px;
  }
  .header-actions__action, .header__icon{
    width: 42px;
    height: 42px;
    padding: 8px;
  }
  .header-actions__action .search-modal__button{
    height: 52px;
    width: 52px;
  }
  .footer-content{
    padding: 10px 0;
  }
  .email-signup__input:has(+ .email-signup__button--arrow.email-signup__button--integrated) {
    padding: 10px;
    margin-bottom: 0;
  }
  .product-card__title, .product-card .text-block p{
    font-size: .888rem !important;
  }

  .section--full-width:has(slideshow-component) {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .section--full-width:has(slideshow-component) slideshow-component {
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 16 / 9;
  }

  .section--full-width:has(slideshow-component) img,
  .section--full-width:has(slideshow-component) video {
    height: 100% !important;
    object-fit: cover;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu-item--mainlist span{
    font-size: 1rem;
  }

  #brandSearch{
    width: 100%;
    max-width: 100%;
  }

  .sorting-filter__container .icon.icon-caret{
    display: none;
  }

  .sorting-filter__container .facets__label {
    font-size: 1.3rem;
  }

  .menu-drawer__menu-item--mainlist .menu-drawer__menu-item-text.wrap-text {
    font-size: 18px;
  }

  .menu-drawer__menu-item--parent .menu-drawer__menu-item-text.wrap-text {
    font-size: 16px;
  }

  .menu-drawer__menu--grandchildlist .menu-drawer__menu-item-text.wrap-text {
    font-size: 14px;
  }

  #shopify-section-template--20985389056243__custom_liquid_qVnwWm .pinterest_img {
    width: 40% !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) { 
  .header-actions__contact{
    flex-direction: column;
  }
  .header-actions__contact-divider{
    display: none !important;
  }
  .section-content-wrapper > deferred-media {
    --size-style-aspect-ratio: 21/9; /* flatter video */
  }
  .section-content-wrapper iframe {
    max-height: 280px;
  }
  .collection .product-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    --columns: 1;
  }
}
/* ========== SHOPIFY FORMS TWO-COLUMN LAYOUT ========== */
/* Style the Shopify Forms app to display in two columns */

/* Target the form container - increase max width for two columns */
[data-form-root="true"] {
  --inline-container-max-width: 900px !important;
  --container-max-w: 900px !important;
}

/* Target the form fieldset to use CSS grid for two columns */
shopify-forms-embed::part(form),
[data-form-root] form[data-testid="form"],
._formFieldset_cit2d_82 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px 24px !important;
}

/* Make certain fields span full width */
shopify-forms-embed::part(submit-button),
[data-form-root] button[type="submit"],
._formSubmitButton_cit2d_96 {
  grid-column: 1 / -1 !important;
}

/* Inject styles into Shadow DOM via adoptedStyleSheets workaround */
/* Since Shadow DOM blocks external CSS, we use a script approach */

/* That's it! Luxury typography + buttons + cards + header + spacing + product details applied to your existing theme */
.cart-drawer{
  display: none !important;
}

.call-availability {
  padding-top: 15px;
  margin-top: 0;
}

/* PDP: Request a Quote + Add to Wishlist — 2-column grid row */
.pdp-cta-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 12px;
  box-sizing: border-box;
}

.pdp-cta-row__col {
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  display: flex !important;
  align-items: stretch !important;
}

.product-details .group-block-content:has([data-pdp-cta-row]) {
  display: block !important;
  width: 100% !important;
}

.product-details .group-block-content:has([data-pdp-cta-row]) > [id^='shopify-block-']:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.pdp-cta-row .request-quote-btn {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  display: block !important;
  box-sizing: border-box;
}

.pdp-cta-row__wishlist,
.pdp-cta-row__wishlist > [id^='shopify-block-'],
.pdp-cta-row__wishlist > .shopify-app-block,
.pdp-cta-row__wishlist > div {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.pdp-cta-row [class*='wishlist-hero'] button,
.pdp-cta-row .shopify-app-block button,
.pdp-cta-row .wishlist-hero-custom-button,
.pdp-cta-row a[class*='wishlist'],
.pdp-cta-row .pdp-wishlist-btn {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  box-sizing: border-box !important;
}

.product-details .custom-liquid-block--pdp-cta,
.product-details [id^='shopify-block-']:has(.pdp-cta-row) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.product-details [id*='wishlist_hero_custom_product_button'] {
  display: none !important;
}

.pdp-wishlist-btn-wrap .wishlisthero-floating {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
}

.variant-option .variant-swatches {
  gap: 32px !important;
  margin: 0 !important;
  width: 100% !important;
}

.variant-swatches  .swatch{
  margin: 0 !important;
}

.page-about-text .page_btn a:hover{
  color: #fff;
}

.grouped-swatches__group{
  gap: 30px !important;
}


.page-about-text .page_btn a:hover{
  color: #fff;
}

/* Hide add-to-cart elements - Request Quote only flow */
.product-details .buy-buttons,
.product-details product-form-component,
.product-details [data-type="add-to-cart-form"],
.product-details .quantity-selector,
.product-details [data-add-to-cart],
.product-details .shopify-payment-button,
.product-details .accelerated-checkout,
.product-details form[action*="/cart/add"] > button[type="submit"],
.product-details form[action*="/cart/add"] > .button {
  display: none !important;
}

.swatch__visual {
  width: 54px !important;
  height: 54px !important;
}
.facets__form-wrapper .facets__filters-wrapper {
  background-color: #fff;
}
.facets-block-wrapper .facets__actions {
  background-color: #fff;
}
#shopify-section-template--22049067204851__1764786243fb651cae {
  max-width: 1050px;
  margin: 0 auto;
}
.mega-menu__grid {
  overflow-x: auto;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;
}

/* Mobile Facets Adjustments */
@media screen and (max-width: 749px) {
  .variant-option .variant-swatches {
    width: 100% !important;
    gap: 36px !important;
  }
}

/*** New Home page Layout ***/
/*** New Layout ***/
.size-style.button-secondary.button-secondary--ASEt3aVlDdDV1TlIwN__button_YPh47k{
  border-radius: 0;
  padding: 11px 15px;
  background: #111111b2;
  border: 0 !important;
  font-weight: 400;
}

#shopify-section-template--22049066746099__collection_list_MH4Dg8 .collection-card__content .text-block p {
  color: #fff;
  text-transform: uppercase;
  font-family: Louize Display !important;
  letter-spacing: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  padding-bottom: 0.25em;
  font-weight: 500;
}
#shopify-section-template--22049066746099__collection_list_MH4Dg8{
  background-color: #F9F4EB;
}

#Hero-template--22049066746099__hero_6GHCVr .text-block--ATnIrVUlRQjJhNUNhN__text_wCpDTV p{
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-family: Louize Display !important;
  font-weight: 600;
  letter-spacing: 0;
  padding-bottom: 0px;
  margin-top: 20px;
  line-height: 0.9em;
  text-wrap: balance;
  text-transform: none;
}
#Hero-template--22049066746099__hero_6GHCVr .text-block--AVXpVdlp6eXBuYnUxV__text_8J6AyR p{
  font-family: Louize Display !important;
  font-weight: 400;
  font-size: 18px;
}
#Hero-template--21638132695283__hero_6GHCVr .button--AVGxTVTdQYy9YTllvK__button_KacC4a:hover,
#Hero-template--21638132695283__hero_pFUBTr .button--AT1NvMXBrRmhZTzRnT__button_dfQWUw:hover{
  background: #fff;
  color: #000;
  transform: none;
  letter-spacing: .15em;
}
.brand-carousel-heading{
  font-family: Louize Display,serif !important;
  clamp(2.75rem, 5.6vw, 3.5rem);
}

/* Hero secondary button – outline on dark background (e.g. "Book a Design Consultation") */
.hero .button-secondary,
.hero [class*="button-secondary"],
.hero a[class*="button"].button-secondary {
  background: #0b0b0b73 !important;
  border: 1px solid #fff !important;
  color: #fff !important;
  box-shadow: none !important;
}
/*** Footer Hours ***/
.opening-hours .row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .9rem;
  margin-bottom: 8px;
}

.opening-hours .label {
  min-width: 90px;
  color: #7a6a5a !important;
}

.opening-hours .value {
  white-space: nowrap;
  color: #7a6a5a !important;
}

.product-details__price-fallback .price {
  font-size: 1.05rem !important;
  font-weight: 500 !important;
}

/*** Wishlist ***/
.wishlist-hero-list-card-product-price,
.wishlist-hero-list-card-footer-add-to-cart,
.wishlist-hero-list-card-footer-add-all-to-cart-dialog{
  display: none !important;
}

.download-item{
  width: fit-content;
  word-wrap: anywhere;
}

@media (max-width: 600px) {
  .opening-hours .row {
    flex-direction: column;
  }

  .opening-hours .value {
    white-space: normal;
  }
}
