/* ============================================================
   CURIO COUTURE — STYLESHEET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Emilys+Candy&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

.emilys-candy-regular {
font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

/* ---------- 0. TOKENS ---------- */
:root {
    --royal: #234C59 !important;
    --royal-dark: #234C59 !important;
    --royal-soft: #24505E;
    --ivory: #FBF8F2;
    --cream: #F3ECDC;
    --gold: #BD9A4C;
    --gold-light: #E4CE95;
    --gold-deep: #95772F;
    --ink: #14262B;
    --ink-soft: #4B5C60;
    --line: rgba(20, 38, 43, 0.12);
    --radius-lg: 2px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --container: 1360px;
    --nav-h: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #234C59 !important;
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--gold-light);
    color: #234C59;
}

:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
}

.container-xl {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
}

.eyebrow {
font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold-deep);
    display: inline-block;
}

.btn-curio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--royal) !important;
    color: var(--ivory);
font-family: "Cormorant Garamond", serif;
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--royal) !important;
    border-radius: var(--radius-lg);
    transition: all .45s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-curio:hover {
    background: #234C59!important;
    color: var(--gold-light);
    letter-spacing: .26em;
}

.btn-curio-outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(251, 248, 242, .55);
}

.btn-curio-outline:hover {
    background: var(--ivory);
    color: #234C59 !important;
    border-color: var(--ivory);
}

.btn-curio-ghost {
    background: transparent;
    border: 1px solid var(--royal) !important;
    color: var(--royal) !important;
}

.btn-curio-ghost:hover {
    background: var(--royal) !important;
    color: var(--ivory);
}

/* Ornament — derived from the Curio Couture mark: two interlocking loops + a diamond spark */
.ornament {
    display: inline-block;
    line-height: 0;
}

.ornament svg {
    display: block;
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto;
}

.divider-ornament .line {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- 1. PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #234C59 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

#preloader .loader-mark {
    animation: pulseMark 1.6s ease-in-out infinite;
}

@keyframes pulseMark {

    0%,
    100% {
        opacity: .45;
        transform: scale(.94);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   2. HEADER — THREE-TIER STRUCTURE
   Tier 1: top-bar (dark)   — social + shipping note + phone
   Tier 2: brand-bar (dark) — logo + search icon
   Tier 3: navbar-curio     — nav links + phone, on white
   ============================================================ */

/* ---------- 2a. TOP BAR ---------- */
.top-bar {
    background: #234C59 !important;
    color: rgba(251, 248, 242, .85);
   font-size: 1.1rem;
        font-weight: 400;
    padding: 11px 0;
    border-bottom: 1px solid rgba(251, 248, 242, .08);
}

.top-bar .container-xl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar-group {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-follow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-follow span {
    letter-spacing: .04em;
    color: rgba(251, 248, 242, .7);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-social a {
    color: var(--gold-light);
  font-size: 1.1rem;
        font-weight: 400;
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.top-bar-social a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.top-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(251, 248, 242, .18);
}

.top-bar-ship {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(251, 248, 242, .85);
}

.top-bar-ship i {
    color: var(--gold-light);
    font-size: 1.1rem;
        font-weight: 400;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .02em;
}

.top-bar-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(251, 248, 242, .12);
    color: var(--gold-light);
   font-size: 1.1rem;
        font-weight: 400;
}

/* ---------- 2b. BRAND BAR ---------- */
.brand-bar {
    background: #234C59 !important;
    padding: 26px 0;
    position: relative;
    z-index: 1001;
}

.brand-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.brand-bar .nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: .1em;
    color: #fff;
    flex-shrink: 0;
}

.brand-bar .nav-logo .ornament path,
.brand-bar .nav-logo .ornament circle,
.brand-bar .nav-logo .ornament line {
    stroke: #fff;
}

/* Mobile search toggle button lives in the brand bar (dark) — style for that context */
.brand-search-toggle {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(251, 248, 242, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.brand-search-toggle:hover {
    border-color: var(--gold-light);
    transform: none;
}

.brand-search-toggle.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #234C59 !important;
}

/* Mobile-only expanding search panel, anchored under the brand bar */
.mobile-search-panel {
    max-height: 0;
    overflow: hidden;
    background: #234C59 !important;
    border-top: 0 solid rgba(251, 248, 242, .12);
    opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease), border-color .4s var(--ease);
}

.mobile-search-panel.open {
    max-height: 90px;
    opacity: 1;
    border-top-color: rgba(251, 248, 242, .12);
}

.mobile-search-panel .brand-search {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(251, 248, 242, .3);
}

.mobile-search-panel .brand-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
        font-weight: 400;
    padding: 4px 0;
}

.mobile-search-panel .brand-search input::placeholder {
    color: rgba(251, 248, 242, .55);
}

.mobile-search-panel .brand-search button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
        font-weight: 400;
    flex-shrink: 0;
    transition: color .3s var(--ease);
}

