:root {
    --bg: #FAFAF7;
    --white: #FFFFFF;
    --cream: #F5F3EE;
    --sand: #EDE9E0;
    --warm: #E8E2D6;
    --charcoal: #1C1C1C;
    --dark: #2A2A2A;
    --mid: #5A5550;
    --soft: #8A847A;
    --light: #B5AFA5;
    --gold: #B8963E;
    --gold2: #D4AD4A;
    --gold3: #C8A445;
    --deep-wine: #6B2D3E;
    --wine: #8A3A4E;
    --blush: #D4A0A0;
    --jade: #4A806A;
    --border: rgba(28,28,28,0.08);
    --border2: rgba(28,28,28,0.04);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --FD: 'Playfair Display', Georgia, serif;
    --FB: 'Cormorant Garamond', Georgia, serif;
    --FC: 'Cinzel', serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══ RESET ═══ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background: var(--bg);
    color: var(--mid);
    font-family: var(--FB);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}
::selection {
    background: var(--gold);
    color: var(--white);
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
.ct {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 768px) {
    .ct {
        padding: 0 20px;
    }
}

/* ═══ NAV ═══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
    transition: all 0.5s var(--ease);
}
nav.scrolled {
    background: rgba(250,250,247,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.ni {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nlogo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nlogo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}
.nlogo-sub {
    font-family: var(--FC);
    font-size: 15px;
    letter-spacing: .2em;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
}
@media (max-width: 600px) {
    .nlogo-img {
        height: 36px;
    }
    .nlogo-sub {
        display: none;
    }
}
.nlinks {
    display: flex;
    gap: 40px;
}
.nlinks a {
    font-family: var(--FC);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: black;
    position: relative;
    padding-bottom: 3px;
    font-weight: 500;
}
.nlinks a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.nlinks a:hover, .nlinks a.active {
    color: var(--charcoal);
}
.nlinks a:hover::after, .nlinks a.active::after {
    width: 100%;
}
.nact {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}
.cart-btn:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.cbadge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--deep-wine);
    color: var(--white);
    font-family: var(--FC);
    font-size: 0.5rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 900px) {
    .nlinks {
        display: none;
    }
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 76px;
    background: var(--white);
}
.hero-orn {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(180px, 18vw, 300px);
    font-family: var(--FD);
    color: rgba(184,150,62,0.04);
    pointer-events: none;
    user-select: none;
}
.hero-left {
    padding: 80px 64px 80px max(40px, calc((100vw - 1320px)/2 + 40px));
    position: relative;
    z-index: 2;
    animation: fadeL 0.9s ease both;
}
.hero-eye {
    font-family: var(--FC);
    font-size: 0.58rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}
.hero-eye::before {
    content: '';
    width: 36px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}
.hero h1 {
    font-family: var(--FD);
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: italic;
    color: var(--deep-wine);
    display: block;
}
.hero-sub-line {
    font-family: var(--FC);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--soft);
    margin-bottom: 28px;
    text-transform: uppercase;
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--mid);
    max-width: 460px;
    margin-bottom: 44px;
    line-height: 1.85;
    font-weight: 300;
}
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--FC);
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 17px 34px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--bounce);
}
.btn-p::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-p:hover::after {
    transform: translateX(100%);
}
.btn-p:hover {
    background: var(--deep-wine);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(107,45,62,0.2);
}
.btn-s {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    font-family: var(--FC);
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 16px 30px;
    border: 1.5px solid var(--charcoal);
    transition: all 0.3s;
    font-weight: 500;
}
.btn-s:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,150,62,0.04);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--sand);
    border-left: 1px solid var(--sand);
}
.hero-metric {
    padding: 22px 16px;
    border-right: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    text-align: center;
    transition: background 0.3s;
}
.hero-metric:hover {
    background: var(--cream);
}
.hero-metric strong {
    display: block;
    font-family: var(--FD);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-metric span {
    font-family: var(--FC);
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft);
}

/* ═══ HERO RIGHT (IMAGE) ═══ */
.hero-right {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
    animation: fadeR 0.9s 0.15s ease both;
    background: var(--cream);
}
.hero-right img.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s var(--ease);
}
.hero-right:hover img.hero-img {
    transform: scale(1.04);
}
.hero-right-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--white) 0%, rgba(250,250,247,.2) 12%, transparent 40%), linear-gradient(0deg, rgba(245,243,238,.8) 0%, transparent 20%);
    z-index: 1;
}
.hero-badge {
    position: absolute;
    bottom: 48px;
    left: 48px;
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 22px 26px;
    max-width: 220px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.hero-badge small {
    font-family: var(--FC);
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.hero-badge h3 {
    font-family: var(--FD);
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 6px;
}
.hero-badge p {
    font-size: 0.82rem;
    color: var(--soft);
    line-height: 1.5;
}
.hero-scroll {
    position: absolute;
    bottom: 48px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--FC);
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    color: var(--light);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    z-index: 2;
}
.hero-scroll::before {
    content: '';
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollP 2.5s ease infinite;
}
@keyframes scrollP {
    0%,100% {
        opacity: 0.3;
        height: 56px;
    }
    50% {
        opacity: 1;
        height: 72px;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr !important;
        min-height: auto;
        padding-top: 92px;
    }
    .hero-left {
        padding: 30px 20px 30px !important;
    }
    .hero::before {
        display: none;
    }
    .hero-right {
        height: 50vw;
        max-height: 400px;
        margin: 0;
    }
    .hero-right img.hero-img {
        object-position: center;
    }
    .hero-badge {
        bottom: 20px;
        left: 20px;
        padding: 14px 18px;
        max-width: 180px;
    }
    .hero-badge h3 {
        font-size: .95rem;
    }
    .hero-badge p {
        font-size: .72rem;
    }
    .hero-badge small {
        font-size: .44rem;
    }
    .hero-scroll {
        display: none;
    }
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .hero-right {
        height: 60vw;
        max-height: 320px;
    }
    .hero-badge {
        display: none;
    }
    .hero h1 {
        font-size: 2rem !important;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .btn-p, .btn-s {
        padding: 14px 24px;
        font-size: .56rem;
    }
}

/* ═══ MARQUEE ═══ */
.marquee {
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    overflow: hidden;
    padding: 16px 0;
    background: var(--white);
}
.mtrack {
    display: flex;
    width: max-content;
    animation: mq 30s linear infinite;
}
.marquee:hover .mtrack {
    animation-play-state: paused;
}
@keyframes mq {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.mi {
    padding: 0 48px;
    font-family: var(--FC);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: black;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 48px;
}
.mdot {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ═══ PHOTO STRIP ═══ */
.photo-strip {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    height: 400px;
    gap: 2px;
    overflow: hidden;
}
.photo-strip-item {
    position: relative;
    overflow: hidden;
}
.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.photo-strip-item:hover img {
    transform: scale(1.08);
}
.photo-strip-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--FC);
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transition: opacity .4s;
    z-index: 2;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.photo-strip-item:hover::after {
    opacity: 1;
}
.photo-strip-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity .4s;
}
.photo-strip-item:hover::before {
    opacity: 1;
}
@media (max-width: 900px) {
    .photo-strip {
        grid-template-columns: 1fr 1fr 1fr;
        height: 240px;
    }
    .photo-strip-item:nth-child(4), .photo-strip-item:nth-child(5) {
        display: none;
    }
}
@media (max-width: 600px) {
    .photo-strip {
        grid-template-columns: 1fr 1fr;
        height: 180px;
    }
    .photo-strip-item:nth-child(3) {
        display: none;
    }
}

/* ═══ SECTIONS ═══ */
.section {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
}
.sec-eye {
    font-family: var(--FC);
    font-size: 0.58rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}
.sec-eye::after {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--gold);
}
.sec-title {
    font-family: var(--FD);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.sec-title em {
    font-style: italic;
    color: var(--deep-wine);
}
.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .sec-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
}

/* ═══ STATS ═══ */
.stats {
    background: var(--white);
    border: 1px solid var(--sand);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
.stat {
    padding: 40px 32px;
    border-right: 1px solid var(--sand);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}
.stat:last-child {
    border-right: none;
}
.stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s;
}
.stat:hover {
    background: var(--cream);
}
.stat:hover::before {
    width: 50%;
}
.stat-ico {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.stat-num {
    font-family: var(--FD);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.stat-lbl {
    font-family: var(--FC);
    font-size: 0.54rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.stat-sub {
    font-size: 0.85rem;
    color: black;
    font-style: italic;
}

/* ═══ PRODUCT CARDS ═══ */
.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1000px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .pgrid {
        grid-template-columns: 1fr;
    }
}
.pcard {
    background: var(--white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    animation: fadeUp 0.7s ease both;
    border: 1px solid var(--sand);
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.pcard-img {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: var(--cream);
}
.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s var(--ease);
}
.pcard:hover .pcard-img img {
    transform: scale(1.06);
}
.pcard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--white) 0%, transparent 25%);
}
@media (max-width: 768px) {
    .pcard-img {
        height: 260px;
    }
}
@media (max-width: 480px) {
    .pcard-img {
        height: 220px;
    }
}
.pbadge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--FC);
    font-size: 0.48rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
    font-weight: 600;
}
.pcard-body {
    padding: 24px 24px 28px;
}
.pnotes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.pnote {
    font-family: var(--FC);
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: black;
    border: 1px solid var(--sand);
    padding: 3px 8px;
    font-weight: 500;
}
.pname {
    font-family: var(--FD);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.pdesc {
    font-size: 0.88rem;
    color: var(--soft);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pprice {
    font-family: var(--FD);
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 500;
}
.pprice span {
    font-size: 0.78rem;
    color: var(--soft);
    font-family: var(--FB);
    font-style: italic;
    font-weight: 300;
}
.add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--charcoal);
    border: none;
    color: var(--white);
    font-family: var(--FC);
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 11px 18px;
    transition: all 0.3s;
    font-weight: 500;
}
.add-btn:hover {
    background: var(--deep-wine);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107,45,62,0.2);
}

