/* ================================
   VARIABLES & RESET
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Press+Start+2P&family=Audiowide&family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&family=Rubik+Wet+Paint&display=swap');

:root {
    --color-primary: #00ff41;
    --color-secondary: #00d9ff;
    --color-tertiary: #ff6ec7;
    --color-rick-green: #44ff00;
    --color-portal-blue: #00ccff;
    --color-bg-dark: #0a0e27;
    --color-bg-darker: #05070f;
    --color-bg-card: rgba(10, 14, 39, 0.9);
    --color-text: #ffffff;
    --color-text-dim: #a0aec0;
    --portal-green: #44ff00;
    --portal-blue: #00ffff;
    --shadow-glow: 0 0 20px rgba(0, 255, 65, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: 
        url('img/Rick-And-Morty-Background-PNG.png') center/cover no-repeat,
        radial-gradient(ellipse at center, rgba(68, 255, 0, 0.15) 0%, rgba(0, 0, 0, 0.9) 70%),
        #000000;
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

/* ================================
   POPUP VERIFICATION D'ÂGE
   ================================ */
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

.age-popup-overlay.hidden {
    display: none;
}

.age-popup {
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(68, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.95) 70%),
        linear-gradient(180deg, rgba(0, 30, 0, 0.9) 0%, #000000 100%);
    border: 3px solid var(--color-rick-green);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 0 50px rgba(68, 255, 0, 0.4),
        0 0 100px rgba(68, 255, 0, 0.2),
        inset 0 0 30px rgba(68, 255, 0, 0.1);
    animation: popupSlideIn 0.6s ease-out;
    overflow: hidden;
}

@keyframes popupSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Portal background effect */
.popup-portal-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 255, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: portalPulse 3s ease-in-out infinite;
}

/* Inserts Rick & Morty */
.popup-rick-left {
    position: absolute;
    left: -30px;
    bottom: -20px;
    width: 120px;
    z-index: 2;
    pointer-events: none;
    animation: floatRick 3s ease-in-out infinite;
}

.popup-rick-left img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(68, 255, 0, 0.6));
}

.popup-rick-right {
    position: absolute;
    right: -30px;
    top: -20px;
    width: 130px;
    z-index: 2;
    pointer-events: none;
    animation: floatRick 3s ease-in-out infinite 1.5s;
}

.popup-rick-right img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(68, 255, 0, 0.6));
}

/* Contenu popup */
.popup-content {
    position: relative;
    z-index: 3;
}

.popup-logo {
    margin-bottom: 1.5rem;
}

.popup-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(68, 255, 0, 0.6));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(68, 255, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 35px rgba(68, 255, 0, 0.9)); }
}

.popup-title {
    font-family: 'Rubik Wet Paint', 'Bungee', cursive;
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    color: var(--color-rick-green);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px var(--color-rick-green),
        3px 3px 0 #000;
    letter-spacing: 2px;
}

.popup-text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.popup-text strong {
    color: var(--color-rick-green);
    font-size: 1.3rem;
}

