:root {
    --gold: #C9A84C;
    --cocoa: #3D1C02;
    --cream: #FDF6EC;
    --blush: #F5D6D0;
    --rose: #EC4899;
}

* { box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--cocoa); scroll-behavior: smooth; overflow-x: hidden; }
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

/* ── NAV ── */
#main-nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 0 2.5rem;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    will-change: transform;
    background: rgba(253,246,236,0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 32px rgba(61,28,2,0.08);
    transition: background 0.4s, box-shadow 0.4s;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(236,72,153,0.35);
}
.nav-logo-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 700;
    color: var(--cocoa);
    letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cocoa); text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ── BUBBLE BUTTON ── */
.btn-bubble {
    position: relative; overflow: hidden;
    border-radius: 100px;
    padding: 14px 36px;
    font-weight: 600; font-size: 0.88rem;
    letter-spacing: 0.04em;
    cursor: pointer; border: none;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.35s ease, transform 0.25s ease;
}
.btn-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: currentColor;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
}
.btn-bubble:hover::before { transform: scale(1.6); opacity: 1; }
.btn-bubble:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--rose);
    color: white;
}
.btn-primary::before { background: #c2185b; }
.btn-primary:hover { color: white; }

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline::before { background: var(--gold); opacity: 0; }
.btn-outline:hover { color: white; border-color: transparent; }

.btn-gold {
    background: var(--gold);
    color: white;
}
.btn-gold::before { background: #a0782a; }
.btn-gold:hover { color: white; }

/* ── HERO (Fullscreen Background Slider) ── */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61,28,2,0.7), rgba(61,28,2,0.3));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 720px;
    margin-top: 40px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
}
.hero-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    line-height: 1.05;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .line { display: block; overflow: hidden; }
.js .hero-h1 .line-inner { display: block; transform: translateY(100%); opacity: 0; }