.mobile-search-panel .brand-search button:hover {
    color: #fff;
}

/* ---------- 2c. MAIN NAV (white, links row) ---------- */
.navbar-curio {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 0;
    transition: box-shadow .4s var(--ease);
}

.navbar-curio.scrolled {
    box-shadow: 0 12px 30px rgba(11, 34, 41, .08);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 62px;
    position: relative;
}

.nav-inner nav {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links>li>a {
    display: inline-flex;
    align-items: center;
    gap: 6px; 
font-family: "Cormorant Garamond", serif;
  font-weight: 400 !important;
  font-style: normal !important;
   font-size: 15px !important;
       
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    
    position: relative;
    padding: 22px 0;
    transition: color .3s var(--ease);
}

.nav-links>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    height: 1px;
    width: 0;
    background: var(--gold-deep);
    transition: width .35s var(--ease);
}

.nav-links>li>a:hover::after,
.nav-links>li.active>a::after {
    width: 100%;
}

.nav-links>li>a:hover {
    color: var(--gold-deep);
}

.nav-links>li.active>a {
    color: var(--royal) !important;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.nav-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #234C59 !important;
    color: var(--gold-light);
   font-size: 1.1rem;
        font-weight: 400;
}

.nav-phone span {
   font-size: 1.1rem;
        font-weight: 400;
    color: #234C59 !important;
    letter-spacing: .02em;
}

.nav-icon-btn {
    position: relative;
    background: none;
    border: none;
    color: #234C59 !important;
    font-size: 1.12rem;
    cursor: pointer;
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.nav-icon-btn:hover {
    color: var(--gold-deep);
    transform: translateY(-2px);
}

/* Search icon at the start of the nav bar */
.nav-search-toggle {
    justify-self: start; 
      color: var(--gold-deep) !important;
}

.nav-search-toggle.active {
    color: var(--gold-deep);
}

/* Expanding search panel, anchored under the navbar */
.nav-search-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--ivory);
    border-bottom: 0 solid var(--line);
    opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease), border-color .4s var(--ease);
}

.nav-search-panel.open {
    max-height: 100px;
    opacity: 1;
    border-bottom: 1px solid var(--line);
}

.nav-search-panel .brand-search {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    transition: border-color .3s var(--ease);
}

.nav-search-panel .brand-search:focus-within {
    border-color: var(--gold-deep);
}

.nav-search-panel .brand-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--ink);
 font-family: "Cormorant Garamond", serif;
   font-size: 1.1rem;
        font-weight: 400;
    padding: 4px 0;
}

.nav-search-panel .brand-search input::placeholder {
    color: var(--ink-soft);
}

.nav-search-panel .brand-search button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--royal) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: color .3s var(--ease);
}

.nav-search-panel .brand-search button:hover {
    color: var(--gold-deep);
}

/* Unique mobile menu toggle — asymmetric three-line mark that morphs into an X */
.mobile-menu-btn {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(251, 248, 242, .35);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: border-color .35s var(--ease), background .35s var(--ease); 
    
}

.mobile-menu-btn:hover {
    border-color: var(--gold-light);
}

.mobile-menu-btn-line {
    display: block;
    height: 1.5px;
    border-radius: 2px;
    background: var(--gold-light);
    transition: all .4s var(--ease);
}

.mobile-menu-btn-line:nth-child(1) {
    width: 20px;
}

