/* =====================================================
   POWER BEAUTY HAIRS — PUBLIC STOREFRONT STYLESHEET
   Editorial luxe, Vogue-meets-Nairobi
   ===================================================== */

:root {
    --void: #0a0908;
    --onyx: #14120f;
    --obsidian: #1a1714;
    --ember: #221e19;
    --dust: #2a2621;
    --pearl: #faf7f2;
    --ivory: #e8e3d8;
    --ash: #8a8478;
    --mute: #5a554c;
    --gold: #d4af37;
    --gold-soft: #e8c96c;
    --gold-deep: #a88628;
    --gold-dark: #6b5518;

    --success: #6fb98f;
    --danger: #c85a5a;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-editorial: 'Cormorant Garamond', Georgia, serif;

    --container: 1280px;
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--ivory);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--pearl); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 50%, #a88628 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.italic { font-family: var(--font-editorial); font-style: italic; }
.muted { color: var(--ash); }

.overline {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
}

/* =========== NAVIGATION =========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 9, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: background var(--transition);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pearl);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo .mark { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.88rem;
    color: var(--ivory);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; gap: 12px; align-items: center; }

.cart-icon-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--ivory);
    transition: all var(--transition);
}

.cart-icon-wrap:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold); }

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--void);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ivory);
    cursor: pointer;
    padding: 8px;
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--void);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(212, 175, 55, 0.4);
}

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

.btn-lg { padding: 18px 36px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; font-size: 0.78rem; }
.w-full { width: 100%; justify-content: center; }

/* =========== HERO =========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.04), transparent 50%),
        var(--void);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-content .overline { margin-bottom: 24px; }

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 900;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--ash);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 2px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ember), var(--obsidian));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2), transparent 70%);
}

.hero-visual .mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(10rem, 20vw, 18rem);
    color: var(--gold);
    opacity: 0.25;
    position: relative;
    z-index: 1;
}

.hero-floating {
    position: absolute;
    background: rgba(20, 18, 15, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 16px 20px;
    border-radius: 2px;
    z-index: 2;
}

.hero-floating.fl-1 {
    top: 15%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.hero-floating.fl-2 {
    bottom: 15%;
    right: -5%;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 40px;
}

.hero-stats .stat .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stats .stat .lbl { font-size: 0.8rem; color: var(--ash); }

/* =========== SECTIONS =========== */
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--onyx); }

.section-head {
    text-align: center;
    margin-bottom: 64px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.section-head .overline { margin-bottom: 16px; display: inline-block; }

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-head h2 em { font-family: var(--font-editorial); font-weight: 400; color: var(--gold); }

.section-head p { font-size: 1.05rem; color: var(--ash); font-family: var(--font-editorial); font-style: italic; }

/* =========== PRODUCT GRID =========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--obsidian);
    border: 1px solid rgba(212, 175, 55, 0.08);
    overflow: hidden;
    transition: all var(--transition);
    display: block;
    color: inherit;
    position: relative;
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.product-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--ember), var(--obsidian));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-image .placeholder {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.25;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--void);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-badge.sold-out {
    background: var(--danger);
    color: var(--pearl);
}

.product-info { padding: 20px; }

.product-category {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: var(--gold-deep);
    margin-bottom: 6px;
    font-weight: 600;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--pearl);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 700;
}

.product-meta { font-size: 0.82rem; color: var(--ash); margin-bottom: 12px; }

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

/* =========== CATEGORIES =========== */
.category-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.pill {
    padding: 10px 22px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    color: var(--ivory);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}

.pill:hover, .pill.active {
    background: var(--gold);
    color: var(--void);
    border-color: var(--gold);
}

/* =========== STORY / ABOUT =========== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text .overline { margin-bottom: 20px; display: inline-block; }
.story-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.story-text p { color: var(--ash); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.7; }

.story-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--ember), var(--obsidian));
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.2), transparent 60%);
}

.story-image .mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14rem;
    color: var(--gold);
    opacity: 0.2;
}

/* =========== SERVICES =========== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: linear-gradient(180deg, var(--obsidian), var(--onyx));
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.service-card .overline { margin-bottom: 14px; display: block; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card .desc { color: var(--ash); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; min-height: 3em; }

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

.service-duration { font-size: 0.82rem; color: var(--ash); }

/* =========== TESTIMONIAL =========== */
.testimonial {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--pearl);
    line-height: 1.4;
    margin-bottom: 32px;
    position: relative;
    padding: 0 40px;
}

.testimonial-quote::before, .testimonial-quote::after {
    content: '"';
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 3rem;
    position: absolute;
    top: -10px;
}

.testimonial-quote::before { left: 0; }
.testimonial-quote::after { right: 0; }

.testimonial-author { color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; }

/* =========== NEWSLETTER / CTA =========== */
.newsletter {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--ember), var(--obsidian));
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.newsletter h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.newsletter p { color: var(--ash); margin-bottom: 32px; font-family: var(--font-editorial); font-style: italic; }

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    background: var(--void);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--pearl);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-input:focus { outline: none; border-color: var(--gold); }

/* =========== FOOTER =========== */
.footer {
    background: var(--onyx);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { font-size: 1.8rem; margin-bottom: 12px; }
.footer-brand p { color: var(--ash); margin-bottom: 24px; max-width: 340px; }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ash); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 14px; }
.social-icons a {
    width: 38px; height: 38px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ivory);
    transition: all var(--transition);
}