/* Boutons popup */
.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.popup-btn {
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-btn-yes {
    background: linear-gradient(135deg, var(--color-rick-green), #2ecc71);
    color: #000;
    box-shadow: 0 4px 20px rgba(68, 255, 0, 0.4);
}

.popup-btn-yes:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(68, 255, 0, 0.6);
}

.popup-btn-yes:active {
    transform: scale(0.98);
}

.popup-btn-no {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.popup-btn-no:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.popup-btn-no:active {
    transform: scale(0.98);
}

/* Warning */
.popup-warning {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-warning i {
    color: #ffc107;
}

/* Responsive popup */
@media (max-width: 640px) {
    .age-popup {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .popup-rick-left {
        width: 80px;
        left: -15px;
        bottom: -10px;
    }
    
    .popup-rick-right {
        width: 90px;
        right: -15px;
        top: -10px;
    }
    
    .popup-logo img {
        width: 90px;
    }
    
    .popup-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ================================
   ANIMATIONS DE FOND
   ================================ */

.portal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(68, 255, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(68, 255, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(68, 255, 0, 0.1) 0%, transparent 70%);
    z-index: -2;
    animation: portalPulse 8s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Style Graffiti */
.graffiti {
    font-family: 'Rubik Wet Paint', 'Bungee', cursive;
    font-size: 3.5rem;
    color: var(--color-rick-green);
    text-shadow: 
        0 0 10px var(--color-rick-green),
        0 0 20px var(--color-rick-green),
        0 0 30px var(--color-rick-green),
        0 0 40px var(--color-rick-green),
        3px 3px 0 #000,
        5px 5px 0 rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-text-stroke: 2px #000;
    animation: graffitiGlow 2s ease-in-out infinite;
}

@keyframes graffitiGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px var(--color-rick-green),
            0 0 20px var(--color-rick-green),
            3px 3px 0 #000;
    }
    50% { 
        text-shadow: 
            0 0 20px var(--color-rick-green),
            0 0 30px var(--color-rick-green),
            0 0 40px var(--color-rick-green),
            0 0 50px var(--color-rick-green),
            3px 3px 0 #000;
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--color-rick-green);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(68, 255, 0, 0.4);
    position: relative;
}

.rick-morty-bg-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(68, 255, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.rick-logo-nav {
    width: 50px;
    height: auto;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px var(--color-rick-green));
    animation: floatRick 3s ease-in-out infinite;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0;
}

.logo-img-nav {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    filter: drop-shadow(0 0 10px var(--color-rick-green));
    animation: floatRick 3s ease-in-out infinite;
    object-fit: contain;
    flex-shrink: 0;
}

.logo h1 {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.logo .tagline {
    font-size: 0.7rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
    margin-left: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-family: 'Audiowide', 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-text);
    text-shadow: 
        0 0 10px var(--color-primary),
        0 0 20px var(--color-primary),
        0 0 30px var(--color-rick-green);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        text-shadow: 0 0 10px var(--color-primary),
                     0 0 20px var(--color-primary);
    }
    50% { 
        text-shadow: 0 0 20px var(--color-primary),
                     0 0 30px var(--color-primary),
                     0 0 40px var(--color-rick-green);
    }
}

.logo .highlight {
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary);
}

.logo .tagline {
    font-size: 0.7rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--color-rick-green);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 8px;
    gap: 4px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(68, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(68, 255, 0, 0.5);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-rick-green);
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 0 5px var(--color-rick-green);
}

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

.hero {
    padding: 120px 0 60px;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden !important;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
}

.portal-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: 
        radial-gradient(circle, 
            rgba(68, 255, 0, 0.3) 0%,
            rgba(68, 255, 0, 0.1) 30%,
            transparent 60%
        );
    border-radius: 50%;
    animation: portalRotate 10s linear infinite;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border: 3px solid var(--color-rick-green);
    border-radius: 50%;
    box-shadow: 
        0 0 30px var(--color-rick-green),
        inset 0 0 30px var(--color-rick-green);
    animation: portalRotate 8s linear infinite reverse;
}

.portal-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto;
    max-width: 85%;
    z-index: 1;
    opacity: 0.4;
    filter: drop-shadow(0 0 30px var(--color-rick-green));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 30px var(--color-rick-green));
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        filter: drop-shadow(0 0 50px var(--color-rick-green));
        opacity: 0.5;
    }
}

@keyframes portalRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.rick-morty-characters {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.rick-float {
    position: absolute;
    width: auto;
    height: 200px;
    filter: drop-shadow(0 0 20px var(--color-rick-green));
    animation: floatCharacter 6s ease-in-out infinite;
}

.rick-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.rick-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
    height: 150px;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    animation: slideInLeft 1s ease-out;
}

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

.hero-title {
    font-family: 'Rubik Wet Paint', 'Bungee', cursive;
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-rick-green);
    text-shadow: 
        0 0 10px var(--color-rick-green),
        0 0 20px var(--color-rick-green),
        0 0 30px var(--color-rick-green),
        0 0 40px var(--color-rick-green),
        0 0 50px var(--color-rick-green),
        4px 4px 0 #000,
        6px 6px 0 rgba(0, 0, 0, 0.8),
        0 0 100px rgba(0, 0, 0, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    -webkit-text-stroke: 3px #000;
    animation: graffitiGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 30px var(--color-primary); }
    50% { text-shadow: 0 0 50px var(--color-primary), 0 0 70px var(--color-primary); }
}

.hero-subtitle {
    font-family: 'Bungee', sans-serif;
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.glitch {
    position: relative;
    color: var(--color-secondary);
    font-weight: 900;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Bungee', 'Orbitron', sans-serif;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s;
    opacity: 0;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
    opacity: 1;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-rick-green), var(--color-primary));
    color: var(--color-bg-dark);
    box-shadow: none;
    border: 2px solid var(--color-rick-green);
    position: relative;
    z-index: 10;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #55ff11, #22ff55);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(68, 255, 0, 0.4);
    border-color: #66ff22;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 3px solid var(--color-portal-blue);
}

.btn-secondary:hover {
    background: var(--color-portal-blue);
    color: var(--color-bg-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.5);
}

