/* ==========================================================================
   Khan Fashion World (KFW) - Old Money Luxury Bengali Landing Page Styles
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
    --bg-dark: #0a0c10;
    --bg-card: #121620;
    --bg-card-hover: #1a202c;
    --bg-input: #171c28;
    
    --gold-primary: #d4af37;
    --gold-light: #f5e6a3;
    --gold-dark: #aa771c;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f6e093 50%, #aa771c 100%);
    --gold-glow: rgba(212, 175, 55, 0.3);

    --crimson-accent: #e63946;
    --crimson-gradient: linear-gradient(135deg, #ff4757 0%, #c0392b 100%);
    
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1ebd56;

    --text-white: #ffffff;
    --text-silver: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-light: rgba(255, 255, 255, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --font-primary: 'Hind Siliguri', sans-serif;
    --font-number: 'Outfit', sans-serif;
    --font-brand: 'Cinzel', serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-silver);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Container & Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4 {
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
}

.highlight-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 15px auto 20px auto;
    border-radius: 2px;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: linear-gradient(135deg, #0d0905 0%, #1e1509 35%, #2a1c0b 50%, #1e1509 65%, #0d0905 100%);
    background-size: 200% 200%;
    animation: goldShimmerBg 10s ease infinite;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding: 8px 0;
    font-size: 0.92rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.announcement-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #fdf0a6, #d4af37, transparent);
    background-size: 200% 100%;
    animation: goldLineFlow 3s linear infinite;
}

@keyframes goldLineFlow {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes goldShimmerBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff3b30 0%, #c0392b 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 220, 150, 0.4);
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    animation: pulseGlow 2.5s infinite;
    letter-spacing: 0.3px;
}

.badge-icon {
    font-size: 0.9rem;
    filter: drop-shadow(0 0 2px rgba(255, 255, 0, 0.6));
    animation: flameBounce 1.5s ease-in-out infinite alternate;
}

@keyframes flameBounce {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.15) translateY(-1px); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.announcement-text-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #e2e8f0;
    font-weight: 500;
}

.offer-label {
    color: var(--text-silver);
    font-size: 0.9rem;
}

.price-highlight {
    font-family: var(--font-number);
    font-size: 1.18rem;
    font-weight: 800;
    color: #fdf0a6;
    background: linear-gradient(135deg, #ffffff 0%, #f6e093 60%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    letter-spacing: 0.5px;
}

.old-price-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-family: var(--font-number);
}

.discount-badge {
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #0a0c10;
    font-weight: 800;
    font-size: 0.76rem;
    padding: 2px 9px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
    letter-spacing: 0.4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-timer-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-label-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-light);
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2b2011 0%, #161008 100%);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 6px;
    padding: 2px 7px;
    min-width: 38px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.timer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.timer-box {
    font-family: var(--font-number);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fdf0a6;
    line-height: 1.1;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.timer-unit-label {
    font-size: 0.58rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 1px;
    line-height: 1;
}

.timer-colon {
    color: #d4af37;
    font-weight: 800;
    font-size: 1rem;
    animation: blinkColon 1.2s infinite;
    line-height: 1;
    margin-bottom: 8px;
}

@keyframes blinkColon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* --- Header / Navbar --- */
.navbar {
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    position: relative;
    z-index: 990;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-brand);
    color: var(--gold-light);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

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

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-whatsapp-nav:hover {
    background: var(--whatsapp-green);
    color: #000;
    transform: translateY(-2px);
}

