/* =============================== */
/* GOOGLE FONTS */
/* =============================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =============================== */
/* VARIABLES CSS - NOUVEAU THÈME */
/* =============================== */
:root {
    /* Couleurs principales */
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --secondary: #00CEC9;
    --secondary-dark: #00B3AE;
    
    /* Accents */
    --accent-pink: #FD79A8;
    --accent-yellow: #FDCB6E;
    --accent-green: #00B894;
    --accent-red: #FF6B6B;
    
    /* Backgrounds */
    --bg-primary: #0F0F1A;
    --bg-secondary: #1A1A2E;
    --bg-card: #16213E;
    --bg-card-hover: #1A2744;
    --bg-gradient: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #16213E 100%);
    
    /* Texte */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8D1;
    --text-muted: #6B7280;
    
    /* Bordures et ombres */
    --border-color: rgba(108, 92, 231, 0.2);
    --border-glow: rgba(108, 92, 231, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(108, 92, 231, 0.3);
    --shadow-glow-pink: 0 0 30px rgba(253, 121, 168, 0.3);
    
    /* Glass effect */
    --glass-bg: rgba(26, 26, 46, 0.8);
    --glass-border: rgba(108, 92, 231, 0.3);
    --glass-blur: blur(20px);
    
    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typographie */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* =============================== */
/* RESET ET BASE */
/* =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Sélection */
::selection {
    background: var(--primary);
    color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* =============================== */
/* ANIMATIONS GLOBALES */
/* =============================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(108, 92, 231, 0.3); }
    50% { box-shadow: 0 0 40px rgba(108, 92, 231, 0.6); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =============================== */
/* TOP HEADER */
/* =============================== */
.top-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    backdrop-filter: var(--glass-blur);
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.store-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.store-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* =============================== */
/* NAVBAR */
/* =============================== */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(15, 15, 26, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.15);
}

.nav-link.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: var(--shadow-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px auto;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    transition: var(--transition-smooth);
}

.nav-overlay.active {
    display: block;
}

/* =============================== */
/* BOUTONS */
/* =============================== */
.btn {
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    letter-spacing: -0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--bg-primary);
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 206, 201, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
    transform: translateY(-3px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-pink), #e84393);
    color: white;
    box-shadow: var(--shadow-glow-pink);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 121, 168, 0.4);
}

/* =============================== */
/* HERO SECTION */
/* =============================== */
.hero {
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 30%, #16213E 60%, #0F0F1A 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--text-primary);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 121, 168, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: slide-up 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: var(--glass-bg);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =============================== */
/* SECTIONS */
/* =============================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================== */
/* PRODUCTS GRID */
/* =============================== */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: scale-in 0.5s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-pink), #e84393);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--shadow-glow-pink);
}

.product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.product-category {
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-title {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 20px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-green);
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-red);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
}

/* =============================== */
/* PRODUCT DETAIL */
/* =============================== */
.product-detail {
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.main-image {
    width: 100%;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.main-image:hover {
    transform: scale(1.02);
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.pricing-card h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.3;
}

.pricing-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-display .current-price {
    font-size: 3rem;
}

.price-display .original-price {
    font-size: 1.3rem;
}

.price-display .discount-badge {
    font-size: 1rem;
    padding: 8px 20px;
}

/* =============================== */
/* FORMS */
/* =============================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
    background: var(--bg-card);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* =============================== */
/* PAYMENT BUTTON */
/* =============================== */
.payment-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    width: 100%;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    font-family: var(--font-primary);
    letter-spacing: -0.3px;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.5);
}

/* =============================== */
/* CONFIRMATION */
/* =============================== */
.confirmation-section {
    padding: 80px 0;
}

.confirmation-card {
    background: var(--bg-card);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: pulse-glow 2s infinite;
}

.confirmation-card h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.order-details {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    text-align: left;
    border: 1px solid var(--border-color);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    color: var(--text-secondary);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--text-primary);
}

.access-link {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.access-link h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}


/* =============================== */
/* FOOTER */
/* =============================== */
.footer-tech {
    background: var(--bg-secondary);
    margin-top: auto;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--font-display);
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    font-weight: 600;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}
/* =============================== */
/* FOOTER */
/* =============================== */
.footer-tech {
    background: var(--bg-secondary);
    margin-top: auto;
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-family: var(--font-display);
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-column:first-child { grid-column: 1 / -1; text-align: center; }
    .footer-tech { padding: 35px 0 15px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
        background: var(--bg-secondary); flex-direction: column; align-items: flex-start;
        padding: 80px 20px 20px; border-left: 1px solid var(--border-color);
        transition: right 0.3s ease; overflow-y: auto; gap: 0; z-index: 1000;
    }
    .nav-menu.active { right: 0; }
    .nav-link { padding: 14px 15px; width: 100%; font-size: 0.95rem; border-bottom: 1px solid rgba(108,92,231,0.08); }
    .hero h1 { font-size: 2rem; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 15px; }
    
    /* FOOTER MOBILE */
    .footer-tech { padding: 25px 0 12px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; text-align: left; }
    .footer-column:first-child { grid-column: 1 / -1; text-align: center; padding-bottom: 12px; border-bottom: 1px solid rgba(108,92,231,0.1); margin-bottom: 5px; }
    .footer-column:first-child p { font-size: 0.75rem; margin-bottom: 8px; }
    .footer-column h3 { font-size: 0.85rem; margin-bottom: 8px; }
    .footer-column a { font-size: 0.75rem; margin-bottom: 5px; }
    .footer-logo { font-size: 1.1rem; margin-bottom: 5px; }
    .social-links { justify-content: center; gap: 8px; }
    .social-links a { width: 32px; height: 32px; font-size: 0.7rem; }
    .copyright { padding-top: 12px; font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.9rem; }
    .hero-stats { gap: 10px; }
    .section-header h2 { font-size: 1.6rem; }
    .confirmation-card { padding: 25px 15px; }
    .pricing-card { padding: 20px; }
    .price-display .current-price { font-size: 2rem; }
    
    /* FOOTER TRÈS COMPACT */
    .footer-tech { padding: 20px 0 10px; }
    .footer-content { grid-template-columns: 1fr; gap: 0; margin-bottom: 10px; text-align: center; }
    .footer-column { padding: 6px 0; border-bottom: 1px solid rgba(108,92,231,0.06); }
    .footer-column:last-child { border-bottom: none; }
    .footer-column:first-child { padding-bottom: 8px; margin-bottom: 0; }
    .footer-column:first-child p { display: none; }
    .footer-column:first-child .social-links { margin-top: 5px; }
    .footer-column h3 { font-size: 0.8rem; margin-bottom: 4px; }
    .footer-column a { font-size: 0.7rem; margin-bottom: 2px; display: inline-block; margin-right: 8px; }
    .footer-logo { font-size: 1rem; margin-bottom: 3px; }
    .social-links a { width: 28px; height: 28px; font-size: 0.65rem; }
    .copyright { padding-top: 8px; font-size: 0.65rem; }
}
/* =============================== */
/* UTILITAIRES */
/* =============================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.glow {
    box-shadow: var(--shadow-glow);
}

.glow-pink {
    box-shadow: var(--shadow-glow-pink);
}

.payment-method-card {
    background: rgba(108, 92, 231, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 15px;
    text-align: center;
    transition: all 0.3s;
}
.payment-method-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.15);
}
.payment-method-card span {
    display: block;
}
.payment-method-card span:first-child {
    font-size: 2rem;
    margin-bottom: 8px;
}
.payment-method-card span:last-child {
    font-weight: 600;
    font-size: 0.85rem;
}