/*
 * Social Bar — Premium SMM Panel Theme v3
 * White + Dark Purple + Electric Violet palette
 * www.socialbar.net
 */

:root {
    /* ── Brand Palette ── */
    --purple-deep:    #1a0a2e;
    /* ── Legacy aliases (used in some page inline styles) ── */
    --primary-color:  #8b5cf6;
    --border-radius:  20px;
    --text-light:     #ffffff;
    --card-hover-glow: 0 0 60px rgba(108, 43, 217, 0.28);
    --shadow-hover:   0 8px 40px rgba(108, 43, 217, 0.28);
    --purple-dark:    #16052a;
    --purple-mid:     #2d1155;
    --purple-accent:  #6c2bd9;
    --purple-bright:  #8b5cf6;
    --purple-glow:    #a78bfa;
    --violet-pop:     #7c3aed;
    --white:          #ffffff;
    --off-white:      #f8f6ff;

    /* ── Gradients ── */
    --primary-gradient:   linear-gradient(135deg, #6c2bd9 0%, #a78bfa 50%, #6c2bd9 100%);
    --accent-gradient:    linear-gradient(135deg, #7c3aed 0%, #c4b5fd 100%);
    --hero-gradient:      linear-gradient(135deg, #1a0a2e 0%, #2d1155 60%, #1a0a2e 100%);
    --cta-gradient:       linear-gradient(135deg, #6c2bd9 0%, #8b5cf6 100%);

    /* ── Backgrounds ── */
    --dark-bg:      #1a0a2e;
    --darker-bg:    #16052a;
    --card-bg:      rgba(255, 255, 255, 0.04);
    --card-border:  rgba(139, 92, 246, 0.12);
    --card-hover-border: rgba(139, 92, 246, 0.4);

    /* ── Text ── */
    --text-primary:   #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted:     rgba(255, 255, 255, 0.42);

    /* ── Glow & Shadow ── */
    --glow-primary:  0 0 30px rgba(108, 43, 217, 0.18);
    --glow-hover:    0 0 60px rgba(108, 43, 217, 0.28);
    --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.35);

    /* ── Radii ── */
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-gradient); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar-premium {
    background: rgba(22, 5, 42, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    padding: 12px 0;
}

.navbar-premium .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-premium .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    margin: 0 2px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: rgba(139, 92, 246, 0.3);
    filter: invert(1);
}

/* ===== MEGA MENU ===== */
.dropdown-mega-menu {
    background: rgba(22, 5, 42, 0.98) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(139, 92, 246, 0.12) !important;
    border-top: 3px solid #6c2bd9 !important;
    border-radius: 0 0 20px 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
    padding-bottom: 80px;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 50%, rgba(108,43,217,0.14) 0%, transparent 50%),
        radial-gradient(circle at 75% 20%, rgba(167,139,250,0.08) 0%, transparent 45%),
        radial-gradient(circle at 60% 90%, rgba(124,58,237,0.07) 0%, transparent 40%);
    animation: heroGlow 9s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-4%, 5%) rotate(2deg); }
}

/* Subtle grid overlay */
.hero-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-premium h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.hero-premium h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-premium p.subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    position: relative;
    z-index: 1;
}

.hero-premium .badge-custom {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
    background: rgba(108, 43, 217, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn-premium {
    position: relative;
    background: var(--cta-gradient);
    background-size: 200% auto;
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(108, 43, 217, 0.45);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-outline-premium {
    background: transparent;
    color: var(--purple-glow);
    padding: 13px 34px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(139, 92, 246, 0.4);
    transition: all 0.4s ease;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-outline-premium:hover {
    background: rgba(108, 43, 217, 0.12);
    border-color: var(--purple-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 43, 217, 0.25);
}

/* ===== PRODUCT CARDS ===== */
.product-card-premium {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(139,92,246,0.02));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.product-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108,43,217,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card-premium:hover::before { opacity: 1; }
.product-card-premium:hover::after  { opacity: 1; }

.product-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--card-hover-border);
    box-shadow: var(--glow-hover);
}

.product-card-premium .platform-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 0 18px currentColor);
}

.product-card-premium .product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
}

.product-card-premium .product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 2.4em;
}

/* ===== PRICE BLOCK ===== */
.product-price-block {
    background: linear-gradient(135deg, rgba(108,43,217,0.12), rgba(139,92,246,0.06));
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 14px;
    padding: 14px 18px;
    margin: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-card-premium .product-price {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1.5px;
    margin: 0;
}

.product-card-premium .product-price span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    -webkit-text-fill-color: rgba(255,255,255,0.4);
    letter-spacing: 0;
    display: block;
    margin-top: 2px;
}

/* "PRICE / 1K" label */
.product-price-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2px;
    display: block;
}