.btn-home-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-home-nav:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary-small {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* --- Hero Section (World-Class Old Money Luxury) --- */
.hero-section {
    padding: 55px 0 65px 0;
    background: radial-gradient(circle at 72% 35%, rgba(212, 175, 55, 0.22) 0%, transparent 55%),
                radial-gradient(circle at 18% 75%, rgba(230, 57, 70, 0.12) 0%, transparent 50%),
                #07090e;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.hero-badges-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.06) 100%);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-number);
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.crown-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(252, 211, 77, 0.6));
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 7px 14px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.star-icon {
    font-size: 0.85rem;
}

.rating-num {
    color: #facc15;
    font-weight: 700;
}

.rating-count {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.76rem;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #ffffff 10%, #f6e093 50%, #d4af37 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.35));
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-silver);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Luxury Price Ticket Card */
.luxury-price-card {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(15, 18, 26, 0.95) 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.lpc-badge {
    position: absolute;
    top: -11px;
    left: 20px;
    background: linear-gradient(135deg, #ff4757 0%, #c0392b 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.lpc-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.lpc-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.lpc-currency {
    font-size: 1.7rem;
    color: var(--gold-light);
    font-weight: 700;
}

.lpc-price {
    font-family: var(--font-number);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    text-shadow: 0 0 20px var(--gold-glow);
}

.lpc-unit {
    font-size: 0.95rem;
    color: var(--text-silver);
    font-weight: 600;
}

.lpc-discount-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.lpc-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.15rem;
    font-family: var(--font-number);
}

.lpc-save-pill {
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid #e63946;
    color: #ff6b81;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 2px;
    display: inline-block;
}

/* Sleek Feature Chips Horizontal Strip */
.hero-features-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.hfc-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition);
}

.hfc-chip:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.hfc-icon {
    font-size: 1.1rem;
}

/* Main CTA Action Box */
.hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-gold-luxury {
    position: relative;
    background: linear-gradient(135deg, #d4af37 0%, #f6e093 50%, #aa771c 100%);
    color: #000000;
    border: none;
    border-radius: 14px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.btn-gold-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.55);
}

.btn-gold-icon {
    font-size: 1.7rem;
}

.btn-gold-content strong {
    font-size: 1.25rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.btn-gold-content small {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    display: block;
}

.pulse-glow {
    animation: pulseGoldGlow 2.5s infinite;
}

@keyframes pulseGoldGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-wa-subtle {
    background: rgba(37, 211, 102, 0.1);
    border: 1.5px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-wa-subtle:hover {
    background: var(--whatsapp-green);
    color: #000000;
}

.urgency-strip {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text-silver);
}

.urgency-strip strong {
    color: var(--crimson-accent);
}

.urgency-bar {
    width: 100%;
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.ub-fill {
    height: 100%;
    background: var(--crimson-gradient);
    border-radius: 4px;
}

/* Hero Right Column Photo Frame */
.hero-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2.5px solid var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 35px rgba(212, 175, 55, 0.3);
    aspect-ratio: 4/5;
    max-height: 520px;
    background: #121620;
}

.photo-top-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 12, 16, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 5;
}

.photo-offer-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff4757 0%, #c0392b 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-photo-card:hover .hero-photo {
    transform: scale(1.03);
}

.btn-hd-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.btn-hd-zoom:hover {
    background: var(--gold-primary);
    color: #000000;
}

/* Color Swatch Bar */
.color-swatch-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.swatch-item {
    background: #121620;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.swatch-item img {
    height: 85px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 6px;
}

.swatch-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-silver);
}

.swatch-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
}

