/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    /* Fortnite Color Palette - VBucks Benin */
    --deep-purple: #7B68EE;
    --electric-blue: #00D4FF;
    --neon-pink: #FF1DCB;
    --gold: #FFD700;
    --dark-bg: #0A0014;
    --card-bg: rgba(20, 0, 40, 0.8);
    --white: #FFFFFF;
    --black: #000000;
    --whatsapp-green: #25D366;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-purple), var(--electric-blue));
    --gradient-secondary: linear-gradient(135deg, var(--neon-pink), var(--electric-blue));
    --gradient-hero: linear-gradient(180deg, var(--deep-purple) 0%, var(--dark-bg) 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25D366, #128C7E);
    
    /* Shadows & Glows */
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 29, 203, 0.5);
    --glow-purple: 0 0 20px rgba(123, 104, 238, 0.5);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Fonts */
    --font-primary: 'Poppins', 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #particleCanvas {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    #particleCanvas {
        display: none !important;
    }

    .gradient-orb,
    .energy-ring,
    .floating-character,
    .cta-button::before,
    .vbucks-spinner,
    .spinner-coin,
    .hero-title,
    .hero-visual {
        animation: none !important;
    }
}

body.prefers-reduced-motion #particleCanvas {
    display: none !important;
}

body.prefers-reduced-motion .gradient-orb,
body.prefers-reduced-motion .energy-ring,
body.prefers-reduced-motion .floating-character,
body.prefers-reduced-motion .cta-button::before,
body.prefers-reduced-motion .vbucks-spinner,
body.prefers-reduced-motion .spinner-coin,
body.prefers-reduced-motion .hero-title,
body.prefers-reduced-motion .hero-visual {
    animation: none !important;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   ANIMATED BACKGROUND
   =========================== */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0A0014 0%, #1A0033 50%, #0A0014 100%);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2; /* Réduit de 0.4 à 0.2 */
    animation: float 25s infinite ease-in-out; /* Plus lent */
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--electric-blue), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-pink), transparent);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--deep-purple), transparent);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    order: -1;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--electric-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-brand a {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 12px;
    color: var(--electric-blue);
    letter-spacing: 4px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a.active {
    color: var(--electric-blue);
}

.nav-links a.active::after {
    width: 40px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

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

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.title-line {
    color: var(--white);
}

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

.lightning {
    display: inline-block;
    font-size: 60px;
    animation: none; /* Désactiver l'animation pulse trop agressive */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px var(--electric-blue));
    }
    50% {
        transform: scale(1.05); /* Réduit de 1.2 à 1.05 */
        filter: drop-shadow(0 0 15px var(--electric-blue)); /* Réduit */
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    text-align: center;
}

/* CTA Button */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--white);
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 20px rgba(255, 29, 203, 0.3); /* Réduit */
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cta-button:hover {
    transform: translateY(-2px); /* Réduit le mouvement */
    box-shadow: 0 0 25px rgba(255, 29, 203, 0.4); /* Moins intense */
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.commerce-flows {
    padding: 60px 0 40px;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.flow-card {
    background: rgba(10, 0, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.flow-card.live-shop {
    border-color: rgba(0, 212, 255, 0.3);
}

.flow-card.vbucks {
    border-color: rgba(255, 99, 218, 0.25);
}

.flow-eyebrow {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.shop-preview-section {
    padding: 40px 0 20px;
}

.shop-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.shop-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-preview-card .preview-media {
    width: 100%;
    padding-top: 70%;
    border-radius: 18px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.shop-preview-card .preview-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--electric-blue), var(--hot-pink));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.shop-preview-card .preview-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

.shop-preview-card.skeleton {
    min-height: 220px;
    animation: skeletonLoading 1.4s ease-in-out infinite;
    background: linear-gradient(110deg, rgba(255,255,255,0.04) 8%, rgba(255,255,255,0.12) 18%, rgba(255,255,255,0.04) 33%);
    border-color: transparent;
}

.preview-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--electric-blue);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

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

.floating-character {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(255, 29, 203, 0.3));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: floatChar 4s infinite ease-in-out;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

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

.energy-ring {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
}

.ring-1 {
    width: 350px;
    height: 350px;
    border-color: rgba(0, 217, 255, 0.3);
    animation-duration: 15s;
}

.ring-2 {
    width: 450px;
    height: 450px;
    border-color: rgba(255, 29, 203, 0.3);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 550px;
    height: 550px;
    border-color: rgba(43, 0, 99, 0.3);
    animation-duration: 25s;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 217, 255, 0.1), transparent);
}

/* ===========================
   PRODUCTS SECTION
   =========================== */

.products-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.15);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0.05; /* Réduit de 0.1 à 0.05 */
}

.product-card:hover {
    transform: translateY(-5px); /* Réduit de -10px à -5px */
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2); /* Moins intense */
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
}

.card-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: scale(1.02);
}

.card-icon {
    position: relative;
    width: 100%;
    height: 420px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    border-radius: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

/* VBucks Card Image */
.vbucks-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbucks-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
    display: block;
}

/* Crew Image - Same styles as vbucks */
.crew-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crew-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    border-radius: 15px;
    display: block;
}

