   /* Variables CSS identiques à votre site */
        :root {
            --primary-gradient: linear-gradient(135deg, #66a4ea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #93c0fb 0%, #57a9f5 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-gradient: linear-gradient(135deg, #0c0c0c 60%, #1a1a1a 50%, #2d2d2d 100%);
            --card-gradient: linear-gradient(135deg, #ffffff1a 0%, rgba(255,255,255,0.05) 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-accent: #00f2fe;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;



    background: 
        radial-gradient(circle at 20% 50%, #66afea26 0%, transparent 50%),   
        radial-gradient(circle at 80% 20%, #4facfe26 0%, transparent 50%), 
        radial-gradient(circle at 40% 80%, #367fbb1a 0%, transparent 50%),  
        linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);

    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(102, 126, 234, 0.03) 102px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(79, 172, 254, 0.03) 102px);
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

/* Animation de la grille */
@keyframes gridMove {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 200px 200px, 200px 200px; }
}





/* ===================== Hero ===================== */
/* Hero Banner */
.hero-banner {
    min-height: 110vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 80%;  
    margin: 0 auto;   
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Image */
.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-container {
    width: 650px;       
    height: 650px;     
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-real-image {
    width: 100%;        
    max-width: 500px;  
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: floatSlow 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(43, 104, 173, 0.4);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(102, 126, 234, 0.03) 102px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(79, 172, 254, 0.03) 102px);
    animation: gridMove 20s linear infinite;
}



.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #2760aa 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

.hero-text .highlight {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-text p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-shop,
.btn-status {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-shop {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 15px 50px rgba(79, 172, 254, 0.4);
}

.btn-status {
    background: var(--glass-bg);
    color: white;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn-shop::before,
.btn-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-shop:hover::before,
.btn-status:hover::before {
    left: 100%;
}

.btn-shop:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(79, 172, 254, 0.6);
}

.btn-status:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255,255,255,0.2);
}




.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--text-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 20s linear infinite;
}

/* Floating Bubbles */
.floating-container .bubble-bg {
    position: absolute;
    width: 650PX;
    height: 650PX;
    background: 
        radial-gradient(circle at 30% 30%, rgba(102, 164, 234, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(79, 172, 254, 0.2) 0%, transparent 40%),
        conic-gradient(from 0deg, rgba(87, 195, 245, 0.2), rgba(102, 181, 234, 0.2), rgba(79, 172, 254, 0.2), rgba(87, 169, 245, 0.2));
    border-radius: 50%;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.menu-placeholder {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 400px;
    background: var(--card-gradient);
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatSlow 12s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
}

.placeholder-content {
    text-align: center;
    color: var(--text-primary);
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================== Top Sales ===================== */
.top-sales {
    padding: 120px 0;

    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title i {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

.section-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: 
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.733) 0%, transparent 90%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.795) 0%, transparent 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-sales-grid {
    max-width: 80%;  
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.top-sale-card {
    background: var(--card-gradient);
    border-radius: 15px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    overflow: hidden;

    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.top-sale-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(79, 172, 254, 0.3);
    border-color: rgba(79, 172, 254, 0.5);
}

.top-sale-image-container {
    position: relative;
    height:300px;
    overflow: hidden;
}

.top-sale-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.top-sale-card:hover .top-sale-bg-image {
    transform: scale(1.1);
}

.top-sale-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.8) 0%, transparent 60%);
}

.top-sale-content {
    padding: 2rem;
        text-decoration: none;
}

.top-sale-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
        text-decoration: none;
    color: var(--text-primary);
}

.top-sale-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
        text-decoration: none;
    font-size: 1rem;
}

.btn-buy-direct {
    width: 100%;
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
        text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-buy-direct:hover {
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
    transform: translateY(-3px);
}

.shop-redirect {
    text-align: center;
    margin-top: 60px;
}

.btn-shop-redirect {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--glass-bg);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.btn-shop-redirect:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

/* ===================== About Section ===================== */
.about-section {
    padding: 120px 0;
background-color: #0c0c0c49;
}

.about-content {
    max-width: 80%;  
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--text-accent);
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    background: var(--card-gradient);
    border-radius: 25px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 3rem;
    text-align: center;
    animation: floatSlow 8s ease-in-out infinite;
}

.about-card i {
    font-size: 4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: block;
}

/* ===================== Stats Section ===================== */
.stats {
    padding: 120px 0;

}

.stats-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-container {
      max-width: 80%;  
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.counter {
    background: var(--card-gradient);
    border-radius: 25px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.2);
}

.icon-box {
    margin-bottom: 2rem;
}

.icon-box i {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.number-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.counter-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.plus-symbol {
    font-size: 2rem;
    color: var(--text-accent);
    font-weight: 700;
}

.counter p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}



/* ===================== Benefits Section ===================== */
.benefits {
    padding: 120px 0;

    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(102, 164, 234, 0.02) 82px),
        repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(79, 172, 254, 0.02) 82px);
    animation: gridMove 25s linear infinite;
}

