/** Shopify CDN: Minification failed

Line 1608:1 Unexpected "/"

**/
/* Theme customized by mr.no8ody */

/* ==================================================
   Root / Variables
================================================== */
@font-face {
  font-family: "Grimblade";
  src: url("./grimblade.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --header-height: 80px;
  --announcement-height: 0px;
  --border: rgba(var(--foreground), 0.12);
  --surface: rgba(var(--secondary), 0.38);
  --font-serif: "Grimblade", serif;
  --font-sans: "Inter", sans-serif;
}

/* ==================================================
   Base / Reset
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  text-transform: capitalize;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgb(var(--foreground));
    background: rgb(var(--background));
    line-height: 1.5;
}

body.has-announcement {
    --announcement-height: 36px;
}

body.no-announcement {
    --announcement-height: 0px;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==================================================
   Typography
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

p {
    margin: 0;
}

.rte p+p {
    margin-top: 14px;
}

/* ==================================================
   Layout / Containers
================================================== */

.main-content {
    min-height: 60vh;
    padding-top: calc(var(--header-height) + var(--announcement-height));
}

.container {
    width: min(var(--content-width), calc(100vw - 48px));
    margin-inline: auto;
}

/* ==================================================
   Shared Components / Buttons / Forms
================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    background: rgb(var(--foreground));
    color: rgb(var(--background));
    padding: 15px 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.btn:hover {
    opacity: 0.9;
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn--secondary {
    background: transparent;
    color: rgb(var(--foreground));
    border: 1px solid var(--border);
}

.btn--text {
    padding: 0;
    background: transparent;
    color: rgb(var(--foreground));
    border-radius: 0;
    border-bottom: 1px solid rgba(var(--foreground), 0.55);
    text-transform: uppercase;
}

.btn--text:hover {
    opacity: 0.7;
}

.icon-svg {
    width: 28px;
    height: 28px;
}

.icon-svg--small {
    width: 16px;
    height: 16px;
}

/* ==================================================
   Header Styles
================================================== */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--announcement-height);
    z-index: 60;
    border-bottom: 1px solid var(--border);
    background: rgb(var(--secondary));
}

.announcement-bar__inner {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.announcement-bar__text {
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(var(--foreground), 0.85);
}

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--announcement-height);
    z-index: 50;
    height: var(--header-height);
    background: rgba(var(--background), 0.94);
    backdrop-filter: blur(7px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.site-header__logo-link {
    justify-self: start;
}

.site-header__logo-picture {
    display: block;
}

.site-header__logo {
    width: auto;
    max-height: 74px;
    object-fit: contain;
}

@media (min-width: 576px) and (max-width: 768px) {
    .site-header__logo {
        max-height: 21px !important;
    }
}

.site-header__logo-text {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1;
}

/* ==================================================
   Navigation Styles
================================================== */

.site-header__desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav__link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(var(--foreground), 0.68);
    transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: rgb(var(--foreground));
}

.Title h1,
.Title h2 {
    font-size: clamp(26px, 2vw, 36px) !important;
}

.site-header__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__icon-link {
    position: relative;
    color: rgb(var(--foreground));
}

.site-header__cart-count {
    position: absolute;
    top: -3px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    display: grid;
    place-items: center;
    background: rgb(var(--foreground));
    color: rgb(var(--background));
}

.site-header__mobile-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: rgb(var(--foreground));
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(var(--background));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 24px;
}

.mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(var(--foreground), 0.65);
}

.mobile-menu__close {
    border: 0;
    background: transparent;
    color: rgb(var(--foreground));
    cursor: pointer;
}

.mobile-menu__links {
    display: grid;
    gap: 14px;
}

.mobile-menu__link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ==================================================
   Home Page Styles
================================================== */

.home-hero {
    position: relative;
    min-height: max(var(--hero-min-height, 600px), min(85vh, 820px));
    display: flex;
    align-items: end;
    overflow: hidden;
  }

  .home-hero__media,
  .home-hero__overlay {
    position: absolute;
    inset: 0;
  }

  .home-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .home-hero__img--desktop {
    display: block;
  }

  .home-hero__img--mobile {
    display: none;
  }

  .home-hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0) 100%);
  }

  .home-hero .container {
    position: relative;
    z-index: 2;
  }

  .home-hero__content {
    width: 100%;
    max-width: 640px;
    padding-top: 80px;
    padding-bottom: clamp(40px, 8vw, 100px);
  }

  .home-hero h1 {
    margin: 0;
    max-width: 576px;
    color: #f8f5ef;
    font-size: clamp(36px, 5.2vw, 60px);
    line-height: 1.03;
  }

  .home-hero p {
    margin-top: 18px;
    margin-bottom: 0;
    max-width: 540px;
    color: rgba(248, 245, 239, 0.82);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.6;
  }

  .home-hero__cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .home-hero .btn--text {
    color: #f8f5ef;
    border-bottom-color: rgba(248, 245, 239, 0.62);
  }

  @media (max-width: 1024px) {
    .home-hero {
      min-height: 550px;
    }

    .home-hero__content {
      max-width: 560px;
      padding-top: 70px;
    }
  }

  @media (max-width: 768px) {
    .home-hero {
      min-height: 500px;
    }

    .home-hero__content {
      max-width: 500px;
      padding-top: 56px;
      padding-bottom: 40px;
    }

    .home-hero h1 {
      font-size: clamp(30px, 7vw, 44px);
    }
  }

  @media (max-width: 600px) {
    .home-hero {
      min-height: 70vh;
      align-items: start;
    }

    .home-hero__img--desktop {
      display: none;
    }

    .home-hero__img--mobile {
      display: block;
      object-position: bottom center;
    }

    .home-hero__overlay {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.20) 38%, rgba(0, 0, 0, 0.52) 100%);
    }

    .home-hero__content {
      max-width: 100%;
      padding-top: 80px;
      padding-bottom: 32px;
    }

    .home-hero h1 {
      max-width: 90%;
      font-size: 35px;
      line-height: 1.08;
    }

    .home-hero p {
      max-width: 100%;
      margin-top: 12px;
      font-size: 14px;
      line-height: 1.5;
    }

    .home-hero__cta {
      margin-top: 20px;
      gap: 14px;
    }
  }