.mobile-menu-btn-line:nth-child(2) {
    width: 13px;
    align-self: flex-end;
    margin-right: 13px;
}

.mobile-menu-btn-line:nth-child(3) {
    width: 20px;
}

.mobile-menu-btn.open {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.mobile-menu-btn.open .mobile-menu-btn-line {
    background: #234C59 !important;
}

.mobile-menu-btn.open .mobile-menu-btn-line:nth-child(1) {
    width: 19px;
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.open .mobile-menu-btn-line:nth-child(2) {
    width: 0;
    opacity: 0;
    margin-right: 0;
}

.mobile-menu-btn.open .mobile-menu-btn-line:nth-child(3) {
    width: 19px;
    align-self: center;
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Simple Dropdown (Categorys / Occasions) ----------
   Replaces the old full-width mega-menu. This is a small,
   shrink-wrapped list that opens directly under its nav link.
   Single source of truth — no other .dropdown-* rules exist
   anywhere else in this file.
------------------------------------------------------------- */
.dropdown-wrap {
    position: relative;
}

.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    width: max-content;
    max-width: min(90vw, 300px);
    background: var(--ivory);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(11, 34, 41, .14);
    border-top: 2px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
    z-index: 999;
}

.dropdown-wrap:hover .simple-dropdown,
.dropdown-wrap:focus-within .simple-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.simple-dropdown li a {
    display: block;
    padding: 10px 22px;
  font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: all .25s var(--ease);
}

.simple-dropdown li a:hover {
    color: var(--royal) !important;
    background: var(--cream);
    padding-left: 26px;
}

/* Mobile offcanvas */
.offcanvas-curio {
    background: #234C59!important;
    color: var(--ivory);
    max-width: 360px;
}

.offcanvas-curio .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.offcanvas-curio .btn-close {
    filter: invert(1);
}

.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-links>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 1.1rem;
        font-weight: 400;
  font-family: "Cormorant Garamond", serif;
    letter-spacing: .02em;
}

.mobile-sub {
    list-style: none;
    padding: 6px 0 6px 16px;
    margin: 0;
    display: none;
}

.mobile-sub.open {
    display: block;
}

.mobile-sub li a {
    display: block;
    padding: 9px 0;
    font-size: 1.1rem;
        font-weight: 400;
    color: var(--gold-light);
font-family: "Cormorant Garamond", serif;
}

/* ---------- 4. HERO SLIDER ---------- */
.hero {
    position: relative;
    height: 88vh;
    min-height: 600px;
    overflow: hidden;
    background: #234C59 !important;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 34, 41, .72) 0%, rgba(11, 34, 41, .42) 48%, rgba(11, 34, 41, .18) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: var(--ivory);
    max-width: 640px;
}

.hero-slide-content .eyebrow {
    color: var(--gold-light);
}

.hero-slide-content .eyebrow::before {
    background: var(--gold-light);
}

.hero-title {
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.05;
    margin: 18px 0 22px;
    color: #fff;
    letter-spacing: .01em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
   font-size: 1.1rem;
        font-weight: 400;
    color: rgba(251, 248, 242, .85);
    max-width: 440px;
    margin-bottom: 34px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .carousel-indicators {
    bottom: 44px;
    left: auto;
    right: clamp(20px, 4vw, 64px);
    margin: 0;
    justify-content: flex-end;
    gap: 8px;
}

.hero .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, .4);
    opacity: 1;
    border: none;
}

.hero .carousel-indicators .active {
    background: var(--gold);
}

.hero-scroll-cue {
    position: absolute;
    left: clamp(20px, 4vw, 64px);
    bottom: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ivory);
    font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-scroll-cue .stem {
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, .4);
    position: relative;
    overflow: hidden;
}

.hero-scroll-cue .stem::after {
    content: "";
    position: absolute;
    top: -46px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollCue 2.2s ease-in-out infinite;
}

@keyframes scrollCue {
    0% {
        top: -46px;
    }

    100% {
        top: 46px;
    }
}

