:root {
    --cream: #F5F0E8;
    --charcoal: #1A1814;
    --warm-black: #0E0D0B;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --rust: #C4622D;
    --fog: #E8E2D9;
    --muted: #8A8070;
    --surface: #FDFAF5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--charcoal);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, 2s;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--charcoal);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width .35s cubic-bezier(.16, 1, .3, 1), height .35s cubic-bezier(.16, 1, .3, 1), border-color .2s, opacity .2s;
}

body.hovering #cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
}

body.hovering #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
    opacity: .6;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .025;
    pointer-events: none;
}

body,
html {
    max-width: 100%;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 28px 48px; */
    flex-wrap: wrap;
    mix-blend-mode: multiply;
    transition: background .4s, padding .4s;
}

nav.scrolled {
    background: rgba(245, 240, 232, .92);
    backdrop-filter: blur(12px);
    padding: 18px 48px;
    border-bottom: 1px solid rgba(201, 168, 76, .2);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: .12em;
    color: var(--charcoal);
    text-decoration: none;
}



.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right .3s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    background: var(--charcoal);
    color: var(--cream);
    padding: 10px 22px;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.nav-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.nav-cart:hover::before {
    transform: translateX(0);
}

.nav-cart span {
    position: relative;
    z-index: 1;
}

.cart-count {
    position: relative;
    z-index: 1;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .35s;
}

.nav-cart:hover .cart-count {
    background: var(--charcoal);
    color: var(--cream);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;

}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 120px 60px 80px 80px; */
    padding: 120px 40px 80px 40px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .2s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-h1 {
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 300;
    line-height: .95;
    letter-spacing: -.01em;
    color: var(--charcoal);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .9s .35s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    max-width: 380px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .65s cubic-bezier(.16, 1, .3, 1) forwards;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--cream);
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rust);
    transform: translateY(101%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost .arrow {
    display: inline-block;
    transition: transform .3s;
}

.btn-ghost:hover .arrow {
    transform: translateX(6px);
}

.hero-right {
    position: relative;
    overflow: hidden;


}

.hero-img-wrap {
    position: absolute;

    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    animation: heroReveal 1.2s .1s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 240, 232, .15) 0%, transparent 60%);
}

.hero-badge {
    position: absolute;
    bottom: 48px;
    right: 48px;
    width: 96px;
    height: 96px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.3;
    animation: spin 12s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 10;
    animation: fadeIn 1s 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(.5);
        opacity: .4;
    }
}

/* ── MARQUEE BAND ── */
.marquee-band {
    background: var(--charcoal);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.marquee-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 8px;
}

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

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

/* ── SECTION COMMONS ── */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(26, 24, 20, .12);
}

.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.1;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.view-all {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.view-all:hover {
    color: var(--charcoal);
}

.view-all .arr {
    transition: transform .3s;
}

.view-all:hover .arr {
    transform: translateX(4px);
}

/* ── PRODUCTS GRID ── */
#featured {
    padding: 100px 80px;
    background: var(--surface);
}

.products-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* gap: 2px; */
}

.product-card {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    cursor: none;
    group: true;

}

.product-card:first-child {
    grid-row: span 2;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-card:first-child .product-img-wrap {
    aspect-ratio: unset;
    height: 100%;
    min-height: 560px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .4s;
    filter: saturate(.9);
}

.product-card:hover .product-img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 13, 11, .6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .3s;
}

.product-card:hover .product-actions {
    transform: translateY(0);
    opacity: 1;
}

.btn-add {
    flex: 1;
    background: var(--cream);
    color: var(--charcoal);
    border: none;
    padding: 12px 16px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: color .3s;
}

.btn-add::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.btn-add:hover::before {
    transform: translateX(0);
}

.btn-add span {
    position: relative;
    z-index: 1;
}

.btn-wish {
    width: 44px;
    background: rgba(245, 240, 232, .12);
    border: 1px solid rgba(245, 240, 232, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(4px);
    color: var(--cream);
    font-size: 16px;
}

.btn-wish:hover {
    background: rgba(201, 168, 76, .3);
    border-color: var(--gold);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--rust);
    color: var(--cream);
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 10px;
}

.product-info {
    padding: 20px 20px 24px;
}

.product-category {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.product-name {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
}

.product-price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
}

.product-stars {
    display: flex;
    gap: 2px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--gold);
}

/* ── CATEGORY STRIP ── */
#categories {
    padding: 100px 80px;
    background: var(--charcoal);
}

#categories .section-title {
    color: var(--cream);
}

#categories .section-label {
    color: var(--gold);
}

#categories .section-header {
    border-color: rgba(245, 240, 232, .1);
}

#categories .view-all {
    color: rgba(245, 240, 232, .4);
}

#categories .view-all:hover {
    color: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: none;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .4s;
    filter: saturate(.7) brightness(.7);
}

.cat-card:hover img {
    transform: scale(1.07);
    filter: saturate(.9) brightness(.8);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 13, 11, .8) 30%, transparent 70%);
}

.cat-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
}

.cat-name {
    font-size: 32px;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 8px;
}

.cat-count {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, .5);
    margin-bottom: 20px;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 240, 232, .3);
    padding-bottom: 4px;
    transition: border-color .2s, color .2s;
}