.brand-marquee {
    border-bottom: 1px solid var(--border);
    padding-top: var(--section-padding-top, 62px);
    padding-bottom: var(--section-padding-bottom, 62px);
}

.brand-marquee__head {
    margin-bottom: 32px;
}

.brand-marquee__head h2 {
    font-size: 20px;
    text-transform: capitalize !important;

}

.brand-marquee__head p {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: capitalize !important;
    color: rgba(var(--foreground), 0.55);
}

.marquee-container {
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    animation: marquee-scroll 38s linear infinite;
}

.brand-logo {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding-inline: clamp(20px, 4vw, 44px);
}

.brand-logo__image {
    width: auto;
    height: clamp(46px, 7vw, 74px);
    filter: grayscale(100%) saturate(0%) contrast(1.02);
    opacity: 0.62;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logo__image:hover {
    opacity: 1;
    filter: none;
}

.brand-logo__placeholder {
    min-width: 140px;
    padding: 12px 18px;
    border: 1px dashed rgba(var(--foreground), 0.3);
    border-radius: var(--radius);
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(var(--foreground), 0.6);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* .guided-entry,
.editorial-feature,
.finder-page,
.default-page,
.product-page,
.collection-page,
.cart-page 
  padding-top: var(--section-padding-top, 76px);
  padding-bottom: var(--section-padding-bottom, 76px);
} */
.search-page,
.product-page,
.collection-page {
    margin-bottom: 70px;
}
.guided-entry h2,
.category-grid h2,
.brand-carousel__head h2,
.editorial-feature h2 {
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.2;
}

.guided-entry__intro {
    margin-top: 12px;
    max-width: 560px;
    color: rgba(var(--foreground), 0.65);
    font-size: 15px;
}

.guided-entry__grid,
.product-grid,
.search-results {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-grid__items {
    margin-top: 42px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

/* Laptop */
@media (max-width: 1100px) {
    .category-grid__items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .category-grid__items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .category-grid__items {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

.guided-entry__grid {
    grid-template-columns: repeat(var(--guided-columns-desktop, 3), minmax(0, 1fr));
}

.category-grid__items {
    grid-template-columns: repeat(var(--category-columns-desktop, 4), minmax(0, 1fr));
}

.collection-page .product-grid {
    grid-template-columns: repeat(var(--collection-columns-desktop, 4), minmax(0, 1fr));
}

.search-results {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1024px) {
    .search-results {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small tablet */
@media (max-width: 768px) {
    .search-results {
        grid-template-columns: repeat(2, 1fr);
    }
}


.guided-card,
.category-card,
.product-card {
    display: block;
    width: 100%;
}

.guided-card__media-wrap,
.category-card__media-wrap,
.product-card__media-wrap {
    background: #efefef;
    overflow: hidden;
}

.guided-card__media-wrap {
    aspect-ratio: 4 / 5;
    margin-bottom: 1rem;
}

.category-grid {
    background: rgba(var(--secondary), 0.45);
    padding-top: var(--section-padding-top, 84px);
    padding-bottom: var(--section-padding-bottom, 84px);
}

.category-card__media-wrap {
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
}

.guided-card__media,
.category-card__media,
.product-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
        mix-blend-mode: multiply;
}

.guided-card:hover .guided-card__media,
.category-card:hover .category-card__media,
.product-card:hover .product-card__media {
    transform: scale(1.03);
}
.guided-card h3 {
font-size: clamp(18px, 1.3vw, 20px);
line-height: clamp(24px, 1.6vw, 28px);
font-weight: 300;
}
.product-card__title {
    font-family: var(--font-sans) !important;
}
.category-card h3 {
    font-size: clamp(18px, 1.3vw, 20px);
    line-height: clamp(24px, 1.6vw, 28px);
}
.product-card__title {
font-size: clamp(16px, 1.3vw, 20px);
line-height: clamp(24px, 1.6vw, 28px);
font-weight: 300;
}

/* Overlay container */
.product-card__quickadd {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.product-card__quickadd button {
    width: 100% !important;
    border-radius: 0 !important;
}

/* Default Add to Cart (BLACK) */
.product-card__quickadd-btn {
    width: 100%;
    padding: 14px 16px;
    border-radius: 0;
    border: none;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .product-card__quickadd-btn {
        height: 34px;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hover */
.product-card__quickadd-btn:hover {
    background: #111;
}

/* SOLD OUT separate style */
.product-card__quickadd-btn.is-disabled {
    background: #e5e5e5;
    /* light grey */
    color: #666;
    /* darker grey text */
    cursor: not-allowed;
}

/* Optional: subtle uppercase */
.product-card__quickadd-btn,
.product-card__quickadd-btn.is-disabled {
    text-transform: uppercase;
}

/* Show on hover (desktop / mouse) */
@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card__quickadd {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Touch devices (mobile/tablet): always visible */
@media (hover: none),
(pointer: coarse) {
    .product-card__quickadd {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        visibility: visible !important;
        display: flex !important;
        /* change to block if needed */
    }
}

@media (max-width: 574px) {
    .product-card__quickadd .btn {
        padding: 10px 24px !important;
    }
}

.guided-card p,
.product-card__desc {
    margin-top: 4px;
    color: rgba(var(--foreground), 0.62);
    font-size: 14px;
    display: none;
}

.brand-carousel-section {
    position: relative;
    padding-top: var(--section-padding-top, 82px);
    padding-bottom: var(--section-padding-bottom, 82px);
    background: rgba(var(--secondary), 0.3);
    overflow: hidden;
}

.brand-carousel__head {
    text-align: center;
}

.brand-carousel__head p {
    margin-top: 8px;
    color: rgba(var(--foreground), 0.6);
}

.brand-carousel {
    margin-top: 34px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.brand-carousel__viewport {
    position: relative;
    overflow: hidden;
    height: clamp(270px, 32vw, 410px);
}

.brand-slide {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px) scale(0.96);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.brand-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.brand-slide__bg,
.brand-slide__overlay {
    position: absolute;
    inset: 0;
}

.brand-slide__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) saturate(0.8) contrast(0.95);
}

.brand-slide__overlay {
    background: linear-gradient(180deg, rgba(245, 243, 239, 0.83), rgba(245, 243, 239, 0.35), rgba(245, 243, 239, 0.83));
}

.brand-slide__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    place-items: center;
    gap: 12px;
    text-align: center;
}

.brand-slide__logo {
    max-height: 94px;
    width: auto;
    filter: grayscale(100%) saturate(0%) contrast(1.1);
    opacity: 0.8;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.brand-slide__logo-placeholder {
    min-width: 160px;
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 10px 16px;
    border: 1px dashed rgba(var(--foreground), 0.28);
    border-radius: 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(var(--foreground), 0.62);
    background: rgba(var(--background), 0.55);
}

.brand-slide:hover .brand-slide__logo {
    opacity: 1;
    filter: none;
}

.brand-slide__content span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(var(--foreground), 0.62);
}

.brand-carousel__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: rgba(var(--foreground), 0.75);
    background: rgba(var(--background), 0.55);
    cursor: pointer;
}

.brand-carousel__arrow:hover {
    background: rgba(var(--background), 0.84);
}

.brand-carousel__dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.brand-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(var(--foreground), 0.16);
    cursor: pointer;
    transition: width 0.4s ease, background 0.4s ease;
}

.brand-carousel__dot.is-active {
    width: 24px;
    background: rgba(var(--foreground), 0.5);
}

.brand-carousel-section--single .brand-carousel__arrow,
.brand-carousel-section--single .brand-carousel__dots {
    display: none;
}

.trust-strip {
    padding-top: var(--section-padding-top, 84px);
    padding-bottom: var(--section-padding-bottom, 84px);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(var(--trust-columns-desktop, 3), minmax(0, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-item__icon {
    margin: 0 auto 14px;
    color: rgb(var(--accent));
    width: 50px;
}

.trust-item h3 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #1f1f1f;
}

.trust-item p {
    margin-top: 8px;
    color: rgba(var(--foreground), 0.62);
    font-size: 14px;
}

.editorial-feature {
    padding-top: var(--section-padding-top, 22px);
    padding-bottom: var(--section-padding-bottom, 76px);
}

.editorial-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 72px);
    align-items: center;
}

.editorial-feature__grid--reverse .editorial-feature__media-wrap {
    order: 2;
}

.editorial-feature__grid--reverse .editorial-feature__content {
    order: 1;
}

.editorial-feature__media-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.editorial-feature__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-feature__content {
    max-width: 520px;
}

.editorial-feature__text {
    margin: 20px 0 28px;
    color: rgba(var(--foreground), 0.66);
    font-size: 14px;
    line-height: 1.8;
}

.studio-consultation {
    background: rgba(var(--secondary), 0.8);
    margin-top: 20px;
    padding-top: var(--section-padding-top, 46px);
    padding-bottom: var(--section-padding-bottom, 46px);
}

.studio-consultation .Title {
    max-width: 500px;
}

@media (max-width:768px) {
    .studio-consultation .Title {
        max-width: 100%;
    }
}

.studio-consultation__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: center;
}

.studio-consultation h2 {
    font-size: clamp(24px, 2.5vw, 30px);
    line-height: 1.1;
}

.studio-consultation p {
    margin-top: 10px;
    color: rgba(var(--foreground), 0.65);
}

.studio-consultation__actions>div {
    display: inline-flex;
    gap: 12px;
    justify-items: start;
    flex-direction: column-reverse;
}

.studio-consultation__actions {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: end;
}

@media (max-width: 992px) {
    .studio-consultation__actions {
        flex-direction: column;
        gap: 5px;
        justify-content: start;
        align-items: start;
    }
}

@media (max-width: 768px) {
    .studio-consultation__actions {
        justify-content: start;
    }
}

.studio-consultation__phone {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.studio-consultation__actions>span {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(var(--foreground), 0.58);
}

.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
}

.consult-modal[hidden] {
    display: none;
}

.consult-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.45);
}

.consult-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(500px, calc(100vw - 34px));
    max-height: calc(100vh - 34px);
    overflow: auto;
    background: rgb(var(--background));
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 2px);
    padding: 24px;
}

.consult-modal__close {
    position: absolute;
    right: 12px;
    top: 12px;
    border: 0;
    background: transparent;
    color: rgb(var(--foreground));
    cursor: pointer;
}

.consult-modal__title {
    font-size: 1.5rem;
    line-height: 2rem;
}

.consult-modal__text {
    color: rgba(var(--foreground), 0.64);
    font-size: 14px;
    margin-bottom: 16px;
}

.consult-form {
    display: grid;
    gap: 14px;
}

.consult-form label span {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(var(--foreground), 0.64);
}

/* 2 column grid */
.consult-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Inputs / textarea / select (FIXED: consult-form select added) */
.consult-form input,
.consult-form textarea,
.consult-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(var(--secondary), 0.34);
    color: rgb(var(--foreground));
    padding: 11px 12px;
    font-size: 14px;
    font-family: var(--font-sans);
}