/* ---------- 5. MARQUEE STRIP ---------- */
.marquee-strip {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
font-family: "Cormorant Garamond", serif;
    font-style: italic;
  font-size: 1.1rem;
        font-weight: 400;
    color: var(--royal) !important;
    padding: 0 34px;
    white-space: nowrap;
}

.marquee-track span i {
    color: var(--gold);
    font-size: .5rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- 6. SECTION GENERIC ---------- */
.section {
    padding: 110px 0;
}

.section-cream {
    background: var(--cream);
}

.section-royal {
    background: var(--royal) !important;
    color: var(--ivory);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    margin-top: 16px;
    line-height: 1.2;
}

.section-head p {
    color: var(--ink-soft);
    margin-top: 16px;
    font-size: 1.1rem;
        font-weight: 400;
    line-height: 1.75;
}


.section-royal .section-head p {
    color: rgba(251, 248, 242, .75);
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-head-row h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin-top: 14px;
}

.view-all-link {
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--royal) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--royal) !important;
    padding-bottom: 4px;
    transition: gap .3s var(--ease);
}

.view-all-link:hover {
    gap: 14px;
    color: var(--gold-deep);
    border-color: var(--gold-deep);
}

/* ---------- 7. CATEGORY CIRCLES ---------- */
.cat-scroll {
    display: flex;
    gap: 34px;
    overflow-x: auto;
    padding: 6px 6px 20px;
    scroll-snap-type: x proximity;
}

.cat-scroll::-webkit-scrollbar {
    height: 4px;
}

.cat-scroll::-webkit-scrollbar-thumb {
    background: var(--gold-light);
}

.cat-item {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
    scroll-snap-align: start;
    cursor: pointer;
}

.cat-circle {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 1px solid var(--line);
    position: relative;
    transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.cat-item:hover .cat-circle {
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(189, 154, 76, .25);
}

.cat-item:hover .cat-circle img {
    transform: scale(1.12);
}

.cat-item span {
    font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .06em;
    color: var(--ink);
    font-weight: 500;
}

/* ---------- 8. FEATURED COLLECTION SPLIT ---------- */
.split-banner {
    display: flex;
    min-height: 560px;
    flex-wrap: wrap;
}

.split-media,
.split-text {
    flex: 1 1 480px;
}

.split-media {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1s var(--ease);
}

.split-banner:hover .split-media img {
    transform: scale(1.05);
}

.split-text {
    background: #234C59 !important;
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5vw, 90px);
}

.split-text .eyebrow {
    color: var(--gold-light);
}

.split-text .eyebrow::before {
    background: var(--gold-light);
}

.split-text h2 {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    margin: 18px 0 22px;
    line-height: 1.15;
}

.split-text p {
    color: rgba(251, 248, 242, .78);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 440px;
}

/* ---------- 9. PRODUCT CARDS ---------- */
.product-card {
    position: relative;
    background: var(--ivory);
    border-radius: 6px;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(11, 34, 41, .12);
}

.product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--cream);
    border-radius: 6px 6px 0 0;
    flex-shrink: 0;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .6s var(--ease), transform 1s var(--ease);
}

.product-media img.img-back {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .product-media img.img-front {
    opacity: 0;
}

.product-card:hover .product-media img.img-back {
    opacity: 1;
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--royal) !important;
    color: var(--ivory);
  font-size: 1.1rem;
        font-weight: 400;
       
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(11, 34, 41, .18);
}

.product-tag.sale {
    background: var(--gold-deep);
}

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(251, 248, 242, .92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #234C59 !important;
   font-size: 1.1rem;
        font-weight: 400;
    cursor: pointer;
    transition: all .35s var(--ease);
    opacity: 0;
    transform: translateY(-6px);
    box-shadow: 0 6px 14px rgba(11, 34, 41, .14);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--gold-deep);
    color: #fff;
}

.wishlist-btn.active i::before {
    content: "\f415";
}

.quick-view-btn {
     position: absolute;
            bottom: 14px;
            right: 14px;
            z-index: 3;
            background: rgba(255, 255, 255, .92);
            color: black !important;
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: 7px 14px;
            border-radius: 999px;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity .3s ease, transform .3s ease;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #234C59 !important;
    color: var(--gold-light);
}