/* ═══ FRAGRANCE NOTES ═══ */
.wheel-sec {
    background: var(--white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}
.wgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
@media (max-width: 900px) {
    .wgrid {
        grid-template-columns: 1fr;
    }
}
.wleft {
    padding: 80px 64px 80px 0;
    border-right: 1px solid var(--sand);
}
@media (max-width: 900px) {
    .wleft {
        padding: 60px 0;
        border-right: none;
        border-bottom: 1px solid var(--sand);
    }
}
.wright {
    padding: 80px 0 80px 64px;
    display: flex;
    justify-content: center;
}
@media (max-width: 900px) {
    .wright {
        padding: 60px 0;
    }
}
.ngrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}
.ncard {
    background: var(--cream);
    border: 1px solid var(--sand);
    padding: 22px;
    transition: all 0.3s;
}
.ncard:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.ncard-ico {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.ncard-name {
    font-family: var(--FD);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
    font-weight: 500;
}
.ncard-desc {
    font-size: 0.82rem;
    color: var(--soft);
    font-style: italic;
}

/* ═══ STORY ═══ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.story-vis {
    position: relative;
    height: 520px;
}
@media (max-width: 900px) {
    .story-vis {
        height: 340px;
    }
}
.story-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand);
}
.story-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    overflow: hidden;
    background: var(--sand);
    border: 6px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-main img, .story-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.story-vis:hover .story-main img {
    transform: scale(1.04);
}
.story-vis:hover .story-accent img {
    transform: scale(1.06);
}
@media (max-width: 600px) {
    .story-vis {
        height: 280px !important;
    }
    .story-main {
        width: 100% !important;
        height: 65% !important;
        position: relative !important;
    }
    .story-accent {
        width: 50% !important;
        height: 45% !important;
        bottom: auto !important;
        top: 60% !important;
        left: 50% !important;
        transform: translateX(-50%);
    }
}
.story-text {
    font-size: 1.08rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 24px;
    font-weight: 300;
}
.story-text strong {
    color: var(--charcoal);
    font-weight: 500;
}
.story-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 36px 0;
}
.sfeat {
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-left: 3px solid var(--gold);
}
.sfeat strong {
    display: block;
    font-family: var(--FC);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 600;
}
.sfeat span {
    font-size: 0.88rem;
    color: black;
    font-style: italic;
}

/* ═══ TESTIMONIALS ═══ */
.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .tgrid {
        grid-template-columns: 1fr;
    }
}
.tcard {
    background: var(--white);
    padding: 40px 36px;
    border: 1px solid var(--sand);
    border-top: 3px solid transparent;
    transition: all 0.4s;
    position: relative;
}
.tcard::before {
    content: '\201C';
    font-family: var(--FD);
    font-size: 4.5rem;
    line-height: 0.5;
    color: var(--sand);
    position: absolute;
    top: 28px;
    right: 28px;
}
.tcard:hover {
    border-top-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.tstars {
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.ttext {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    font-weight: 300;
}
.tauthor {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tavatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--deep-wine));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--FC);
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
}
.tname {
    font-family: var(--FC);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    color: var(--charcoal);
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
}
.tloc {
    font-size: 0.8rem;
    color: var(--soft);
    font-style: italic;
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.5);
    padding: 80px 0 0;
}
.fgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}
@media (max-width: 900px) {
    .fgrid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 600px) {
    .fgrid {
        grid-template-columns: 1fr;
    }
}
.fbrand {
    font-family: var(--FC);
    font-size: 0.95rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.fbrand-sub {
    font-family: var(--FB);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    display: block;
    margin-bottom: 22px;
}
.fdesc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    font-style: italic;
    max-width: 280px;
}
.fcol h4 {
    font-family: var(--FC);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}
