@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Logo-inspired palette: deep onyx + champagne gold gradient */
    --gold-1: #F5E7B0;
    --gold-2: #E6C96B;
    --gold:   #D4AF37;
    --gold-3: #B8860B;
    --gold-4: #8B6508;
    --gold-grad: linear-gradient(135deg, #F5E7B0 0%, #D4AF37 35%, #FFEFB8 55%, #B8860B 100%);
    --gold-grad-soft: linear-gradient(135deg, rgba(245,231,176,.12), rgba(212,175,55,.06));

    --onyx:        #0B0B0D;
    --onyx-2:      #14141A;
    --onyx-3:      #1E1E26;
    --onyx-4:      #2A2A33;
    --ink:         #0B0B0D;
    --ink-soft:    #5C5C66;
    --ink-muted:   #8A8A94;

    --cream:   #FBF9F4;
    --cream-2: #F2EDE2;
    --paper:   #FFFFFF;
    --line:    #E8E1CF;
    --line-2:  #D9CFB1;

    --shadow-sm: 0 2px 12px rgba(11,11,13,.06);
    --shadow:    0 14px 40px rgba(11,11,13,.12);
    --shadow-lg: 0 24px 60px rgba(11,11,13,.18);

    --radius:    2px;
    --radius-lg: 6px;

    --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans); color: var(--ink); background: var(--paper);
    line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity .35s ease;
}
body.page-ready { opacity: 1; }
body.page-leaving { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
    body, body.page-ready, body.page-leaving { opacity: 1; transition: none; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--onyx); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* Top bar */
.top-bar {
    background: var(--onyx);
    color: var(--gold-1);
    text-align: center;
    padding: 11px 16px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid rgba(212,175,55,.18);
}
.top-bar::before, .top-bar::after { content: "✦"; color: var(--gold); margin: 0 12px; opacity: .7; }

/* Header */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11,11,13,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,.2);
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 14px 28px; max-width: 1440px; margin: 0 auto; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { width: 48px; height: 48px; object-fit: contain; }
.logo-img--footer { width: 56px; height: 56px; }
.logo .logo-mark {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav a {
    font-size: 12px;
    letter-spacing: .22em;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    font-weight: 500;
    transition: color .25s;
    position: relative;
    padding: 6px 0;
}
.nav a::after {
    content: "";
    position: absolute; left: 50%; bottom: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width .3s, left .3s;
}
.nav a:hover, .nav a.active { color: var(--gold-1); }
.nav a:hover::after, .nav a.active::after { width: 100%; left: 0; }
.header-right { display: flex; align-items: center; gap: 22px; }
.cart-icon { position: relative; display: inline-flex; align-items: center; color: var(--gold-1); transition: color .2s; }
.cart-icon:hover { color: var(--gold); }
.cart-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--gold-grad); color: var(--onyx); min-width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; box-shadow: 0 2px 8px rgba(212,175,55,.5); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 22px; height: 1.5px; background: var(--gold-1); transition: all .25s; }

/* Hero */
.hero { position: relative; min-height: 680px; padding: 100px 24px; color: #fff; overflow: hidden; display: flex; align-items: center; }
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,.18), transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 30%, rgba(212,175,55,.15), transparent 50%),
        linear-gradient(135deg, #0B0B0D 0%, #14141A 40%, #1E1E26 100%);
}
.hero-pattern {
    position: absolute; inset: 0; opacity: .35;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(245,231,176,.25), transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(212,175,55,.2), transparent 40%),
        repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(212,175,55,.04) 60px, rgba(212,175,55,.04) 61px);
}
.hero::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .6;
}
.hero-content { position: relative; max-width: 780px; margin: 0 auto; text-align: center; padding: 32px; z-index: 2; }
.hero-label {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 22px;
    border: 1px solid rgba(212,175,55,.5);
    border-radius: 0;
    font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold-1); margin-bottom: 32px;
    background: rgba(212,175,55,.05);
}
.hero-label::before, .hero-label::after { content: "—"; color: var(--gold); opacity: .6; }
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -.01em;
}
.hero h1 em {
    font-style: italic;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}