.sc-white { background: #ffffff; }
.sc-maroon { background: #800020; }
.sc-black { background: #111111; }

.swatch-item.active, .swatch-item:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.swatch-item.active .swatch-label {
    color: var(--gold-light);
}

/* --- Trust Bar Strip --- */
.trust-bar-section {
    background: #0e1118;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 30px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 2.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.sub-heading {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    margin-top: 5px;
}

.section-desc {
    color: var(--text-silver);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- Combo Variants Section --- */
.combo-variants-section {
    padding: 80px 0;
}

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

.variant-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.variant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px var(--gold-glow);
}

.variant-img-holder {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.variant-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.variant-card:hover .variant-img-holder img {
    transform: scale(1.05);
}

.variant-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.variant-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.variant-body h3 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.variant-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-select-variant {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-select-variant:hover {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
}

/* --- Features Detail Section --- */
.features-detail-section {
    padding: 70px 0;
    background: #0d1017;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Size Chart Section --- */
.size-chart-section {
    padding: 80px 0;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.size-table th {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 16px;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--border-gold);
    text-align: center;
}

.size-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
}

.size-badge {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 4px;
    font-family: var(--font-number);
}

.size-tip {
    text-align: center;
    color: var(--gold-light);
    font-size: 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed var(--gold-primary);
    padding: 12px;
    border-radius: var(--radius-md);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Customer Reviews --- */
.reviews-section {
    padding: 70px 0;
    background: #0d1017;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-silver);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.95rem;
}

.reviewer-city {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-primary);
}

/* --- High-Converting Order Form Section --- */
.order-section {
    padding: 70px 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%), #07090e;
}

.order-callout-section {
    padding: 60px 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 75%), #090c12;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.order-callout-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(18, 22, 32, 0.95) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
}

.callout-badge {
    background: var(--crimson-gradient);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 5px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.order-callout-box h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.order-callout-box p {
    font-size: 1.1rem;
    color: var(--text-silver);
    margin-bottom: 30px;
}

/* Form Styling */
.form-block {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.step-num {
    background: var(--gold-gradient);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-number);
}

.color-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.color-picker-box label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-select, .custom-input, .custom-textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-gold);
    color: #fff;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.custom-select:focus, .custom-input:focus, .custom-textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Size Option Cards */
.size-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.size-radio-card input {
    display: none;
}

.size-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border: 1.5px solid var(--border-light);
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.size-box strong {
    font-size: 1.2rem;
    font-family: var(--font-number);
    color: var(--text-white);
}

.size-box small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.size-radio-card input:checked + .size-box {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 10px var(--gold-glow);
}

.size-radio-card input:checked + .size-box strong {
    color: var(--gold-light);
}

/* Delivery Options */
.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.del-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.del-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.del-radio-card {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1.5px solid var(--border-light);
    padding: 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.del-radio-card input {
    margin-right: 10px;
    accent-color: var(--gold-primary);
}

.del-info {
    display: flex;
    flex-direction: column;
}

.del-title {
    font-size: 0.9rem;
    color: var(--text-white);
}

.del-cost {
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-number);
}

.del-radio-card.active, .del-radio-card:has(input:checked) {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
}

/* Order Summary Box */
.order-summary-card {
    background: #0a0d14;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

.order-summary-card h3 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 10px;
}

.sum-price, .sum-delivery {
    font-family: var(--font-number);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: var(--border-gold);
    margin: 12px 0;
}

.total-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
}

.sum-total {
    font-size: 1.4rem;
    color: var(--gold-light);
    font-family: var(--font-number);
    font-weight: 800;
}

.summary-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 4px;
}

/* Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-submit-order {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px var(--gold-glow);
    width: 100%;
}

.btn-submit-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.or-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    margin: 5px 0;
}

.btn-wa-order {
    background: rgba(37, 211, 102, 0.15);
    border: 1.5px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-wa-order:hover {
    background: var(--whatsapp-green);
    color: #000;
}

/* --- FAQ Accordion Section --- */
.faq-section {
    padding: 70px 0;
    background: #090b0f;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 18px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Footer --- */
.footer {
    background: #050608;
    border-top: 1px solid var(--border-light);
    padding: 40px 0 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 12px;
}

.footer-logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    margin: 0 auto 12px auto;
    display: block;
    object-fit: cover;
}

.footer-brand p {
    font-family: var(--font-brand);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand small {
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text-silver);
}

.footer-contact a {
    color: var(--gold-light);
    font-weight: 700;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.dev-credits {
    margin-top: 6px;
    font-size: 0.88rem;
    color: var(--text-silver);
}

.dev-credits a {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: underline;
    transition: var(--transition);
}

.dev-credits a:hover {
    color: #ffffff;
}

/* --- Mobile Floating Sticky Bar --- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-gold);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.8);
    align-items: center;
    justify-content: space-between;
}

.msb-price {
    display: flex;
    flex-direction: column;
}

.msb-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.msb-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: var(--font-number);
}

.msb-btn {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-height: 80vh;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 30px var(--gold-glow);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-caption {
    color: var(--gold-light);
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- Order Success Modal --- */
.order-success-modal {
    display: none;
    position: fixed;
    z-index: 2100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.osm-card {
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 35px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 40px var(--gold-glow);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.osm-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.osm-card h2 {
    color: var(--gold-light);
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.osm-subtitle {
    color: var(--text-silver);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.osm-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-gold);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 0.95rem;
}

.osm-details p {
    margin-bottom: 6px;
}

.osm-notice {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.osm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-wa-modal {
    background: var(--whatsapp-green);
    color: #000;
    font-weight: 800;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.btn-close-modal {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-silver);
    padding: 10px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
}

/* --- Inline Order Form Section Styling --- */
.order-form-section {
    padding: 70px 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 70%), #0b0e14;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.order-box-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    max-width: 1050px;
    margin: 0 auto;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    height: 100%;
}

.select-box-wrap {
    margin-bottom: 16px;
}

.select-box-wrap label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.custom-select, .custom-input, .custom-textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid var(--border-gold);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 16px; /* 16px prevents iOS zoom on tap */
    outline: none;
    transition: var(--transition);
}

.custom-select option {
    background: #171c28;
    color: #ffffff;
}

.custom-select:focus, .custom-input:focus, .custom-textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
    background: #1c2232;
}

.size-selection-wrap {
    margin-top: 20px;
}

.size-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.size-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.size-radio-card {
    cursor: pointer;
    user-select: none;
}

.size-radio-card input {
    display: none;
}

.size-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border: 1.5px solid var(--border-light);
    padding: 12px 6px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
    min-height: 60px;
}

.size-title {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-number);
    color: #ffffff;
}