/* Select styling */
.consult-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Placeholder-ish look for disabled option */
.consult-form select option[disabled] {
    color: rgba(var(--foreground), 0.5);
}

/* Focus states */
.consult-form input:focus,
.consult-form textarea:focus,
.consult-form select:focus {
    outline: none;
    border-color: rgb(var(--foreground));
}

/* Checkbox row */
.consult-form__checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.consult-form__checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    padding: 0;
    background: transparent;
}

/* Mobile: 1 column */
@media (max-width: 749px) {
    .consult-form__grid {
        grid-template-columns: 1fr;
    }
}

.product-page__select-wrap svg,
.collection-filter__select-wrap svg {
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* ==================================================
   Collection Page Styles
================================================== */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: rgba(var(--foreground), 0.58);
    margin-top: 35px;
}

.breadcrumbs a:hover {
    color: rgb(var(--foreground));
}

.search-page__head {
    padding: clamp(18px, 3vw, 34px) 0;
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .search-page__head {
        width: 100%;
        padding: 20px 15px;
    }
}

.search-page__head h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    display: inline-block;
}

.collection-page__header,
.search-page__head,
.cart-page h1 {
    margin-top: 18px;
}

.collection-page h1,
.default-page h1,
.finder-form h1,
.cart-page h1 {
    font-size: clamp(34px, 4.5vw, 40px);
    line-height: 1.05;
}