.fcol ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fcol a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    transition: color 0.3s, padding-left 0.3s;
}
.fcol a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.fbot {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.fbot-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.fbot p {
    font-family: var(--FC);
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ═══ TOAST ═══ */
#toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--white);
    border: 1px solid var(--sand);
    color: var(--charcoal);
    font-family: var(--FC);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    padding: 16px 24px;
    z-index: 9997;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}
#toast.show {
    opacity: 1;
    transform: translateY(0);
}
#toast .tg {
    color: var(--deep-wine);
    font-weight: 600;
}

/* ═══ WHATSAPP FLOAT ═══ */
#waf {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 5000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: transform 0.35s var(--bounce);
    animation: wap 2.8s ease infinite;
    text-decoration: none;
}
#waf:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
#waf svg {
    width: 28px;
    height: 28px;
}
.waping {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ff3b3b;
    border: 2px solid var(--bg);
    animation: pd 2.5s ease infinite;
}
.watip {
    position: absolute;
    left: calc(100% + 14px);
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--FC);
    font-size: 0.52rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 14px;
    white-space: nowrap;
    border: 1px solid var(--sand);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}
#waf:hover .watip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes wap {
    0%,100% {
        box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0);
    }
}
@keyframes pd {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}
@media (max-width: 600px) {
    #waf {
        bottom: 22px;
        left: 18px;
        width: 50px;
        height: 50px;
    }
}