.size-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.size-radio-card input:checked + .size-box {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

.size-radio-card input:checked + .size-box .size-title {
    color: var(--gold-light);
}

.order-summary-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 13, 20, 0.95) 100%);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.os-calc-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 1px dashed var(--border-gold);
    padding-bottom: 15px;
}

.os-item {
    font-size: 0.95rem;
    color: var(--text-silver);
    display: flex;
    align-items: center;
    gap: 8px;
}

.os-item strong {
    font-family: var(--font-number);
    color: #ffffff;
}

.os-total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.os-total strong {
    font-family: var(--font-number);
    font-size: 1.6rem;
    color: var(--gold-light);
    text-shadow: 0 0 10px var(--gold-glow);
}

.btn-submit-landing {
    width: 100%;
}

/* --- Floating Circular WhatsApp Button --- */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #1ebd56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.floating-wa-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.65);
}

.wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: waPulseRing 2s infinite;
}

@keyframes waPulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-wa-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- Responsive Media Queries (Mobile-First Polish) --- */
.scroll-hint-badge {
    display: none;
    text-align: center;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin: 0 auto 15px auto;
    max-width: 290px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-gallery-wrap {
        order: -1; /* Show product images right under title on tablet/mobile! */
    }
    
    .hero-title {
        font-size: 2.1rem;
    }

    .form-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .variants-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .scroll-hint-badge {
        display: block;
    }

    .announcement-bar {
        padding: 5px 4px;
    }

    .announcement-content {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 4px;
        overflow: hidden;
        white-space: nowrap;
    }

    .pulse-badge {
        font-size: 0.62rem;
        padding: 2px 6px;
        gap: 2px;
        flex-shrink: 0;
        border-radius: 20px;
        white-space: nowrap;
    }

    .badge-icon {
        font-size: 0.68rem;
    }

    .announcement-text-group {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 3px;
        font-size: 0.7rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .offer-label {
        font-size: 0.65rem;
    }

    .price-highlight {
        font-size: 0.82rem;
        font-weight: 800;
    }

    .old-price-pill {
        display: none;
    }

    .discount-badge {
        font-size: 0.6rem;
        padding: 1px 4px;
        white-space: nowrap;
    }

    .countdown-timer-group {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 2px;
        margin-top: 0;
        flex-shrink: 0;
    }

    .timer-label-text {
        display: none;
    }

    .countdown-timer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2px;
        align-items: center;
    }

    .timer-card {
        min-width: 17px;
        padding: 1px 3px;
        border-radius: 3px;
        background: rgba(212, 175, 55, 0.18);
        border: 1px solid rgba(212, 175, 55, 0.4);
    }

    .timer-box {
        font-size: 0.72rem;
        line-height: 1;
        font-weight: 700;
        color: #fdf0a6;
    }

    .timer-unit-label {
        display: none;
    }

    .timer-colon {
        font-size: 0.7rem;
        margin-bottom: 0;
        line-height: 1;
        color: var(--gold-light);
    }

    .navbar {
        padding: 10px 0;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-title {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .nav-actions .btn-whatsapp-nav span, .nav-actions .btn-primary-small {
        display: none;
    }

    .btn-whatsapp-nav {
        padding: 8px 10px;
    }

    .btn-home-nav {
        display: inline-flex !important;
        align-items: center;
        gap: 5px;
        padding: 5px 12px;
        font-size: 0.78rem;
        background: rgba(212, 175, 55, 0.15) !important;
        border: 1px solid var(--gold-primary) !important;
        color: var(--gold-light) !important;
        white-space: nowrap;
        border-radius: 50px;
    }

    .btn-home-nav span {
        display: inline-block !important;
        color: var(--gold-light) !important;
    }

    /* Mobile Standardized Section Spacing & Margins */
    .hero-section {
        padding: 16px 0 24px 0;
    }

    .trust-bar-section {
        padding: 18px 0;
    }

    .combo-variants-section {
        padding: 32px 0;
    }

    .features-detail-section {
        padding: 30px 0;
    }

    .size-chart-section {
        padding: 30px 0;
    }

    .reviews-section {
        padding: 30px 0;
    }

    .order-callout-section {
        padding: 26px 0;
    }

    .order-section,
    .order-form-section {
        padding: 30px 0;
    }

    .faq-section {
        padding: 30px 0;
    }

    .footer {
        padding: 26px 0 20px 0;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-title {
        font-size: 1.65rem;
        margin-top: 4px;
    }

    .section-desc {
        font-size: 0.9rem;
        margin-top: 4px;
    }

    .hero-badges-wrapper {
        gap: 8px;
        margin-bottom: 12px;
    }

    .hero-top-tag {
        font-size: 0.74rem;
        padding: 5px 12px;
    }

    .rating-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .rating-count {
        font-size: 0.68rem;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.28;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 16px;
    }

    .hero-photo-card {
        max-height: 380px;
        border-radius: 16px;
    }

    .luxury-price-card {
        padding: 12px 16px;
        border-radius: 12px;
    }

    .lpc-price {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .lpc-currency {
        font-size: 1.3rem;
    }

    .hero-features-chips {
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
    }

    .hfc-chip {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .btn-gold-luxury {
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .btn-gold-icon {
        font-size: 1.4rem;
    }

    .color-swatch-bar {
        gap: 8px;
    }

    .swatch-item {
        padding: 6px;
        border-radius: 10px;
    }

    .swatch-item img {
        height: 68px;
    }

    .swatch-label {
        font-size: 0.78rem;
    }

    .color-select-grid, .del-grid {
        grid-template-columns: 1fr;
    }

    .size-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* iOS auto-zoom prevention and touch targets */
    .custom-select, .custom-input, .custom-textarea {
        font-size: 16px !important;
        min-height: 48px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .order-box-wrapper {
        padding: 20px 14px;
        border-radius: var(--radius-md);
    }

    .os-calc-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mobile-sticky-bar {
        display: flex;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        background: rgba(10, 12, 16, 0.96);
        backdrop-filter: blur(12px);
        border-top: 1.5px solid var(--gold-primary);
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.9), 0 -2px 10px rgba(212, 175, 55, 0.25);
    }

    .msb-btn {
        animation: pulseGoldGlow 2s infinite;
    }

    body {
        padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
    }

    .floating-wa-btn {
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        right: 14px;
        width: 52px;
        height: 52px;
        z-index: 1000;
    }

    .wa-float-icon {
        width: 26px;
        height: 26px;
    }

    .wa-tooltip {
        display: none; /* Hide tooltip on touch devices */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 12px 0 18px 0;
    }

    .combo-variants-section,
    .features-detail-section,
    .size-chart-section,
    .reviews-section,
    .order-section,
    .order-form-section,
    .faq-section {
        padding: 24px 0;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .container {
        padding: 0 12px;
    }

    .trust-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-item {
        padding: 14px;
    }

    .hero-title {
        font-size: 1.48rem;
    }

    .lpc-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lpc-discount-wrap {
        align-items: flex-start;
    }

    .btn-gold-content strong {
        font-size: 0.92rem;
    }

    .btn-gold-content small {
        font-size: 0.7rem;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        border: 1px solid var(--border-gold);
    }

    .size-table th, .size-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .faq-question {
        padding: 14px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-features-chips {
        grid-template-columns: 1fr;
    }

    .size-options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 380px) {
    .announcement-bar {
        padding: 4px 4px;
    }
    .announcement-content {
        gap: 2px;
    }
    .pulse-badge {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    .badge-icon {
        font-size: 0.65rem;
    }
    .announcement-text-group {
        font-size: 0.66rem;
        gap: 2px;
    }
    .offer-label {
        font-size: 0.62rem;
    }
    .price-highlight {
        font-size: 0.78rem;
    }
    .discount-badge {
        font-size: 0.58rem;
        padding: 1px 3px;
    }
    .timer-card {
        min-width: 16px;
        padding: 1px 2px;
    }
    .timer-box {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   Standalone Checkout & Thank You Page Styles
   ========================================================================== */
.checkout-main-wrap, .thankyou-main-wrap {
    padding: 40px 0 70px 0;
    min-height: 80vh;
}

.checkout-header-title {
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.back-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.checkout-header-title h1 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.checkout-header-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 35px;
    align-items: flex-start;
}

.checkout-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.checkout-step-block {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--border-light);
}

.step-title {
    font-size: 1.2rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-title span {
    background: var(--gold-gradient);
    color: #000000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

/* Cart Product Preview Sidebar */
.cart-product-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.cpp-thumb {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--gold-primary);
}

.cpp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpp-info h4 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cpp-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cpp-price {
    color: var(--gold-light);
    font-family: var(--font-number);
    font-weight: 800;
    font-size: 1.2rem;
}

.payment-badge-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-top: 15px;
}

.pb-icon {
    font-size: 1.6rem;
}

.payment-badge-box strong {
    color: var(--whatsapp-green);
    font-size: 0.92rem;
    display: block;
}

.payment-badge-box p {
    font-size: 0.78rem;
    color: var(--text-silver);
}

.trust-micro-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-micro-card p {
    margin-bottom: 6px;
}
.trust-micro-card p:last-child {
    margin-bottom: 0;
}

/* Thank You Page Styling */
.thankyou-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.2);
}

.ty-success-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
}

.ty-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.ty-header h1 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.ty-subtitle {
    color: var(--text-silver);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.receipt-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    margin-bottom: 30px;
}

.receipt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.receipt-header h3 {
    font-size: 1.15rem;
    color: var(--gold-light);
}

.order-id-pill {
    background: var(--gold-gradient);
    color: #000000;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-number);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.r-label {
    color: var(--text-muted);
}

.r-value {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}

.receipt-divider {
    height: 1px;
    border-top: 1px dashed var(--border-gold);
    margin: 15px 0;
}

.total-highlight {
    font-size: 1.15rem;
    font-weight: 800;
}

.gold-text {
    color: var(--gold-light);
    font-family: var(--font-number);
    font-size: 1.3rem;
}

.delivery-steps-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 30px;
}

.delivery-steps-box h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--text-silver);
}

.timeline-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.timeline-step.active {
    color: var(--gold-light);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-step.active .step-circle {
    background: var(--gold-gradient);
    color: #000000;
    border: none;
    box-shadow: 0 0 15px var(--gold-glow);
}

.ty-notice {
    font-size: 0.95rem;
    color: var(--text-silver);
    margin-bottom: 25px;
}

.ty-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-wa-thankyou {
    background: linear-gradient(135deg, #25d366 0%, #1ebd56 100%);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-wa-thankyou:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.btn-home-return {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-light);
    color: var(--text-silver);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-home-return:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}