/* Hero Badge */
.hero-badge {
    margin-top: 2rem;
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Bungee', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 25px rgba(255, 110, 199, 0.4);
    animation: badgeBounce 2s ease-in-out infinite;
}

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

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

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

.hero-main-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--color-rick-green);
    box-shadow: 
        0 10px 50px rgba(0, 255, 65, 0.5),
        0 0 80px rgba(0, 255, 65, 0.3);
    transition: var(--transition);
}

.hero-main-img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 60px rgba(0, 255, 65, 0.6),
        0 0 100px rgba(0, 255, 65, 0.4);
}

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

.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
}

.section-title {
    font-family: 'Audiowide', 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-shadow: 
        0 0 20px rgba(0, 255, 65, 0.8),
        3px 3px 0 rgba(0, 217, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title .highlight {
    color: var(--color-rick-green);
    text-shadow: 
        0 0 30px var(--color-rick-green),
        0 0 50px var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-family: 'Bungee', sans-serif;
    font-size: 1.2rem;
    color: var(--color-portal-blue);
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--color-portal-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-card);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--color-primary));
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.feature-card p {
    color: var(--color-text-dim);
    line-height: 1.6;
}

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

.products {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.product-card {
    background: var(--color-bg-card);
    border: 3px solid rgba(0, 217, 255, 0.4);
    border-radius: 25px;
    padding: 0;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.product-card.featured {
    border-color: var(--color-rick-green);
    transform: scale(1.05);
    box-shadow: 
        0 10px 50px rgba(0, 255, 65, 0.5),
        0 0 80px rgba(0, 255, 65, 0.3);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.5),
        0 0 80px rgba(0, 217, 255, 0.3);
    border-color: var(--color-rick-green);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    position: relative;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--color-bg-card));
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.8) contrast(1.1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Bungee', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(255, 110, 199, 0.5);
    z-index: 10;
    animation: badgeBounce 2s ease-in-out infinite;
}

.product-header {
    text-align: center;
    margin: 2rem 0;
    padding: 0 2rem 1.5rem;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
}

.product-header h3 {
    font-family: 'Audiowide', 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--color-rick-green);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 15px var(--color-rick-green),
        0 0 25px var(--color-primary);
    letter-spacing: 2px;
}

.product-price {
    font-family: 'Bungee', 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-text);
    text-shadow: 0 0 20px var(--color-portal-blue);
}

.product-price span {
    font-size: 1.8rem;
    color: var(--color-portal-blue);
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.product-features li {
    padding: 1rem 0;
    color: var(--color-text-dim);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    font-size: 1.05rem;
    transition: var(--transition);
}

.product-features li:hover {
    color: var(--color-rick-green);
    padding-left: 10px;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-card .btn {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    font-size: 1.1rem;
}

/* Rick Divider */
.rick-divider {
    text-align: center;
    margin: 5rem 0 3rem;
    position: relative;
}

.rick-divider::before,
.rick-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-rick-green), transparent);
}

.rick-divider::before {
    left: 0;
}

.rick-divider::after {
    right: 0;
}

.divider-text {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.8rem;
    color: var(--color-rick-green);
    text-shadow: 0 0 20px var(--color-rick-green);
    padding: 0 2rem;
    background: var(--color-bg-darker);
    position: relative;
    z-index: 1;
}

/* Catalogue de produits */
.products-list {
    margin-top: 3rem;
}

.subtitle {
    font-family: 'Audiowide', 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-portal-blue);
    text-shadow: 0 0 20px var(--color-portal-blue);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: var(--color-bg-card);
    border: 3px solid rgba(0, 255, 65, 0.4);
    border-radius: 35px;
    color: var(--color-text);
    font-family: 'Bungee', 'Orbitron', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.2);
    transition: width 0.4s, height 0.4s;
}

.tab-btn:hover {
    border-color: var(--color-rick-green);
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
}

.tab-btn:hover::before {
    width: 300px;
    height: 300px;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-rick-green), var(--color-primary));
    color: var(--color-bg-dark);
    border-color: var(--color-rick-green);
    box-shadow: 0 5px 25px rgba(0, 255, 65, 0.6);
    font-weight: bold;
}

.category-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-grid.active {
    display: grid;
    animation: fadeIn 0.6s ease-out;
}

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

.category-grid .item {
    background: var(--color-bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.category-grid .item:hover {
    border-color: var(--color-rick-green);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

/* New Alcohol Item Styles */
.alcohol-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    transition: var(--transition);
}

.alcohol-item:hover {
    border-color: var(--color-rick-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.05);
}

.item-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px var(--color-rick-green));
    transition: var(--transition);
}

.alcohol-item:hover .item-icon {
    transform: scale(1.2) rotate(10deg);
}

