/* ==========================================================================
   Daraz Mystery Box - Sleek Dark Mode & Neon Glow Luxury Design System
   ========================================================================== */

:root {
    --bg-main: #090814;
    --bg-surface: #121026;
    --bg-surface-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --bg-card-active: linear-gradient(135deg, rgba(255, 87, 34, 0.22) 0%, rgba(255, 23, 68, 0.12) 100%);
    
    --neon-orange: #FF5722;
    --neon-red: #FF1744;
    --neon-amber: #FFC107;
    --neon-gold: #FFD54F;
    --neon-green: #00E676;
    --neon-cyan: #00E5FF;
    
    --gradient-fire: linear-gradient(135deg, #FF6D00 0%, #FF1744 100%);
    --gradient-gold: linear-gradient(135deg, #FFE082 0%, #FFB300 100%);
    --gradient-btn: linear-gradient(135deg, #FF6D00 0%, #FF1744 50%, #D50000 100%);
    --gradient-header: linear-gradient(135deg, rgba(255, 87, 34, 0.25) 0%, rgba(213, 0, 0, 0.25) 100%);
    
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-neon: #FF5722;
    
    --shadow-neon: 0 0 35px rgba(255, 87, 34, 0.55);
    --shadow-neon-sm: 0 0 18px rgba(255, 87, 34, 0.3);
    --shadow-gold: 0 0 25px rgba(255, 193, 7, 0.4);
    --shadow-green: 0 0 20px rgba(0, 230, 118, 0.35);
    
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-full: 9999px;
    
    --font-main: 'Hind Siliguri', 'Outfit', system-ui, -apple-system, sans-serif;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 87, 34, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 65%, rgba(255, 23, 68, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(48, 79, 254, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 85px; /* Space for Mobile Bottom Bar */
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

/* ==========================================================================
   1. Top Announcement & Header
   ========================================================================== */

.top-announcement {
    background: linear-gradient(90deg, rgba(213, 0, 0, 0.95) 0%, rgba(255, 87, 34, 0.95) 50%, rgba(230, 74, 25, 0.95) 100%);
    backdrop-filter: blur(12px);
    color: #FFF;
    padding: 8px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 87, 34, 0.5);
    box-shadow: 0 4px 25px rgba(255, 87, 34, 0.35);
}

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

@media (max-width: 767px) {
    .top-announcement {
        padding: 6px 10px;
        height: 38px;
        display: flex;
        align-items: center;
    }

    .announcement-content {
        justify-content: space-between;
        gap: 6px;
        width: 100%;
    }

    .fire-badge {
        padding: 2px 7px;
        font-size: 0.68rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .announcement-text {
        font-size: 0.74rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 600;
    }

    .timer-box {
        padding: 2px 7px;
        font-size: 0.72rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

.fire-badge {
    background: #FFF;
    color: #D50000;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 12px rgba(255,255,255,0.7);
    animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
    100% { transform: scale(1.06); box-shadow: 0 0 22px rgba(255,255,255,1); }
}

.timer-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--neon-amber);
    border: 1px solid rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.3);
}

.main-header {
    background: rgba(18, 16, 38, 0.85);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-daraz {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--neon-orange);
    letter-spacing: -0.5px;
    text-shadow: 0 0 18px rgba(255, 87, 34, 0.7);
}

.logo-badge {
    background: var(--gradient-btn);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-neon-sm);
}

.header-badges {
    display: flex;
    gap: 10px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    border: 1px solid var(--border-glass);
    display: none;
}

.trust-pill.highlight {
    background: rgba(0, 230, 118, 0.14);
    color: var(--neon-green);
    border-color: rgba(0, 230, 118, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    box-shadow: var(--shadow-green);
}

@media (min-width: 640px) {
    .trust-pill { display: inline-flex; align-items: center; gap: 6px; }
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */

.hero-section {
    padding: 20px 0 24px 0;
    position: relative;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.hero-media-col {
    order: 1; /* Product image appears first on mobile screens! */
    width: 100%;
}

.hero-text-col {
    order: 2; /* Hero text appears second on mobile screens! */
    width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 44px;
    }

    .hero-text-col {
        order: 1; /* Text on left for desktop */
    }

    .hero-media-col {
        order: 2; /* Image on right for desktop */
    }
}

.offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, 0.14);
    border: 1px solid rgba(255, 87, 34, 0.45);
    color: #FF8A65;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 0 18px rgba(255, 87, 34, 0.25);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background-color: var(--neon-orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-orange);
    animation: pulseGlow 1.6s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.8); }
    70% { box-shadow: 0 0 0 14px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

.hero-title {
    font-size: 1.95rem;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
}

.highlight-price {
    background: var(--gradient-fire);
    color: var(--text-primary);
    padding: 2px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.7);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.4));
}

.hero-subtitle {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.65;
}

/* Stock Progress Bar */
.stock-progress-box {
    background: var(--bg-surface-card);
    border: 1px solid var(--border-glass);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stock-count {
    color: var(--neon-amber);
    font-weight: 800;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-fire);
    border-radius: var(--radius-full);
    box-shadow: 0 0 18px rgba(255, 87, 34, 0.85);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6D00 0%, #FF3D00 50%, #D50000 100%);
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.65), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    color: #FFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 45px rgba(255, 87, 34, 0.8), inset 0 2px 6px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0, 230, 118, 0.5);
}