.product-page h1 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: clamp(30px, 3.2vw, 40px);
}

.collection-page__desc,
.search-page__meta,
.empty-state p,
.product-page__summary {
    margin: 10px auto;
    color: rgba(var(--foreground), 0.62);
    max-width: 700px;
}

.product-page__summary {
    font-size: 14px;
}

.product-card__title {
    font-size: clamp(15px, 1vw, 18px);
    line-height: clamp(20px, 1.6vw, 26px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__vendor {
    margin-top: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: rgba(var(--foreground), 0.55);
}

.product-card__price-wrap {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 574px) {
    .product-card__price-wrap {
        margin-top: 2px;
        flex-wrap: wrap;
        gap: 0px;
    }
}

.product-card__sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgb(var(--foreground));
    color: rgb(var(--background));
    padding: 4px 8px;
    font-size: 10px;
    border-radius: var(--radius);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card__media-wrap {
    position: relative;
    display: block;
}

.product-card__content {
    margin-top: 1rem;
}

.product-card__price {
    font-size: 15px;
    color: rgb(var(--foreground));
}

.product-card__compare {
    color: rgba(var(--foreground), 0.45);
    font-size: 14px;
    text-decoration: line-through;
}

.product-card__rating {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(var(--foreground), 0.55);
}

.product-card__quick-add-form {
    margin-top: 12px;
}

.product-card__quick-add {
    width: 100%;
}

.pagination {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    font-size: 13px;
}

.pagination a,
.pagination span {
    min-width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    padding: 0 9px;
}

.pagination .is-current {
    background: rgba(var(--foreground), 0.08);
    border-color: rgba(var(--foreground), 0.2);
}

.empty-state {
    padding: 64px 0;
    text-align: center;
}

.empty-state .btn {
    margin-top: 14px;
}

/* ==================================================
   Product Page Styles
================================================== */

.product-page__grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(26px, 3.5vw, 58px);
}

.product-page__media-wrap {
    background: rgba(var(--secondary), 0.55);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-page__media,
.product-page__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* SPRING AND FOOTBAR SIZE */
.product-page__extra-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.product-page__extra-spec {
  padding: 14px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fafafa;
}

.product-page__extra-spec p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #666;
}

.product-page__extra-spec strong {
  display: block;
  font-size: 15px;
  color: #111;
  font-weight: 600;
}

@media (max-width: 767px) {
  .product-page__extra-specs {
    grid-template-columns: 1fr;
  }
}
/* =====PRODUCT GALLERY=====*/

/* IMPORTANT: prevents slider from going outside container (flex/grid fix) */
.product-page__media-column {
    min-width: 0;
}

/* Main slider container */
.productSwiper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Main wrapper/slide fixes */
.productSwiper .swiper-wrapper {
    max-width: 100%;
}
.zoom-container {
  position: relative;
  width: 100%;
}

.drift-zoom {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.MainImg {
  overflow: hidden;
}

.drift-pane {
  z-index: 30;
}
.productSwiper .swiper-slide {
    min-width: 0;
}

/* Main image */
.productSwiper .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Optional: keep fixed ratio (uncomment if you want square/ratio) */

.MainImg {
  aspect-ratio: 1 / 1;
  background-color:#efefef;
  width: 100%;
  overflow: hidden;
}
.productSwiper .swiper-slide img{
  height: 100%;
  object-fit: cover;
  mix-blend-mode: darken;

}
*/

/* Swiper arrows (optional) */
.productSwiper .swiper-button-prev,
.productSwiper .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

.productSwiper .swiper-button-prev:after,
.productSwiper .swiper-button-next:after {
    font-size: 14px;
    font-weight: 700;
    color: rgba(0, 0, 0, .70);
}

/* Hide arrows on small screens (optional) */
@media (max-width: 720px) {

    .productSwiper .swiper-button-prev,
    .productSwiper .swiper-button-next {
        display: none;
    }
}

/* Thumbs slider container */
.thumbSwiper {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    overflow: hidden;
}

/* Thumbs wrapper/slide */
.thumbSwiper .swiper-wrapper {
    max-width: 100%;
}

/* Thumb slide size – AUTO so it scrolls */
.thumbSwiper .swiper-slide {
    width: 90px !important;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, transform .12s ease;
}

.thumbSwiper img {
    pointer-events: none;
}

/* Thumb image */
.thumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Active thumb */
.thumbSwiper .swiper-slide-thumb-active {
    border-color: rgba(0, 0, 0, .55);
}

/* Press */
.thumbSwiper .swiper-slide:active {
    transform: scale(0.98);
}

/* Mobile thumbs smaller */
@media (max-width: 768px) {
    .thumbSwiper .swiper-slide {
        width: 72px !important;
        height: 72px;
    }
}

/* Extra: if any parent sets weird box sizing */
.product-page__media-column *,
.product-page__media-column *::before,
.product-page__media-column *::after {
    box-sizing: border-box;
}

/* Safety: prevent body horizontal scroll due to images */
.product-page__media-column img {
    max-width: 100%;
}

/* If your outer product page has overflow issues, enable this (optional) */
/*
.product-page{
  overflow-x: hidden;
}
/* ========================== */

.product-page__info {
    padding-top: 8px;
}

.product-page__price {
    margin: 100%px 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 100;

}

.product-page__vendor {
    margin-bottom: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(var(--foreground), 0.6);
}

.product-page__price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;

    p {
        font-family: var(--font-sans) !important;
    }
}

.product-page__compare-price {
    color: rgba(var(--foreground), 0.48);
    text-decoration: line-through;
}

.product-page__sale-badge {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgb(var(--foreground));
    color: rgb(var(--background));
    padding: 4px 8px;
    border-radius: var(--radius);
}

.product-page__rating {
    margin: -8px 0 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(var(--foreground), 0.55);
}

.product-page__form {
    display: grid;
    gap: 10px;
}

.product-page__selectors {
    display: grid;
    gap: 10px;
    margin-bottom: 2px;
}

/* hide old select */
.product-page__select-wrap.is-hidden {
    display: none;
}

/* pills container */
.variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* pill */
.variant-pill {
    border: 1px solid rgba(0, 0, 0, .14);
    background: #fff;
    color: rgba(0, 0, 0, .85);

    padding: 10px 14px;
    border-radius: 7px;

    font-size: 14px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;
    transition: transform .12s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.variant-pill:hover {
    border-color: rgba(0, 0, 0, .28);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.variant-pill:active {
    transform: scale(0.98);
}

.variant-pill.is-active {
    border: 1px solid #000;
}

/* optional: disabled look if you add later */
.variant-pill.is-disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 9px;
    background: #fff;

    height: 44px;
    padding: 0 4px;

    width: auto;
    max-width: 150px;

    transition: border-color .2s ease, box-shadow .2s ease;
}


/* Input */
.quantity-selector input {
    width: 48px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;

    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, .85);

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/* Remove number arrows */
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Buttons */
.qty-btn {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;
    border-radius: 7px;

    font-size: 18px;
    font-weight: 500;

    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

/* Hover */
.qty-btn:hover {
    background: rgba(0, 0, 0, .06);
}

/* Click press effect */
.qty-btn:active {
    transform: scale(0.92);
}

/* Disabled look (optional future use) */
.qty-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}
.product-page__delivery {
    text-align: center;
    font-size: 12px;
    color: rgba(var(--foreground), 0.6);
}

.product-page__meta-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-page__meta-grid>div {
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(var(--secondary), 0.45);
    text-align: center;
}

.product-page__meta-grid p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(var(--foreground), 0.6);
}

.product-page__meta-grid strong {
    margin-top: 4px;
    display: block;
    font-size: 13px;
    font-weight: 500;
}

/* ===Details Page Accordian ===*/

/* Simple Product Accordion + height transition */
.product-page__accordion {
    margin-top: 18px;
    border-top: 1px solid var(--border);
}

.product-page__accordion details {
    border-bottom: 1px solid var(--border);
}

.product-page__accordion summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 14px 24px 14px 0;
    font-size: 15px;
    font-weight: 600;
}