.item-info {
    flex: 1;
    text-align: left;
}

.item-info h4 {
    font-family: 'Bungee', sans-serif;
    font-size: 1.2rem;
    color: var(--color-rick-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--color-rick-green);
}

.item-desc {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.item-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-portal-blue);
    text-shadow: 0 0 10px var(--color-portal-blue);
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-primary);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: var(--color-primary);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary);
}

.stat-label {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-effect {
    position: relative;
    width: 300px;
    height: 300px;
}

.portal-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: portalExpand 3s ease-out infinite;
}

.portal-ring:nth-child(2) {
    animation-delay: 1s;
    border-color: var(--color-secondary);
}

.portal-ring:nth-child(3) {
    animation-delay: 2s;
    border-color: var(--color-tertiary);
}

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

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-rick-green);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 
        0 0 20px rgba(68, 255, 0, 0.2),
        inset 0 0 20px rgba(68, 255, 0, 0.05);
}

.contact-item:hover {
    border-color: var(--color-secondary);
    transform: translateX(10px);
}

.contact-item .icon {
    font-size: 2rem;
    color: var(--color-rick-green);
    min-width: 40px;
    text-align: center;
}

.contact-item .icon i {
    filter: drop-shadow(0 0 10px var(--color-rick-green));
}

.contact-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-text-dim);
}

/* Liens contact stylés */
.contact-link {
    color: var(--color-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(68, 255, 0, 0.08);
    border: 1px solid rgba(68, 255, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    background: rgba(68, 255, 0, 0.2);
    border-color: var(--color-rick-green);
    color: var(--color-rick-green);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(68, 255, 0, 0.3);
}

.contact-link .link-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Style spécial Snapchat */
.snap-link {
    background: rgba(255, 252, 0, 0.1);
    border-color: rgba(255, 252, 0, 0.4);
}

.snap-link:hover {
    background: rgba(255, 252, 0, 0.25);
    border-color: #FFFC00;
    color: #FFFC00;
    box-shadow: 0 0 15px rgba(255, 252, 0, 0.4);
}

.snapchat-item .icon i {
    color: #FFFC00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    padding: 12px 25px;
    background: var(--color-bg-card);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* Formulaire */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--color-bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 10px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.form-group textarea {
    resize: vertical;
}

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

.footer {
    background: 
        radial-gradient(ellipse at bottom center, rgba(68, 255, 0, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 20, 0, 0.95) 0%, #000000 100%);
    border-top: 3px solid var(--color-rick-green);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

/* Portal background effet footer */
.footer-portal-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: portalPulse 4s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Inserts Rick & Morty Footer */
.footer-rick-insert {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-rick-insert:hover {
    opacity: 1;
}

.footer-rick-left {
    left: 20px;
    bottom: 20px;
    width: 120px;
}

.footer-rick-left img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(68, 255, 0, 0.5));
    animation: floatRick 3s ease-in-out infinite;
}

.footer-rick-right {
    right: 20px;
    top: 30px;
    width: 150px;
}

.footer-rick-right img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(68, 255, 0, 0.5));
    animation: floatRick 3s ease-in-out infinite 1.5s;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

/* ================================
   EFFETS DE NAVIGATION RICK & MORTY
   ================================ */
.scroll-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

/* Personnages sur les côtés */
.scroll-side-character {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 120px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-side-character img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(68, 255, 0, 0.8));
    animation: floatCharacter 2s ease-in-out infinite;
}

/* Côté gauche */
.scroll-side-character.left {
    left: -150px;
}

.scroll-side-character.left.visible {
    left: 15px;
    opacity: 1;
}

/* Côté droit */
.scroll-side-character.right {
    right: -150px;
}

.scroll-side-character.right.visible {
    right: 15px;
    opacity: 1;
}

@keyframes floatCharacter {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Ancien système - gardé pour compatibilité */
.scroll-character {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-character img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(68, 255, 0, 0.7));
}

@keyframes flyFromLeft {
    0% { 
        transform: translateX(-200px) rotate(-20deg); 
        opacity: 0; 
    }
    20% { 
        opacity: 1; 
    }
    80% { 
        opacity: 1; 
    }
    100% { 
        transform: translateX(calc(100vw + 200px)) rotate(20deg); 
        opacity: 0; 
    }
}

@keyframes flyFromRight {
    0% { 
        transform: translateX(200px) rotate(20deg); 
        opacity: 0; 
    }
    20% { 
        opacity: 1; 
    }
    80% { 
        opacity: 1; 
    }
    100% { 
        transform: translateX(calc(-100vw - 200px)) rotate(-20deg); 
        opacity: 0; 
    }
}

@keyframes flyFromTop {
    0% { 
        transform: translateY(-200px) scale(0.5); 
        opacity: 0; 
    }
    20% { 
        opacity: 1; 
    }
    80% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(calc(100vh + 200px)) scale(1.2); 
        opacity: 0; 
    }
}

@keyframes flyFromBottom {
    0% { 
        transform: translateY(200px) scale(0.5); 
        opacity: 0; 
    }
    20% { 
        opacity: 1; 
    }
    80% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(calc(-100vh - 200px)) scale(1.2); 
        opacity: 0; 
    }
}