.card-container {
    max-width: 80%;  
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.benefits .card {
    background: var(--card-gradient);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.benefits .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.8s ease;
}

.benefits .card:hover::before {
    left: 100%;
}

.benefits .card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 
        0 30px 80px rgba(79, 172, 254, 0.25),
        0 10px 30px rgba(102, 164, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefits .card .icon {
    font-size: 4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: block;
    animation: pulse 3s infinite;
    position: relative;
}

.benefits .card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #93c0fb 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.benefits .card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefits .card:hover h3::after {
    opacity: 1;
}

.benefits .card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Floating animations for individual cards */
.benefits .card:nth-child(1) {
    animation: floatSlow 8s ease-in-out infinite;
}

.benefits .card:nth-child(2) {
    animation: floatSlow 8s ease-in-out infinite 1s;
}

.benefits .card:nth-child(3) {
    animation: floatSlow 8s ease-in-out infinite 2s;
}

/* Second row animations */
.card-container:nth-child(3) .card:nth-child(1) {
    animation: floatSlow 8s ease-in-out infinite 3s;
}

.card-container:nth-child(3) .card:nth-child(2) {
    animation: floatSlow 8s ease-in-out infinite 4s;
}

.card-container:nth-child(3) .card:nth-child(3) {
    animation: floatSlow 8s ease-in-out infinite 5s;
}

/* Glow effect on hover */
.benefits .card:hover {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%),
        var(--card-gradient);
}

/* Icon specific styles for different types */
.benefits .card .bx {
    display: block;
    text-align: center;
}

.benefits .card .fas {
    display: block;
    text-align: center;
}


/* ===================== Animations ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes floatSlow {
    0%,100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0px); opacity:0; }
    10% { opacity:0.6; }
    90% { opacity:0.6; }
    100% { transform: translateY(-100px) translateX(50px); opacity:0; }
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(0.8); }
}

@keyframes gridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(100px,100px); }
}

/* ===================== Media Queries ===================== */








@media (max-width: 600px) {

    .hero-banner{
margin-top: 20% !important;
    }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-container,
  .menu-placeholder {
    width: 100%;
    height: auto;
    max-width: 320px;
  }

  .top-sales {
    padding: 60px 0;
  }

  .top-sales-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .stats-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .card-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .benefits {
    padding: 60px 0;
  }
}

/* 📲 Écrans moyens (tablettes : 601px → 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 0 2rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .top-sales-grid {
    max-width: 90%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .about-content {
    max-width: 90%;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .stats-container {
    max-width: 90%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .card-container {
    max-width: 90%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

/* 💻 Grands écrans (ordinateurs ≥ 1025px et ≤ 2000px) */
@media (min-width: 1025px) and (max-width: 2000px) {
  .top-sales-grid {
    max-width: 82% !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
  }

  .stats-container {
    max-width: 82% !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .card-container {
    max-width: 82% !important;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }

  .about-content {
    max-width: 82% !important;
    grid-template-columns: 1fr 1fr;
  }
}



/* ===================== Media Queries ===================== */

/* === Écrans larges (jusqu'à 1800px) === */
@media (max-width: 1800px) {
  .top-sales-grid {
    max-width: 75% !important;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)) !important;
  }

  .stats-container,
  .card-container,
  .about-content {
    max-width: 75% !important;
  }
}

/* === Écrans desktop standard (jusqu'à 1400px) === */
@media (max-width: 1400px) {
  .top-sales-grid {
    max-width: 85% !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  }

  .stats-container,
  .card-container,
  .about-content {
    max-width: 85% !important;
  }

  .hero-content {
    grid-template-columns: 1fr; /* stack image et texte */
    gap: 3rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }
}

/* === Tablettes (jusqu'à 992px) === */
@media (max-width: 992px) {
  .top-sales-grid {
    max-width: 90% !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .card-container {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* === Mobiles (jusqu'à 768px) === */
@media (max-width: 768px) {
  .top-sales-grid {
    max-width: 95% !important;
    grid-template-columns: 1fr !important;
  }

  .stats-container,
  .card-container {
    grid-template-columns: 1fr !important;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === Très petits mobiles (jusqu'à 480px) === */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }


  .btn-shop,
  .btn-status {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }


  .menu-placeholder {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;

}

.hero-real-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: floatSlow 6s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(43, 104, 173, 0.4);
}

}