/* Divider line */
.product-price-divider {
    height: 1px;
    background: rgba(139,92,246,0.15);
    margin: 14px 0;
}

/* ===== QUANTITY GRID ===== */
.qty-grid {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.qty-btn {
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.04);
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.qty-btn:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(108, 43, 217, 0.1);
    color: var(--text-primary);
}

.qty-btn.active {
    border-color: var(--purple-bright);
    background: rgba(108, 43, 217, 0.18);
    color: var(--purple-glow);
    box-shadow: 0 0 20px rgba(108, 43, 217, 0.12);
}

/* ===== BUY NOW BUTTON ===== */
.btn-buy-now {
    width: 100%;
    background: var(--cta-gradient);
    background-size: 200% auto;
    color: white;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-buy-now:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 43, 217, 0.4);
}

.btn-buy-now:active { transform: translateY(0); }

.btn-buy-now::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-buy-now:hover::after { opacity: 1; }

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.features-list li {
    padding: 3px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.features-list li i {
    width: 18px;
    margin-right: 8px;
    font-size: 0.7rem;
}

.features-list li i.fa-check  { color: #43e97b; }
.features-list li i.fa-clock  { color: var(--purple-glow); }
.features-list li i.fa-tag    { color: var(--purple-bright); }

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
    background: linear-gradient(145deg, rgba(26,10,46,0.98), rgba(22,5,42,0.98));
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.checkout-modal .modal-header {
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding: 25px 30px;
}

.checkout-modal .modal-body   { padding: 30px; }
.checkout-modal .modal-footer {
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 20px 30px;
}

.checkout-modal .product-summary {
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.checkout-modal .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    font-family: inherit;
}

.checkout-modal .form-control:focus {
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 3px rgba(108, 43, 217, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.checkout-modal .form-control::placeholder { color: var(--text-muted); }
.checkout-modal .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* ===== UPI PAYMENT BOX ===== */
.upi-box {
    background: linear-gradient(135deg, rgba(22,5,42,0.95), rgba(45,17,85,0.95));
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
}

.upi-box .qr-container {
    background: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 15px 0;
}

.upi-box .upi-id-display {
    background: rgba(139, 92, 246, 0.08);
    padding: 12px 20px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); }
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== CATEGORY SECTION ===== */
.category-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

/* ===== CATEGORY GRID ITEMS ===== */
.cat-grid-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(139,92,246,0.02));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
    height: 100%;
}

.cat-grid-item:hover {
    transform: translateY(-6px);
    border-color: var(--card-hover-border);
    box-shadow: var(--glow-hover);
}

.cat-grid-item .cat-icon { font-size: 3rem; margin-bottom: 15px; }
.cat-grid-item h5 { color: var(--text-primary); font-weight: 600; }
.cat-grid-item p  { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--primary-gradient);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.stat-label {
    font-size: 0.88rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* ===== FEATURE BOXES ===== */
.feature-box-premium {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(139,92,246,0.02));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-box-premium:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
    box-shadow: var(--glow-hover);
}

.feature-box-premium h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box-premium p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

.feature-box-premium .icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108,43,217,0.18), rgba(167,139,250,0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--purple-bright);
    border: 1px solid rgba(139, 92, 246, 0.22);
}

/* ===== FOOTER ===== */
.footer-premium {
    background: var(--darker-bg);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 55px 0 25px;
}

.footer-premium h5 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-premium ul { list-style: none; padding: 0; }
.footer-premium ul li { padding: 4px 0; }
.footer-premium ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
    text-decoration: none;
}
.footer-premium ul li a:hover { color: var(--purple-glow); }
.footer-premium .text-muted { color: var(--text-muted) !important; font-size: 0.88rem; }

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.08);
    margin-top: 35px;
    padding-top: 20px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--darker-bg);
    border-top: 1px solid rgba(139, 92, 246, 0.07);
    border-bottom: 1px solid rgba(139, 92, 246, 0.07);
    padding: 35px 0;
}

.trust-item { text-align: center; padding: 15px; }
.trust-item i { font-size: 2rem; color: var(--purple-bright); margin-bottom: 10px; }
.trust-item h6 { font-size: 0.9rem; margin-bottom: 3px; }
.trust-item p { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 0; }

/* ===== FORM CONTROL PREMIUM (alias for styled inputs on dark bg) ===== */
.form-control-premium {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(139,92,246,0.2) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control-premium:focus {
    border-color: var(--purple-accent) !important;
    box-shadow: 0 0 0 3px rgba(108,43,217,0.15) !important;
    background: rgba(255,255,255,0.08) !important;
    outline: none;
}
.form-control-premium::placeholder { color: rgba(255,255,255,0.28) !important; }

/* ===== CHECKOUT CARD (track order / checkout pages) ===== */
.checkout-card-premium {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(139,92,246,0.02));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}