.hero-desc { font-size: 17px; opacity: .82; margin: 20px auto 40px; max-width: 600px; line-height: 1.7; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 30px;
    font-size: 12px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    border-radius: var(--radius);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    cursor: pointer; border: 1px solid transparent;
    position: relative; overflow: hidden;
    line-height: 1.2;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-gold {
    background: var(--gold-grad);
    color: var(--onyx);
    border-color: var(--gold-3);
    box-shadow: 0 6px 20px rgba(212,175,55,.3), inset 0 1px 0 rgba(255,255,255,.4);
    font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,.45), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-dark { background: var(--onyx); color: var(--gold-1); border-color: var(--onyx); }
.btn-dark:hover { background: var(--onyx-3); border-color: var(--gold-4); }
.btn-outline-light { background: transparent; color: var(--gold-1); border-color: rgba(245,231,176,.4); }
.btn-outline-light:hover { background: rgba(212,175,55,.12); border-color: var(--gold); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--onyx); border-color: var(--onyx); }
.btn-outline-dark:hover { background: var(--onyx); color: var(--gold-1); }
.btn-whatsapp { background: #1B7D46; color: #fff; border-color: #1B7D46; }
.btn-whatsapp:hover { background: #155F36; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(27,125,70,.3); }

/* Trust */
.trust-section { padding: 38px 0; background: var(--onyx); color: var(--gold-1); border-top: 1px solid rgba(212,175,55,.18); border-bottom: 1px solid rgba(212,175,55,.18); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 18px; }
.trust-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.3); flex-shrink: 0; }
.trust-icon svg { width: 22px; height: 22px; color: var(--gold); }
.trust-text h4 { font-size: 14px; margin-bottom: 2px; color: #fff; font-weight: 600; letter-spacing: .04em; }
.trust-text p { font-size: 12px; color: rgba(245,231,176,.6); letter-spacing: .04em; }

/* Section */
.section { padding: 100px 0; }
.section-cream { background: var(--cream); position: relative; }
.section-cream::before, .section-cream::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3), transparent); opacity: .3; }
.section-cream::before { top: 0; }
.section-cream::after { bottom: 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: .32em;
    color: var(--gold-3); text-transform: uppercase;
    margin-bottom: 18px; font-weight: 600;
}
.section-header .label::before, .section-header .label::after { content: ""; width: 30px; height: 1px; background: var(--gold-3); opacity: .5; }
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.1;
}
.section-header p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 16px; line-height: 1.7; font-weight: 300; }

/* Collections grid */
.collections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.collection-card {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    border-radius: var(--radius); display: block;
    box-shadow: var(--shadow);
    transition: transform .4s, box-shadow .4s;
}
.collection-card::before {
    content: ""; position: absolute; inset: 0;
    border: 1px solid rgba(212,175,55,0); transition: border-color .4s;
    z-index: 3; pointer-events: none;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collection-card:hover::before { border-color: var(--gold); inset: 8px; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.4,0,.2,1); filter: brightness(.85); }
.collection-card:hover img { transform: scale(1.08); filter: brightness(.95); }
.collection-overlay {
    position: absolute; inset: 0; padding: 32px;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(180deg, rgba(11,11,13,0) 30%, rgba(11,11,13,.4) 60%, rgba(11,11,13,.92) 100%);
    color: #fff;
}
.collection-overlay h3 {
    font-family: var(--font-serif);
    font-size: 32px; margin-bottom: 6px;
    font-weight: 500; letter-spacing: .02em;
}
.collection-overlay p { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; margin-bottom: 14px; color: var(--gold-1); }
.collection-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-1); font-weight: 600;
    padding-bottom: 4px; border-bottom: 1px solid var(--gold);
    align-self: flex-start;
    transition: gap .3s;
}
.collection-card:hover .collection-link { gap: 16px; }
.collection-link svg { width: 16px; height: 16px; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px; }
.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
    position: relative;
    transition: transform .35s, box-shadow .35s, border-color .35s;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-3); }