@keyframes spinIn {
    0% { 
        transform: scale(0) rotate(0deg); 
        opacity: 0; 
    }
    30% { 
        opacity: 1; 
    }
    70% { 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.5) rotate(720deg); 
        opacity: 0; 
    }
}

@keyframes zoomIn {
    0% { 
        transform: scale(0.2); 
        opacity: 0; 
    }
    30% { 
        opacity: 1; 
        transform: scale(1.1);
    }
    70% { 
        opacity: 1; 
        transform: scale(1);
    }
    100% { 
        transform: scale(0); 
        opacity: 0; 
    }
}

@keyframes rickFlyInRight {
    0% { right: -150px; opacity: 0; }
    100% { right: 10px; opacity: 0.9; }
}

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

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--color-text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.easter-egg {
    color: var(--color-primary);
    font-family: 'Orbitron', sans-serif;
    animation: glowPulse 2s ease-in-out infinite;
}

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 65, 0.6);
}

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

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: 
            linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 20, 10, 0.98) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-right: 2px solid rgba(68, 255, 0, 0.3);
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        background: rgba(68, 255, 0, 0.05);
        border: 1px solid rgba(68, 255, 0, 0.2);
        border-radius: 10px;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(68, 255, 0, 0.15);
        border-color: var(--color-rick-green);
        transform: translateX(5px);
        box-shadow: 0 0 15px rgba(68, 255, 0, 0.3);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-main-img {
        max-width: 350px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        transform: scale(1);
    }
    
    .catalogue-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .portal-background {
        width: 600px;
        height: 600px;
    }
    
    .logo-img-nav {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .product-header h3 {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 2.5rem;
    }

    .category-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .alcohol-item {
        flex-direction: column;
        text-align: center;
    }

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

    .divider-text {
        font-size: 1.2rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-img-nav {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .portal-background {
        width: 400px;
        height: 400px;
    }
    
    .catalogue-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 1rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
    }
    
    .formules-section,
    .catalogue-section {
        padding: 40px 0;
    }
}

/* ================================
   NOUVEAUX STYLES POUR STRUCTURE APERODENUIT
   ================================ */

/* Top Banner */
.top-banner {
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-text);
    padding: 6px 0;
    text-align: center;
    font-weight: normal;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(68, 255, 0, 0.3);
    backdrop-filter: blur(5px);
}

.top-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 255, 0, 0.5), transparent);
}

.top-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.top-banner p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.5px;
    margin: 0;
    text-align: left;
    flex: 0 0 auto;
}

.top-banner p strong {
    color: var(--color-rick-green);
    font-weight: 600;
}

.btn-banner {
    background: transparent;
    color: var(--color-rick-green);
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    transition: var(--transition);
    border: 1px solid rgba(68, 255, 0, 0.4);
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.btn-banner:hover {
    background: rgba(68, 255, 0, 0.1);
    border-color: var(--color-rick-green);
    color: var(--color-rick-green);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(68, 255, 0, 0.3);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at center, rgba(68, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.95) 70%),
        #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-section .container {
    position: relative;
    z-index: 1;
}

.rick-decorative {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
}

.rick-deco {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--color-rick-green));
    animation: floatRick 4s ease-in-out infinite;
}

.rick-decorative-formules {
    position: absolute;
    top: 10%;
    left: 2%;
    z-index: 0;
    opacity: 0.2;
    max-width: 150px;
}

.rick-deco-formules {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--color-rick-green));
    animation: floatRick 5s ease-in-out infinite;
}

