/*
Theme Name: UAE-Mobi
Author: Agent
Description: Ultra-Premium Purple-to-Teal Fintech Experience for UAE Digital Cards.
Version: 6.1
Text Domain: uae-mobi
*/

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
    --purple: #7C3AED;
    --purple-deep: #5B21B6;
    --purple-dark: #4c1d95;
    --teal: #0D9488;
    --cyan: #06B6D4;
    --cyan-light: #22D3EE;
    --red: #E20000;
    --green: #34D399;
    --navy: #1E1B4B;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --gradient-hero: linear-gradient(135deg, #1e0a3c 0%, #4c1d95 30%, #7C3AED 55%, #0891B2 100%);
    --gradient-cta: linear-gradient(135deg, #312E81 0%, #5B21B6 40%, #7C3AED 70%, #0891B2 100%);
    --gradient-btn: linear-gradient(135deg, #7C3AED 0%, #6D28D9 50%, #06B6D4 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.14);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ==========================================================================
   1. STICKY NAVIGATION — Glassmorphism
   ========================================================================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.site-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-nav__logo-icon {
    display: flex;
    align-items: center;
}

/* Nav Links */
.site-nav__menu ul {
    display: flex;
    gap: 36px;
}

.site-nav__menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    transition: color 0.2s;
    letter-spacing: -0.1px;
}

.site-nav__menu a:hover {
    color: var(--purple);
}

/* Action Icons */
.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.2s;
}

.site-nav__icon-btn:hover {
    background: rgba(124,58,237,0.08);
    color: var(--purple);
}

.site-nav__cart {
    position: relative;
}

.site-nav__cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


/* ==========================================================================
   2. HERO — Immersive Gradient
   ========================================================================== */
.hero {
    background: var(--gradient-hero);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Background Orbs */
.hero__bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero__bg-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatOrb 12s ease-in-out infinite;
}

.hero__bg-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.hero__bg-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: floatOrb 8s ease-in-out infinite 2s;
}

/* Wave at bottom */
.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Hero Grid */
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero__title--accent {
    background: linear-gradient(90deg, #22D3EE, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn--solid {
    background: var(--white);
    color: var(--purple);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn--glass {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Trust Row */
.hero__trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}

/* Hero Visual — Phone */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

/* Phone Rings */
.hero__phone-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.hero__phone-ring--1 { width: 320px; height: 320px; animation: pulseRing 4s ease-out infinite; }
.hero__phone-ring--2 { width: 400px; height: 400px; animation: pulseRing 4s ease-out infinite 1.3s; }
.hero__phone-ring--3 { width: 480px; height: 480px; animation: pulseRing 4s ease-out infinite 2.6s; }

@keyframes pulseRing {
    0% { opacity: 0.25; transform: scale(0.95); }
    50% { opacity: 0.06; transform: scale(1.06); }
    100% { opacity: 0.25; transform: scale(0.95); }
}

/* Phone Glow */
.hero__phone-glow {
    position: absolute;
    width: 300px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.35) 0%, rgba(6,182,212,0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* Phone Body */
.hero__phone {
    width: 270px;
    height: 540px;
    background: linear-gradient(165deg, #1c1c2e 0%, #111126 50%, #0c0c1d 100%);
    border-radius: 44px;
    border: 2px solid rgba(255,255,255,0.12);
    padding: 8px;
    position: relative;
    z-index: 3;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 8px 20px rgba(0,0,0,0.3),
        0 30px 60px rgba(0,0,0,0.4),
        0 60px 100px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

/* Dynamic Island */
.hero__phone-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.hero__phone-camera {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a3a5c 30%, #0a1a2c 70%);
    box-shadow: 0 0 3px rgba(6,182,212,0.3);
}

/* Phone Screen */
.hero__phone-screen {
    background: linear-gradient(175deg, #16162a 0%, #0f0f22 40%, #0a0a1a 100%);
    border-radius: 36px;
    padding: 48px 16px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Screen ambient glow inside */
.hero__phone-screen::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.15), transparent 70%);
    pointer-events: none;
}

/* Status Bar */
.hero__phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 4px;
}

.hero__phone-time {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.hero__phone-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
}

/* App Header */
.hero__phone-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 4px 12px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
}

/* Success Content */
.hero__phone-success {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 0 16px;
}

.hero__phone-check {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #34D399);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    position: relative;
    box-shadow: 0 4px 20px rgba(52,211,153,0.35);
}

.hero__phone-check-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(52,211,153,0.3);
    animation: checkPulse 2s ease-out infinite;
}

@keyframes checkPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hero__phone-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero__phone-amount {
    font-size: 36px;
    font-weight: 900;
    color: white;
    letter-spacing: -1.5px;
    line-height: 1;
}

.hero__phone-amount-dec {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}

/* Transaction Details */
.hero__phone-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin: 4px 0;
}

.hero__phone-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__phone-detail-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__phone-detail-icon--purple {
    background: rgba(124,58,237,0.2);
}