.product-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold-grad); color: var(--onyx);
    font-size: 10px; padding: 5px 12px;
    border-radius: 99px; letter-spacing: .18em;
    text-transform: uppercase; z-index: 2; font-weight: 700;
    box-shadow: 0 4px 12px rgba(212,175,55,.4);
}
.product-img { aspect-ratio: 1/1; overflow: hidden; background: var(--cream-2); position: relative; }
.product-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(11,11,13,.04)); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-3); margin-bottom: 8px; font-weight: 600; }
.product-name { font-family: var(--font-serif); font-size: 18px; line-height: 1.3; margin-bottom: 14px; min-height: 46px; font-weight: 500; color: var(--ink); }
.product-price { font-size: 17px; font-weight: 600; margin-top: auto; display: flex; gap: 12px; align-items: baseline; }
.product-price .current { color: var(--ink); font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.product-price .old { color: var(--ink-muted); font-size: 14px; text-decoration: line-through; font-weight: 400; }

/* Product page */
.product-page { padding: 70px 0 90px; }
.product-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; }
.gallery-main {
    aspect-ratio: 1/1; background: var(--cream-2);
    border-radius: var(--radius); overflow: hidden;
    margin-bottom: 14px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.thumb {
    aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; border: 1px solid var(--line);
    transition: border-color .2s, transform .2s;
}
.thumb:hover { border-color: var(--gold-3); }
.thumb.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info .brand-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: .3em; color: var(--gold-3);
    text-transform: uppercase; margin-bottom: 18px; font-weight: 600;
}
.product-info .brand-tag::before { content: ""; width: 24px; height: 1px; background: var(--gold-3); }
.product-info h1 {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.15; margin-bottom: 22px;
    font-weight: 500; letter-spacing: -.005em;
}
.price-display {
    font-family: var(--font-serif);
    font-size: 36px; font-weight: 600;
    margin-bottom: 32px; display: flex; align-items: baseline; gap: 14px;
    padding-bottom: 24px; border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.price-display small { font-size: 11px; color: var(--ink-muted); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-sans); align-self: center; margin-left: auto; }
.price-display .price-old { color: var(--ink-muted); font-size: 22px; text-decoration: line-through; font-weight: 400; }

.size-section, .qty-section { margin-bottom: 28px; }
.size-section label, .qty-section label { display: block; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; font-weight: 600; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-option { padding: 11px 18px; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: all .25s; font-size: 13px; letter-spacing: .04em; min-width: 56px; text-align: center; }
.size-option:hover { border-color: var(--gold); }
.size-option.selected { border-color: var(--onyx); background: var(--onyx); color: var(--gold-1); }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qty-control button { width: 44px; height: 44px; font-size: 18px; transition: background .2s; }
.qty-control button:hover { background: var(--cream); }
.qty-input { width: 56px; height: 44px; text-align: center; border: none; outline: none; font-size: 15px; font-weight: 600; -moz-appearance: textfield; background: transparent; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.product-actions .btn { width: 100%; padding: 15px 24px; font-size: 12px; }

.cod-box { display: flex; gap: 16px; padding: 20px 22px; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); border-radius: var(--radius); border: 1px solid var(--line-2); margin-bottom: 32px; align-items: center; }
.cod-box svg { width: 28px; height: 28px; color: var(--gold-3); flex-shrink: 0; stroke-width: 1.5; }
.cod-box h4 { font-size: 14px; margin-bottom: 2px; font-weight: 600; letter-spacing: .04em; }
.cod-box p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.product-features { padding-top: 16px; border-top: 1px solid var(--line); }
.product-features h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 16px; font-weight: 500; letter-spacing: .01em; }
.features-list { list-style: none; padding: 0; }
.features-list li { padding: 12px 0; padding-left: 28px; position: relative; font-size: 14px; color: var(--ink-soft); border-bottom: 1px solid var(--line); line-height: 1.5; }
.features-list li:last-child { border-bottom: none; }
.features-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 16px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.testimonial-card::before {
    content: "“"; position: absolute; top: 8px; right: 24px;
    font-family: var(--font-serif); font-size: 80px; line-height: 1;
    color: var(--gold); opacity: .15;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-3); }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 18px; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-serif); font-size: 17px; font-style: italic; margin-bottom: 20px; color: var(--ink); line-height: 1.6; }