@keyframes floatRick {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.info-section h1 {
    font-family: 'Rubik Wet Paint', 'Bungee', cursive;
    font-size: 3rem;
    color: var(--color-rick-green);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px var(--color-rick-green),
        0 0 20px var(--color-rick-green),
        3px 3px 0 #000;
    -webkit-text-stroke: 2px #000;
    position: relative;
    z-index: 1;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-boxes p {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid var(--color-rick-green);
    border-radius: 15px;
    padding: 2rem;
    font-size: 1.1rem;
    box-shadow: 
        0 0 20px rgba(68, 255, 0, 0.3),
        inset 0 0 20px rgba(68, 255, 0, 0.1);
    position: relative;
    z-index: 1;
}

.info-boxes strong {
    color: var(--color-rick-green);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Formules Section */
.formules-section {
    padding: 40px 0 60px;
    background: transparent;
    position: relative;
    overflow: visible;
    min-height: auto;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.formules-section .container {
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.formules-section h2,
.catalogue-section h2 {
    font-family: 'Rubik Wet Paint', 'Bungee', cursive;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
    color: var(--color-rick-green);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 8px var(--color-rick-green),
        3px 3px 0 #000;
    -webkit-text-stroke: 1px #000;
    position: relative;
    z-index: 1;
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    margin-top: 2.5rem;
    max-width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    justify-items: center;
    padding: 0;
    width: auto;
    box-sizing: border-box;
}

.formule-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--color-rick-green);
    border-radius: 20px;
    padding: 1rem 0.8rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: none;
    position: relative;
    z-index: 1;
    aspect-ratio: 0.7;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

.formule-card.featured {
    border-color: var(--color-rick-green);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(68, 255, 0, 0.3);
}

.formule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(68, 255, 0, 0.4);
    border-color: #55ff11;
}

.formule-title {
    font-family: 'Bungee', sans-serif;
    font-size: 1.3rem;
    color: var(--color-rick-green);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 12px var(--color-rick-green);
    line-height: 1.1;
    flex-shrink: 0;
    font-weight: bold;
}

.formule-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    flex-shrink: 0;
    opacity: 0.85;
}

.formule-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.2rem;
    overflow: visible;
    min-height: 0;
    width: 100%;
    margin-bottom: 0.4rem;
}

.bottles-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin: 0;
    width: 100%;
}

.spirits-row {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    margin: 0;
}

.bottle-item {
    flex: 0 0 auto;
}

.bottle-img {
    height: 120px;
    width: auto;
    max-width: 75px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 255, 65, 0.5));
    transition: var(--transition);
    border-radius: 4px;
}

.formule-a-bottle {
    height: 150px;
    max-width: 95px;
}

.formule-e-bottle {
    height: 85px;
    max-width: 50px;
}

.bottle-img:hover {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(0, 255, 65, 0.6));
}

.plus-sign {
    font-size: 1.2rem;
    color: var(--color-rick-green);
    font-weight: bold;
    text-shadow: 0 0 12px var(--color-rick-green);
    margin: 0.15rem 0;
    line-height: 0.5;
    flex-shrink: 0;
    height: 18px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.softs-row {
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-shrink: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
}

.soft-item {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soft-img {
    height: 50px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0, 217, 255, 0.5));
    transition: var(--transition);
    border-radius: 3px;
}

.soft-img:hover {
    transform: translateY(-2px) scale(1.1);
}

.ou-text {
    color: var(--color-text-dim);
    font-size: 0.65rem;
    margin: 0 0.15rem;
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
    align-self: center;
}

.plus-text {
    color: var(--color-rick-green);
    font-size: 0.7rem;
    font-weight: bold;
    margin: 0 0.3rem;
    text-shadow: 0 0 8px var(--color-rick-green);
}

.formule-desc {
    display: none;
}

.quantity-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-tertiary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    box-shadow: 0 3px 10px rgba(255, 110, 199, 0.6);
    z-index: 10;
}

.gratuit-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    transform: none;
    background: linear-gradient(135deg, var(--color-rick-green), var(--color-primary));
    color: #000;
    border-radius: 8px;
    padding: 2px 5px;
    font-weight: bold;
    font-size: 0.4rem;
    font-family: 'Bungee', sans-serif;
    box-shadow: 0 2px 8px rgba(68, 255, 0, 0.7);
    white-space: nowrap;
    z-index: 10;
    border: 1px solid #000;
}

.au-choix-text {
    display: block;
    text-align: center;
    color: var(--color-rick-green);
    font-size: 0.65rem;
    font-weight: bold;
    margin-top: 4px;
    text-shadow: 0 0 10px var(--color-rick-green);
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}

.bonbons-row {
    height: 55px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    display: flex;
    width: 100%;
    position: relative;
    margin: 0 0 0.6rem 0;
}

.soft-item {
    position: relative;
}

.coupe-text {
    font-family: 'Bungee', sans-serif;
    font-size: 0.7rem;
    color: var(--color-portal-blue);
    text-shadow: 0 0 10px var(--color-portal-blue);
    padding: 0.3rem 0.6rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--color-portal-blue);
    border-radius: 8px;
    display: inline-block;
}

