:root {
    --primary-blue: #2a3990;
    --primary-red: #b71c1c;
    --text-dark: #111111;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

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

/* ========== HEADER ========== */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s, padding 0.3s;
}


header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo img {
    height: 46px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 58px;
    transition: height 0.3s;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

/* ========== HAMBURGER ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ========== NAV ========== */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color 0.3s, background-color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 70%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-red);
}

/* CTA "Nous contacter" dans le menu hamburger — masqué sur desktop */
.nav-cta-li {
    display: none;
}

/* ========== HEADER ACTIONS ========== */
.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-cta {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.35);
}

/* ========== HERO ========== */
/* L'image est chargée UNE SEULE FOIS sur .hero et ne change jamais.
   L'overlay (::before) change selon le mode — aucun rechargement d'image. */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.58), rgba(183, 28, 28, 0.52));
    z-index: 0;
}

body.dark-mode .hero::before {
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.48), rgba(183, 28, 28, 0.44));
}

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

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 10px;
    animation-delay: 5s;
}

.btn {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-blue);
    padding: 13px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin: 5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-blue);
}

.btn-submit {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    padding: 13px;
}

.btn-submit:hover {
    background-color: #1a2a6c;
}

/* ========== SECTIONS ========== */
section {
    padding: 45px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
    margin: 14px auto 18px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-blue), #1a2a6c);
    color: var(--text-light);
    font-size: 32px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-size: 18px;
}

/* ========== PRODUCTS ========== */
.products {
    background-color: #fff;
}

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

.product-category {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.product-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
}

.product-category img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.product-category:hover img {
    transform: scale(1.07);
}

.product-category h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-size: 17px;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 12px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: linear-gradient(150deg, var(--primary-blue) 0%, #1a1a4e 50%, var(--primary-red) 100%);
    color: var(--text-light);
}

.testimonials .section-title h2 {
    color: var(--text-light);
}

.testimonials .section-title h2::after {
    background: rgba(255, 255, 255, 0.65);
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

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

.testimonial-track {
    min-height: 200px;
    position: relative;
}

.testimonial {
    display: none;
    padding: 20px 30px 30px;
    animation: fadeSlide 0.45s ease;
}

.testimonial.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.75;
    opacity: 0.95;
}

.testimonial-author {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
}

.testimonial-author i {
    font-size: 26px;
    opacity: 0.75;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.testimonial-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: white;
    transform: scale(1.3);
}