/* ═══ CART SIDEBAR ═══ */
.cart-ov {
    position: fixed;
    inset: 0;
    background: rgba(28,28,28,0.3);
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(4px);
}
.cart-ov.open {
    opacity: 1;
    visibility: visible;
}
.cart-sb {
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid var(--sand);
    z-index: 6001;
    transition: right 0.45s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 48px rgba(0,0,0,0.06);
}
.cart-sb.open {
    right: 0;
}
.cart-hd {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--sand);
    flex-shrink: 0;
}
.cart-hd h3 {
    font-family: var(--FD);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
}
.cart-hd h3 span {
    color: var(--deep-wine);
}
.cart-cls {
    background: none;
    color: var(--soft);
    font-size: 1.4rem;
    transition: color 0.3s;
}
.cart-cls:hover {
    color: var(--charcoal);
}
.cart-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty .eico {
    font-size: 2.8rem;
    opacity: 0.25;
    margin-bottom: 16px;
}
.cart-empty h4 {
    font-family: var(--FD);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 500;
}
.cart-empty p {
    font-size: 0.88rem;
    color: var(--soft);
    font-style: italic;
}
.ci {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--sand);
    animation: fadeUp 0.3s ease;
}
.ci-img {
    width: 64px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--FD);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--sand);
    overflow: hidden;
}
.ci-det {
    flex: 1;
    min-width: 0;
}
.ci-name {
    font-family: var(--FD);
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 3px;
    font-weight: 500;
}
.ci-price {
    font-size: 0.88rem;
    color: var(--deep-wine);
    font-weight: 500;
    margin-bottom: 10px;
}
.ci-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--sand);
    overflow: hidden;
}
.ci-qty button {
    width: 30px;
    height: 30px;
    background: var(--cream);
    font-size: 0.9rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.ci-qty button:hover {
    background: var(--sand);
}
.ci-qty .qval {
    width: 38px;
    height: 30px;
    text-align: center;
    font-family: var(--FC);
    font-size: 0.68rem;
    background: var(--white);
    color: var(--charcoal);
    border-left: 1px solid var(--sand);
    border-right: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-rm {
    background: none;
    color: var(--light);
    font-size: 0.5rem;
    font-family: var(--FC);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
    transition: color 0.2s;
}
.ci-rm:hover {
    color: var(--deep-wine);
}
.cart-ft {
    padding: 22px 28px;
    border-top: 1px solid var(--sand);
    flex-shrink: 0;
    background: var(--cream);
}
.ct-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-family: var(--FC);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
}
.ct-row .ctl {
    color: var(--soft);
}
.ct-row .ctv {
    color: var(--charcoal);
}
.ct-row.grand {
    border-top: 1.5px solid var(--charcoal);
    margin-top: 8px;
    padding-top: 14px;
}
.ct-row.grand .ctl {
    color: var(--charcoal);
    font-size: 0.66rem;
}
.ct-row.grand .ctv {
    font-family: var(--FD);
    font-size: 1.3rem;
    color: var(--deep-wine);
    font-weight: 500;
}
.checkout-btn {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--FC);
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s var(--bounce);
    position: relative;
    overflow: hidden;
}
.checkout-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.checkout-btn:hover::after {
    transform: translateX(100%);
}
.checkout-btn:hover {
    background: var(--deep-wine);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107,45,62,0.2);
}