/* Card Overlay - Price on Image */
.card-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: transparent;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    z-index: 2;
}

.overlay-quantity {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.overlay-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
}

.product-card[data-rarity="legendary"] .card-icon {
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.product-card[data-rarity="epic"] .card-icon {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 29, 203, 0.5);
}

.product-card[data-rarity="mythic"] .card-icon {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.coin-shine,
.box-shimmer,
.exclusive-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.icon-text {
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 20px 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.price-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--electric-blue);
    font-family: var(--font-display);
    white-space: nowrap;
}

.price-original {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    white-space: nowrap;
}

.product-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--white);
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    text-decoration: none;
}

.product-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-button:hover::before {
    width: 300px;
    height: 300px;
}

.product-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.product-button span {
    position: relative;
    z-index: 1;
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(43, 0, 99, 0.2) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 29, 203, 0.3);
}

.feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--electric-blue), transparent);
    opacity: 0.2;
    border-radius: 50%;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15; /* Réduit */
    }
    50% {
        transform: scale(1.05); /* Réduit de 1.2 à 1.05 */
        opacity: 0.25; /* Réduit de 0.4 à 0.25 */
    }
}

.feature-icon .icon {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

/* ===========================
   COMMUNITY SECTION
   =========================== */

.community-section {
    padding: 120px 0;
    position: relative;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232B0063" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }

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

.chat-bubble {
    background: rgba(20, 0, 40, 0.9);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: all 0.3s;
}

.chat-bubble:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 29, 203, 0.3);
}

.bubble-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid var(--electric-blue);
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--electric-blue);
}

.user-level {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.bubble-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    padding: 60px 0 30px;
    background: rgba(10, 0, 20, 0.9);
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--electric-blue);
    font-family: var(--font-display);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-column a:hover {
    color: var(--electric-blue);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.powered-by {
    font-size: 14px;
}

.powered-by .highlight {
    color: var(--electric-blue);
    font-weight: 700;
}

/* ===========================
   PAYMENT BADGES
   =========================== */

.payment-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.payment-badges .badge {
    padding: 10px 20px;
    background: rgba(123, 104, 238, 0.2);
    border: 2px solid var(--deep-purple);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

/* ===========================
   SAVINGS DISPLAY
   =========================== */

.savings {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 6px 12px;
    margin: 8px 0 15px 0;
    text-align: center;
    font-weight: 700;
    color: var(--gold);
    font-size: 12px;
    white-space: nowrap;
}

/* ===========================
   PROCESS SECTION
   =========================== */

.process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(123, 104, 238, 0.1) 50%, transparent 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    font-family: var(--font-display);
    box-shadow: 0 5px 20px rgba(255, 29, 203, 0.5);
}

.step-icon {
    font-size: 48px;
    margin: 10px 0 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--electric-blue);
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.process-arrow {
    font-size: 36px;
    color: var(--electric-blue);
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

.process-cta {
    text-align: center;
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
    padding: 120px 0;
    background: rgba(10, 0, 20, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--deep-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 32px;
    min-width: 40px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--electric-blue);
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
}

/* ===========================
   PROMO SECTION
   =========================== */

.promo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1), rgba(0, 212, 255, 0.1));
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: promoShine 3s infinite;
}

@keyframes promoShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.promo-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: var(--font-display);
}

.promo-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.promo-description strong {
    color: var(--electric-blue);
    font-weight: 700;
}

/* ===========================
   TESTIMONIALS RATING
   =========================== */

.bubble-rating {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
}

/* ===========================
   FOOTER ENHANCEMENTS
   =========================== */

.footer-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* ===========================
   WHATSAPP CTA BUTTON
   =========================== */

.whatsapp-cta {
    background: var(--gradient-whatsapp) !important;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-cta:hover {
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.8);
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--gradient-whatsapp);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-primary);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* ===========================
   V-BUCKS SPINNER
   =========================== */

.vbucks-spinner {
    position: fixed;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.spinner-coin {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCoin 4s linear infinite;
}

@keyframes spinCoin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.coin-front,
.coin-back {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-display);
    color: #000;
    border: 4px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    backface-visibility: hidden;
}