.product-page__accordion summary::-webkit-details-marker {
    display: none;
}

.product-page__accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.4s ease;
}

.product-page__accordion details[open] summary::after {
    content: "−";
}

/* Slow smooth open/close */
.product-page__accordion .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s ease-in-out, opacity 0.45s ease-in-out;
    opacity: 0;
}

.product-page__accordion details[open] .accordion-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* Inner wrapper fix */
.product-page__accordion .accordion-content > * {
    overflow: hidden;
    padding-bottom: 14px;
}

/* Text styling */
.product-page__accordion p,
.product-page__accordion .rte {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(var(--foreground), 0.7);
}
/* ======================== */

/* ==================================================
   Cart / Drawer / Modal Styles
================================================== */

.CartWrap {
    display: flex;
    align-items: start;
    gap: 24px;
    flex-flow: row wrap;
}

/* ================================
   Premium Cart Summary
================================ */

.cart-summary {
    margin-top: 0;
    padding: 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(var(--secondary), 0.35);
    border-radius: var(--radius);
    gap: 14px;
    position: sticky;
    top: 96px;
    /* header height adjust */
    display: grid;
    gap: 14px;
    width: calc(30% - 12px);
}

@media screen and (max-width: 1024px) {
    .CartWrap form {
        width: 100% !important;
    }

    .cart-summary {
        width: 100%;
        position: static;
        /* optional: sticky off on mobile */
        top: auto;
    }

    .TotalRow {
        flex-flow: row wrap;
    }
}

.TotalRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid #9f9f9f;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.TotalRow strong {
    font-size: 18px;
}

.NotText {
    text-align: center;
}

.CartWrap form {
    width: calc(70% - 12px);
}

/* Wrapper */
.cart-qty {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 9px;
    background: #fff;

    height: 44px;
    padding: 0 4px;

    width: auto;
    max-width: 150px;

    transition: border-color .2s ease, box-shadow .2s ease;
}