.social-icons a:hover { background: var(--gold); color: var(--void); border-color: var(--gold); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ash);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========== FORMS (public) =========== */
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--void);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--pearl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--obsidian);
}

.form-field textarea { min-height: 100px; resize: vertical; font-family: var(--font-body); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========== ALERT =========== */
.alert {
    padding: 14px 18px;
    border-radius: 2px;
    margin-bottom: 20px;
    border-left: 3px solid;
    font-size: 0.9rem;
}

.alert-success { background: rgba(111, 185, 143, 0.1); border-color: var(--success); color: var(--success); }
.alert-error { background: rgba(200, 90, 90, 0.1); border-color: var(--danger); color: var(--danger); }

/* =========== PAGE HEADER (inner pages) =========== */
.page-hero {
    padding: 160px 0 60px;
    background: radial-gradient(ellipse at top, var(--ember), var(--void));
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.page-hero .overline { margin-bottom: 16px; display: inline-block; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-hero p { color: var(--ash); font-family: var(--font-editorial); font-style: italic; font-size: 1.1rem; }

.breadcrumbs {
    font-size: 0.82rem;
    color: var(--ash);
    margin-top: 16px;
}

.breadcrumbs a:hover { color: var(--gold); }

/* =========== CART PAGE =========== */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    align-items: center;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-image {
    aspect-ratio: 1;
    background: var(--ember);
    overflow: hidden;
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--pearl);
    font-weight: 700;
}

.cart-item-meta { color: var(--ash); font-size: 0.85rem; margin-bottom: 10px; }

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.qty-control button {
    width: 34px; height: 34px;
    background: transparent;
    color: var(--ivory);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.qty-control button:hover { color: var(--gold); }

.qty-control input {
    width: 44px;
    height: 34px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--pearl);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.cart-item-right {
    text-align: right;
    min-width: 120px;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--ash);
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: underline;
}

.remove-btn:hover { color: var(--danger); }

.cart-summary {
    background: var(--obsidian);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--ivory);
}

.summary-row.total {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 20px;
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.summary-row.total .val { color: var(--gold); }

/* =========== PRODUCT DETAIL =========== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.product-detail-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--ember), var(--obsidian));
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }

.product-detail h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    line-height: 1.15;
}

.product-detail-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
}

.product-attrs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    margin-bottom: 24px;
}

.product-attr .lbl { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.product-attr .val { color: var(--pearl); font-weight: 600; }

.product-description { color: var(--ash); margin-bottom: 32px; line-height: 1.7; }

.add-to-cart-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stock-indicator { font-size: 0.88rem; }
.stock-indicator.in { color: var(--success); }
.stock-indicator.low { color: var(--gold); }
.stock-indicator.out { color: var(--danger); }

/* =========== LOADING / ANIM =========== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms ease, transform 800ms ease;
}

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

.spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* =========== BOOKING =========== */
.booking-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.booking-form {
    background: var(--obsidian);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
}

.booking-summary {
    background: linear-gradient(180deg, var(--ember), var(--obsidian));
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.booking-summary h3 { margin-bottom: 20px; }

.trust-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--ivory);
    font-size: 0.9rem;
}

.trust-row .icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* =========== CHECKOUT =========== */
.checkout-section {
    margin-bottom: 40px;
}

.checkout-section h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.delivery-option {
    display: flex;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
    margin-bottom: 12px;
    transition: all var(--transition);
    gap: 16px;
    align-items: center;
}

.delivery-option:hover, .delivery-option.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
}

.delivery-option input { margin: 0; }

.delivery-option .option-body { flex: 1; }
.delivery-option .option-title { color: var(--pearl); font-weight: 600; margin-bottom: 4px; }
.delivery-option .option-desc { font-size: 0.85rem; color: var(--ash); }
.delivery-option .option-price { color: var(--gold); font-weight: 700; }

/* =========== CONFIRMATION =========== */
.confirmation-hero {
    text-align: center;
    padding: 160px 24px 80px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08), var(--void));
}

.confirmation-check {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    color: var(--void);
    font-size: 2rem;
    font-weight: 700;
}

.confirmation-details {
    max-width: 560px;
    margin: 48px auto 0;
    background: var(--obsidian);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 32px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.detail-row:last-child { border-bottom: none; }
.detail-row .key { color: var(--ash); font-size: 0.9rem; }
.detail-row .val { color: var(--pearl); font-weight: 600; }

/* =========== MOBILE NAV DRAWER =========== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--onyx);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 200;
    overflow-y: auto;
    padding: 24px;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 150;
    backdrop-filter: blur(6px);
}

.mobile-nav-backdrop.active { display: block; }

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    display: block;
}

.mobile-nav ul { list-style: none; margin-top: 24px; }

.mobile-nav li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--ivory);
    font-size: 1.05rem;
    font-family: var(--font-display);
    font-weight: 600;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-floating { display: none; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-summary { position: static; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .section { padding: 64px 0; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .product-info { padding: 14px; }
    .product-name { font-size: 1rem; }
    .testimonial-quote { padding: 0 24px; }
    .form-row { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 80px 1fr; gap: 14px; }
    .cart-item-right { grid-column: 2; text-align: left; min-width: auto; }
    .booking-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
}