/* Feature Bullets */
.feature-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .feature-bullets {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-surface-card);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
}

.bullet-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 87, 34, 0.18);
    color: var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-neon-sm);
}

.bullet-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
}

.bullet-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hero Media Card */
.media-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid rgba(255, 87, 34, 0.35);
    box-shadow: 0 0 45px rgba(255, 87, 34, 0.3);
    backdrop-filter: blur(16px);
}

.hero-img-main {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
}

.discount-badge-circle {
    position: absolute;
    top: -14px;
    right: -5px;
    width: 85px;
    height: 85px;
    background: var(--gradient-btn);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.8);
    border: 3px solid var(--text-primary);
    transform: rotate(12deg);
    z-index: 10;
}

.discount-badge-circle span {
    font-size: 0.68rem;
    text-transform: uppercase;
}

.discount-badge-circle strong {
    font-size: 0.88rem;
    font-weight: 900;
}

.box-preview-overlay {
    margin-top: 14px;
    background: rgba(0, 0, 0, 0.55);
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.box-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-preview-item img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.box-preview-item span {
    font-size: 0.84rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==========================================================================
   3. Policy Section (Order & Return)
   ========================================================================== */

.policy-section {
    padding: 24px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 20px auto;
}

.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 87, 34, 0.14);
    color: var(--neon-orange);
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 87, 34, 0.35);
}

.sub-badge.alert-badge {
    background: rgba(255, 23, 68, 0.14);
    color: var(--neon-red);
    border-color: rgba(255, 23, 68, 0.35);
}

.section-heading h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .section-heading h2 { font-size: 2.4rem; }
}

.section-heading p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .policy-grid { grid-template-columns: 1fr 1fr; }
}

.policy-card {
    background: var(--bg-surface-card);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.order-policy::before { background: var(--gradient-fire); }
.return-policy::before { background: linear-gradient(90deg, #FF1744, #D50000); }

.policy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-glass);
}

.policy-header i { font-size: 1.4rem; }
.order-policy .policy-header i { color: var(--neon-orange); }
.return-policy .policy-header i { color: var(--neon-red); }

.policy-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.35);
}

.check-icon.warning {
    background: rgba(255, 23, 68, 0.15);
    color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.35);
}

/* ==========================================================================
   4. Customer Reviews Section
   ========================================================================== */

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

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

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background: var(--bg-surface-card);
    border: 1px solid var(--border-glass);
    padding: 22px 18px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(14px);
    transition: var(--transition);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-btn);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-neon-sm);
}

.review-top h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.stars {
    margin-left: auto;
    color: var(--neon-amber);
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.55;
}

.verified-badge {
    font-size: 0.8rem;
    color: var(--neon-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   5. ULTRA-STUNNING ORDER CHECKOUT SECTION (MOBILE OPTIMIZED)
   ========================================================================== */

.order-section {
    padding: 24px 0;
}

.order-box-wrapper {
    background: linear-gradient(145deg, rgba(24, 20, 48, 0.95) 0%, rgba(12, 10, 26, 0.98) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 50px rgba(255, 87, 34, 0.35), 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 2px solid rgba(255, 87, 34, 0.5);
    backdrop-filter: blur(20px);
}

.order-header-banner {
    background: var(--gradient-header);
    color: var(--text-primary);
    padding: 24px 16px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 87, 34, 0.5);
}

.order-header-banner h2 {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 0 18px rgba(255, 87, 34, 0.6);
}

@media (min-width: 768px) {
    .order-header-banner h2 { font-size: 2.3rem; }
}

.order-header-banner p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 32px;
}

@media (min-width: 992px) {
    .order-grid {
        grid-template-columns: 1fr 1fr;
        padding: 44px;
    }
}

.col-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--gradient-btn);
    color: var(--text-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: var(--shadow-neon);
}

/* Package Options Styling (Mobile Responsive Cards) */
.package-options-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.package-card input[type="radio"] {
    display: none;
}

.pkg-radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
}

.package-card.active {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.25) 0%, rgba(255, 23, 68, 0.14) 100%);
    border-color: var(--neon-orange);
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.45);
}

.package-card.active .pkg-radio-custom {
    border-color: var(--neon-orange);
    background: var(--neon-orange);
    box-shadow: 0 0 12px var(--neon-orange);
}

.package-card.active .pkg-radio-custom::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background: #FFF;
    border-radius: 50%;
}

.pkg-img img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pkg-details {
    flex-grow: 1;
}

.pkg-details h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pkg-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pkg-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-shadow: 0 0 12px rgba(255, 87, 34, 0.5);
}

.unit-calc {
    font-size: 0.78rem;
    color: var(--neon-gold);
    font-weight: 700;
    background: rgba(255, 193, 7, 0.12);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.badge-pop {
    position: absolute;
    top: -12px;
    right: 10px;
    background: var(--gradient-gold);
    color: #0A0915;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.6);
}

/* Customer Address Form (Mobile Touch Optimized) */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--neon-orange);
    margin-right: 6px;
}