/* ═══ NAV DROPDOWN ═══ */
.nav-dd {
    position: relative;
}
.dd-trigger {
    cursor: pointer;
}
.dd-arrow {
    font-size: .5rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform .3s;
}
.nav-dd:hover .dd-arrow {
    transform: rotate(180deg);
}
.dd-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--sand);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
    z-index: 100;
}
.nav-dd:hover .dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dd-menu a {
    display: block;
    padding: 9px 22px;
    font-family: var(--FC);
    font-size: .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft);
    transition: all .2s;
}
.dd-menu a:hover {
    background: var(--cream);
    color: var(--charcoal);
    padding-left: 28px;
}
@media (max-width: 900px) {
    .dd-menu {
        display: none;
    }
}

/* ═══ NAV SEARCH ═══ */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 200;
}
.search-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft);
    transition: color .3s;
}
.search-toggle:hover {
    color: var(--charcoal);
}
.search-box {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    overflow: visible;
    pointer-events: none;
    transition: width .35s var(--ease), opacity .35s var(--ease);
    z-index: 201;
}
.search-box.active {
    width: 280px;
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 600px) {
    .search-box.active {
        width: 200px;
    }
}
.search-box input {
    width: 100%;
    padding: 10px 16px;
    background: var(--white);
    border: 1.5px solid var(--sand);
    font-family: var(--FB);
    font-size: .92rem;
    color: var(--charcoal);
    transition: border-color .3s;
    box-shadow: var(--shadow-md);
}
.search-box input:focus {
    border-color: var(--gold);
    outline: none;
}
.search-box input::placeholder {
    color: var(--light);
    font-style: italic;
}
.search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--sand);
    box-shadow: var(--shadow-lg);
    max-height: 320px;
    overflow-y: auto;
    z-index: 300;
}
.sr-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    align-items: center;
    border-bottom: 1px solid var(--sand);
    transition: background .2s;
    cursor: pointer;
}
.sr-item:hover {
    background: var(--cream);
}
.sr-item:last-child {
    border-bottom: none;
}
.sr-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 1px solid var(--sand);
    flex-shrink: 0;
}
.sr-name {
    font-family: var(--FD);
    font-size: .88rem;
    color: var(--charcoal);
    font-weight: 500;
}
.sr-price {
    font-family: var(--FC);
    font-size: .5rem;
    color: var(--gold);
    letter-spacing: .1em;
    margin-top: 2px;
}
.sr-empty {
    padding: 20px;
    text-align: center;
    font-family: var(--FB);
    font-size: .9rem;
    color: var(--light);
    font-style: italic;
}