/* Input */
.cart-qty__input {
    width: 48px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;

    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, .85);

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/* Remove number arrows */
.cart-qty__input::-webkit-outer-spin-button,
.cart-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Buttons */
.cart-qty__btn {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;
    border-radius: 7px;

    font-size: 18px;
    font-weight: 500;

    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

/* Hover */
.cart-qty__btn:hover {
    background: rgba(0, 0, 0, .06);
}

/* Press effect */
.cart-qty__btn:active {
    transform: scale(0.92);
}

/* Disabled (future safe) */
.cart-qty__btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.cart-page__inner {
    margin-inline: auto;
}

.cart-table {
    margin-top: 26px;
    border-top: 1px solid var(--border);
}

.cart-table__head,
.cart-table__row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

/* quantity column */
.cart-table__row > :nth-child(2),
.cart-table__head > :nth-child(2) {
    text-align: center;
}

/* total column */
.cart-table__row > :nth-child(3),
.cart-table__head > :nth-child(3) {
    text-align: right;
}

.cart-table__head {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 11px;
    color: rgba(var(--foreground), 0.6);
}

.cart-table__head span:last-child {
    text-align: right;
    display: block;
    /* important */
}

.cart-line__product {
    display: flex;
    gap: 14px;
    align-items: center;
}

.cart-line__image-wrap {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(var(--secondary), 0.45);
}

.cart-line__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-line__title {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.1;
}

.cart-line__variant,
.cart-line__price,
.cart-line__remove {
    font-size: 13px;
}

.cart-line__variant,
.cart-line__remove {
    color: rgba(var(--foreground), 0.6);
}

.cart-line__qty {
    max-width: 100px;
}

.cart-line__total {
    display: grid;
    justify-items: end;
    gap: 2px;
    font-size: 14px;
}

.cart-page__actions {
    margin-top: 14px;
}



@media (min-width: 1025px) {
    .product-page--sticky-media .product-page__media-column {
        position: sticky;
        top: calc(var(--header-height) + var(--announcement-height) + 20px);
        align-self: start;
    }
}

/* ==================================================
   Search / Default Page Styles
================================================== */

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: stretch;
    max-width: 1100px;
}

.search-form__field {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form__icon {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, .45);
    pointer-events: none;
}

.search-form__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.search-form input[type="search"] {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 44px;
    /* space for icon */
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .14);
    background: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 10px 24px rgba(0, 0, 0, .06);
}

.search-form input[type="search"]::placeholder {
    color: rgba(0, 0, 0, .45);
}

.search-form input[type="search"]:focus {
    border-color: rgba(0, 0, 0, .28);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .08), 0 14px 30px rgba(0, 0, 0, .10);
    transform: translateY(-1px);
}

.search-close-btn {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .15);
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
}

.search-close-btn:hover {
    background: #111;
    color: #fff;
}

.SearchHeadWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-form__btn {
    height: 54px;
    padding: 0 18px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .14);
    background: #111;
    color: #fff;
    font-weight: 600;
    width: 180px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.search-form__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.search-form__btn:active {
    transform: translateY(0px);
    opacity: .92;
}

@media (max-width: 680px) {
    .search-form {
        grid-template-columns: 1fr;
    }

    .search-form__btn {
        width: 100%;
    }

    .search-form input[type="search"],
    .search-form__btn {
        height: 50px;
        border-radius: 12px;
    }
}

.search-results {
    margin-top: 24px;
}

.search-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.search-card h3 {
    font-size: 30px;
}

.search-card p {
    margin-top: 7px;
    color: rgba(var(--foreground), 0.62);
    font-size: 14px;
}

.default-page__inner {
    margin-inline: auto;
}

.default-page__inner h1 {
    margin-bottom: 16px;
}

.default-page__inner .rte {
    color: rgba(var(--foreground), 0.68);
    font-size: 15px;
    line-height: 1.9;
}

.default-page__inner--center {
    text-align: center;
}

.default-page__inner--center p {
    color: rgba(var(--foreground), 0.6);
    margin: 10px 0 20px;
}

/* ==================================================
   Responsive Media Queries
================================================== */

@media (max-width: 1024px) {
    :root {
        --header-height: 66px;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-header__desktop-nav {
        display: none;
    }

    .site-header__mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-header__logo-link {
        justify-self: start;
        margin-left: 8px;
    }

    .site-header__logo {
        max-height: 56px;
    }

    .site-footer__grid,
    .editorial-feature__grid,
    .product-page__grid {
        grid-template-columns: 1fr;
    }

    .brand-carousel {
        grid-template-columns: 1fr;
    }

    .brand-carousel__arrow {
        display: none;
    }

    .guided-entry__grid,
    .trust-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Desktop */
    .collection-page .product-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px;
    }

    /* Laptop */
    @media (max-width: 1200px) {
        .collection-page .product-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        }
    }

    /* Tablet */
    @media (max-width: 768px) {
        .collection-page .product-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            gap: 18px !important;
        }
    }


    .category-grid__items {
        grid-template-columns: repeat(var(--category-columns-desktop, 4), minmax(0, 1fr));
    }


    .cart-line__total {
        justify-items: start;
    }
}

@media (max-width: 720px) {
    .studio-consultation__inner {
        grid-template-columns: 1fr;
    }

    .container {
        width: calc(100vw - 30px);
    }

    .cart-table__head {
        display: none;
    }

    .cart-table__row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cart-table__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 columns */
        gap: 10px;
    }

    .cart-table__row>*:nth-child(2),
    .cart-table__row>*:nth-child(3) {
        justify-self: end;
        text-align: right;
    }

    .cart-page {
        padding-top: var(--section-padding-top, 30px) !important;
    }
}