/* ===== TRACK ORDER STEPS ===== */
.track-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.45;
}
.track-step.completed { opacity: 1; }
.track-step .step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(139,92,246,0.12);
    border: 2px solid rgba(139,92,246,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--purple-glow);
}
.track-step.completed .step-icon {
    background: rgba(67,233,123,0.12);
    border-color: #43e97b;
    color: #43e97b;
}

/* ===== CATEGORY HEADER ===== */
.cat-header {
    padding: 100px 0 50px;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.cat-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(108,43,217,0.08) 0%, transparent 60%);
}

/* ===== HERO CARD PANEL ===== */
.hero-card-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.hero-card-panel ul li {
    margin-bottom: 12px;
}

/* ===== CONTACT CARD ===== */
.contact-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(139,92,246,0.02));
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--card-border);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(108, 43, 217, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--purple-bright);
    font-size: 1.3rem;
    border: 1px solid rgba(139, 92, 246, 0.18);
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-premium h1         { font-size: 2.1rem; }
    .hero-premium p.subtitle { font-size: 1rem; }
    .product-card-premium .product-price { font-size: 2.2rem; }
    .stat-number     { font-size: 2rem; }
    .section-header h2 { font-size: 1.7rem; }
    .btn-premium, .btn-whatsapp { padding: 12px 24px; font-size: 0.82rem; }
}

/* ===== SPINNER OVERLAY ===== */
.spinner-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== NOTIFICATIONS ===== */
.store-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 320px;
    max-width: 450px;
    background: linear-gradient(145deg, rgba(26,10,46,0.98), rgba(22,5,42,0.98));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    animation: slideInRight 0.4s ease;
    font-size: 0.9rem;
}

@keyframes slideInRight {
    from { transform: translateX(110%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ===== MISC UTILITY ===== */
.text-purple { color: var(--purple-bright) !important; }
.bg-purple   { background: var(--purple-accent) !important; }
.border-purple { border-color: rgba(139,92,246,0.25) !important; }

/* Bootstrap overrides */
.badge.bg-secondary { background: rgba(139,92,246,0.2) !important; color: var(--purple-glow) !important; }
.badge.bg-danger    { background: var(--purple-accent) !important; }
.badge.bg-dark      { background: rgba(139,92,246,0.18) !important; color: rgba(255,255,255,0.8) !important; border: 1px solid rgba(139,92,246,0.25); }
.btn-primary        { background: var(--purple-accent) !important; border-color: var(--purple-accent) !important; }
.btn-outline-primary {
    color: var(--purple-bright) !important;
    border-color: var(--purple-bright) !important;
}
.btn-outline-primary:hover {
    background: var(--purple-accent) !important;
    color: white !important;
}
.text-primary { color: var(--purple-bright) !important; }
a { color: var(--purple-glow); }
a:hover { color: var(--purple-bright); }

/* ===== CONTRAST FIXES — Dark-on-dark prevention ===== */
/* Modal qty buttons: ensure text is always visible */
.modal-qty-btn { color: rgba(255,255,255,0.82) !important; }
.modal-qty-btn.active { background: rgba(108,43,217,0.25) !important; border-color: var(--purple-bright) !important; color: #fff !important; }

/* Input group addon */
.input-group-text { color: rgba(255,255,255,0.6) !important; background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.12) !important; }

/* Form control on dark bg */
.form-control, .form-control:focus { color: var(--text-primary) !important; background-color: rgba(255,255,255,0.06) !important; border-color: rgba(139,92,246,0.2) !important; }
.form-control::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-label { color: rgba(255,255,255,0.75) !important; }

/* Bootstrap .text-muted is #6c757d — invisible on our dark bg. Override. */
.text-muted { color: rgba(255,255,255,0.5) !important; }

/* Breadcrumb separator colour */
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3) !important; }

/* Accordion overrides for dark theme */
.accordion-button { color: var(--text-primary) !important; background: transparent !important; }
.accordion-button:not(.collapsed) { color: var(--purple-glow) !important; background: transparent !important; box-shadow: none !important; }
.accordion-button::after { filter: invert(1) !important; }
.accordion-button:focus { box-shadow: none !important; }

/* Sub-filter btn hover on dark bg */
.btn-sm:hover {
    background: rgba(139,92,246,0.22) !important;
    border-color: rgba(139,92,246,0.6) !important;
    color: #fff !important;
}

/* product-desc contrast bump */
.product-card-premium .product-desc { color: rgba(255,255,255,0.55) !important; }

/* mega-menu dropdown-item colour contrast */
.dropdown-mega-menu .dropdown-item { color: rgba(255,255,255,0.75) !important; }
.dropdown-mega-menu .dropdown-item:hover { color: #a78bfa !important; background: transparent !important; }
.dropdown-mega-menu .dropdown-header { color: inherit; }