.testimonial-author { font-weight: 600; margin-bottom: 10px; font-size: 14px; letter-spacing: .04em; }
.testimonial-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #1B7D46; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.testimonial-badge svg { width: 14px; height: 14px; }

/* Policies */
.policies-section {
    padding: 80px 0;
    background: var(--onyx);
    color: var(--gold-1);
    position: relative;
    border-top: 1px solid rgba(212,175,55,.2);
}
.policies-section::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.policies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.policy-item { text-align: center; }
.policy-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.3); margin: 0 auto 18px; display: inline-flex; align-items: center; justify-content: center; }
.policy-icon svg { width: 26px; height: 26px; color: var(--gold); }
.policy-item h4 { font-size: 15px; margin-bottom: 10px; color: #fff; font-weight: 600; letter-spacing: .04em; }
.policy-item p { font-size: 13px; opacity: .65; line-height: 1.6; }

/* Footer */
.footer {
    background: #060608;
    color: rgba(245,231,176,.55);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(212,175,55,.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo { margin-bottom: 6px; }
.logo-mark--footer { font-size: 28px; }
.footer-brand p { margin: 18px 0; font-size: 14px; line-height: 1.7; max-width: 380px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(212,175,55,.25); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold-1); transition: all .25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.08); }
.footer-col h4 { color: var(--gold-1); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 13px; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(212,175,55,.1); padding-top: 26px; font-size: 11px; opacity: .5; text-align: center; letter-spacing: .14em; text-transform: uppercase; }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 90; }
.wa-float a {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #1B7D46 0%, #155F36 100%); color: #fff;
    padding: 14px 22px; border-radius: 99px;
    font-size: 13px; font-weight: 600; letter-spacing: .06em;
    box-shadow: 0 10px 30px rgba(27,125,70,.45);
    transition: transform .25s, box-shadow .25s;
}
.wa-float a:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(27,125,70,.55); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float span { display: none; }
@media (min-width: 768px) { .wa-float span { display: inline; } }