.formule-price {
    font-family: 'Bungee', sans-serif;
    font-size: 1.5rem;
    color: var(--color-portal-blue);
    margin: 0.3rem 0;
    text-shadow: 0 0 20px var(--color-portal-blue);
    line-height: 1;
    flex-shrink: 0;
    font-weight: bold;
}

.formule-card .btn {
    width: 100%;
    margin-top: 0.2rem;
    padding: 8px 16px;
    font-size: 0.75rem;
    border-radius: 25px;
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.formule-card .btn:hover {
    background: linear-gradient(135deg, #55ff11, #22ff55);
    transform: scale(1.05);
    box-shadow: 
        0 8px 30px rgba(68, 255, 0, 0.8),
        0 0 20px rgba(68, 255, 0, 0.5);
    border-color: #66ff22;
    color: #000;
}

.formule-card .btn:active {
    transform: scale(0.97);
    box-shadow: 
        0 3px 15px rgba(68, 255, 0, 0.6),
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Catalogue Section */
.catalogue-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at center, rgba(68, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.95) 70%),
        #000000;
    position: relative;
}

.catalogue-section > h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.catalogue-category {
    margin-bottom: 4rem;
}

.catalogue-category h3 {
    font-family: 'Bungee', sans-serif;
    font-size: 2rem;
    color: var(--color-rick-green);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 15px var(--color-rick-green);
}

.catalogue-category h3 i {
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 10px var(--color-rick-green));
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
}

.catalogue-item {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-rick-green);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 0 20px rgba(68, 255, 0, 0.2),
        inset 0 0 20px rgba(68, 255, 0, 0.05);
}

.catalogue-item:hover {
    border-color: var(--color-rick-green);
    transform: translateY(-10px);
    box-shadow: 
        0 0 40px rgba(68, 255, 0, 0.5),
        0 10px 30px rgba(68, 255, 0, 0.4),
        inset 0 0 30px rgba(68, 255, 0, 0.1);
}

.catalogue-img {
    height: 150px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 255, 65, 0.3));
    border-radius: 5px;
}

.coca-img {
    height: 200px;
    max-width: 130px;
}

.catalogue-item p {
    font-weight: bold;
    color: var(--color-text);
    font-size: 0.9rem;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--color-portal-blue);
    font-weight: bold;
    text-shadow: 0 0 10px var(--color-portal-blue);
}

/* Contact Section Update */
.contact-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at center, rgba(68, 255, 0, 0.12) 0%, rgba(0, 0, 0, 0.95) 70%),
        #000000;
    position: relative;
}

.contact-section .container {
    text-align: center;
}

.contact-section .contact-grid {
    text-align: left;
}

.contact-section h2 {
    font-family: 'Rubik Wet Paint', 'Bungee', cursive;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--color-rick-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px var(--color-rick-green),
        3px 3px 0 #000;
    -webkit-text-stroke: 2px #000;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(68, 255, 0, 0.08);
    border: 1px solid rgba(68, 255, 0, 0.3);
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-subtitle i {
    color: var(--color-rick-green);
    margin-right: 8px;
}

.contact-subtitle strong {
    color: #FFFC00;
}

.payment-info {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 10px;
}

.horaires-info {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid var(--color-rick-green);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 
        0 0 30px rgba(68, 255, 0, 0.3),
        inset 0 0 30px rgba(68, 255, 0, 0.1);
}

.horaires-info h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 1.8rem;
    color: var(--color-rick-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.horaires-list p {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-dim);
}

.horaires-list p:last-child {
    border-bottom: none;
}

.horaires-list strong {
    color: var(--color-primary);
}

.zone-info {
    margin-top: 1.5rem;
    color: var(--color-text-dim);
    font-size: 0.9rem;
    text-align: center;
}

.warning {
    color: #ff6b6b !important;
    font-weight: bold;
}

.interdiction-image {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interdiction-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
    transition: var(--transition);
}

.interdiction-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.7));
}

/* Responsive pour nouvelles sections */
@media (max-width: 1600px) {
    .formules-grid {
        max-width: 98%;
        margin-left: 1%;
        gap: 1rem;
    }
}

@media (max-width: 1400px) {
    .formules-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 98%;
        margin-left: 1%;
        gap: 1rem;
    }
}

@media (max-width: 1100px) {
    .formules-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 98%;
        margin-left: 1%;
        gap: 1rem;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .formule-card {
        min-height: 500px;
    }
    
    .formules-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
        width: 100%;
    }
}