/* ═══ CATEGORY SECTION ═══ */
.cat-grid-7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1000px) {
    .cat-grid-7 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .cat-grid-7 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 440px) {
    .cat-grid-7 {
        grid-template-columns: 1fr;
    }
}
.cat-card-v {
    display: block;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    padding: 28px 20px;
    text-align: center;
    transition: all .35s var(--ease);
    overflow: hidden;
}
.cat-card-v:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.cat-ico-v {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.cat-name-v {
    font-family: var(--FD);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.cat-sub-count {
    font-family: var(--FC);
    font-size: .44rem;
    letter-spacing: .14em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}
.cat-link {
    display: block;
    margin-top: 14px;
    font-family: var(--FC);
    font-size: .48rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--light);
    transition: color .3s;
    font-weight: 500;
}
.cat-card-v:hover .cat-link {
    color: var(--charcoal);
}

/* ═══ REVEAL ANIMATIONS ═══ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s, transform 0.8s;
}
[data-reveal].visible {
    opacity: 1;
    transform: none;
}
[data-reveal][data-delay="1"] {
    transition-delay: 0.12s;
}
[data-reveal][data-delay="2"] {
    transition-delay: 0.24s;
}
[data-reveal][data-delay="3"] {
    transition-delay: 0.36s;
}

@keyframes fadeL {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeR {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* ═══ HAMBURGER MOBILE MENU ═══ */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;width:40px;height:40px;justify-content:center;align-items:center;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--charcoal);transition:all .3s var(--ease)}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(max-width:900px){
    .hamburger{display:flex}
    .nlinks{display:none}
    .nlinks.mob-open{display:flex;flex-direction:column;position:fixed;top:76px;left:0;right:0;background:var(--white);border-bottom:1px solid var(--sand);padding:20px 24px;gap:0;z-index:999;box-shadow:var(--shadow-lg);animation:fadeUp .3s ease both}
    .nlinks.mob-open li{padding:14px 0;border-bottom:1px solid var(--sand)}
    .nlinks.mob-open li:last-child{border-bottom:none}
    .nlinks.mob-open a{font-size:.56rem;letter-spacing:.2em;color:var(--charcoal)}
    .nlinks.mob-open .nav-dd .dd-menu{position:static;transform:none;opacity:1;visibility:visible;box-shadow:none;border:none;padding:10px 0 0 16px;min-width:auto;display:flex;flex-direction:column;gap:0}
    .nlinks.mob-open .nav-dd .dd-menu a{padding:8px 0;font-size:.48rem;color:var(--soft)}
    .nlinks.mob-open .nav-dd .dd-menu a:hover{padding-left:8px;background:none}
}