/* Order modal */
.order-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.order-modal.active { display: flex; }
.order-backdrop { position: absolute; inset: 0; background: rgba(11,11,13,.75); backdrop-filter: blur(4px); }
.order-content { position: relative; background: var(--paper); border-radius: var(--radius-lg); max-width: 540px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,.5); border: 1px solid var(--gold-3); }
.order-header { padding: 28px; background: linear-gradient(135deg, var(--onyx) 0%, var(--onyx-3) 100%); color: var(--gold-1); border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: relative; border-bottom: 1px solid var(--gold-3); }
.order-header h2 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 4px; font-weight: 500; }
.order-header p { opacity: .65; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.order-close { position: absolute; top: 18px; right: 22px; background: none; color: var(--gold-1); font-size: 26px; line-height: 1; transition: color .2s; }
.order-close:hover { color: var(--gold); }
.order-body { padding: 28px; }
.order-product { display: flex; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.order-product img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.order-product-info h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--font-serif); font-weight: 500; }
.order-product-info .price { color: var(--gold-3); font-weight: 600; font-size: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; margin-bottom: 8px; color: var(--ink-soft); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.form-group .required { color: #C62828; }
.form-group input, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 14px; font-family: inherit; background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.error-msg { display: none; color: #C62828; font-size: 12px; margin-top: 4px; }
.form-group.has-error input { border-color: #C62828; }
.form-group.has-error .error-msg { display: block; }
.phone-input { display: flex; }
.phone-prefix select { width: auto; border-right: none; border-radius: var(--radius) 0 0 var(--radius); }
.phone-input input { border-radius: 0 var(--radius) var(--radius) 0; }
.order-total { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.order-total span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.order-total strong { font-size: 24px; color: var(--gold-3); font-family: var(--font-serif); font-weight: 600; }
.order-submit {
    width: 100%; background: var(--gold-grad); color: var(--onyx);
    padding: 15px; border-radius: var(--radius); font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; font-size: 12px;
    box-shadow: 0 6px 20px rgba(212,175,55,.3); transition: all .3s;
}
.order-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,.45); }
.order-note { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 14px; font-size: 11px; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; }
.order-note svg { width: 14px; height: 14px; color: #1B7D46; }

/* Cart page */
.cart-page { padding: 70px 0 100px; }
.page-title { margin-bottom: 50px; text-align: center; }
.page-title h1 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 52px); font-weight: 500; letter-spacing: -.005em; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty svg { width: 72px; height: 72px; color: var(--gold); margin: 0 auto 22px; opacity: .5; }
.cart-empty h3 { font-family: var(--font-serif); font-size: 28px; margin-bottom: 10px; font-weight: 500; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 24px; font-size: 15px; }
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); align-items: center; transition: border-color .2s, box-shadow .2s; }
.cart-item:hover { border-color: var(--gold-3); box-shadow: var(--shadow-sm); }
.cart-item img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 16px; margin-bottom: 6px; font-family: var(--font-serif); font-weight: 500; }
.cart-item-info p { font-size: 14px; color: var(--gold-3); font-weight: 600; font-family: var(--font-serif); }
.cart-item .qty-control { transform: scale(.85); transform-origin: center; }
.cart-remove { color: #C62828; font-size: 22px; padding: 8px; transition: transform .2s; }
.cart-remove:hover { transform: scale(1.2); }
.cart-summary { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); padding: 32px; border-radius: var(--radius); border: 1px solid var(--line-2); position: sticky; top: 100px; }
.cart-summary h3 { font-family: var(--font-serif); margin-bottom: 20px; font-size: 24px; font-weight: 500; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--line-2); margin-top: 14px; padding-top: 18px; font-size: 20px; font-weight: 600; font-family: var(--font-serif); }
.summary-row.total span:last-child { color: var(--gold-3); }
.cart-summary .btn { width: 100%; margin-top: 16px; padding: 15px; font-size: 12px; }

/* Policy content */
.policy-content { font-size: 15px; color: var(--ink-soft); line-height: 1.85; }
.policy-content h2 { font-family: var(--font-serif); color: var(--ink); margin: 30px 0 14px; font-size: 26px; font-weight: 500; }
.policy-content p { margin-bottom: 14px; }
.policy-content ul { margin: 12px 0 14px 24px; }
.policy-content li { margin-bottom: 6px; }

/* Mobile */
@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--onyx); flex-direction: column; gap: 0;
        padding: 12px 0; border-bottom: 1px solid rgba(212,175,55,.2);
        box-shadow: 0 14px 40px rgba(0,0,0,.6);
    }
    .nav.active { display: flex; }
    .nav li { padding: 0; }
    .nav a { display: block; padding: 14px 28px; }
    .nav a::after { display: none; }
    .mobile-toggle { display: flex; }
    .header-inner { gap: 16px; padding: 12px 20px; }
    .logo-img { width: 40px; height: 40px; }
    .logo .logo-mark { font-size: 22px; letter-spacing: .26em; }
    .product-actions .btn { padding: 14px 18px; font-size: 11px; letter-spacing: .16em; }
    .section { padding: 70px 0; }
    .hero { min-height: 540px; padding: 70px 16px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 44px; }
    .section { padding: 56px 0; }
    .nav a { padding: 12px 24px; }
    .product-grid { gap: 28px; }
    .product-actions .btn { font-size: 11px; padding: 13px 16px; }
    .price-display { font-size: 30px; }
    .container { padding: 0 18px; }
}