.product-media .corner-orn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: all .5s var(--ease);
}

.product-card:hover .corner-orn {
    opacity: .9;
    transform: translate(0, 0);
}

.product-info {
    padding: 18px 16px 18px;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 6px 6px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-info .p-cat {
  font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.product-info h5 {
 font-family: "Cormorant Garamond", serif;
   font-size: 1.1rem;
        font-weight: 400;
    margin-top: 7px;
    font-weight: 400;
    color: #234C59 !important;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-top: 9px;
    display: flex;
    gap: 10px;
    align-items: baseline;
  font-size: 1.1rem;
        font-weight: 400;
}

.product-price .now {
    color: var(--ink);
    font-weight: 500;
}

.product-price .was {
    color: var(--ink-soft);
    text-decoration: line-through;
   font-size: 1.1rem;
        font-weight: 400;
}

.product-rating {
    margin-top: 6px;
    color: var(--gold-deep);
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .05em;
}

.add-to-bag-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--royal) !important;
    color: var(--royal) !important;
   font-family: "Cormorant Garamond", serif;
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .35s var(--ease);
    margin-top: auto;
    align-self: stretch;
}

.add-to-bag-btn:hover {
    background: var(--royal);
    color: var(--ivory);
}

.add-to-bag-btn.added {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #fff;
}

#bestSellerGrid.row,
#shopAllGrid.row,
#bestSellersPageGrid.row {
    align-items: stretch;
}

#bestSellerGrid>[class*="col-"],
#shopAllGrid>[class*="col-"],
#bestSellersPageGrid>[class*="col-"] {
    display: flex;
}

/* ---------- 10. PROMO BANNER ---------- */
.promo-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 34, 41, .82), rgba(11, 34, 41, .15));
}

.promo-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: clamp(30px, 5vw, 70px);
    max-width: 520px;
}

.promo-content .eyebrow {
    color: var(--gold-light);
}

.promo-content .eyebrow::before {
    background: var(--gold-light);
}

.promo-content h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    margin: 16px 0 20px;
}

.promo-content p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.75;
}