.coin-back {
    transform: rotateY(180deg);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .navbar .container {
        gap: 10px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-brand {
        flex: 1;
        text-align: center;
    }
    
    .nav-cart {
        order: 3;
    }
    
    .nav-brand a {
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtext {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(10px);
        border-right: 2px solid rgba(0, 212, 255, 0.3);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: rgba(0, 212, 255, 0.1);
        padding-left: 40px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .cart-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .price-original {
        font-size: 14px;
    }
    
    .product-name {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-action-group {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
    }
    
    .hero-action-group .cta-button,
    .hero-action-group .ghost-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-character {
        width: 200px;
        height: 300px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .vbucks-spinner {
        display: none;
    }
    
    /* Process Section Mobile */
    .process-timeline {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Promo Mobile */
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float-btn .button-text {
        display: none;
    }
    
    .whatsapp-float-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .whatsapp-float-btn .button-icon {
        font-size: 28px;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .product-card {
        padding: 25px 15px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .product-name {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 32px;
    }
}

/* Extra responsive pour très petits écrans */
@media (max-width: 320px) {
    .hero-title {
        font-size: 28px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtext {
        font-size: 10px;
    }
    
    .nav-links {
        display: none;
    }
}

/* Responsive améliorée pour tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(10px);
        border-right: 2px solid rgba(0, 212, 255, 0.3);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: rgba(0, 212, 255, 0.1);
        padding-left: 40px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-brand {
        flex: 1;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-visual {
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Grands écrans */
@media (min-width: 1441px) {
    .container {
        max-width: 1600px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   CART BADGE
   =========================== */

.nav-cart {
    position: relative;
}

.cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    border: 2px solid var(--electric-blue);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cart-button:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.cart-button.active {
    background: var(--gradient-secondary);
}

.cart-icon {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--neon-pink);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: 0 0 10px rgba(255, 29, 203, 0.3); /* Réduit */
    animation: none; /* Désactiver l'animation pulse */
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Réduit */
    }
}

/* ===========================
   PRODUCT ACTIONS
   =========================== */

.product-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-top: auto;
}

.product-button.secondary {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
}

.product-button.secondary:hover {
    background: rgba(0, 212, 255, 0.2);
}

/* ===========================
   CART PAGE
   =========================== */

.cart-page {
    min-height: 100vh;
    padding: 120px 0 60px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-items-section {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: var(--electric-blue);
    transform: translateX(5px);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cart-item-icon {
    font-size: 48px;
}

.product-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 900;
    color: white;
    font-family: var(--font-display);
}

.cart-item-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.item-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    transform: scale(1.1);
}

.quantity-control input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.item-total {
    min-width: 80px;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    color: var(--electric-blue);
}

.remove-btn {
    background: rgba(255, 29, 203, 0.1);
    border: 2px solid var(--neon-pink);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.remove-btn:hover {
    background: var(--neon-pink);
    transform: scale(1.1);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.empty-cart-icon {
    font-size: 120px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-cart h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.empty-cart p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* ===========================
   CART SUMMARY
   =========================== */

.cart-summary {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-line.total {
    font-size: 24px;
    font-weight: 900;
    color: var(--electric-blue);
    border-bottom: none;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.free {
    color: var(--gold);
    font-weight: 700;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: var(--font-primary);
}

.promo-code input:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.apply-btn {
    padding: 12px 20px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-btn:hover {
    transform: scale(1.05);
}

.promo-success {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25D366;
    border-radius: 10px;
    padding: 12px;
    margin: 10px 0;
    text-align: center;
    color: #25D366;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 29, 203, 0.3);
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 29, 203, 0.5);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 24px;
}

/* ===========================
   PRODUCT PAGE
   =========================== */

.product-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.product-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-large-icon {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: 900;
    font-family: var(--font-display);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    border: none;
    background: transparent;
}

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

/* VBucks Official Images - Product Page */
.vbucks-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
}

.vbucks-official-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 20px;
    display: block;
}

.vbucks-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vbucks-quantity {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.vbucks-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.product-large-icon.legendary {
    border-color: var(--electric-blue);
}

.product-large-icon.epic {
    border-color: var(--neon-pink);
}

.product-large-icon.mythic {
    border-color: var(--gold);
}

.product-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(255, 29, 203, 0.4);
}

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

.product-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
}

.product-price-section {
    margin-bottom: 30px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.price-large {
    font-size: 56px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--electric-blue);
}

.price-strike {
    font-size: 28px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 8px 15px;
    color: var(--gold);
    font-weight: 700;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.product-delivery {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-icon {
    font-size: 32px;
}

.delivery-item strong {
    display: block;
    margin-bottom: 3px;
}

.delivery-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.product-actions-large {
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.quantity-controls .qty-btn {
    width: 40px;
    height: 40px;
}

.quantity-controls input {
    width: 60px;
    font-size: 18px;
}

.add-to-cart-large {
    width: 100%;
    padding: 18px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 29, 203, 0.5);
}

.buy-now-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.3s;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.product-guarantee {
    background: rgba(37, 211, 102, 0.05);
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.product-guarantee h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #25D366;
}

.product-guarantee ul {
    list-style: none;
    padding: 0;
}

.product-guarantee li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Product Tabs */
.product-tabs {
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: rgba(0, 212, 255, 0.05);
    color: white;
}

.tab-btn.active {
    color: var(--electric-blue);
    border-bottom-color: var(--electric-blue);
    background: rgba(0, 212, 255, 0.1);
}

.tabs-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s;
}

.tab-pane h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.product-specs {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.product-specs h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--electric-blue);
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.how-to-step {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-display);
    box-shadow: 0 5px 15px rgba(255, 29, 203, 0.4);
}

.how-to-step h4 {
    font-size: 20px;
    margin: 10px 0 10px;
}

.how-to-step p {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.rating-overview {
    text-align: center;
}

.rating-score {
    font-size: 72px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--electric-blue);
}

.rating-stars {
    font-size: 32px;
    margin: 10px 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.review-country {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   CHECKOUT MODAL
   =========================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(43, 0, 99, 0.95), rgba(10, 0, 20, 0.95));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.checkout-modal h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

.checkout-step h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--electric-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--electric-blue);
    background: rgba(0, 212, 255, 0.05);
}

.payment-option.selected {
    border-color: var(--neon-pink);
    background: rgba(255, 29, 203, 0.1);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.payment-icon {
    font-size: 32px;
}

.next-btn,
.back-btn {
    padding: 14px 40px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.next-btn:hover,
.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 29, 203, 0.3);
}

.checkout-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.processing {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    border: 5px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--electric-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.processing h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.processing-status {
    font-size: 1rem;
    color: rgba(174, 186, 255, 0.85);
    margin-bottom: 20px;
}

.processing-hint {
    display: none;
    margin: 25px auto 0;
    max-width: 420px;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 16px;
    padding: 18px 20px;
    color: rgba(193, 206, 255, 0.9);
    line-height: 1.5;
}

.processing-hint.show {
    display: block;
    animation: fadeIn 0.35s ease-out;
}

.retry-btn {
    margin-top: 16px;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(120deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 100px;
    margin-bottom: 20px;
}

.order-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.order-details p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   NOTIFICATIONS
   =========================== */

.cart-notification,
.error-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-primary);
    z-index: 10001;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-out;
}

.error-notification {
    background: linear-gradient(135deg, #FF1744, #F50057);
    box-shadow: 0 5px 30px rgba(255, 23, 68, 0.5);
}

.cart-notification.show,
.error-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    /* Page Produit */
    .product-page {
        padding: 100px 0 40px;
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-visual {
        margin: 0 auto;
    }

    .product-image-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .product-large-icon {
        max-width: 300px;
        font-size: 100px;
    }
    
    .product-info {
        text-align: center;
    }
    
    .product-meta {
        justify-content: center;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .product-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-cta-buttons .cta-btn {
        width: 100%;
    }

    /* Page Panier */
    .cart-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Page Produit - Mobile */
    .product-page {
        padding: 90px 0 40px;
    }
    
    .back-link {
        margin: 0 20px 25px;
        font-size: 15px;
        padding: 10px 0;
    }
    
    .product-details {
        gap: 35px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .product-page {
        padding: 85px 0 35px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .product-page .container {
        padding: 0 15px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .back-link {
        font-size: 13px;
        margin-bottom: 20px;
        margin-left: 15px;
    }
    
    .product-visual {
        padding: 15px 0;
        width: 100%;
    }
    
    .product-image-container {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .product-large-icon {
        max-width: 100%;
        font-size: 60px;
    }
    
    .vbucks-image-container {
        max-width: 100%;
        aspect-ratio: 3/4;
    }
    
    .vbucks-official-image {
        object-fit: contain;
    }
    
    .card-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 8px 12px;
    }
    
    .overlay-quantity {
        font-size: 18px;
    }
    
    .overlay-price {
        font-size: 17px;
    }
    
    .product-badge-large {
        font-size: 11px;
        padding: 6px 14px;
        top: 15px;
        right: 15px;
    }
    
    .product-info {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .product-actions-large {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .product-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .product-description h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .product-description ul {
        font-size: 14px;
    }
    
    .delivery-item {
        padding: 12px;
    }
    
    .delivery-icon {
        font-size: 28px;
    }
    
    .add-to-cart-large,
    .buy-now-btn {
        padding: 13px 20px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .quantity-controls input {
        width: 50px;
        font-size: 16px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1;
        min-width: auto;
    }
    
    .tab-pane {
        padding: 20px 10px;
    }
    
    .tab-pane h3 {
        font-size: 18px;
    }
    
    .how-to-step {
        padding: 15px;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .product-rating {
        margin-bottom: 20px;
    }
    
    .price-large {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .price-strike {
        font-size: 22px;
    }
    
    .savings-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: 12px;
    }
    
    .product-description {
        font-size: 15px;
        line-height: 1.7;
        padding: 20px 0;
    }
    
    .specs-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .spec-item {
        padding: 12px 0;
    }
    
    .spec-item strong {
        font-size: 14px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .tab-btn {
        flex: 1 1 auto;
        min-width: 110px;
        padding: 14px 12px;
        font-size: 14px;
    }
    
    .tab-content {
        padding: 25px 0;
    }
    
    .tab-content p,
    .tab-content li {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .how-to-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .step-item h4 {
        font-size: 17px;
        margin: 15px 0 10px;
    }
    
    .step-item p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.7;
        margin: 15px 0;
    }
    
    .review-author {
        font-size: 15px;
    }
    
    .product-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .product-cta-buttons .cta-btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 17px;
        letter-spacing: 0.5px;
    }
    
    .quantity-selector {
        margin: 25px 0;
    }
    
    .quantity-selector label {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .quantity-control button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .quantity-control input {
        width: 70px;
        font-size: 18px;
    }

    /* Page Panier - Mobile */
    .cart-page {
        padding: 90px 0 50px 0;
    }
    
    .page-title {
        font-size: 34px;
        padding: 0 20px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .cart-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .cart-items-section,
    .cart-summary {
        padding: 20px;
        border-radius: 15px;
    }
    
    .cart-items-section h2,
    .cart-summary h3 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .empty-cart p {
        font-size: 16px;
        line-height: 1.6;
        padding: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 18px;
        margin-bottom: 15px;
    }
    
    .cart-item-details h3 {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .cart-item-details .item-price {
        font-size: 15px;
        margin-top: 5px;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }
    
    .quantity-control {
        order: 1;
        gap: 10px;
    }
    
    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .quantity-control input {
        width: 60px;
        height: 40px;
        font-size: 18px;
    }
    
    .item-total {
        order: 2;
        font-size: 22px;
        font-weight: 700;
    }
    
    .remove-btn {
        order: 3;
        font-size: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .summary-line {
        font-size: 16px;
        padding: 12px 0;
        line-height: 1.5;
    }
    
    .summary-line.total {
        font-size: 20px;
        padding: 18px 0;
        margin-top: 10px;
    }
    
    .promo-code {
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
    }
    
    .promo-code input {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .promo-code .apply-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
    
    .promo-success,
    .promo-error {
        font-size: 14px;
        padding: 10px;
        margin-top: 10px;
    }
    
    .checkout-btn {
        padding: 18px;
        font-size: 17px;
        margin-top: 20px;
        letter-spacing: 0.5px;
    }

    /* Modal Checkout - Mobile */
    .checkout-modal {
        width: 95%;
        max-width: 95%;
        padding: 25px 18px;
        max-height: 92vh;
        overflow-y: auto;
        border-radius: 15px;
    }
    
    .checkout-modal h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .checkout-steps {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .checkout-step {
        font-size: 12px;
        padding: 10px 14px;
        letter-spacing: 0.3px;
    }
    
    .checkout-step-content {
        padding: 25px 0;
    }
    
    .form-row {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .form-group input,
    .form-group select {
        font-size: 15px;
        padding: 14px 16px;
        line-height: 1.5;
    }
    
    .payment-options {
        gap: 15px;
        margin: 20px 0;
    }
    
    .payment-option {
        padding: 16px;
    }
    
    .payment-option input[type="radio"] {
        width: 20px;
        height: 20px;
    }
    
    .payment-option h4 {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .payment-option p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .order-summary {
        padding: 20px;
        margin: 20px 0;
    }
    
    .order-summary h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .order-summary p {
        font-size: 15px;
        line-height: 1.7;
        margin: 10px 0;
    }
    
    .modal-actions {
        flex-direction: column-reverse;
        gap: 12px;
        margin-top: 25px;
    }
    
    .modal-actions .btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .cart-notification,
    .error-notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(100%);
    }

    .cart-notification.show,
    .error-notification.show {
        transform: translateY(0);
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.hidden {
    display: none;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--electric-blue);
}

/* ===========================
   SUCCESS PAGE
   =========================== */

.success-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    margin-bottom: 40px;
}

.success-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-circle.animate {
    transform: scale(1);
}

.success-checkmark {
    font-size: 80px;
    color: white;
    font-weight: bold;
    animation: checkmark 0.5s ease-in-out 0.3s backwards;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 10px 60px rgba(37, 211, 102, 0.8);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    font-size: 24px;
    color: var(--electric-blue);
    margin-bottom: 40px;
}

.order-details {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--electric-blue);
}

.detail-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-line:last-child {
    border-bottom: none;
}

.detail-line .label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.detail-line .value {
    color: var(--white);
    font-weight: 700;
}

.delivery-info {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-box h4 {
    margin-bottom: 5px;
    color: var(--electric-blue);
}

.info-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.next-steps {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(255, 29, 203, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--neon-pink);
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 29, 203, 0.5);
}

.btn-secondary {
    background: var(--gradient-whatsapp);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.guarantee-reminder {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 15px;
    padding: 20px;
}

.guarantee-reminder p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Success Page */
@media (max-width: 768px) {
    .success-title {
        font-size: 32px;
    }
    
    .success-subtitle {
        font-size: 18px;
    }
    
    .success-circle {
        width: 120px;
        height: 120px;
    }
    
    .success-checkmark {
        font-size: 60px;
    }
    
    .order-details,
    .next-steps,
    .delivery-info {
        padding: 20px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ===========================
   FAILED PAYMENT PAGE
   =========================== */

.failed-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.failed-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.failed-animation {
    margin-bottom: 40px;
}

.failed-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.5);
    animation: shake 0.5s ease-in-out;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.failed-circle.animate {
    transform: scale(1);
}

.failed-icon {
    font-size: 80px;
    color: white;
    font-weight: bold;
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-10px) scale(1); }
    50% { transform: translateX(10px) scale(1); }
    75% { transform: translateX(-10px) scale(1); }
}

.failed-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ff4444;
}

.failed-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.failed-reasons {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.failed-reasons h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #ff4444;
}

.failed-reasons ul {
    list-style: none;
    padding: 0;
}

.failed-reasons li {
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.failed-reasons li:last-child {
    border-bottom: none;
}

.order-info {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.order-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--electric-blue);
}

.cart-summary-preview {
    margin-top: 20px;
    text-align: left;
}

.cart-summary-preview h4 {
    margin-bottom: 15px;
    color: var(--electric-blue);
}

.cart-item-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item-preview .item-name {
    flex: 1;
    font-weight: 600;
}

.cart-item-preview .item-qty {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 15px;
}

.cart-item-preview .item-price {
    font-weight: 700;
    color: var(--electric-blue);
}

.cart-total-preview {
    display: flex;
    justify-content: space-between;
    padding: 15px 12px;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    margin-top: 10px;
    font-size: 18px;
}

.next-actions {
    margin-bottom: 40px;
}

.next-actions h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--electric-blue);
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.action-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.action-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.action-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.action-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: var(--gradient-secondary);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 29, 203, 0.5);
}

.action-btn.secondary {
    background: var(--gradient-whatsapp);
    color: white;
}

.action-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.action-btn.tertiary {
    background: rgba(0, 217, 255, 0.2);
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
}

.action-btn.tertiary:hover {
    background: var(--electric-blue);
    color: white;
    transform: translateY(-2px);
}

.help-section {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.help-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--gold);
}

.faq-item {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gold);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.payment-tips {
    background: rgba(20, 0, 40, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.payment-tips h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--electric-blue);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateX(5px);
}

.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tip-item p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.security-reminder {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 15px;
    padding: 20px;
}

.security-reminder p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Failed Payment Page */
@media (max-width: 768px) {
    .failed-title {
        font-size: 32px;
    }
    
    .failed-subtitle {
        font-size: 18px;
    }
    
    .failed-circle {
        width: 120px;
        height: 120px;
    }
    
    .failed-icon {
        font-size: 60px;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .failed-reasons,
    .help-section,
    .payment-tips {
        padding: 20px;
    }
}

    /* ===========================
       LIVE SHOP PAGE (shop.html)
       =========================== */

    .shop-page-body {
        background: var(--dark-bg);
        color: var(--white);
    }

    .shop-app {
        max-width: 1200px;
        margin: 0 auto;
        padding: 140px 24px 100px;
        position: relative;
        z-index: 2;
    }

    .shop-hero {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
        align-items: stretch;
    }

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

    .shop-hero-content,
    .hero-card {
        background: rgba(12, 0, 25, 0.85);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 32px;
        padding: 32px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(12px);
    }

    @media (max-width: 768px) {
        .shop-hero-content,
        .hero-card {
            padding: 20px;
            border-radius: 24px;
        }
    }

    .shop-hero-content h1 {
        font-family: var(--font-display);
        font-size: clamp(32px, 4vw, 56px);
        margin-bottom: 16px;
    }

    .shop-hero-content .hero-description {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 24px;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
        margin-bottom: 30px;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .metric {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 18px;
        padding: 14px 18px;
    }

    .metric-label {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .shop-hero-art {
        position: relative;
        min-height: 360px;
    }

    .hero-card-media {
        width: 100%;
        height: 220px;
        border-radius: 24px;
        background-size: cover;
        background-position: center;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-card-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .hero-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 16px;
        margin-top: 24px;
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        .hero-card-footer {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
    }

    .hero-price {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 22px;
        font-weight: 700;
        white-space: nowrap;
    }

    @media (max-width: 768px) {
        .hero-price {
            font-size: 18px;
            gap: 8px;
        }
    }

    .hero-card-footer .product-button {
        flex: 1 1 200px;
        min-height: 56px;
    }

    @media (max-width: 768px) {
        .hero-card-footer .product-button {
            flex: 0 0 auto;
            padding: 9px 14px;
            font-size: 13px;
            min-height: 40px;
            white-space: nowrap;
            align-self: center;
        }
    }

    @media (max-width: 480px) {
        .hero-card-footer .product-button {
            padding: 8px 12px;
            font-size: 12px;
            min-height: 38px;
        }
    }

    @media (max-width: 375px) {
        .hero-card-footer .product-button {
            padding: 7px 10px;
            font-size: 11px;
            min-height: 36px;
        }
    }

    @media (max-width: 320px) {
        .hero-card-footer .product-button {
            padding: 6px 8px;
            font-size: 10px;
            min-height: 34px;
        }
    }

    .hero-card-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        background: var(--gradient-secondary);
        padding: 8px 16px;
        border-radius: 999px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .vbuck-icon {
        width: 32px;
        height: 32px;
    }

    @media (max-width: 768px) {
        .vbuck-icon {
            width: 24px;
            height: 24px;
        }
    }

    .ghost-button {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 999px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .ghost-button:hover,
    .ghost-button:focus-visible {
        border-color: var(--electric-blue);
        color: var(--electric-blue);
        transform: translateY(-2px);
    }

    .ghost-button--inline {
        padding: 6px 14px;
        font-size: 14px;
        border-radius: 999px;
    }

    .shop-status {
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 18px;
        padding: 16px 20px;
        margin-bottom: 30px;
    }

    .shop-status.is-error {
        background: rgba(255, 71, 87, 0.15);
        border-color: rgba(255, 71, 87, 0.5);
    }

    .shop-controls {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-bottom: 24px;
    }

    .control {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }

    .control input,
    .control select {
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.35);
        color: var(--white);
        font-size: 15px;
    }

    .control select:focus,
    .control input:focus {
        outline: none;
        border-color: var(--electric-blue);
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper .input-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .input-wrapper input {
        padding-left: 40px;
    }

    .shop-tip {
        background: rgba(255, 255, 255, 0.03);
        border: 1px dashed rgba(0, 212, 255, 0.3);
        border-radius: 18px;
        padding: 14px 20px;
        font-size: 15px;
        margin-bottom: 30px;
    }

    .shop-sections {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .shop-section-block {
        background: rgba(10, 0, 20, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 32px;
        padding: 32px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    }

    .shop-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-bottom: 24px;
    }

    .section-eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
    }

    .section-count {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
    }

    .shop-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .shop-skeletons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .shop-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

.shop-card-media {
    position: relative;
    width: 100%;
    padding-top: 68%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(5, 8, 25, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

@media (max-width: 768px) {
    .shop-card-media {
        padding-top: 55% !important;
    }
}

@media (max-width: 480px) {
    .shop-card-media {
        padding-top: 50% !important;
    }
}

@media (max-width: 375px) {
    .shop-card-media {
        padding-top: 45% !important;
    }
}

.shop-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}


    .shop-card-media .rarity-pill {
        position: absolute;
        top: 16px;
        left: 16px;
    }

    .media-tags {
        position: absolute;
        right: 16px;
        bottom: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }

    .item-tag,
    .rarity-pill {
        display: inline-flex;
        align-items: center;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.45);
        margin: 4px;
    }

    .item-tag {
        margin: 0;
    }

    .shop-card-body {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .shop-card-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        margin: 0;
    }

    .shop-card-head h3 {
        margin: 0;
        font-size: 18px;
        line-height: 1.3;
    }

    .shop-card-description {
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .shop-card-price {
        font-size: 20px;
        font-weight: 700;
        color: var(--electric-blue);
        margin: 8px 0;
    }

    .shop-card-meta-line {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .shop-card-meta {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .shop-card-meta .flag {
        margin: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .shop-card-meta .price-tag {
        flex-shrink: 0;
    }

    .price-tag {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        font-weight: 700;
    }

    .price-tag img {
        width: 28px;
        height: 28px;
    }

    .availability-flags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .flag {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background: rgba(255, 255, 255, 0.08);
        padding: 4px 10px;
        border-radius: 999px;
    }

    .shop-card-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 4px;
    }

    .shop-card-actions .product-button,
    .shop-card-actions .ghost-button {
        flex: 1 1 auto;
        min-width: 140px;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .shop-card-hint {
        flex-basis: 100%;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        margin: 0;
    }

    @media (max-width: 768px) {
        .shop-card-hint {
            font-size: 11px;
        }
    }

    .shop-order-modal {
        position: fixed;
        inset: 0;
        background: rgba(2, 0, 12, 0.8);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        z-index: 9999;
    }

    .shop-order-modal.is-visible {
        display: flex;
    }

    .shop-order-dialog {
        background: rgba(10, 0, 20, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 32px;
        padding: 32px;
        width: min(420px, 100%);
        position: relative;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .modal-close {
        position: absolute;
        top: 18px;
        right: 18px;
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        font-size: 28px;
        cursor: pointer;
    }

    .modal-eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.55);
        font-size: 12px;
    }

    .modal-price {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .modal-field {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .modal-field label {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.65);
    }

    .modal-field select,
    .modal-field textarea {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        color: #fff;
        padding: 14px 16px;
        font-family: inherit;
    }

    .modal-actions {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 12px;
    }

    .shop-error,
    .shop-empty {
        text-align: center;
        padding: 40px;
        border-radius: 24px;
        background: rgba(255, 71, 87, 0.12);
        border: 1px solid rgba(255, 71, 87, 0.4);
    }

    .shop-empty {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(0, 212, 255, 0.2);
        margin-top: 20px;
    }

    .shop-skeleton-card {
        height: 320px;
        border-radius: 24px;
        background: linear-gradient(110deg, rgba(255,255,255,0.05) 8%, rgba(255,255,255,0.15) 18%, rgba(255,255,255,0.05) 33%);
        background-size: 200% 100%;
        animation: skeletonLoading 1.2s ease-in-out infinite;
    }

    @keyframes skeletonLoading {
        to {
            background-position: -200% 0;
        }
    }

    .shop-disclaimer {
        margin-top: 40px;
        padding: 28px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.02);
    }

    .shop-disclaimer ul {
        margin-top: 12px;
        padding-left: 20px;
        color: rgba(255, 255, 255, 0.75);
    }

    .shop-disclaimer li {
        margin-bottom: 6px;
    }

    @media (max-width: 768px) {
        .shop-app {
            padding: 120px 16px 60px;
        }

        .shop-section-block {
            padding: 20px;
        }

        .hero-action-group {
            flex-direction: column;
            align-items: stretch;
            gap: 20px;
        }

        .hero-action-group .cta-button,
        .hero-action-group .ghost-button {
            width: 100%;
            justify-content: center;
            padding: 14px 20px;
            font-size: 14px;
            white-space: normal;
            text-align: center;
            line-height: 1.4;
        }

        .ghost-button--inline {
            padding: 14px 20px !important;
            font-size: 14px !important;
            margin-top: 20px !important;
        }

        .shop-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .shop-card-body {
            padding: 18px;
            gap: 14px;
        }

        @media (max-width: 480px) {
            .shop-card-body {
                padding: 16px;
                gap: 12px;
            }
        }

        @media (max-width: 375px) {
            .shop-card-body {
                padding: 14px;
                gap: 10px;
            }
        }

        .shop-card-head {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .shop-card-description {
            font-size: 13px;
            line-height: 1.5;
        }

        .shop-card-meta {
            flex-direction: row !important;
            align-items: center !important;
            gap: 8px !important;
            justify-content: space-between !important;
            flex-wrap: nowrap !important;
        }
        
        .shop-card-meta .price-tag {
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .shop-card-meta .price-tag img {
            width: 24px;
            height: 24px;
        }
        
        .shop-card-meta .flag {
            font-size: 11px;
            padding: 3px 8px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .shop-card-actions {
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }

        .shop-card-actions .product-button,
        .shop-card-actions .ghost-button {
            width: 100%;
            padding: 12px 16px;
            font-size: 14px;
            min-height: 44px;
            flex: none;
        }

        @media (max-width: 480px) {
            .shop-card-actions .product-button,
            .shop-card-actions .ghost-button {
                padding: 11px 14px;
                font-size: 13px;
                min-height: 42px;
            }
        }

        @media (max-width: 375px) {
            .shop-card-actions .product-button,
            .shop-card-actions .ghost-button {
                padding: 10px 12px;
                font-size: 12px;
                min-height: 40px;
            }
        }

        .hero-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-actions .cta-button,
        .hero-actions .ghost-button {
            width: 100%;
            justify-content: center;
        }

        .hero-card-footer {
            flex-direction: column;
        }

        .hero-card-footer .hero-price {
            width: 100%;
            justify-content: center;
        }

        .modal-actions {
            flex-direction: column;
        }
    }

/* ===========================
   SHOP ITEM PAGE STYLES
   =========================== */

.product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image-wrapper .product-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: floatProduct 3s ease-in-out infinite;
    margin: 0 auto;
}

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

/* Galerie d'items (pack ou items liés) */
.product-item-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--electric-blue) transparent;
    -webkit-overflow-scrolling: touch;
}

.product-item-gallery::-webkit-scrollbar {
    height: 6px;
}

.product-item-gallery::-webkit-scrollbar-track {
    background: transparent;
}

.product-item-gallery::-webkit-scrollbar-thumb {
    background: var(--electric-blue);
    border-radius: 3px;
}

.gallery-item {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--electric-blue);
}

.gallery-item.active {
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.gallery-item.active .gallery-item-overlay {
    background: rgba(0, 212, 255, 0.2);
}

/* Bouton vidéo repositionné */
.product-video-button {
    margin-top: 0.5rem;
    text-align: center;
}

.product-video-button .video-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

/* Responsive pour la galerie */
@media (max-width: 768px) {
    .gallery-item {
        width: 70px;
        height: 70px;
    }
    
    .product-item-gallery {
        gap: 0.5rem;
        padding: 0.25rem;
    }
    
    .product-video-button .video-btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}

.bundle-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
    max-height: 250px;
    overflow-y: auto;
    padding: 0.5rem;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 2px solid rgba(123, 104, 238, 0.3);
    transition: all 0.3s ease;
    min-width: 0; /* Permet au contenu de se rétrécir si nécessaire */
    width: 100%;
}

.bundle-item.clickable {
    cursor: pointer;
}

.bundle-item.clickable:hover {
    border-color: var(--electric-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.bundle-item.clickable.active {
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.1);
}

.bundle-item-image {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.bundle-item-info {
    flex: 1;
    min-width: 0; /* Permet au texte de se rétrécir */
    overflow: hidden;
}

.bundle-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.bundle-item-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.rarity-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.loading-state,
.error-state {
    text-align: center;
    padding: 3rem 1rem;
}

.spinner {
    border: 3px solid rgba(123, 104, 238, 0.3);
    border-top: 3px solid var(--electric-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
}

/* ===========================
// ORDERS PAGE
// =========================== */

.orders-page {
    padding-top: 140px;
    padding-bottom: 4rem;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

.orders-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.orders-page .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.orders-list {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.order-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.order-card .order-header {
    flex-wrap: wrap;
    gap: 1rem;
}

.order-card .order-actions {
    flex-wrap: wrap;
    gap: 1rem;
}

.order-card .order-actions button {
    flex: 1 1 auto;
    min-width: 150px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .orders-page {
        padding-top: 120px;
        padding-bottom: 2rem;
    }
    
    .orders-page .container {
        padding: 0 15px;
    }
    
    .order-card {
        padding: 1.5rem !important;
    }
    
    .order-card .order-actions button {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
    }
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--electric-blue);
}

@media (max-width: 768px) {
    .bundle-items-grid {
        grid-template-columns: 1fr;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 1rem;
    }
}