.cat-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cat-line {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.cat-card:hover .cat-line {
    transform: scaleX(1);
}

/* ── OFFER BANNER ── */
#offer {
    /* padding: 80px; */
    padding: 60px 40px;
    background: var(--gold);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    /* gap: 40px; */
    gap: 30px;
    overflow: hidden;
}

.offer-headline {
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.05;
}

.offer-headline strong {
    font-weight: 600;
    display: block;
}

.offer-right {
    text-align: right;
}

.offer-countdown {
    display: flex;
    /* gap: 20px; */
    gap: 16px;
    margin-bottom: 28px;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

.countdown-unit {
    text-align: center;
    flex: 0 0 auto;
    min-width: 60px;
}

.countdown-number {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
    display: block;
    min-width: 60px;





}

.countdown-label {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(26, 24, 20, .6);
}

.btn-dark {
    display: inline-block;
    background: var(--charcoal);
    color: var(--cream);
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rust);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-dark:hover::before {
    transform: translateX(0);
}

.btn-dark span {
    position: relative;
    z-index: 1;
}

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 100px 80px;
    background: var(--fog);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testi-card {
    background: var(--cream);
    padding: 40px;
    border-top: 2px solid var(--gold);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .5s;
}

.testi-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.testi-quote {
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
}

.testi-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 28px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(.3);
}

.testi-name {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
}

.testi-role {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

/* ── NEWSLETTER ── */
#newsletter {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

#newsletter::before {
    content: 'ŌBJECT';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Syne', sans-serif;
    font-size: 180px;
    font-weight: 800;
    color: rgba(201, 168, 76, .05);
    pointer-events: none;
    white-space: nowrap;
}

.nl-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.nl-title {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 20px;
}

.nl-title em {
    font-style: italic;
    color: var(--gold);
}

.nl-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 240, 232, .5);
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nl-input-wrap {
    position: relative;
}

.nl-input {
    width: 100%;
    background: rgba(245, 240, 232, .06);
    border: 1px solid rgba(245, 240, 232, .15);
    color: var(--cream);
    padding: 18px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    outline: none;
    transition: border-color .3s;
}

.nl-input::placeholder {
    color: rgba(245, 240, 232, .3);
}

.nl-input:focus {
    border-color: var(--gold);
}

.nl-submit {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 18px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: color .3s;
}

.nl-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: translateY(101%);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.nl-submit:hover::before {
    transform: translateY(0);
}

.nl-submit span {
    position: relative;
    z-index: 1;
}

.nl-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.nl-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .05em;
    color: rgba(245, 240, 232, .4);
}

.nl-perk-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50;
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: var(--warm-black);
    padding: 80px 80px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, .08);
    margin-bottom: 40px;
}

/* .footer-brand {} */

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--cream);
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 240, 232, .4);
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 240, 232, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, .4);
    font-size: 14px;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 15px;
    font-weight: 300;
    color: rgba(245, 240, 232, .4);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--cream);
}

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

.footer-copy {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
    color: rgba(245, 240, 232, .25);
}

.footer-pay {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pay-badge {
    background: rgba(245, 240, 232, .07);
    border: 1px solid rgba(245, 240, 232, .1);
    padding: 5px 12px;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(245, 240, 232, .3);
}

/* ── CART DRAWER ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(14, 13, 11, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    backdrop-filter: blur(4px);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 201;
    width: 440px;
    background: var(--surface);
    transform: translateX(101%);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-head {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(26, 24, 20, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 1;
}

.cart-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cart-close {
    width: 36px;
    height: 36px;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    font-size: 18px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.cart-close:hover {
    background: var(--rust);
}

.cart-items {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26, 24, 20, .08);
}

.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    filter: saturate(.9);
}

.cart-item-name {
    font-size: 16px;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.cart-item-cat {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: var(--fog);
    border: none;
    cursor: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.qty-btn:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.qty-num {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    width: 36px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--charcoal);
}

.cart-item-price {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
}

.cart-footer {
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(26, 24, 20, .1);
    background: var(--surface);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.cart-subtotal-label {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.cart-subtotal-value {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--charcoal);
}

.cart-shipping-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.btn-checkout {
    width: 100%;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    padding: 18px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-checkout:hover::before {
    transform: translateY(0);
}

.btn-checkout:hover {
    color: var(--charcoal);
}

.btn-checkout span {
    position: relative;
    z-index: 1;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    font-size: 17px;
    color: var(--muted);
    font-style: italic;
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--charcoal);
    color: var(--cream);
    padding: 14px 28px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    z-index: 300;
    border-left: 3px solid var(--gold);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .3s;
    opacity: 0;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:first-child {
        grid-row: span 1;
    }

    .product-card:first-child .product-img-wrap {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 20px 28px;
    }

    .nav-links {
        display: none;
    }

    #hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        height: 50vh;
    }

    .hero-left {
        padding: 120px 28px 60px;
    }

    #featured,
    #categories,
    #testimonials,
    #newsletter,
    footer {
        padding: 64px 28px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    #newsletter {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    #offer {
        grid-template-columns: 1fr;
        padding: 60px 28px;
    }

    .offer-right {
        text-align: left;
    }

    .offer-countdown {
        justify-content: flex-start;
    }

    .cart-drawer {
        width: 100%;
    }
}