@media (max-width: 574px) {

    .guided-entry__grid,
    .trust-strip__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.cart-line__product {
    width: 100%;
}

/* First child full width */
@media (max-width: 768px) {
.cart-table__row>*:first-child {
    grid-column: 1 / -1;
    /* span full row */

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

    .site-footer__inner {
        padding-top: 42px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .guided-entry,
    .category-grid,
    .brand-carousel-section,
    .trust-strip,
    .product-page,
    .collection-page,
    .cart-page,
    .search-page,
    .finder-page,
    .default-page {
        padding: 54px 0;
    }

    .product-page {
        padding-top: 100px !important;
    }

    .guided-entry__grid,
    .category-grid__items,
    .product-grid,
    .search-results,
    .trust-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guided-entry__grid {
        grid-template-columns: repeat(var(--guided-columns-mobile, 1), minmax(0, 1fr));
    }

    .category-grid__items {
        grid-template-columns: repeat(var(--category-columns-mobile, 2), minmax(0, 1fr));
    }

    .collection-page .product-grid {
        grid-template-columns: repeat(var(--collection-columns-mobile, 2), minmax(0, 1fr));
    }


    .trust-strip__grid {
        grid-template-columns: repeat(var(--trust-columns-mobile, 1), minmax(0, 1fr));
    }

    .consult-form__grid {
        grid-template-columns: 1fr;
    }

    .brand-carousel__viewport {
        height: 270px;
    }

    .product-page__meta-grid {
        grid-template-columns: 1fr;
    }

    .search-form {
        grid-template-columns: 1fr;
    }
}
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .marquee-track {
        animation: none;
    }
}

/* ==================================================
   Utility Classes
================================================== */
/* Button wrapper */
.product-page__info .ButtonWrap {
  display: grid;
  gap: 12px;
  align-items: stretch;
  margin-top: 16px;
}

/* Add to cart + Buy now row */
.product-page__info .ButtonWrap__primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

/* Chat button row */
.product-page__info .ButtonWrap__chat {
  width: 100%;
}

/* Add to cart button */
.product-page__info .product-page__add {
  min-height: 52px;
  width: 100%;
}

/* Buy now wrapper */
.product-page__buy-now,
.product-page__buy-now .shopify-payment-button {
  width: 100%;
}

/* BUY NOW BUTTON */
.product-page__buy-now .shopify-payment-button__button,
.product-page__buy-now .shopify-payment-button__button--unbranded {
  min-height: 52px;
  width: 100%;
  border-radius: var(--radius);
  background: #c19a6b !important;
  border: 1px solid #c19a6b !important;
  color: #fff !important;
  transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
}

/* Buy now hover */
.product-page__buy-now .shopify-payment-button__button:hover,
.product-page__buy-now .shopify-payment-button__button--unbranded:hover {
  background: #ae895b !important;
  border-color: #ae895b !important;
}
.QuntiyWrap {
    display:flex;
    align-items:center;
    gap:14px;
}

/* Disabled */
.product-page__buy-now.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

/* CHAT WITH EXPERT BUTTON */
.btn-chat-expert {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.15);
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
letter-spacing: 0.12em;
    font-size: 11px !important;
    font-weight: 500;
    cursor: pointer;
  transition: all .25s ease;
  gap:10px;
  svg {
    height: 15px;
    width: 15px;
  }
}

.btn-chat-expert:hover {
  background: #ececec;
}

/* Compare checkbox */
.compare-checkbox {
  margin-top: 12px;
}

.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: #111;
}

.compare-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #111;
}

.compare-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 768px) {

  .product-page__info .ButtonWrap__primary {
    grid-template-columns: 1fr;
  }

}
/* ===== Floating Compare Bar ===== */
[data-compare-bar] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 9999;
    padding: 0 14px;
    pointer-events: none;
    transform: translateY(140%);
    transition: transform .25s ease;
}

[data-compare-bar].is-visible {
    transform: translateY(0);
}

.compare-bar__inner {
    pointer-events: auto;
    margin: 0 auto;
    background: rgb(var(--background));
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(var(--foreground), .16);
    border-radius: var(--radius);
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.compare-bar__items {
    display: none;
    /* mobile default: hide cards */
    gap: 10px;
    align-items: center;

}

.compare-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    position: relative;
    min-width: 240px;
    width: calc(24% - 18px);
}

.compare-bar__thumb {
    width: 56px !important;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(var(--secondary), .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-bar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compare-bar__meta {
    min-width: 0;
}

.compare-bar__name {
    font-size: 15px;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: calc(100% - 56px)
}

.compare-bar__remove {
    position: absolute;
    top: -7px;
    right: -5px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgb(var(--background));
    cursor: pointer;
    line-height: 1;
}

.compare-bar__right {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Mobile Full width button */
.compare-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.compare-bar__count {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--secondary), .35);
    border: 1px solid rgba(var(--background), .25);
    color: rgb(var(--background));
    font-weight: 800;
    padding: 0 8px;
}

.compare-bar__clear {
    display: none;
    /* hide clear on mobile */
    border: 1px solid var(--border) !important;
    background: rgb(var(--background));
    cursor: pointer;
    font-weight: 600;
    border: 0;
    border-radius: var(--radius);
    padding: 15px 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* skeleton */
.skeleton {
    background: rgba(var(--secondary), .25);
    border-radius: 12px;
}

.compare-bar__name.skeleton {
    width: 160px;
    height: 14px;
}

/* ===== Desktop layout ===== */
@media (min-width: 992px) {
    [data-compare-bar] {
        bottom: 22px;
    }

    .compare-bar__btn {
        width: auto;
        white-space: nowrap;
    }

    .compare-bar__items {
        display: flex;
    }

    .compare-bar__clear {
        display: inline-flex;
    }
}

@media (max-width: 992px) {
    .compare-bar__inner {
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;

    }

    .compare-bar__right {
        width: 100%;
    }

    .compare-bar__btn {
        width: 100%;
    }
}

[data-compare-toast] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.compare-toast__inner {
    pointer-events: auto;
    min-width: 280px;
    max-width: 480px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    gap: 10px;

    transform: translateY(-12px);
    opacity: 0;
    transition: .25s ease;
}

[data-compare-toast].is-visible .compare-toast__inner {
    transform: translateY(0);
    opacity: 1;
}

.compare-toast__msg {
    font-size: 14px;
    line-height: 1.35;
    flex: 1;
}

.compare-toast__close {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* CONTACT US SECTION */


/* COUNTACTUS SECTION END */

/* ==================================================
   Specification Table Styles
================================================== */

.spec-content {
    padding-top: 8px;
}

.spec-title {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    font-family: var(--font-sans);
}

.spec-title:not(:first-child) {
    margin-top: 28px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
}

.spec-table th,
.spec-table td {
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    line-height: 1.5;
    vertical-align: top;
        font-family: var(--font-sans);
        font-weight:400;
}

.spec-table th {
    width: 35%;
    font-family: var(--font-sans);
    text-align: left;
}

.spec-table td {
    text-align: left;
}

@media (max-width: 749px) {
    .spec-table th,
    .spec-table td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .spec-table th {
        width: 40%;
    }
}

/* ==================================================
   Collection Page Styles
================================================== */

#collections-listing {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

#collections-listing h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

#collections-listing ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

#collections-listing li {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  transition: all 0.3s ease;
}

#collections-listing li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#collections-listing li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

#collections-listing .hint {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

@media (max-width: 991px) {
  #collections-listing ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  #collections-listing ul {
    grid-template-columns: 1fr;
  }

  #collections-listing h2 {
    font-size: 28px;
  }
}