.req {
    color: var(--neon-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 16px; /* Prevents iOS auto-zoom on focus! */
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-orange);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Golden Digital Voucher Order Summary Receipt */
.order-summary-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 87, 34, 0.08) 100%);
    border: 2px dashed rgba(255, 193, 7, 0.55);
    padding: 20px 16px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    position: relative;
}

.order-summary-card h4 {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--neon-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.94rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.summary-divider {
    border: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    margin: 14px 0;
}

.total-line {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
    align-items: center;
}

.total-line strong {
    color: var(--neon-gold);
    font-size: 1.55rem;
    font-weight: 900;
    text-shadow: 0 0 16px rgba(255, 213, 79, 0.7);
}

.btn-submit-order {
    width: 100%;
    background: linear-gradient(135deg, #FF6D00 0%, #FF3D00 50%, #D50000 100%);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-submit-order .btn-icon-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.btn-submit-text {
    font-size: 1.18rem;
    font-weight: 900;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    flex-grow: 1;
    text-align: center;
}

.btn-submit-price {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--neon-gold);
    font-size: 1.08rem;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
    .btn-submit-order {
        padding: 12px 14px;
        gap: 6px;
    }
    .btn-submit-order .btn-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .btn-submit-text {
        font-size: 1.02rem;
    }
    .btn-submit-price {
        font-size: 0.95rem;
        padding: 5px 10px;
    }
}

.btn-submit-order::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: btnShine 3s infinite;
}

.btn-submit-order:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 45px rgba(255, 87, 34, 0.85), inset 0 2px 6px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.form-security-footer {
    display: flex;
    justify-content: space-around;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: 600;
}

.form-security-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   6. FAQ Accordion Section
   ========================================================================== */

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

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

.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface-card);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--neon-orange);
    box-shadow: var(--shadow-neon-sm);
}

.faq-item.active .faq-question {
    color: var(--neon-orange);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--neon-orange);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 16px 18px;
}

/* ==========================================================================
   7. Footer
   ========================================================================== */

.site-footer {
    background: rgba(10, 9, 20, 0.95);
    color: var(--text-muted);
    padding: 40px 0;
    font-size: 0.92rem;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

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

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.footer-copy {
    margin-bottom: 6px;
    text-align: center;
}

.footer-terms {
    font-size: 0.82rem;
    color: #64748B;
    margin-bottom: 8px;
    text-align: center;
}

.footer-developer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 6px;
    font-weight: 600;
}

.footer-developer a {
    color: var(--neon-orange);
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.footer-developer a:hover {
    color: var(--neon-amber);
    text-shadow: 0 0 12px var(--neon-orange);
    text-decoration: underline;
}

/* ==========================================================================
   8. Sales Popup & Mobile Sticky Bar
   ========================================================================== */

.sales-popup {
    position: fixed;
    bottom: 80px;
    left: 12px;
    right: 12px;
    background: rgba(18, 16, 38, 0.96);
    border: 1px solid var(--neon-orange);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neon);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 990;
    max-width: 360px;
    margin: 0 auto;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (min-width: 768px) {
    .sales-popup {
        bottom: 25px;
        left: 20px;
        right: auto;
    }
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.sales-popup-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 87, 34, 0.2);
    color: var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255,87,34,0.4);
}

.sales-popup-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.sales-popup-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 800;
}

.sales-popup-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: auto;
}

/* Mobile Bottom Sticky Order Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 8, 22, 0.96);
    backdrop-filter: blur(16px);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid var(--neon-orange);
    box-shadow: 0 -8px 30px rgba(255, 87, 34, 0.4);
    z-index: 999;
}

@media (min-width: 768px) {
    .mobile-sticky-bar { display: none; }
}

.sticky-info { display: flex; flex-direction: column; }
.sticky-price-title { font-size: 0.72rem; color: var(--text-muted); }
.sticky-price-num { font-size: 1.15rem; font-weight: 900; color: var(--neon-amber); text-shadow: 0 0 10px rgba(255, 193, 7, 0.5); }
.btn-sticky { padding: 11px 22px; font-size: 0.96rem; border-radius: var(--radius-sm); width: auto; }

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 8, 20, 0.88);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: rgba(18, 16, 38, 0.98);
    border: 1px solid var(--neon-orange);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 30px 20px;
    box-shadow: var(--shadow-neon);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    color: var(--text-primary);
}

.modal-backdrop.show .modal-box { transform: scale(1); }

.success-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 16px auto;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.modal-box h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 18px 0;
    text-align: left;
    font-size: 0.9rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.modal-total {
    font-weight: 900;
    color: var(--neon-amber);
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 8px;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.modal-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.modal-close-btn { width: 100%; }

/* Dynamic Payment Selector Styles */
.payment-method-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.payment-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.payment-option-card:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.payment-option-card.active {
    background: rgba(255, 111, 0, 0.15);
    border-color: #ff6f00;
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 111, 0, 0.3);
}

.payment-option-card input[type="radio"] {
    accent-color: #ff6f00;
    cursor: pointer;
}