@media (max-width: 968px) {
    .formules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 0;
        width: auto;
        box-sizing: border-box;
    }

    .formule-card {
        min-height: 550px;
        padding: 1.2rem 1rem;
        aspect-ratio: auto;
    }

    .formule-card.featured {
        transform: scale(1);
    }
    
    .formule-title {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .formule-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .spirits-row {
        height: 150px;
    }
    
    .bottle-img {
        height: 140px;
        max-width: 90px;
    }
    
    .formule-a-bottle {
        height: 170px;
        max-width: 110px;
    }
    
    .formule-e-bottle {
        height: 100px;
        max-width: 60px;
    }
    
    .plus-sign {
        font-size: 1.4rem;
        height: 20px;
        margin: 0.2rem 0;
    }
    
    .softs-row {
        height: 70px;
        gap: 0.5rem;
    }
    
    .soft-img {
        height: 60px;
        max-width: 50px;
    }
    
    .ou-text {
        font-size: 0.8rem;
    }
    
    .au-choix-text {
        font-size: 0.75rem;
        margin-top: 5px;
    }
    
    .bonbons-row {
        height: 60px;
    }
    
    .gratuit-badge {
        font-size: 0.45rem;
        padding: 2px 5px;
        top: -5px;
        right: -5px;
        bottom: auto;
        left: auto;
        transform: none;
    }
    
    .formule-price {
        font-size: 2rem;
        margin: 0.5rem 0;
    }
    
    .formule-card .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        margin-top: 0.4rem;
    }

    .catalogue-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .formules-section h2,
    .catalogue-section h2 {
        font-size: 2rem;
    }
    
    .formules-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
        width: 100%;
    }
    
    .formules-grid {
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 640px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    .formules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        margin-left: 0;
        padding: 0;
        width: 100%;
    }
    
    .formule-card {
        min-height: 500px;
        padding: 1rem 0.8rem;
        aspect-ratio: auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        box-shadow: none;
        border: 2px solid var(--color-rick-green);
    }
    
    .formules-section {
        padding: 40px 0;
        overflow: visible;
        width: 100%;
        max-width: 100vw;
        background: transparent;
    }
    
    .formules-section .container {
        padding: 0 15px;
        max-width: 100%;
        overflow: visible;
        width: 100%;
    }
    
    .formules-grid {
       
        width: 100%;
        box-sizing: border-box;
    }

    .formule-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .formule-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }
    
    .spirits-row {
        height: 130px;
    }

    .bottle-img {
        height: 160px;
        max-width: 100px;
    }

    .formule-a-bottle {
        height: 190px;
        max-width: 120px;
    }

    .formule-e-bottle {
        height: 110px;
        max-width: 70px;
    }
    
    .softs-row {
        height: 60px;
        gap: 0.5rem;
    }

    .soft-img {
        height: 50px;
        max-width: 42px;
    }
    
    .bonbons-row {
        height: 55px;
        margin-bottom: 1.2rem;
    }
    
    .gratuit-badge {
        font-size: 0.35rem;
        padding: 1px 4px;
        top: -4px;
        right: -4px;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .plus-sign {
        font-size: 1.2rem;
        height: 18px;
        margin: 0.2rem 0;
    }

    .formule-price {
        font-size: 1.8rem;
        margin: 0.8rem 0;
    }

    .formule-card .btn {
        font-size: 1rem;
        padding: 14px 24px;
        margin-top: 0.5rem;
    }
    
    .au-choix-text {
        font-size: 0.85rem;
        margin-top: 6px;
    }
    
    .ou-text {
        font-size: 0.9rem;
    }
    
    .quantity-badge {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .catalogue-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .catalogue-img {
        height: 120px;
    }
    
    .formules-section h2,
    .catalogue-section h2 {
        font-size: 2rem;
    }
    
    .formules-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
        width: 100%;
    }
    
    .formules-grid {
    
        width: 100%;
        box-sizing: border-box;
    }
    
    .top-banner .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .top-banner p {
        font-size: 0.7rem;
    }
    
    .btn-banner {
        font-size: 0.65rem;
        padding: 6px 15px;
    }
    
    /* Masquer les inserts Rick & Morty du footer sur mobile */
    .footer-rick-insert {
        display: none;
    }
    
    .footer-portal-bg {
        width: 300px;
        height: 300px;
    }
    
    /* Réduire les effets de navigation sur mobile */
    .scroll-side-character {
        width: 80px;
    }
    
    .scroll-side-character.left.visible {
        left: 5px;
    }
    
    .scroll-side-character.right.visible {
        right: 5px;
    }
}

/* Styles tablet pour les inserts footer */
@media (max-width: 968px) {
    .footer-rick-left {
        width: 80px;
        left: 10px;
        bottom: 10px;
    }
    
    .footer-rick-right {
        width: 100px;
        right: 10px;
        top: 20px;
    }
}