/* ---------- 11. TESTIMONIALS ---------- */
.testimonial-slide {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide .stars {
    color: var(--gold);
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 26px;
}

.testimonial-slide blockquote {
   font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    color: #234C59 !important;
    line-height: 1.6;
    margin: 0 0 30px;
}

.testimonial-slide .author {
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.testimonial-slide .author strong {
    color: var(--royal) !important;
font-family: "Cormorant Garamond", serif;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 50%;
    opacity: 1;
    color: var(--royal) !important;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    filter: invert(15%) sepia(15%) saturate(900%) hue-rotate(150deg);
    width: 14px;
    height: 14px;
}

/* ---------- 12. INSTAGRAM GALLERY ---------- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.insta-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 34, 41, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  font-size: 1.1rem;
        font-weight: 400;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .overlay {
    opacity: 1;
}

/* ---------- 13. NEWSLETTER ---------- */
.newsletter {
    background: #234C59 !important;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(228, 206, 149, .18);
    border-radius: 50%;
}

.newsletter::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(228, 206, 149, .12);
    border-radius: 50%;
}

.newsletter h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

.newsletter p {
    color: rgba(251, 248, 242, .72);
    margin-top: 16px;
    max-width: 460px;
}

.newsletter-form {
    display: flex;
    max-width: 440px;
    margin-top: 32px;
    border-bottom: 1px solid rgba(251, 248, 242, .4);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 4px;
    color: #fff;
  font-family: "Cormorant Garamond", serif;
   font-size: 1.1rem;
        font-weight: 400;
}

.newsletter-form input::placeholder {
    color: rgba(251, 248, 242, .5);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: var(--gold-light);
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 6px;
}

.newsletter-form button:hover {
    color: #fff;
}

.newsletter-note {
   font-size: 1.1rem;
        font-weight: 400;
    color: rgba(251, 248, 242, .5);
    margin-top: 14px;
}

.nav-logo img {
    height: 70px;
}

/* ---------- 14. FOOTER ---------- */
.footer {
    background: #234C59 !important;
    color: rgba(251, 248, 242, .72);
    padding-top: 80px;
}

.footer .nav-logo {
    color: #fff;
    margin-bottom: 18px;
}

.footer .nav-logo .ornament path,
.footer .nav-logo .ornament circle {
    stroke: var(--gold-light);
}

.footer p.tag {
   font-size: .6rem;
        font-weight: 400;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(251, 248, 242, .6);
}

.footer h6 {
    color: #fff;
font-family: "Cormorant Garamond", serif;
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
   font-size: 1.1rem;
        font-weight: 400;
    color: rgba(251, 248, 242, .65);
    transition: all .3s var(--ease);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(251, 248, 242, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #234C59 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 248, 242, .12);
    margin-top: 60px;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
   font-size: 1.1rem;
        font-weight: 400;
    color: rgba(251, 248, 242, .5);
}

.payment-icons {
    display: flex;
    gap: 10px;
   font-size: 1.1rem;
        font-weight: 400;
    color: rgba(251, 248, 242, .55);
}

/* ---------- 15. QUICK VIEW MODAL ---------- */
.modal-curio .modal-content {
    border: none;
    border-radius: 2px;
    background: var(--ivory);
}

.modal-curio .modal-body {
    padding: 0;
}

.qv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.qv-info {
    padding: 42px;
}

.qv-info .p-cat {
    color: var(--gold-deep);
   font-size: 1.1rem;
        font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.qv-info h3 {
    margin-top: 10px;
    font-size: 1.6rem;
}

.qv-price {
    margin-top: 14px;
    font-size: 1.15rem;
    color: var(--royal) !important;
}

.qv-desc {
    margin-top: 18px;
    color: var(--ink-soft);
  font-size: 1.1rem;
        font-weight: 400;
    line-height: 1.8;
}

.size-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.size-swatch {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line) !important;
    display: flex;
    align-items: center;
    justify-content: center;
   font-size: 1.1rem;
        font-weight: 400;
    cursor: pointer;
    transition: all .3s;
}

.size-swatch:hover,
.size-swatch.active {
    border-color: var(--royal) !important;
    background: var(--royal) !important;
    color: #fff;
}

.qv-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

/* ---------- 16. NEW ARRIVALS — horizontal scroll-snap carousel ---------- */
.new-arr-controls {
    display: flex;
    gap: 10px;
}

.new-arr-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--ivory);
    color: var(--royal) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.new-arr-nav-btn:hover {
    background: var(--royal) !important;
    color: var(--gold-light);
    border-color: var(--royal) !important;
}

.new-arr-nav-btn.disabled {
    opacity: .35;
    pointer-events: none;
}

.new-arr-viewport {
    overflow: hidden;
}

.new-arr-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 12px;
    margin: 0 -4px;
}

.new-arr-track::-webkit-scrollbar {
    display: none;
}

.new-arr-track {
    scrollbar-width: none;
}

.new-arr-slide {
    flex: 0 0 auto;
    width: 270px;
    scroll-snap-align: start;
}

.new-arr-progress {
    height: 2px;
    background: var(--line);
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.new-arr-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--gold-deep);
    transition: width .2s linear;
}

/* ---------- 17. BACK TO TOP + MISC ---------- */
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 900;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--royal) !important;
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .4s var(--ease);
    box-shadow: 0 10px 24px rgba(11, 34, 41, .25);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-deep);
}

.lazy-fade {
    opacity: 0;
    transition: opacity .8s var(--ease);
}

.lazy-fade.loaded {
    opacity: 1;
}

/* ---------- 18. PAGE BANNER (interior pages, e.g. Bestsellers) ---------- */
.page-banner {
    background: #234C59 !important;
    position: relative;
    overflow: hidden;
    padding: 68px 0 54px;
    text-align: center;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -80px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(228, 206, 149, .16);
    border-radius: 50%;
}

.page-banner::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -90px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(228, 206, 149, .1);
    border-radius: 50%;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
}

.page-banner .eyebrow {
    justify-content: center;
    color: var(--gold-light);
}

.page-banner .eyebrow::before {
    background: var(--gold-light);
}