/* ========== ABOUT ========== */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ========== CONTACT ========== */
.contact {
    background-color: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info,
.contact-form {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 20px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 12px;
}

.contact-info {
    font-size: 15px;
    line-height: 1.7;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 14px 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    margin-top: 2px;
}

.contact-icon i {
    color: var(--primary-blue);
    font-size: 18px;
}

.horaires {
    list-style: none;
    padding-left: 40px;
    margin-top: 4px;
}

.horaires li {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(42, 57, 144, 0.1);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

/* ========== FOOTER ========== */
footer {
    background-color: #0e1525;
    color: var(--text-light);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column > p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.copyright {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid #222;
    color: #888;
    font-size: 13px;
}

.copyright a {
    color: var(--primary-red);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ========== SOCIAL MEDIA ========== */
.social-media {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media li {
    margin: 10px 0;
}

.social-media a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #fff;
}

.social-media i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* ========== TYPEWRITER ANIMATION ========== */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4.5s steps(40, end) forwards;
    width: 0;
    font-weight: bold;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 4.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-message {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-weight: bold;
    animation: fadeInOut 4s ease forwards;
    max-width: 100%;
    text-align: center;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* ========== GALLERY MODAL ========== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gallery-content {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-images img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

.gallery-trigger {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ========== DARK MODE ========== */
body.dark-mode {
    --bg-light: #1a1a1a;
    --text-dark: #e0e0e0;
    --text-light: #2c2c2c;
    --primary-blue: #4a6cd4;
    --primary-red: #d32f2f;
    --shadow: 0 4px 8px rgba(255, 255, 255, 0.06);
}

body.dark-mode header {
    background-color: #1e1e2e;
}

body.dark-mode header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

body.dark-mode .logo-text {
    color: var(--primary-blue);
}

body.dark-mode nav ul li a {
    color: #ddd;
}

body.dark-mode .hero {
    color: #ffffff;
}

body.dark-mode .hero .btn {
    background-color: #ffffff;
    color: var(--primary-blue);
}

body.dark-mode .hero .btn-outline {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

body.dark-mode .hero .btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
}

body.dark-mode .products {
    background-color: #222;
}

body.dark-mode .testimonials {
    background: linear-gradient(150deg, #0e1630 0%, #1a0a1a 50%, #3a0000 100%);
}

body.dark-mode .contact {
    background-color: var(--bg-light);
}

body.dark-mode .contact-info,
body.dark-mode .contact-form,
body.dark-mode .service-card,
body.dark-mode .product-category {
    background-color: #2a2a3a;
    color: #e0e0e0;
}

body.dark-mode .contact-info h3,
body.dark-mode .contact-form h3,
body.dark-mode .service-content h3,
body.dark-mode .product-category h3 {
    color: var(--primary-blue);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #333;
    color: #e0e0e0;
    border-color: #555;
}

body.dark-mode .form-group label {
    color: #ccc;
}

body.dark-mode .section-title p {
    color: #aaa;
}

body.dark-mode .about-text {
    color: var(--text-dark);
}

body.dark-mode footer {
    background-color: #0a0a14;
}

body.dark-mode .footer-links a {
    color: #999;
}

body.dark-mode .footer-links a:hover {
    color: #fff;
}

body.dark-mode .social-media a {
    color: #999;
}

body.dark-mode .social-media a:hover {
    color: #fff;
}

body.dark-mode .contact-icon i {
    color: var(--primary-blue);
}

body.dark-mode .gallery-content {
    background-color: #2a2a3a;
    color: #e0e0e0;
}

body.dark-mode .close-btn {
    color: #e0e0e0;
}

body.dark-mode .menu-toggle span {
    background-color: #e0e0e0;
}

body.dark-mode .horaires li {
    color: #aaa;
}

/* ========== NAV BACKDROP MOBILE ========== */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 997;
    backdrop-filter: blur(2px);
}

.nav-backdrop.active {
    display: block;
}

/* ========== THEME TOGGLE ========== */
.theme-toggle {
    flex-shrink: 0;
    margin-left: 14px;
    background-color: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s;
}

.theme-toggle:hover {
    background-color: var(--bg-light);
}

.theme-toggle i {
    color: #333;
}

body.dark-mode .theme-toggle {
    border-color: rgba(255, 255, 255, 0.28);
}

body.dark-mode .theme-toggle i {
    color: #e0e0e0;
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-backdrop.active {
        display: block;
    }

    .header-content {
        position: relative;
    }

    .menu-toggle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Sur mobile : header-actions masqué, toggle reste visible */
    .header-actions {
        display: none;
    }

    /* Afficher "Nous contacter" dans le hamburger */
    .nav-cta-li {
        display: list-item;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    body.dark-mode .nav-cta-li {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .nav-cta-mobile {
        display: inline-block;
        background-color: var(--primary-red) !important;
        color: white !important;
        border-radius: 6px;
        padding: 11px 32px !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        text-decoration: none;
    }

    .nav-cta-mobile::after {
        display: none !important;
    }

    .logo-text {
        display: none;
    }

    .theme-toggle {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-left: 8px;
    }

    nav ul {
        position: fixed;
        left: -100%;
        top: 82px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        padding: 20px 0 30px;
        z-index: 998;
        gap: 0;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 8px 0;
    }

    nav ul li a::after {
        display: none;
    }

    body.dark-mode nav ul {
        background-color: #1e1e2e;
    }

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

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

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

    .header-content {
        padding: 10px 0;
    }

    .hero {
        padding: 90px 15px 50px;
        background-attachment: scroll; /* iOS ne supporte pas fixed */
        min-height: 100svh;
        background-size: cover;
        background-position: center top;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.4;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .fade-up {
        animation-delay: 0s;
        opacity: 1;
        transform: translateY(0);
    }

    .about-content {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 28px;
    }

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

    .btn {
        padding: 11px 22px;
        font-size: 14px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ========== RESPONSIVE — TABLETTE ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    nav ul {
        gap: 1px;
    }

    nav ul li a {
        padding: 6px 6px;
        font-size: 13px;
    }

    .btn-cta {
        padding: 9px 13px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* ========== RESPONSIVE — MOYEN DESKTOP ========== */
@media (min-width: 1025px) and (max-width: 1300px) {
    nav ul li a {
        padding: 6px 8px;
        font-size: 14px;
    }
}