/* ==================================================
   Collection Listing Styles
================================================== */

.collections-page {
  padding: 60px 20px;
}

.collections-page .page-width {
  max-width: 1280px;
  margin: 0 auto;
}

.collections-page__header {
  text-align: center;
  margin-bottom: 40px;
}

.collections-page__header h1 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.collections-page__header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.collection-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f7f7;
}

.collection-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.collection-card__image--placeholder {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
}

.collection-card__content {
  padding: 18px;
}

.collection-card__content h2 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.collection-card__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #777;
}

@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 990px) {
  .collections-page {
    padding: 50px 16px;
  }

  .collections-page__header h1 {
    font-size: 34px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .collections-page {
    padding: 40px 12px;
  }

  .collections-page__header {
    margin-bottom: 28px;
  }

  .collections-page__header h1 {
    font-size: 28px;
  }

  .collections-page__header p {
    font-size: 14px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collection-card__content {
    padding: 16px;
  }

  .collection-card__content h2 {
    font-size: 18px;
  }
}

/* Collection Page Filter Styles */
.collection-page__toolbar {
    margin: 28px 0 14px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    font-size: 12px;
    color: rgba(var(--foreground), 0.58);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}

.collection-page__toolbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.collection-sort-form {
    min-width: 210px;
}

.FiltePadding {
    padding: 20px 30px;
    height: 100%;
    overflow-y: auto;
}

.ListPageRlative {
    position: relative;
}

.collection-filters {
 position: fixed;
    top: 0;
    right: 0;
    max-height:100vh !important;
    bottom: 0;
    width: min(420px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 9999;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.collection-filters__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: var(--radius);
    background: rgb(var(--foreground));
    color: rgb(var(--background));
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.collection-filters.is-open {
    transform: translateX(0);
}
.collection-filters__header {
    display: flex;
    align-items: center;
    margin:0 30px;
    padding: 13px 0;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.collection-filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 9998;
}

.collection-filters-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.collection-filters__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.collection-filter {
    min-width: 0;
}

.collection-filter h3 {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(var(--foreground), 0.62);
}

.collection-filter__list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.collection-filter__list label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.78);
    cursor: pointer;
    user-select: none;
}

.collection-filter__list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: #111;
}

.collection-filter__list input[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.collection-filter__list input[disabled] + span {
    opacity: 0.55;
}

.collection-filter__price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: end;
}

.collection-filter__price label {
    position: relative;
}

.collection-filter__price label > span {
    display: block;
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.collection-filter__price label span {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.collection-filter__price input {
    width: 100%;
    height: 44px;
    padding: 12px 10px 10px 55px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    outline: none;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.86);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.collection-filter__price label:last-child input {
    padding: 12px 10px 10px 45px;
}

.collection-filter__price input::placeholder {
    color: rgba(0, 0, 0, 0.38);
}

.collection-filter__price input:focus-visible {
    border-color: rgba(0, 0, 0, 0.40);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.collection-filter__price input::-webkit-outer-spin-button,
.collection-filter__price input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.collection-filter__price input[type="number"] {
    -moz-appearance: textfield;
}

.collection-filter__select-wrap {
    position: relative;
}

.collection-filter__select-wrap svg {
    right: 14px;
    opacity: 0.60;
}

.collection-filter__sort {
    width: 100%;
    height: 44px;
    padding: 10px 44px 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    outline: none;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.86);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.collection-filter__sort:focus-visible {
    border-color: rgba(0, 0, 0, 0.40);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.collection-filters__actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.collection-filters__actions .btn {
    min-height: 46px;
}

@media (max-width: 980px) {
    .collection-filters__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 26px;
    }

    .collection-filter__price {
        grid-template-columns: 1fr 1fr;
    }

    .collection-filter__select-wrap {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .collection-filters__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .collection-filter__price {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .collection-filters__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .collection-filters__actions .btn {
        flex: 1 1 140px;
    }
}

/* ==================================================
   Footer Styles
================================================== */

.site-footer {
    margin-top: 0;
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    padding: 60px 0 24px;
}

.site-footer__grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.site-footer__brand {
    font-family: var(--font-serif);
    font-size: 30px;
}

.site-footer__text {
    margin-top: 14px;
    max-width: 280px;
    font-size: 14px;
    color: rgba(var(--foreground), 0.65);
}

.site-footer__heading {
    margin-bottom: 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(var(--foreground), 0.62);
    font-family: var(--font-sans);
}

.site-footer__links {
    display: grid;
    gap: 10px;
}

.site-footer__links a {
    font-size: 14px;
    color: rgba(var(--foreground), 0.86);
}

.site-footer__links a:hover {
    color: rgba(var(--foreground), 0.6);
}

.site-footer__bottom {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    color: rgba(var(--foreground), 0.6);
}

.site-footer__legal {
    display: flex;
    gap: 18px;
}