.page-banner h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    margin-top: 16px;
    line-height: 1.15;
}

.page-banner-sub {
    color: rgba(251, 248, 242, .72);
    max-width: 520px;
    margin: 16px auto 0;
    font-size: .96rem;
    line-height: 1.75;
}

.breadcrumb {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(251, 248, 242, .5);
}

.breadcrumb a {
    color: rgba(251, 248, 242, .85);
    transition: color .3s var(--ease);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb .current {
    color: var(--gold-light);
}

/* ---------- 19. SHOP TOOLBAR (result count + sort, interior listing pages) ---------- */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.shop-toolbar-count {
    font-size: .85rem;
    color: var(--ink-soft);
    letter-spacing: .02em;
}

.shop-toolbar-count strong {
    color: #234C59 !important;
    font-weight: 500;
}

.shop-toolbar-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-toolbar-sort label {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
}

@media(max-width:575px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:991px) {

    .top-bar,
    .navbar-curio {
        display: none !important;
    }

    .section {
        padding: 70px 0;
    }

    .split-banner {
        flex-direction: column;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: clamp(2.1rem, 7vw, 3rem);
    }

    .brand-bar {
        padding: 18px 0;
    }

    .brand-bar-grid {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .brand-bar .nav-logo {
        flex: 1;
        justify-content: center;
    }

    .mobile-menu-btn,
    .brand-search-toggle {
        flex-shrink: 0;
    }

    .brand-bar .nav-logo {
        font-size: 1.3rem;
    }

    .brand-bar .nav-logo img {
        height: 38px;
    }

    .new-arr-slide {
        width: 220px;
    }

    .new-arr-controls {
        display: none;
    }

    .product-info h5 {
        min-height: 0;
    }

    .page-banner {
        padding: 48px 0 38px;
    }
}

@media(max-width:575px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qv-img {
        min-height: 260px;
    }

    .nav-icon-btn {
        color: var(--cream);
        border: 1px solid rgb(148, 147, 147);
    }


    .brand-bar .nav-logo img {
        height: 32px;
    }

    .new-arr-slide {
        width: 72vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}


/* ============================================================
   20. BESTSELLERS PAGE — filter/sort group + pagination
   (additive rules only — nothing above this line is modified)
   ============================================================ */

.bestseller-head {
    margin-bottom: 44px;
}

.shop-toolbar-filters {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Empty state, shown when a filter yields zero products */
.shop-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--ink-soft);
    font-size: .95rem;
    display: none;
}

.shop-empty.show {
    display: block;
}

.shop-empty i {
    display: block;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

/* Pagination */
.pagination-curio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 64px;
}

.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 6px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--ivory);
    color: #234C59 !important;
  font-family: "Cormorant Garamond", serif;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.pg-btn:hover:not(.disabled):not(.active) {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
}

.pg-btn.active {
    background: var(--royal) !important;
    border-color: var(--royal) !important;
    color: var(--gold-light);
}

.pg-btn.disabled {
    opacity: .35;
    pointer-events: none;
}

.pg-dots {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 24px;
    height: 44px;
    color: var(--ink-soft);
    letter-spacing: 2px;
    padding-bottom: 12px;
}

@media (max-width: 575px) {
    .pg-btn {
        min-width: 38px;
        height: 38px;
        font-size: .8rem;
    }

    .pagination-curio {
        gap: 6px;
        margin-top: 48px;
    }
}

/* ============================================================
   FILTER CHIP DROPDOWNS — clean redesign
   Single source of truth for every .filter-chip select on the
   site (category filter, price filter, sort). No duplicate or
   commented-out overrides fighting each other.
   ============================================================ */

/* ---- responsive ---- */
@media (max-width: 767px) {
    .shop-toolbar-filters {
        width: 100%;
        gap: 12px;
    }

    .filter-chip {
        flex: 1 1 auto;
        justify-content: space-between;
        padding: 10px 16px 10px 10px;
    }

    .filter-chip select {
        flex: 1 1 auto;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .bestseller-head {
        margin-bottom: 32px;
    }

    .shop-toolbar-filters {
        flex-direction: column;
    }

    .filter-chip {
        width: 100%;
    }
}