 :root {
     --bg: #fdfcfa;
     --bg2: #f5f3ef;
     --bg3: #ede9e2;
     --card: #ffffff;
     --text: #18160f;
     --text2: #6a6354;
     --text3: #a89f8e;
     --gold: #b8934a;
     --gold-l: #e8d4a8;
     --gold-d: #8a6428;
     --ink: #18160f;
     --cream: #fdf8f0;
     --border: rgba(24, 22, 15, 0.09);
     --border2: rgba(24, 22, 15, 0.05);
     --red: #c0392b;
     --green: #27866a;
     --sh: 0 2px 20px rgba(24, 22, 15, 0.07);
     --sh-lg: 0 12px 48px rgba(24, 22, 15, 0.13);
     --nav: 70px;
 }

 [data-theme="dark"] {
     --bg: #110f0a;
     --bg2: #1a1710;
     --bg3: #231f16;
     --card: #1e1b13;
     --text: #f0ead8;
     --text2: #9a9080;
     --text3: #635c4e;
     --gold: #d4aa66;
     --gold-l: #3a2e14;
     --gold-d: #e8cb8a;
     --ink: #f0ead8;
     --cream: #1a1710;
     --border: rgba(240, 234, 216, 0.09);
     --border2: rgba(240, 234, 216, 0.04);
     --sh: 0 2px 20px rgba(0, 0, 0, 0.4);
     --sh-lg: 0 12px 48px rgba(0, 0, 0, 0.55);
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Outfit', sans-serif;
     background: var(--bg);
     color: var(--text);
     transition: background .4s, color .4s;
     overflow-x: hidden;
 }

 img {
     display: block;
     max-width: 100%;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 button {
     cursor: pointer;
     font-family: 'Outfit', sans-serif;
 }

 ::-webkit-scrollbar {
     width: 5px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bg2);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--gold);
     border-radius: 3px;
 }

 /* ═══ NAV ═══ */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999;
     height: var(--nav);
     display: flex;
     align-items: center;
     padding: 0 4vw;
     justify-content: space-between;
     background: var(--bg);
     border-bottom: 1px solid var(--border2);
     transition: background .4s, box-shadow .3s, border-color .4s;
 }

 nav.up {
     box-shadow: var(--sh);
 }

 .logo {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.55rem;
     font-weight: 600;
     letter-spacing: .12em;
     color: var(--text);
 }

 .logo sup {
     color: var(--gold);
     font-size: .65em;
     vertical-align: super;
     letter-spacing: .06em;
 }

 .nav-mid {
     display: flex;
     gap: 2.2rem;
     list-style: none;
 }

 .nav-mid a {
     font-size: .8rem;
     font-weight: 500;
     letter-spacing: .08em;
     text-transform: uppercase;
     color: var(--text2);
     position: relative;
     padding-bottom: 3px;
     transition: color .2s;
 }

 .nav-mid a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: var(--gold);
     transition: width .3s;
 }

 .nav-mid a:hover {
     color: var(--text);
 }

 .nav-mid a:hover::after {
     width: 100%;
 }

 .nav-right {
     display: flex;
     align-items: center;
     gap: .75rem;
 }

 .icon-btn {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     border: 1px solid var(--border);
     background: transparent;
     color: var(--text);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     transition: all .2s;
     position: relative;
 }

 .icon-btn:hover {
     border-color: var(--gold);
     color: var(--gold);
     background: var(--gold-l);
 }

 .badge {
     position: absolute;
     top: -3px;
     right: -3px;
     width: 17px;
     height: 17px;
     background: var(--gold);
     color: #fff;
     border-radius: 50%;
     font-size: 9px;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Theme toggle */
 .tog {
     width: 50px;
     height: 26px;
     border-radius: 13px;
     border: 1px solid var(--border);
     background: var(--bg3);
     position: relative;
     transition: background .3s;
     display: flex;
     align-items: center;
     padding: 2px;
 }

 .tog-thumb {
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background: var(--card);
     box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
     transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
 }

 [data-theme="dark"] .tog-thumb {
     transform: translateX(24px);
 }

 /* Burger */
 .burger {
     display: none;
     flex-direction: column;
     gap: 4px;
     background: none;
     border: none;
     padding: 4px;
 }

 .burger span {
     width: 22px;
     height: 1.5px;
     background: var(--text);
     border-radius: 2px;
     transition: all .3s;
     display: block;
 }

 .burger.open span:nth-child(1) {
     transform: rotate(45deg) translate(4px, 4px);
 }

 .burger.open span:nth-child(2) {
     opacity: 0;
 }

 .burger.open span:nth-child(3) {
     transform: rotate(-45deg) translate(4px, -4px);
 }

 /* Mobile drawer */
 .mob-nav {
     position: fixed;
     top: var(--nav);
     left: 0;
     right: 0;
     bottom: 0;
     background: var(--bg);
     z-index: 998;
     padding: 2.5rem 4vw;
     flex-direction: column;
     gap: 2rem;
     display: none;
     transform: translateX(-100%);
     transition: transform .38s cubic-bezier(.4, 0, .2, 1);
 }

 .mob-nav.vis {
     border-radius: 0px 0px 60px 0px;
     transform: translateX(0);
 }

 .mob-nav a {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2rem;
     color: var(--text);
     font-style: italic;
 }

 /* ═══ HERO ═══ */
 .hero {
     min-height: 100vh;
     padding-top: var(--nav);
     display: grid;
     grid-template-columns: 1fr 1fr;
     position: relative;
     overflow: hidden;
 }

 .hero-left {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 6rem 4vw 6rem 6vw;
     position: relative;
     z-index: 2;
 }

 .hero-kicker {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: .68rem;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--gold);
     font-weight: 600;
     margin-bottom: 1.8rem;
 }

 .hero-kicker::before,
 .hero-kicker::after {
     content: '—';
     opacity: .5;
 }

 .hero h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(3rem, 5.5vw, 5.5rem);
     font-weight: 300;
     line-height: 1.08;
     color: var(--text);
     margin-bottom: 1.8rem;
 }

 .hero h1 em {
     font-style: italic;
     color: var(--gold);
 }

 .hero h1 strong {
     font-weight: 600;
     display: block;
 }

 .hero-sub {
     font-size: .9rem;
     line-height: 1.75;
     color: var(--text2);
     max-width: 400px;
     margin-bottom: 2.8rem;
 }

 .hero-btns {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .btn-fill {
     padding: 13px 32px;
     background: var(--ink);
     color: var(--cream);
     border: 1px solid var(--ink);
     border-radius: 3px;
     font-size: .8rem;
     font-weight: 600;
     letter-spacing: .1em;
     text-transform: uppercase;
     transition: all .25s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .btn-fill:hover {
     background: var(--gold);
     border-color: var(--gold);
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(184, 147, 74, .3);
 }

 .btn-ghost {
     padding: 13px 32px;
     background: transparent;
     color: var(--text);
     border: 1px solid var(--border);
     border-radius: 3px;
     font-size: .8rem;
     font-weight: 500;
     letter-spacing: .08em;
     text-transform: uppercase;
     transition: all .25s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .btn-ghost:hover {
     border-color: var(--gold);
     color: var(--gold);
 }

 .hero-nums {
     display: flex;
     gap: 3rem;
     margin-top: 3.5rem;
 }

 .num-item {}

 .num-val {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.2rem;
     font-weight: 600;
     color: var(--text);
 }

 .num-lbl {
     font-size: .68rem;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: var(--text3);
     margin-top: 2px;
 }

 /* Hero right — image collage */
 .hero-right {
     display: grid;
     grid-template-columns: 1fr 1fr;
     grid-template-rows: 1fr 1fr;
     gap: 6px;
     padding: 6px 6px 6px 0;
     height: 100vh;
 }

 .hero-img-block {
     overflow: hidden;
     position: relative;
 }

 .hero-img-block img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .6s ease;
 }

 .hero-img-block:hover img {
     transform: scale(1.05);
 }

 .hero-img-block.big {
     grid-row: 1/3;
 }

 .hero-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, .45));
     padding: 1.5rem 1rem;
     color: #fff;
 }

 .hero-overlay-tag {
     font-size: .65rem;
     letter-spacing: .14em;
     text-transform: uppercase;
     opacity: .8;
     margin-bottom: 3px;
 }

 .hero-overlay-name {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.1rem;
     font-style: italic;
 }

 /* Floating card */
 .float-card {
     position: absolute;
     bottom: 2rem;
     left: -16px;
     z-index: 10;
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 14px 18px;
     box-shadow: var(--sh-lg);
     min-width: 190px;
     animation: float 4s ease-in-out infinite;
 }

 .float-card-top {
     font-size: .65rem;
     color: var(--text3);
     text-transform: uppercase;
     letter-spacing: .1em;
 }

 .float-card-val {
     font-size: 1rem;
     font-weight: 600;
     margin-top: 3px;
 }

 .float-card-sub {
     font-size: .72rem;
     color: var(--green);
     margin-top: 2px;
 }

 /* ═══ MARQUEE ═══ */
 .marquee-wrap {
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     padding: .85rem 0;
     overflow: hidden;
     background: var(--bg2);
 }

 .marquee {
     display: flex;
     gap: 3rem;
     white-space: nowrap;
     animation: scroll 22s linear infinite;
 }

 .marquee-item {
     font-size: .72rem;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--text3);
     display: flex;
     align-items: center;
     gap: .75rem;
 }

 .marquee-dot {
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: var(--gold);
     flex-shrink: 0;
 }

 /* ═══ SECTION BASE ═══ */
 .sec {
     padding: 6rem 4vw;
 }

 .sec-alt {
     background: var(--bg2);
 }

 .sec-hdr {
     margin-bottom: 3.5rem;
 }

 .sec-kicker {
     font-size: .68rem;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--gold);
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: .6rem;
     margin-bottom: .85rem;
 }

 .sec-kicker::before {
     content: '';
     width: 28px;
     height: 1px;
     background: var(--gold);
 }

 .sec-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(2rem, 3.8vw, 3.2rem);
     font-weight: 300;
     color: var(--text);
     line-height: 1.15;
 }

 .sec-title em {
     font-style: italic;
     color: var(--gold);
 }

 .sec-sub {
     font-size: .875rem;
     color: var(--text2);
     margin-top: .75rem;
     line-height: 1.7;
     max-width: 460px;
 }

 .sec-hdr-row {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     flex-wrap: wrap;
     gap: 1rem;
 }

 /* ═══ CATEGORIES ═══ */
 .cat-scroll {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 1rem;
 }

 .cat-card {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     aspect-ratio: 3/4;
     cursor: pointer;
     transition: transform .35s;
 }

 .cat-card:hover {
     transform: scale(1.02);
 }

 .cat-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s ease;
 }

 .cat-card:hover img {
     transform: scale(1.08);
 }

 .cat-cover {
     position: absolute;
     inset: 0;
     background: linear-gradient(160deg, transparent 40%, rgba(0, 0, 0, .6));
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 1.2rem;
 }

 .cat-name {
     font-family: 'Cormorant Garamond', serif;
     font-style: italic;
     font-size: 1.35rem;
     color: #fff;
     font-weight: 400;
     line-height: 1.15;
 }

 .cat-count {
     font-size: .65rem;
     color: rgba(255, 255, 255, .65);
     letter-spacing: .1em;
     text-transform: uppercase;
     margin-top: 3px;
 }

 .cat-tag {
     position: absolute;
     top: 12px;
     left: 12px;
     background: var(--gold);
     color: #fff;
     font-size: .6rem;
     letter-spacing: .12em;
     text-transform: uppercase;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 3px;
 }

 /* ═══ FILTER PILLS ═══ */
 .filters {
     display: flex;
     gap: .6rem;
     flex-wrap: wrap;
     margin-bottom: 2.5rem;
 }

 .fpill {
     padding: 8px 20px;
     border: 1px solid var(--border);
     border-radius: 30px;
     background: transparent;
     color: var(--text2);
     font-size: .78rem;
     font-weight: 500;
     letter-spacing: .04em;
     transition: all .22s;
 }

 .fpill.on,
 .fpill:hover {
     background: var(--ink);
     border-color: var(--ink);
     color: var(--cream);
 }

 [data-theme="dark"] .fpill.on,
 [data-theme="dark"] .fpill:hover {
     background: var(--gold);
     border-color: var(--gold);
     color: #fff;
 }

 /* ═══ PRODUCT GRID ═══ */
 .prod-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
     gap: 1.25rem;
 }

 .pcard {
     background: var(--card);
     border: 1px solid var(--border2);
     border-radius: 10px;
     overflow: hidden;
     transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s;
 }

 .pcard:hover {
     transform: translateY(-8px);
     box-shadow: var(--sh-lg);
     border-color: var(--border);
 }

 .pcard-img {
     height: 310px;
     overflow: hidden;
     position: relative;
     background: var(--bg2);
 }

 .pcard-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .55s ease;
 }

 .pcard:hover .pcard-img img {
     transform: scale(1.07);
 }

 .pcard-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 12px;
 }

 .pcard-bdg {
     align-self: flex-start;
     font-size: .58rem;
     font-weight: 700;
     letter-spacing: .12em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 3px;
 }

 .bdg-new {
     background: #18160f;
     color: #fff;
 }

 .bdg-sale {
     background: var(--red);
     color: #fff;
 }

 .bdg-hot {
     background: var(--gold);
     color: #fff;
 }

 .pcard-acts {
     display: flex;
     flex-direction: column;
     gap: 6px;
     align-self: flex-end;
     opacity: 0;
     transform: translateX(12px);
     transition: all .3s;
 }

 .pcard:hover .pcard-acts {
     opacity: 1;
     transform: translateX(0);
 }

 .act {
     width: 34px;
     height: 34px;
     border-radius: 7px;
     background: var(--card);
     border: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .95rem;
     transition: all .2s;
     color: var(--text);
 }

 .act:hover {
     background: var(--gold);
     border-color: var(--gold);
     color: #fff;
     transform: scale(1.1);
 }

 .pcard-body {
     padding: 1.1rem;
 }

 .pcard-cat {
     font-size: .62rem;
     color: var(--text3);
     text-transform: uppercase;
     letter-spacing: .1em;
     margin-bottom: 4px;
 }

 .pcard-name {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.1rem;
     font-weight: 400;
     color: var(--text);
     line-height: 1.25;
     margin-bottom: .5rem;
 }

 .pcard-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: .75rem;
 }

 .pcard-stars {
     color: var(--gold);
     font-size: .7rem;
     letter-spacing: 1px;
 }

 .pcard-reviews {
     font-size: .7rem;
     color: var(--text3);
 }

 .pcard-price {
     display: flex;
     align-items: baseline;
     gap: .4rem;
 }

 .pcard-price .now {
     font-size: 1rem;
     font-weight: 600;
     color: var(--text);
 }

 .pcard-price .was {
     font-size: .78rem;
     color: var(--text3);
     text-decoration: line-through;
 }

 .pcard-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: .75rem;
     padding-top: .75rem;
     border-top: 1px solid var(--border2);
 }

 .pcard-sizes {
     display: flex;
     gap: 4px;
 }

 .sz {
     width: 26px;
     height: 26px;
     border: 1px solid var(--border);
     border-radius: 4px;
     font-size: .62rem;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text2);
     transition: all .2s;
     cursor: pointer;
 }

 .sz:hover,
 .sz.sel {
     background: var(--ink);
     border-color: var(--ink);
     color: var(--cream);
 }

 [data-theme="dark"] .sz:hover,
 [data-theme="dark"] .sz.sel {
     background: var(--gold);
     border-color: var(--gold);
     color: #fff;
 }

 .add-btn {
     width: 34px;
     height: 34px;
     background: var(--ink);
     border: none;
     border-radius: 7px;
     color: var(--cream);
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all .22s;
 }

 .add-btn:hover {
     background: var(--gold);
     transform: scale(1.12) rotate(8deg);
 }

 .add-btn.ok {
     background: var(--green);
 }

 /* ═══ FEATURE STRIP ═══ */
 .feature-strip {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: var(--border);
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
 }

 .feat-item {
     background: var(--bg2);
     padding: 2rem;
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     transition: background .2s;
 }

 .feat-item:hover {
     background: var(--bg3);
 }

 .feat-icon {
     font-size: 1.6rem;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .feat-title {
     font-size: .85rem;
     font-weight: 600;
     color: var(--text);
     margin-bottom: 3px;
 }

 .feat-desc {
     font-size: .78rem;
     color: var(--text2);
     line-height: 1.55;
 }

 /* ═══ EDITORIAL BANNER ═══ */
 .editorial {
     display: grid;
     grid-template-columns: 1fr 1fr;
     min-height: 560px;
 }

 .ed-img {
     overflow: hidden;
     position: relative;
 }

 .ed-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .7s ease;
 }

 .editorial:hover .ed-img img {
     transform: scale(1.04);
 }

 .ed-content {
     background: var(--ink);
     color: var(--cream);
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 5rem 5vw;
 }

 [data-theme="dark"] .ed-content {
     background: var(--bg3);
     color: var(--text);
 }

 .ed-kicker {
     font-size: .68rem;
     letter-spacing: .2em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 1.2rem;
     display: flex;
     align-items: center;
     gap: .5rem;
 }

 .ed-kicker::before {
     content: '';
     width: 20px;
     height: 1px;
     background: var(--gold);
 }

 .ed-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(2.2rem, 4vw, 3.8rem);
     font-weight: 300;
     line-height: 1.1;
     margin-bottom: 1.5rem;
 }

 .ed-title span {
     font-style: italic;
     color: var(--gold);
 }

 .ed-desc {
     font-size: .875rem;
     line-height: 1.75;
     opacity: .75;
     margin-bottom: 2.5rem;
     max-width: 400px;
 }

 .ed-timer {
     display: flex;
     gap: 1.5rem;
     margin-bottom: 2.5rem;
 }

 .ed-t-box {
     text-align: center;
 }

 .ed-t-num {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.4rem;
     font-weight: 600;
     line-height: 1;
     color: var(--gold);
 }

 .ed-t-lbl {
     font-size: .6rem;
     letter-spacing: .12em;
     text-transform: uppercase;
     opacity: .55;
     margin-top: 3px;
 }

 .ed-t-sep {
     font-size: 1.6rem;
     opacity: .3;
     padding-top: 6px;
 }

 .ed-disc {
     font-size: .75rem;
     opacity: .5;
     margin-top: 1.5rem;
 }

 /* ═══ LOOKBOOK ═══ */
 .lookbook-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     grid-template-rows: auto auto;
     gap: 8px;
 }

 .look-item {
     overflow: hidden;
     border-radius: 8px;
     position: relative;
     cursor: pointer;
 }

 .look-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s ease;
 }

 .look-item:hover img {
     transform: scale(1.06);
 }

 .look-item.main {
     grid-row: 1/3;
     height: 680px;
 }

 .look-item.small {
     height: 334px;
 }

 .look-info {
     position: absolute;
     inset: 0;
     background: linear-gradient(transparent 50%, rgba(0, 0, 0, .55));
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 1.25rem;
     opacity: 0;
     transition: opacity .3s;
 }

 .look-item:hover .look-info {
     opacity: 1;
 }

 .look-tag {
     font-size: .62rem;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .7);
 }

 .look-name {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.1rem;
     font-style: italic;
     color: #fff;
     margin-top: 4px;
 }

 .look-price {
     font-size: .78rem;
     color: rgba(255, 255, 255, .7);
     margin-top: 4px;
 }

 /* ═══ TESTIMONIALS ═══ */
 .testi-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 1.25rem;
 }

 .tcard {
     background: var(--card);
     border: 1px solid var(--border2);
     border-radius: 10px;
     padding: 2rem;
     transition: transform .3s, box-shadow .3s;
 }

 .tcard:hover {
     transform: translateY(-4px);
     box-shadow: var(--sh);
 }

 .tcard-stars {
     color: var(--gold);
     letter-spacing: 2px;
     font-size: .8rem;
     margin-bottom: 1rem;
 }

 .tcard-text {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.05rem;
     font-style: italic;
     line-height: 1.7;
     color: var(--text2);
     margin-bottom: 1.5rem;
 }

 .tcard-auth {
     display: flex;
     align-items: center;
     gap: .85rem;
 }

 .tcard-av {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
     border: 2px solid var(--gold-l);
 }

 .tcard-av img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .tcard-name {
     font-size: .875rem;
     font-weight: 600;
     color: var(--text);
 }

 .tcard-role {
     font-size: .72rem;
     color: var(--text3);
 }

 /* ═══ NEWSLETTER ═══ */
 .nl-wrap {
     max-width: 620px;
     margin: 0 auto;
     text-align: center;
 }

 .nl-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(2rem, 3.5vw, 3rem);
     font-weight: 300;
     color: var(--text);
     margin-bottom: .75rem;
 }

 .nl-title em {
     font-style: italic;
     color: var(--gold);
 }

 .nl-sub {
     font-size: .875rem;
     color: var(--text2);
     line-height: 1.7;
     margin-bottom: 2rem;
 }

 .nl-form {
     display: flex;
     max-width: 440px;
     margin: 0 auto;
     border: 1px solid var(--border);
     border-radius: 5px;
     overflow: hidden;
     background: var(--card);
     box-shadow: var(--sh);
 }

 .nl-form input {
     flex: 1;
     padding: 14px 18px;
     border: none;
     background: transparent;
     font-family: 'Outfit', sans-serif;
     font-size: .875rem;
     color: var(--text);
     outline: none;
 }

 .nl-form input::placeholder {
     color: var(--text3);
 }

 .nl-form button {
     padding: 14px 22px;
     background: var(--ink);
     border: none;
     color: var(--cream);
     font-size: .78rem;
     font-weight: 600;
     letter-spacing: .08em;
     text-transform: uppercase;
     transition: background .2s;
     white-space: nowrap;
 }

 .nl-form button:hover {
     background: var(--gold);
 }

 /* ═══ FOOTER ═══ */
 footer {
     background: var(--bg3);
     border-top: 1px solid var(--border);
     padding: 5rem 4vw 2.5rem;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 2.2fr 1fr 1fr 1fr;
     gap: 3rem;
     margin-bottom: 4rem;
 }

 .footer-brand {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.6rem;
     font-weight: 600;
     letter-spacing: .1em;
     margin-bottom: 1rem;
 }

 .footer-brand sup {
     color: var(--gold);
     font-size: .6em;
     vertical-align: super;
 }

 .footer-desc {
     font-size: .82rem;
     color: var(--text2);
     line-height: 1.7;
     margin-bottom: 1.5rem;
     max-width: 280px;
 }

 .social-row {
     display: flex;
     gap: .6rem;
 }

 .social {
     width: 34px;
     height: 34px;
     border: 1px solid var(--border);
     border-radius: 6px;
     background: transparent;
     color: var(--text2);
     font-size: .9rem;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all .2s;
 }

 .social:hover {
     border-color: var(--gold);
     color: var(--gold);
     transform: translateY(-2px);
 }

 .footer-col h5 {
     font-size: .75rem;
     font-weight: 700;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--text);
     margin-bottom: 1.25rem;
 }

 .footer-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: .55rem;
 }

 .footer-col li a {
     font-size: .82rem;
     color: var(--text2);
     transition: color .2s;
 }

 .footer-col li a:hover {
     color: var(--gold);
 }

 .footer-bot {
     border-top: 1px solid var(--border2);
     padding-top: 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .footer-copy {
     font-size: .75rem;
     color: var(--text3);
 }

 .pay-icons {
     display: flex;
     gap: .5rem;
     font-size: 1.2rem;
 }

 /* ═══ CART DRAWER ═══ */
 .overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .55);
     z-index: 2000;
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s;
 }

 .overlay.on {
     opacity: 1;
     pointer-events: all;
 }

 .drawer {
     position: fixed;
     top: 0;
     right: 0;
     bottom: 0;
     width: 420px;
     max-width: 100vw;
     background: var(--card);
     z-index: 2001;
     border-left: 1px solid var(--border);
     transform: translateX(110%);
     transition: transform .42s cubic-bezier(.4, 0, .2, 1);
     display: flex;
     flex-direction: column;
 }

 .drawer.on {
     transform: translateX(0);
 }

 .drawer-hdr {
     padding: 1.4rem 1.5rem;
     border-bottom: 1px solid var(--border2);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .drawer-hdr h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.2rem;
     font-weight: 600;
 }

 .close-x {
     width: 34px;
     height: 34px;
     border: 1px solid var(--border);
     border-radius: 6px;
     background: transparent;
     color: var(--text);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .9rem;
     transition: all .2s;
 }

 .close-x:hover {
     background: var(--bg2);
 }

 .drawer-body {
     flex: 1;
     overflow-y: auto;
     padding: 1rem;
 }

 .ci {
     display: flex;
     gap: .9rem;
     padding: .9rem;
     border: 1px solid var(--border2);
     border-radius: 8px;
     margin-bottom: .65rem;
     background: var(--bg);
     transition: border-color .2s;
 }

 .ci:hover {
     border-color: var(--border);
 }

 .ci-img {
     width: 72px;
     height: 90px;
     border-radius: 6px;
     overflow: hidden;
     flex-shrink: 0;
     background: var(--bg2);
 }

 .ci-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .ci-info {
     flex: 1;
 }

 .ci-name {
     font-size: .85rem;
     font-weight: 600;
     margin-bottom: 2px;
     color: var(--text);
 }

 .ci-size {
     font-size: .7rem;
     color: var(--text3);
 }

 .ci-price {
     font-size: .85rem;
     color: var(--gold);
     font-weight: 600;
     margin-top: 4px;
 }

 .ci-qty {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-top: 8px;
 }

 .qb {
     width: 26px;
     height: 26px;
     border: 1px solid var(--border);
     border-radius: 5px;
     background: transparent;
     color: var(--text);
     font-size: .9rem;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all .2s;
 }

 .qb:hover {
     background: var(--gold);
     border-color: var(--gold);
     color: #fff;
 }

 .qn {
     font-size: .82rem;
     font-weight: 600;
     min-width: 18px;
     text-align: center;
 }

 .ci-del {
     margin-left: auto;
     background: none;
     border: none;
     color: var(--text3);
     font-size: .9rem;
     padding: 4px;
     transition: color .2s;
 }

 .ci-del:hover {
     color: var(--red);
 }

 .drawer-ft {
     padding: 1.4rem 1.5rem;
     border-top: 1px solid var(--border2);
 }

 .tot-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.2rem;
 }

 .tot-row span {
     font-size: .82rem;
     color: var(--text2);
 }

 .tot-row strong {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.4rem;
     font-weight: 600;
 }

 .chk-btn {
     width: 100%;
     padding: 15px;
     background: var(--ink);
     color: var(--cream);
     border: none;
     border-radius: 5px;
     font-size: .82rem;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     transition: all .25s;
 }

 .chk-btn:hover {
     background: var(--gold);
     transform: translateY(-1px);
     box-shadow: 0 8px 24px rgba(184, 147, 74, .3);
 }

 .cart-empty {
     text-align: center;
     padding: 3rem 1rem;
     color: var(--text3);
 }

 .cart-empty .big {
     font-size: 3rem;
     margin-bottom: .75rem;
 }

 /* ═══ SEARCH ═══ */
 .s-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .7);
     z-index: 2000;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding-top: 100px;
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s;
 }

 .s-overlay.on {
     opacity: 1;
     pointer-events: all;
 }

 .s-box {
     width: 580px;
     max-width: 92vw;
     background: var(--card);
     border-radius: 14px;
     padding: 1.4rem;
     box-shadow: var(--sh-lg);
     transform: translateY(-18px);
     transition: transform .3s;
 }

 .s-overlay.on .s-box {
     transform: translateY(0);
 }

 .s-row {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     border: 1px solid var(--border);
     border-radius: 8px;
     margin-bottom: .9rem;
 }

 .s-row input {
     flex: 1;
     border: none;
     background: transparent;
     font-size: .95rem;
     color: var(--text);
     font-family: 'Outfit', sans-serif;
     outline: none;
 }

 .s-row input::placeholder {
     color: var(--text3);
 }

 .s-sugg {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .s-item {
     padding: 9px 12px;
     border-radius: 6px;
     cursor: pointer;
     font-size: .83rem;
     color: var(--text2);
     display: flex;
     align-items: center;
     gap: 10px;
     transition: all .15s;
 }

 .s-item:hover {
     background: var(--bg2);
     color: var(--text);
 }

 /* ═══ TOAST ═══ */
 .toast-wrap {
     position: fixed;
     bottom: 1.5rem;
     right: 1.5rem;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     gap: .4rem;
 }

 .toast {
     background: var(--ink);
     color: var(--cream);
     padding: 11px 16px;
     border-radius: 8px;
     font-size: .82rem;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 8px;
     box-shadow: var(--sh-lg);
     animation: tin .3s ease;
     max-width: 270px;
     border-left: 3px solid var(--gold);
 }

 [data-theme="dark"] .toast {
     background: var(--bg3);
 }

 .toast.out {
     animation: tout .25s ease forwards;
 }

 .stb {
     position: fixed;
     bottom: 1.5rem;
     left: 1.5rem;
     width: 42px;
     height: 42px;
     background: var(--gold);
     border: none;
     border-radius: 50%;
     color: #fff;
     font-size: 1.1rem;
     box-shadow: 0 4px 18px rgba(184, 147, 74, .45);
     transition: all .3s;
     opacity: 0;
     transform: translateY(14px);
     z-index: 900;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .stb.vis {
     opacity: 1;
     transform: translateY(0);
 }

 .stb:hover {
     transform: translateY(-4px);
 }

 /* ═══ ANIMATIONS ═══ */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-12px)
     }
 }

 @keyframes scroll {
     to {
         transform: translateX(-50%)
     }
 }

 @keyframes tin {
     from {
         opacity: 0;
         transform: translateY(12px) scale(.95)
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1)
     }
 }

 @keyframes tout {
     to {
         opacity: 0;
         transform: translateY(8px) scale(.95)
     }
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(28px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 @keyframes slideRight {
     from {
         opacity: 0;
         transform: translateX(40px)
     }

     to {
         opacity: 1;
         transform: translateX(0)
     }
 }

 .a0 {
     animation: slideUp .65s ease both
 }

 .a1 {
     animation: slideUp .65s .1s ease both
 }

 .a2 {
     animation: slideUp .65s .2s ease both
 }

 .a3 {
     animation: slideUp .65s .3s ease both
 }

 .a4 {
     animation: slideUp .65s .4s ease both
 }

 .ar {
     animation: slideRight .7s .25s ease both
 }

 .rev {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity .6s ease, transform .6s ease;
 }

 .rev.vis {
     opacity: 1;
     transform: translateY(0);
 }

 .rev.d1 {
     transition-delay: .1s
 }

 .rev.d2 {
     transition-delay: .2s
 }

 .rev.d3 {
     transition-delay: .3s
 }

 .rev.d4 {
     transition-delay: .4s
 }

 /* ═══ RESPONSIVE ═══ */
 @media(max-width:1200px) {
     .cat-scroll {
         grid-template-columns: repeat(3, 1fr);
     }

     .footer-top {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media(max-width:1024px) {
     .nav-mid {
         display: none;
     }

     .burger {
         display: flex;
     }

     .mob-nav {
         display: flex;
     }

     .hero {
         grid-template-columns: 1fr;
         min-height: auto;
     }

     .hero-right {
         display: none;
     }

     .hero-left {
         padding: 5rem 4vw 5rem;
     }

     .editorial {
         grid-template-columns: 1fr;
     }

     .ed-img {
         height: 360px;
     }

     .lookbook-grid {
         grid-template-columns: 1fr 1fr;
     }

     .look-item.main {
         grid-row: auto;
         height: 280px;
     }

     .look-item.small {
         height: 280px;
     }

     .feature-strip {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media(max-width:768px) {
     .cat-scroll {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-top {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .footer-col:last-child,
     .footer-col:nth-child(3) {
         display: none;
     }

     section.sec {
         padding: 4rem 4vw;
     }

     .hero-nums {
         gap: 2rem;
     }

     .lookbook-grid {
         grid-template-columns: 1fr;
     }

     .look-item.main,
     .look-item.small {
         height: 260px;
     }

     .ed-timer {
         gap: 1rem;
     }

     .feature-strip {
         grid-template-columns: 1fr;
     }
 }

 @media(max-width:480px) {
     .hero-btns {
         flex-direction: column;
     }

     .hero-btns .btn-fill,
     .hero-btns .btn-ghost {
         width: 100%;
         justify-content: center;
     }

     .nl-form {
         flex-direction: column;
     }

     .nl-form input {
         border-bottom: 1px solid var(--border);
     }

     .nl-form button {
         padding: 12px;
         width: 100%;
     }
 }