.hero-sub {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(255,255,255,0.8);
    max-width: 480px; margin: 0 auto 44px;
}
.js .hero-sub { opacity: 0; transform: translateY(20px); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.js .hero-btns { opacity: 0; transform: translateY(20px); }

/* Hero slider dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
}
.hero-dots .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.hero-dots .slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    display: block;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--cocoa);
}

/* ── PRODUCT CARDS ── */
.product-card {
    background: white;
    border-radius: 28px;
    border: 1px solid rgba(201,168,76,0.12);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(201,168,76,0.15);
}
.product-card .card-img { height: 200px; background: #f9ece8; overflow: hidden; flex-shrink: 0; }
.product-card .card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card .card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; min-height: 150px; }
.product-card .card-body > :last-child { margin-top: auto; }
.product-card { min-height: 320px; }

/* Add buttons in cards */
.card-add-btn {
    background: #FFF0F5; color: var(--rose);
    border: none; border-radius: 14px;
    padding: 9px 20px; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; overflow: hidden; position: relative;
    transition: color 0.3s;
}
.card-add-btn::before {
    content:''; position:absolute; inset:0; border-radius:14px;
    background: var(--rose); transform: scale(0); opacity:0;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
.card-add-btn:hover::before { transform:scale(1.5); opacity:1; }
.card-add-btn:hover { color:white; }
.card-add-btn span { position:relative; z-index:1; }

/* ── ADDITION CARDS ── */
.addition-card {
    background: white; border-radius: 22px;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.addition-card:hover {
    border-color: var(--rose);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236,72,153,0.12);
}

/* ── REVIEWS CAROUSEL ── */
#reviews-track { position:relative; overflow:hidden; }
.review-slide {
    display: none;
}
.review-slide.active {
    display: block;
    animation: slide-in 0.6s cubic-bezier(0.25,0.46,0.45,0.94) both;
}
.review-slide.out {
    animation: slide-out 0.45s cubic-bezier(0.55,0,1,0.45) both;
}
@keyframes slide-in {
    from { opacity:0; transform: translateX(60px) scale(0.97); }
    to   { opacity:1; transform: translateX(0)   scale(1);    }
}
@keyframes slide-out {
    from { opacity:1; transform: translateX(0)   scale(1);    }
    to   { opacity:0; transform: translateX(-60px) scale(0.97); }
}
.review-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 12px 48px rgba(61,28,2,0.08);
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute; top: 12px; left: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; line-height: 1;
    color: rgba(201,168,76,0.12);
    font-weight: 700;
    pointer-events: none;
}
.review-dots { display:flex; gap:8px; justify-content:center; margin-top:32px; }
.review-dot {
    width:8px; height:8px; border-radius:50%;
    background: rgba(61,28,2,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.review-dot.active { background: var(--rose); transform: scale(1.3); }

/* ── ABOUT ── */
.about-img-wrap {
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(61,28,2,0.14);
    transition: border-radius 1.2s ease;
}
.about-img-wrap:hover { border-radius: 30px; }

/* ── ORDER SECTION ── */
.payment-opt { transition: all 0.2s ease; border: 2px solid rgba(201,168,76,0.2); cursor: pointer; border-radius: 18px; }
.payment-opt.selected { border-color: var(--rose); background: #fff5f9; }
.payment-opt:hover { border-color: var(--rose); }
.toggle-btn { transition: all 0.25s ease; border-radius: 18px; border: 2px solid rgba(245,214,208,0.8); }
.toggle-btn.active { background: var(--rose); color: white; box-shadow: 0 6px 18px rgba(236,72,153,0.3); border-color: var(--rose); }

/* ── BUBBLE ── */
.bubble { background: #FFF5F7; border-radius: 20px; }
.bubble::after { content:''; position:absolute; bottom:-10px; left:30px; border-width:10px 10px 0; border-style:solid; border-color:#FFF5F7 transparent; }

/* ── REVEAL ANIMATIONS (hidden only when JS is active — content is never lost) ── */
.js .reveal-heading, .js .reveal-section, .js .reveal-card { opacity: 0; transform: translateY(50px); }

/* ── GLASS NAV BADGE ── */
#cart-count-badge {
    position: absolute; top: -6px; right: -6px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--rose); color: white;
    font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
#nav-cart-wrap { position: relative; }

/* ── FOOTER ── */
footer { background: var(--cocoa); }

/* ── MO DIGITAL FOOTER ── */
.footer-dev {
    border-top: 1px solid rgba(253,246,236,0.1);
    padding-top: 24px;
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(253,246,236,0.4);
}
.footer-dev a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-dev a:hover {
    color: #e8c96a;
    text-decoration: underline;
}

/* ── DIP SELECTION ── */
.dip-option {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px 6px;
    border-radius: 14px;
    border: 2px solid rgba(201,168,76,0.2);
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}
.dip-option:hover { border-color: var(--rose); }
.dip-option.selected { border-color: var(--rose); background: #fff5f9; }
.dip-swatch {
    width: 36px; height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    flex-shrink: 0;
}
.dip-label { font-size: 0.72rem; font-weight: 600; color: var(--cocoa); }
.dip-price { font-size: 0.7rem; color: var(--rose); font-weight: 700; }

/* ── WA CHATBOT ── */
.wa-opt {
    padding: 10px 14px;
    border-radius: 14px;
    background: white;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid rgba(37,211,102,0.15);
}
.wa-opt:hover {
    background: #25D366;
    color: white;
    transform: translateX(4px);
}

/* ── PAGE TOP (prevents navbar overlap) ── */
.page-top { padding-top: 100px !important; }

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cocoa);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── MOBILE MENU OVERLAY ── */
#mobile-menu {
    z-index: 150;
}
#mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cocoa);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu a:last-child { border-bottom: none; }

/* MOBILE */
@media (max-width: 768px) {
    .hero-fullscreen { height: 100vh; min-height: 600px; }
    .hero-content { padding: 0 1.2rem; margin-top: 20px; }
    #main-nav { padding: 0 1.2rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    #mobile-menu a { padding: 10px 0; font-size: 1rem; }
    .page-top { padding-top: 84px !important; }
}

/* Small mobile */
@media (max-width: 480px) {
    .page-top { padding-top: 76px !important; }
    #main-nav { height: 64px; padding: 0 0.8rem; }
    .nav-logo-text { font-size: 1.3rem; }
    .nav-logo-icon { width: 32px; height: 32px; }
    .product-card .card-img { height: 160px; }
    .review-card { padding: 28px 20px; }
    .slider-dots { gap: 4px; }
    .slider-dot { width: 6px; height: 6px; }
    .about-img { height: 220px !important; }
    #checkout-items { max-height: 180px !important; }
    .chk-summary-item { font-size: 0.85rem; }
    .btn-bubble { padding: 12px 24px; font-size: 0.82rem; }
    .section-title { font-size: 1.6rem; }
    section { padding-left: 1rem !important; padding-right: 1rem !important; }
}