.hero__phone-detail-icon--cyan {
    background: rgba(6,182,212,0.2);
}

.hero__phone-detail-text {
    display: flex;
    flex-direction: column;
}

.hero__phone-detail-label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__phone-detail-value {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

/* Recharge Code */
.hero__phone-code {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.hero__phone-code-label {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__phone-code-value {
    font-size: 15px;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

.hero__phone-code-sep {
    color: rgba(255,255,255,0.2);
    margin: 0 1px;
}

.hero__phone-copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(6,182,212,0.2));
    border: 1px solid rgba(124,58,237,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* Home Indicator */
.hero__phone-bar {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Premium Floating Cards */
.hero__float-card {
    position: absolute;
    z-index: 4;
    border-radius: 14px;
    padding: 10px 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero__float-card--1 {
    top: 15%;
    right: -24px;
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.25);
    animation: floatSlow 5s ease-in-out infinite;
}

.hero__float-card--2 {
    bottom: 30%;
    left: -30px;
    background: rgba(6,182,212,0.12);
    border-color: rgba(6,182,212,0.2);
    animation: floatSlow 6s ease-in-out infinite 1s;
}

.hero__float-card--3 {
    top: 60%;
    right: -18px;
    background: rgba(124,58,237,0.15);
    border-color: rgba(124,58,237,0.25);
    animation: floatSlow 7s ease-in-out infinite 2s;
}

.hero__float-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__float-card-icon--green  { background: linear-gradient(135deg, #059669, #34D399); }
.hero__float-card-icon--blue   { background: linear-gradient(135deg, #0891B2, #22D3EE); }
.hero__float-card-icon--purple { background: linear-gradient(135deg, #7C3AED, #A855F7); }

.hero__float-card-text {
    display: flex;
    flex-direction: column;
}

.hero__float-card-title {
    font-size: 12px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero__float-card-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}


/* ==========================================================================
   3. OPERATORS SECTION — White BG, Premium Cards
   ========================================================================== */
.operators {
    background: var(--white);
    padding: 100px 0;
}

/* Section Header Shared */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header__title {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-header__line {
    width: 64px;
    height: 4px;
    background: var(--gradient-btn);
    border-radius: 2px;
    margin: 0 auto;
}

.operators__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 840px;
    margin: 0 auto;
}

/* Operator Card */
.op-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
}

.op-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.op-card__inner {
    padding: 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.op-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: auto;
}

.op-card__byline {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.op-card__byline strong {
    font-size: 18px;
    font-weight: 900;
    color: #FFD700;
    font-style: italic;
}

.op-card__red-stripe {
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin: 20px 0;
}

.op-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.op-card__dot {
    opacity: 0.4;
}

/* Operator Card Buttons */
.op-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.op-card__btn svg {
    transition: transform 0.3s ease;
}

.op-card:hover .op-card__btn svg {
    transform: translateX(4px);
}

.op-card__btn--teal {
    background: var(--cyan);
    color: white;
}

.op-card__btn--teal:hover {
    background: var(--cyan-light);
}

.op-card__btn--white {
    background: var(--white);
    color: var(--purple);
}

/* Etisalat Theme */
.op-card--etisalat {
    background: linear-gradient(160deg, #1a1a1a 0%, #111 60%, #0a0a0a 100%);
}

.op-card--etisalat:hover {
    border-color: rgba(226,0,0,0.3);
}

/* Du Theme */
.op-card--du {
    background: linear-gradient(135deg, #4c1d95 0%, #5B21B6 40%, #0891B2 100%);
}

.op-card--du:hover {
    border-color: rgba(124,58,237,0.4);
}


/* ==========================================================================
   4. POPULAR CARDS — Product Grid
   ========================================================================== */
.popular-cards {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

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

.product-card__brand {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__brand--etisalat {
    background: linear-gradient(135deg, #1a1a1a, #2a0000);
}

.product-card__brand--du {
    background: linear-gradient(135deg, #4c1d95, #0891B2);
}

.product-card__badge {
    font-size: 12px;
    font-weight: 800;
    color: #FFD700;
    font-style: italic;
    background: rgba(255,215,0,0.1);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,215,0,0.2);
}

.product-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card__denomination {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
}

.product-card__delivery {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: var(--gradient-btn);
    color: white;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124,58,237,0.2);
}

.product-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124,58,237,0.35);
}


/* ==========================================================================
   5. HOW IT WORKS
   ========================================================================== */
.how-it-works {
    background: var(--white);
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Dotted connector line */
.steps__connector {
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 2px;
    background-image: linear-gradient(to right, var(--border) 50%, transparent 50%);
    background-size: 12px 2px;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.step__icon--purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.step__icon--teal   { background: linear-gradient(135deg, #0D9488, #06B6D4); }
.step__icon--cyan   { background: linear-gradient(135deg, #06B6D4, #22D3EE); }

.step__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.step__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}


/* ==========================================================================
   6. STATS BANNER — Gradient
   ========================================================================== */
.stats-banner {
    background: var(--gradient-cta);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.stats-banner__bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.stats-banner__bg-orb--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -100px;
    left: -50px;
}

.stats-banner__bg-orb--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    bottom: -80px;
    right: -30px;
}

.stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ==========================================================================
   7. CTA SECTION
   ========================================================================== */
.cta-section {
    background: var(--gradient-cta);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-section__glow--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.cta-section__glow--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
}

.cta-section__inner {
    position: relative;
    z-index: 2;
}

.cta-section__title {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.cta-section__text {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.cta-section .btn--solid {
    background: var(--white);
    color: var(--purple);
}


/* ==========================================================================
   8. FOOTER — Dark Navy-Purple
   ========================================================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.site-footer__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 280px;
}

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.site-footer__social a:hover {
    background: rgba(124,58,237,0.2);
    color: var(--white);
}

.site-footer__col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.site-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.site-footer__col a:hover {
    color: var(--white);
}

.site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__payments svg {
    width: 48px;
    height: 32px;
    border-radius: 4px;
}

/* Footer bottom */
.site-footer__bottom {
    padding: 24px 0;
}

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

.site-footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.site-footer__legal {
    display: flex;
    gap: 24px;
}

.site-footer__legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.site-footer__legal a:hover {
    color: rgba(255,255,255,0.6);
}


/* ==========================================================================
   9. COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30,27,75,0.95);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner a {
    color: var(--cyan-light);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner button {
    padding: 8px 24px;
    border-radius: var(--radius-full);
    background: var(--gradient-btn);
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}


/* ==========================================================================
   TRUST MARQUEE — Infinite Scroll
   ========================================================================== */
.trust-marquee {
    background: linear-gradient(135deg, #1e0a3c 0%, #4c1d95 50%, #0891B2 100%);
    overflow: hidden;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.site-nav__logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.trust-marquee__content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.trust-marquee__item {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: 0.3px;
}

.trust-marquee__dot {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
    padding: 0 4px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION HEADER — Enhanced with Badge + Subtitle
   ========================================================================== */
.section-header__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.1));
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(124,58,237,0.15);
    letter-spacing: 0.3px;
}

.section-header__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.6;
}


/* ==========================================================================
   OPERATOR CARD — Enhanced Features
   ========================================================================== */
.op-card__logo-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.op-card__by-text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-right: 4px;
}

.op-card__byline {
    display: flex;
    align-items: center;
    gap: 2px;
}

.op-card__du-tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.op-card__features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.op-card__feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}


/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us {
    background: var(--bg-light);
    padding: 100px 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-btn);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-us__card:hover::before {
    opacity: 1;
}

.why-us__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.why-us__icon--purple  { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.why-us__icon--teal    { background: linear-gradient(135deg, #0D9488, #06B6D4); }
.why-us__icon--indigo  { background: linear-gradient(135deg, #4F46E5, #6366F1); }
.why-us__icon--emerald { background: linear-gradient(135deg, #059669, #34D399); }

.why-us__card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.why-us__card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ==========================================================================
   PAYMENT PARTNERS
   ========================================================================== */
.partners {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners__label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.partners__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partners__logo-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.partners__logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.partners__logo-item--badge {
    font-size: 12px;
    font-weight: 700;
    color: #34D399;
    opacity: 0.8;
    padding: 6px 14px;
    border: 1px solid rgba(52,211,153,0.3);
    border-radius: var(--radius-full);
    background: rgba(52,211,153,0.06);
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    background: var(--white);
    padding: 100px 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card--featured {
    background: var(--gradient-hero);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(124,58,237,0.2);
}

.testimonial-card--featured .testimonial-card__stars {
    color: #FFD700;
}

.testimonial-card--featured .testimonial-card__text {
    color: rgba(255,255,255,0.85);
}

.testimonial-card--featured .testimonial-card__name {
    color: var(--white);
}

.testimonial-card--featured .testimonial-card__location {
    color: rgba(255,255,255,0.5);
}

.testimonial-card__stars {
    font-size: 16px;
    color: #F59E0B;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.testimonial-card__avatar--1 { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, #06B6D4, #0D9488); }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, #F59E0B, #D97706); }

.testimonial-card__name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-card__location {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}


/* ==========================================================================
   FAQ — Accordion
   ========================================================================== */
.faq {
    background: var(--bg-light);
    padding: 100px 0;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: rgba(124,58,237,0.2);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq__question:hover {
    color: var(--purple);
}

.faq__chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq__item--open .faq__chevron {
    transform: rotate(180deg);
    color: var(--purple);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq__item--open .faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq__answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ==========================================================================
   RESPONSIVE — Additional rules for new sections
   ========================================================================== */
@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust-row {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 180px 0 80px;
    }

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

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

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps__connector {
        display: none;
    }

    .stats-banner__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .stat__number {
        font-size: 36px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .section-header__title {
        font-size: 32px;
    }

    .site-nav__menu {
        display: none;
    }

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

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

    .testimonial-card--featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .stats-banner__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-section__title {
        font-size: 28px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .partners__logos {
        gap: 16px;
    }

    .trust-marquee__item {
        font-size: 11px;
        padding: 0 14px;
    }
}


/* ==========================================================================
   WP DEFAULTS & UTILITIES
   ========================================================================== */
.wp-block-image { margin: 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

/* ==========================================================================
   PAGE HERO (Shop / Category pages)
   ========================================================================== */
.page-hero {
    background: var(--gradient-hero);
    padding: 80px 0 50px;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.page-hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto;
}

/* Shop Category Buttons */
.shop-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.shop-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.shop-cat-btn:hover,
.shop-cat-btn.active {
    background: var(--white);
    color: var(--purple-deep);
    border-color: var(--white);
}
.shop-cat-btn .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}
.shop-cat-btn:hover .count,
.shop-cat-btn.active .count {
    background: var(--purple);
    color: var(--white);
}

/* WooCommerce Content Section */
.woo-content {
    padding: 40px 0 60px;
}

/* Hide WooCommerce default archive titles (we have our own hero) */
.woocommerce .woocommerce-products-header__title,
.woocommerce-products-header {
    display: none !important;
}

/* ==========================================================================
   WOOCOMMERCE — PRODUCT GRID (Archive / Shop / Category)
   ========================================================================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--purple);
}

/* Product Image */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 24px;
    display: block;
    transition: transform 0.3s ease;
}
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 16px 20px 8px;
    margin: 0;
    line-height: 1.3;
}

/* Product Price */
.woocommerce ul.products li.product .price {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--purple);
    padding: 0 20px 12px;
    display: block;
}
.woocommerce ul.products li.product .price .woocommerce-Price-currencySymbol {
    font-weight: 600;
    margin-right: 2px;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
    display: block;
    text-align: center;
    margin: auto 20px 20px;
    padding: 13px 24px;
    background: var(--gradient-btn);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.woocommerce ul.products li.product .button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

/* "View Cart" button after adding */
.woocommerce ul.products li.product .added_to_cart {
    display: block;
    text-align: center;
    margin: 0 20px 12px;
    padding: 10px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Loading spinner on add to cart */
.woocommerce ul.products li.product a.loading::after {
    border-color: var(--white) transparent transparent;
}

/* ==========================================================================
   WOOCOMMERCE — PREMIUM SINGLE PRODUCT
   ========================================================================== */

/* Main Layout */
.premium-product .pp-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 20px 0 40px;
}

/* Gallery Card */
.pp-gallery__card {
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a3e 50%, #0d1b2a 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.pp-gallery__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.pp-gallery__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    color: #c4b5fd;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.pp-gallery__img {
    max-width: 85%;
    height: auto;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}
.pp-gallery__card:hover .pp-gallery__img {
    transform: scale(1.03);
}

/* Trust row under image */
.pp-gallery__trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Product Info */
.pp-info {
    padding: 10px 0;
}
.pp-info__category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    transition: all 0.2s;
}
.pp-info__category:hover {
    background: var(--purple);
    color: var(--white);
}
.pp-info__title {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    line-height: 1.15;
}
.pp-info__price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.pp-info__price {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--purple);
}
.pp-info__price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
.pp-info__stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}
.pp-info__stock.in-stock {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}
.pp-info__desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.pp-info__desc p {
    margin: 0;
}

/* Delivery Info Cards */
.pp-delivery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.pp-delivery__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}
.pp-delivery__item:hover {
    border-color: var(--purple);
}
.pp-delivery__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.pp-delivery__item div strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}
.pp-delivery__item div span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Cart Form */
.pp-cart {
    margin-bottom: 20px;
}
.pp-cart .cart {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pp-cart .quantity input {
    width: 64px;
    height: 54px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}
.pp-cart .quantity input:focus {
    border-color: var(--purple);
}
.pp-cart .single_add_to_cart_button {
    flex: 1;
    padding: 16px 32px;
    background: var(--gradient-btn);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pp-cart .single_add_to_cart_button:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}

/* SKU */
.pp-info__sku {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Payment Methods */
.pp-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.pp-payments__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}
.pp-payments__icons {
    display: flex;
    gap: 8px;
}
.pp-payments__icons svg {
    width: 40px;
    height: 26px;
    border-radius: 4px;
}

/* ═══ Guarantee Badges ═══ */
.pp-guarantees {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pp-guarantee {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.pp-guarantee:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.pp-guarantee__icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.pp-guarantee strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.pp-guarantee span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ═══ Details (Description + How To) ═══ */
.pp-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 0;
}
.pp-details__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.pp-details__heading svg {
    color: var(--purple);
    flex-shrink: 0;
}
.pp-details__content {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
}
.pp-details__content p {
    margin-bottom: 12px;
}
.pp-details__content ul,
.pp-details__content ol {
    padding-left: 18px;
    margin-bottom: 12px;
}
.pp-details__content li {
    margin-bottom: 6px;
}

/* How to Recharge Steps */
.pp-howto-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pp-howto-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-body);
    transition: border-color 0.2s;
}
.pp-howto-step:hover {
    border-color: var(--purple);
}
.pp-howto-step__num {
    width: 30px;
    height: 30px;
    background: var(--gradient-btn);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}
.pp-howto-tip {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: var(--text-body);
}

/* ═══ Related Products ═══ */
.pp-related {
    padding: 48px 0 20px;
    border-top: 1px solid var(--border);
}
.pp-related__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    text-align: center;
}
.pp-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.pp-related__card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}
.pp-related__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple);
}
.pp-related__img-wrap {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}
.pp-related__img-wrap img {
    max-width: 90%;
    height: auto;
    border-radius: 6px;
}
.pp-related__info {
    padding: 16px;
}
.pp-related__info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.pp-related__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple);
}

/* Hide default WooCommerce single product elements we've replaced */
.premium-product .woocommerce-tabs,
.premium-product > .related.products {
    display: none !important;
}

/* ═══ RESPONSIVE — Single Product ═══ */
@media (max-width: 1024px) {
    .premium-product .pp-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pp-guarantees {
        grid-template-columns: repeat(2, 1fr);
    }
    .pp-details {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 640px) {
    .pp-info__title {
        font-size: 1.6rem;
    }
    .pp-info__price {
        font-size: 1.8rem;
    }
    .pp-delivery {
        grid-template-columns: 1fr;
    }
    .pp-guarantees {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .pp-cart .cart {
        flex-direction: column;
    }
    .pp-cart .single_add_to_cart_button {
        width: 100%;
    }
    .pp-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   WOOCOMMERCE — CART PAGE
   ========================================================================== */
.woocommerce table.shop_table {
    border-collapse: collapse;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.woocommerce table.shop_table th {
    background: var(--bg-light);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}
.woocommerce table.shop_table td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
    font-family: var(--font);
    color: var(--text-dark);
}
.woocommerce table.shop_table td.product-name a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
}
.woocommerce table.shop_table td.product-thumbnail img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: #1a1a2e;
    padding: 6px;
}
.woocommerce table.shop_table .product-remove a {
    color: var(--text-muted);
    font-size: 1.3rem;
    text-decoration: none;
}

/* Cart Totals */
.woocommerce .cart_totals h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    display: block;
    text-align: center;
    padding: 16px;
    background: var(--gradient-btn);
    color: var(--white) !important;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

/* ==========================================================================
   WOOCOMMERCE — NOTICES
   ========================================================================== */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-left: 4px solid var(--purple);
    color: var(--text-dark);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-family: var(--font);
    margin-bottom: 20px;
}
.woocommerce .woocommerce-message a,
.woocommerce .woocommerce-info a {
    color: var(--purple);
    font-weight: 600;
}
.woocommerce .woocommerce-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 4px solid #DC2626;
    color: var(--text-dark);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-family: var(--font);
    margin-bottom: 20px;
    list-style: none;
}

/* ==========================================================================
   WOOCOMMERCE — RESULT COUNT & ORDERING
   ========================================================================== */
.woocommerce .woocommerce-result-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.woocommerce .woocommerce-ordering select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
}

/* ==========================================================================
   WOOCOMMERCE — RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-hero {
        padding: 60px 0 35px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .woocommerce div.product .product_title {
        font-size: 1.5rem;
    }
    .woocommerce div.product p.price {
        font-size: 1.5rem;
    }
    .woocommerce div.product form.cart {
        flex-direction: column;
    }
    .woocommerce div.product form.cart button.single_add_to_cart_button {
        width: 100%;
    }
}


/* ==========================================================================
   SHOP HERO — Animated gradient with orbs
   ========================================================================== */
.shop-hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.shop-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shop-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.shop-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: #06B6D4;
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}
.shop-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: #7C3AED;
    bottom: -80px;
    left: -60px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}
.shop-hero__content {
    position: relative;
    z-index: 2;
}
.shop-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    color: var(--cyan-light);
}
.shop-hero__title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.shop-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* Category Pills */
.shop-hero__cats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.9);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.cat-pill:hover,
.cat-pill.active {
    background: var(--white);
    color: var(--purple-deep);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.cat-pill__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}
.cat-pill:hover .cat-pill__count,
.cat-pill.active .cat-pill__count {
    background: var(--purple);
    color: var(--white);
}
.cat-pill svg {
    flex-shrink: 0;
}

/* Trust badges */
.shop-hero__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Product breadcrumb bar */
.product-breadcrumb-bar {
    background: var(--bg-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.product-breadcrumb-bar a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}
.product-breadcrumb-bar a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   HOW IT WORKS — 3-step cards
   ========================================================================== */
.shop-steps {
    padding: 80px 0;
    background: var(--bg-light);
}
.shop-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.shop-steps__subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 48px;
}
.shop-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple);
}
.step-card__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gradient-btn);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   RECHARGE GUIDE
   ========================================================================== */
.recharge-guide {
    padding: 80px 0;
    background: var(--white);
}
.recharge-guide__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.recharge-guide__info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.recharge-guide__desc {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
}
.recharge-method {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}
.recharge-method__header {
    margin-bottom: 12px;
}
.recharge-method__operator {
    font-weight: 700;
    font-size: 1rem;
    color: var(--purple);
}
.recharge-method__steps {
    padding-left: 20px;
    margin: 0;
}
.recharge-method__steps li {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Feature Badges */
.recharge-guide__features {
    display: grid;
    gap: 16px;
}
.feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.feature-badge:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-sm);
}
.feature-badge__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 10px;
}
.feature-badge div strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.feature-badge div span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   COOKIE BANNER — Fixed
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
}
.cookie-banner p a {
    color: var(--cyan-light);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-banner button {
    padding: 10px 28px;
    background: var(--gradient-btn);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    pointer-events: all;
    position: relative;
    z-index: 100000;
}
.cookie-banner button:hover {
    opacity: 0.9;
    transform: scale(1.03);
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.cookie-btn--decline {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: rgba(255,255,255,0.7) !important;
}
.cookie-btn--decline:hover {
    border-color: rgba(255,255,255,0.5) !important;
    color: #fff !important;
}

/* ==========================================================================
   RESPONSIVE — New Sections
   ========================================================================== */
@media (max-width: 1024px) {
    .shop-steps__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .recharge-guide__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 80px 0 50px;
    }
    .shop-hero__title {
        font-size: 2.2rem;
    }
    .shop-hero__trust {
        gap: 12px;
        font-size: 0.75rem;
    }
    .shop-steps__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .step-card {
        padding: 28px 20px;
    }
}

@media (max-width: 640px) {
    .shop-hero__title {
        font-size: 1.8rem;
    }
    .cat-pill {
        padding: 9px 16px;
        font-size: 0.82rem;
    }
    .shop-hero__trust {
        flex-direction: column;
        gap: 6px;
    }
    .cookie-banner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — WooCommerce Product Grid
   ========================================================================== */
@media (max-width: 768px) {
    .woo-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px;
    }
    .woo-product-card {
        border-radius: 12px;
    }
    .woo-product-card__image {
        height: 140px;
    }
    .woo-product-card__title {
        font-size: 0.82rem;
        line-height: 1.3;
    }
    .woo-product-card__price {
        font-size: 1rem;
    }
    .woo-product-card__btn {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .woo-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px;
    }
    .woo-product-card__image {
        height: 120px;
    }
    .woo-product-card__title {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Shop Page Sections
   ========================================================================== */
@media (max-width: 768px) {
    .shop-hero {
        padding: 60px 0 40px;
    }
    .shop-hero__badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }
    .shop-hero__subtitle {
        font-size: 0.9rem;
        padding: 0 16px;
    }
    .cat-pills {
        gap: 8px;
        padding: 0 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .shop-section {
        padding: 50px 16px;
    }
    .shop-section__title {
        font-size: 1.6rem;
    }
    .shop-section__subtitle {
        font-size: 0.9rem;
    }
    .recharge-guide__content h3 {
        font-size: 1.1rem;
    }
    .recharge-guide__content ol {
        font-size: 0.9rem;
    }
    .feature-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .feature-badge {
        padding: 16px 12px;
    }
    .feature-badge__title {
        font-size: 0.85rem;
    }
    .feature-badge__desc {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Single Product Page
   ========================================================================== */
@media (max-width: 900px) {
    .sp-main {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 20px 16px;
    }
    .sp-gallery-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sp-main {
        padding: 16px 12px;
        gap: 20px;
    }
    .sp-gallery-card {
        border-radius: 16px;
        padding: 16px;
    }
    .sp-gallery-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .sp-gallery-card img {
        border-radius: 10px;
    }
    .sp-trust-row {
        gap: 12px;
        font-size: 0.72rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .sp-category-badge {
        font-size: 0.7rem;
    }
    .sp-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
    .sp-price-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .sp-price {
        font-size: 1.8rem !important;
    }
    .sp-stock {
        font-size: 0.78rem;
    }
    .sp-short-desc {
        font-size: 0.9rem;
    }
    .sp-delivery-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .sp-delivery-card {
        padding: 12px 10px;
        border-radius: 10px;
    }
    .sp-delivery-icon {
        font-size: 1.2rem;
    }
    .sp-delivery-card strong {
        font-size: 0.82rem;
    }
    .sp-delivery-card span {
        font-size: 0.7rem;
    }
    .sp-cart-row {
        flex-direction: column;
        gap: 10px;
    }
    .sp-cart-row .quantity input {
        width: 60px;
    }
    .sp-cart-row .single_add_to_cart_button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
    .sp-sku {
        font-size: 0.78rem;
    }
    .sp-payment-icons {
        gap: 8px;
        flex-wrap: wrap;
    }
}

/* Guarantee Strip Mobile */
@media (max-width: 768px) {
    .sp-guarantee-strip {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 24px 12px;
    }
    .sp-guarantee-item {
        padding: 16px 8px;
    }
    .sp-guarantee-icon {
        font-size: 1.3rem;
    }
    .sp-guarantee-item strong {
        font-size: 0.8rem;
    }
    .sp-guarantee-item span {
        font-size: 0.68rem;
    }
}

/* Details & How to Recharge Mobile */
@media (max-width: 768px) {
    .sp-details-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
        padding: 32px 12px;
    }
    .sp-details-section h3 {
        font-size: 1.15rem;
    }
    .sp-details-text {
        font-size: 0.88rem;
    }
    .sp-recharge-step {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .sp-recharge-num {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
    .sp-recharge-tip {
        font-size: 0.82rem;
        padding: 10px 12px;
    }
}

/* Related Products Mobile */
@media (max-width: 768px) {
    .sp-related {
        padding: 32px 12px;
    }
    .sp-related h2 {
        font-size: 1.4rem;
    }
    .sp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .sp-related-card__image {
        height: 130px;
    }
    .sp-related-card__title {
        font-size: 0.82rem;
    }
    .sp-related-card__price {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Footer
   ========================================================================== */
@media (max-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px;
    }
    .site-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer__grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — CTA Section
   ========================================================================== */
@media (max-width: 768px) {
    .cta {
        padding: 50px 16px;
    }
    .cta__title {
        font-size: 1.6rem;
    }
    .cta__subtitle {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Extra Small (< 375px)
   ========================================================================== */
@media (max-width: 374px) {
    .sp-title {
        font-size: 1.3rem !important;
    }
    .sp-price {
        font-size: 1.5rem !important;
    }
    .sp-delivery-row {
        grid-template-columns: 1fr;
    }
    .sp-guarantee-strip {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
    }
    .woo-products-grid {
        grid-template-columns: 1fr !important;
    }
    .shop-hero__title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Standard WooCommerce Grid (.products)
   ========================================================================== */
@media (max-width: 768px) {
    .woocommerce ul.products,
    ul.products.columns-3,
    ul.products.columns-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px;
    }
    ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
    ul.products li.product img {
        border-radius: 10px;
    }
    ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.85rem !important;
    }
    ul.products li.product .price {
        font-size: 0.95rem !important;
    }
    ul.products li.product .button {
        font-size: 0.8rem !important;
        padding: 8px 14px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products,
    ul.products.columns-3,
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Single Product Stack Layout
   ========================================================================== */
@media (max-width: 768px) {
    .woocommerce div.product,
    .woocommerce #content div.product {
        padding: 0 12px;
    }
    .woocommerce div.product div.images,
    .woocommerce #content div.product div.images {
        float: none !important;
        width: 100% !important;
        margin-bottom: 20px;
    }
    .woocommerce div.product div.summary,
    .woocommerce #content div.product div.summary {
        float: none !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — Navigation
   ========================================================================== */
@media (max-width: 768px) {
    .site-header .container {
        padding: 0 12px;
    }
    .site-nav {
        gap: 12px;
    }
    .site-nav a {
        font-size: 0.82rem;
    }
    .header-actions {
        gap: 8px;
    }
}

/* ==========================================================================
   PREMIUM CHECKOUT — WooCommerce Block Checkout
   ========================================================================== */

/* Page Title / Hero — subtle checkout header */
.page-id-9 .page-hero,
.woocommerce-checkout .page-hero {
    background: linear-gradient(135deg, #1a0533 0%, #2d1b69 40%, #0891b2 100%);
    padding: 32px 0;
    text-align: center;
}

/* ── Main checkout container — full width ── */
.wc-block-checkout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ── Layout: flexbox with proper proportions ── */
.wc-block-components-sidebar-layout {
    gap: 32px !important;
}

.wc-block-components-sidebar-layout.is-large,
.wc-block-components-sidebar-layout.is-medium {
    display: flex !important;
    flex-direction: row !important;
    gap: 40px !important;
    align-items: flex-start;
}

/* Override page-content container limit on checkout */
.woocommerce-checkout .page-content > .container,
.page-id-9 .page-content > .container {
    max-width: 1140px;
}

/* Main form area — takes most of the space */
.wc-block-components-main.wc-block-checkout__main {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30, 27, 75, 0.06);
    padding: 32px;
    border: 1px solid rgba(124, 58, 237, 0.06);
}

/* Sidebar — fixed width for stability */
.wc-block-components-sidebar.wc-block-checkout__sidebar {
    flex: 0 0 360px !important;
    width: 360px !important;
    min-width: 0 !important;
    max-width: 360px !important;
    background: linear-gradient(145deg, #f8f7ff 0%, #f0eeff 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
    position: sticky;
    top: 80px;
}

/* Force sidebar children to fill width */
.wc-block-components-sidebar.wc-block-checkout__sidebar > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* ── Typography & Form Inputs ── */
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea,
.wc-block-checkout .wc-block-components-select select,
.wc-block-checkout select {
    border-radius: 10px !important;
    border: 1.5px solid #e2dff0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-text-input textarea:focus,
.wc-block-checkout select:focus {
    border-color: #7C3AED !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12) !important;
    outline: none !important;
}

/* Section headings */
.wc-block-components-checkout-step__heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    color: #1e1b4b !important;
}

/* ── Order Summary sidebar ── */
.wc-block-components-checkout-order-summary__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: #1e1b4b !important;
}

/* Price in sidebar */
.wc-block-components-sidebar .wc-block-formatted-money-amount {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    color: #7C3AED !important;
}

/* Product item in sidebar */
.wc-block-components-order-summary-item {
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08) !important;
}

.wc-block-components-order-summary-item__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
    color: #1e1b4b !important;
    font-size: 0.92rem;
}

/* Totals */
.wc-block-components-sidebar .wc-block-components-totals-wrapper {
    border-top: none !important;
}

.wc-block-components-sidebar .wc-block-components-totals-item {
    font-family: 'Inter', sans-serif;
}

.wc-block-components-sidebar .wc-block-components-totals-item__label {
    font-weight: 600;
    color: #4a4a6a;
}

.wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    color: #1e1b4b !important;
}

.wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
}

/* ── Place Order Button ── */
.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #7C3AED 0%, #06b6d4 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 16px 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3) !important;
    width: 100%;
    text-transform: none;
}

.wc-block-components-checkout-place-order-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4) !important;
}

/* ── Terms & Privacy ── */
.wc-block-checkout__terms {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem !important;
    color: #8b8ba3 !important;
}

.wc-block-checkout__terms a {
    color: #7C3AED !important;
}

/* Error notice */
.wc-block-components-notice-banner.is-error {
    border-radius: 10px !important;
    border-color: #ef4444 !important;
}

/* ==========================================
   MOBILE RESPONSIVE — Checkout
   ========================================== */
@media (max-width: 900px) {
    .wc-block-components-sidebar-layout.is-large {
        flex-direction: column !important;
    }
    .wc-block-components-sidebar.wc-block-checkout__sidebar {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        position: static;
    }
    .wc-block-checkout {
        padding: 20px 12px;
    }
    .wc-block-components-main.wc-block-checkout__main {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .wc-block-components-sidebar.wc-block-checkout__sidebar {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .wc-block-components-checkout-place-order-button {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    .wc-block-components-sidebar-layout {
        gap: 20px !important;
    }
}

/* ── Checkout Trust Badges ── */
.checkout-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #4a4a6a;
    font-weight: 500;
}

.checkout-trust-icon {
    font-size: 1.1rem;
}

/* ── Payment Icons ── */
.checkout-pay-icons {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    text-align: center;
}

.checkout-pay-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: #8b8ba3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.checkout-pay-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.checkout-pay-row .pay-icon {
    width: 48px;
    height: 32px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ── Footer Contact Info ── */
.site-footer__address {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 6px 0 4px;
    line-height: 1.4;
}

.site-footer__contact-info {
    font-size: 0.82rem;
    margin: 4px 0 12px;
}

.site-footer__contact-info a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-info a:hover {
    color: #06B6D4;
}

/* ═══════════════════════════════════════════
   PREMIUM LEGAL & CONTENT PAGES (.page-hero, .page-content)
   ═══════════════════════════════════════════ */
.page-hero {
    background: var(--bg-light);
    padding: 140px 0 60px; /* Increased top padding to clear fixed header */
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.page-content {
    padding: 80px 0 100px;
    background: var(--white);
}

.page-content > .container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.page-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.3rem;
    color: var(--text-body);
    margin: 30px 0 15px;
    font-weight: 600;
}

.page-content p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.page-content strong {
    color: var(--text-dark);
}

.page-content ul, 
.page-content ol {
    margin: 0 0 24px 20px;
    padding: 0;
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content li::marker {
    color: var(--purple);
}

.page-content a {
    color: var(--purple);
    text-decoration: none;
    border-bottom: 1px dashed rgba(124, 58, 237, 0.4);
    transition: all 0.2s ease;
}

.page-content a:hover {
    color: var(--purple-deep);
    border-bottom-color: var(--purple-deep);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .page-content {
        padding: 40px 0 60px;
    }
    .page-content > .container {
        padding: 30px;
        border-radius: 12px;
    }
    .page-content h2 {
        font-size: 1.5rem;
    }
    .page-content p, .page-content ul, .page-content ol {
        font-size: 1rem;
    }
}

