/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    /* white page */
    color: #111111;
    /* almost-black text */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.free-shipping-banner i {
    margin-right: 8px;
}

/* Navbar */
.navbar {
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 40px;
    z-index: 99;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 70px;
}

/* give each zone flex so the center block really sits in the middle */
.logo {
    flex: 1;
}

.logo img {
    height: 50px;
}

/* center the main menu between logo and search/cart */
.nav-menu {
    flex: 2;
    /* center block bigger */
    display: flex;
    justify-content: center;
    /* center links inside */
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #111111;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #000000;
}

.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    width: 250px;
    outline: none;
    transition: all 0.3s;
}

.search-bar input:focus {
    border-color: #f7931e;
    width: 300px;
}

.search-bar i {
    position: absolute;
    right: 15px;
    color: #999;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f7931e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar-logo-link,
.navbar .logo a,
.logo a.navbar-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-logo-text {
    font-family: "Angelica Serif", "Angelica Pro", serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: #000;
    /* black text */
}

/* small screens: avoid crowding */
@media (max-width: 768px) {
    .navbar-logo-text {
        font-size: 1.1rem;
    }
}


/* About section under categories */
.about-section {
    padding: 40px 0 20px;
    text-align: center;
}

.about-section h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #333;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 0.95rem;
}

/* Category Section (top 3 gender cards) */
.category-section {
    padding: 80px 0 40px;
    background: #ffffff;
    color: #111111;
}

.category-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.category-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    justify-content: center;
    gap: 80px;
    transition: transform 0.5s ease-in-out;
}


.category-card {
    min-width: 300px;
    margin: 0 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

/* Collection sections (titles) */
.collection-section {
    padding: 60px 0;
}

.collection-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #333;
}

/* HOME subcategory cards (Femme / Homme / Enfant) */
.home-subcats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.home-subcat-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #fff;
    background: #000;
}

.home-subcat-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home-subcat-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.home-subcat-card:hover img {
    transform: scale(1.05);
}

/* Product Cards (used on listing pages and modals) */
.product-carousel {
    overflow: hidden;
}

.product-card {
    min-width: 280px;
    margin: 0 15px;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f7931e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-badge.top {
    background: #28a745;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f7931e;
    margin-bottom: 10px;
}

.product-brand {
    color: #666;
    font-size: 0.9rem;
}

/* product card buttons */
.product-actions {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-product-link,
.btn-add-cart,
.btn-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-product-link {
    background: #fff;
    border-color: #ddd;
    color: #333;
}

.btn-product-link:hover {
    border-color: #f7931e;
    color: #f7931e;
}

.btn-add-cart {
    background: #f7931e;
    color: #fff;
}

.btn-add-cart:hover {
    background: #ff8c00;
}

.btn-buy-now {
    background: #28a745;
    color: #fff;
}

.btn-buy-now:hover {
    background: #23923b;
}

.product-qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
}

.product-qty .qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.product-qty .qty-value {
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Filters */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.filter-tab {
    padding: 12px 24px;
    border: 2px solid #eee;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-tab.active,
.filter-tab:hover {
    border-color: #f7931e;
    background: #f7931e;
    color: white;
}

.filter-options {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

#priceFilter {
    width: 200px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close:hover {
    color: #333;
}

.product-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
}

.thumbnail.active {
    border-color: #f7931e;
}

.product-details .product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #f7931e;
    margin-bottom: 20px;
}

.variant-group {
    margin-bottom: 15px;
}

.variant-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.variant-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 8px;
}

.add-to-cart-btn {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.add-to-cart-btn:hover {
    transform: scale(1.02);
}

/* Checkout page */
.checkout-wrapper {
    padding: 60px 0;
}

.checkout-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 30px;
}

.checkout-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
}

.checkout-summary {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

/* lines + controls in checkout/cart */
.checkout-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.cart-line-title {
    font-size: 0.95rem;
    color: #333;
    flex: 1;
    margin-right: 10px;
}

.cart-line-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.cart-line-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-left: 4px;
}

.cart-line-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #e03131;
    font-size: 16px;
    margin-left: 4px;
}

.checkout-summary-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.95rem;
}

.checkout-summary-footer>div {
    display: flex;
    justify-content: space-between;
}

.checkout-total-row {
    font-weight: 700;
    margin-top: 4px;
}

.btn-clear-cart {
    margin-top: 10px;
    align-self: flex-start;
    background: #f03e3e;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-clear-cart:hover {
    background: #d63333;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
}

.checkout-form input:focus {
    border-color: #f7931e;
}

.checkout-btn {
    margin-top: 10px;
    background: #28a745;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background .2s, transform .2s;
}

.checkout-btn:hover {
    background: #23923b;
    transform: translateY(-1px);
}

#orderMsg {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #333;
}

/* Footer */
/* ---------- Footer ---------- */

.site-footer {
    background: #111111;
    color: #f5f5f5;
    padding: 40px 0 20px;
    font-size: 0.95rem;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    /* left / center / right */
    gap: 40px;
    align-items: flex-start;
}

/* left: logo + description */
.footer-logo-block img {
    max-width: 140px;
    margin-bottom: 10px;
}

.footer-logo-block p {
    margin: 0;
    color: #dcdcdc;
}

/* center: contact + link groups */
.footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.footer-contact p {
    margin: 0 0 4px;
    color: #e0e0e0;
}

.footer-contact i {
    margin-right: 6px;
}

.footer-links-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.footer-links-col h4 {
    margin: 0 0 6px;
    font-size: 0.98rem;
}

.footer-links-col a {
    display: block;
    color: #f5f5f5;
    text-decoration: none;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    text-decoration: underline;
}

/* right: social icons */
.footer-social-block h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #333333;
    /* dark circle */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid #333333;
    color: #d0d0d0;
    margin-top: 24px;
    padding-top: 12px;
    text-align: center;
    font-size: 0.85rem;
    color: #cfcfcf;
}

.footer-bottom a {
    color: #f7931e;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links-groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* center socials + contact on mobile */
    .footer-social-block {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-links-groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 12px;
    }

    .site-footer {
        padding: 30px 0 16px;
    }
}



.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f7931e;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    opacity: 0.7;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-logo-text {
    font-family: "Angelica Serif", "Angelica Pro", serif;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: #ffffff;
}

/* on very small screens, stack nicely */
@media (max-width: 600px) {
    .footer-logo-link {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .product-modal {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        flex-direction: column;
    }

    .checkout-card {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 15px;
    }

    /* home subcats become horizontal carousel */
    .home-subcats {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
    }

    .home-subcat-card {
        min-width: 180px;
        scroll-snap-align: start;
    }
}

/* FILTER TABS (category buttons All / Parfums / Lunettes / etc.) */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 25px;
}

.filter-tab {
    border: 1px solid #eee;
    background: #ffffff;
    color: #111111;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.filter-tab:hover {
    border-color: #000000;
    color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.filter-tab.active {
    background: #f7931e;
    border-color: #f7931e;
    color: #fff;
    box-shadow: 0 6px 16px rgba(247, 147, 30, 0.35);
}

/* FILTER OPTIONS (brand select + price slider) */
.filter-options {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

#brandFilter {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.95rem;
}

/* price slider */
#priceFilter {
    width: 220px;
    accent-color: #f7931e;
    /* modern browsers */
}

#priceValue {
    font-weight: 600;
    color: #555;
}

@media (max-width: 768px) {
    .category-carousel {
        overflow-x: auto;
    }

    .category-carousel .carousel-track {
        justify-content: flex-start;
        /* show first card */
        gap: 16px;
        width: max-content;
        padding: 0 16px;
    }

    .category-card {
        min-width: 220px;
    }
}


.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

/* already have input + icon styles */

#searchSuggestions {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 50;
    padding: 6px 0;
    display: none;
    max-height: 260px;
    overflow-y: auto;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.search-suggestion-item img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
}

.search-suggestion-item span {
    flex: 1;
    color: #333;
}

.search-suggestion-empty {
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #666;
}

/* partners section */
.marques-section {
    padding: 80px 0 60px;
    background: #fafafa;
}

.marques-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.marques-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.marque-logo {
    background: #fff;
    border-radius: 14px;
    padding: 18px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 160px;
    text-align: center;
}

.marque-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

/* FAQ section */
.faq-section {
    padding: 70px 0 90px;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #333;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.faq-question i {
    color: #777;
    transition: transform 0.2s;
}

/* optional small rotation when open: handled inline from JS if you like */

/* answer panel uses max-height from JS */
.faq-answer {
    padding: 0 22px 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    font-size: 0.95rem;
    color: #555;
}

.faq-answer.open {
    padding-bottom: 18px;
}

@media (max-width: 768px) {
    .marques-carousel {
        gap: 16px;
    }

    .marque-logo {
        min-width: 140px;
        padding: 14px 18px;
    }
}

/* partners section */
.marques-section {
    padding: 80px 0 60px;
    background: #fafafa;
}

.marques-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.marques-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.marque-logo {
    background: #fff;
    border-radius: 14px;
    padding: 18px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 160px;
    text-align: center;
}

.marque-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

/* FAQ section */
.faq-section {
    padding: 70px 0 90px;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #333;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.faq-question i {
    color: #777;
    transition: transform 0.2s;
}

/* optional small rotation when open: handled inline from JS if you like */

/* answer panel uses max-height from JS */
.faq-answer {
    padding: 0 22px 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    font-size: 0.95rem;
    color: #555;
}

.faq-answer.open {
    padding-bottom: 18px;
}

@media (max-width: 768px) {
    .marques-carousel {
        gap: 16px;
    }

    .marque-logo {
        min-width: 140px;
        padding: 14px 18px;
    }
}

/* Contact page */
.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    /* left info / right form */
    gap: 60px;
}

/* left column */
.contact-info-block h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #444;
}

.contact-info-item i {
    font-size: 1.1rem;
    color: #333;
    margin-top: 3px;
}

.contact-info-item .label {
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-social-title {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    color: #ffffff;
    font-size: 0.9rem;
}

/* right column (form) */
.contact-form-block h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-form label {
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #333;
}

.contact-submit-btn {
    margin-top: 10px;
    width: 100%;
    border: none;
    border-radius: 6px;
    background: #333;
    color: #fff;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn i {
    font-size: 0.95rem;
}

.contact-success {
    margin-top: 12px;
    color: #1c8c3a;
    font-size: 0.95rem;
}

/* mobile */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Nos Marques page */
.brands-page {
    padding: 80px 0 40px;
    background: #fff;
}

.brands-page .container {
    margin-bottom: 0;
}


.brands-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.brands-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px 32px;
}

.brand-card {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 26px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrap {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-logo-wrap img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.brand-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

@media (max-width: 768px) {
    .brands-page {
        padding: 60px 0 70px;
    }

    .brands-grid {
        gap: 18px 16px;
    }
}

.related-products {
    padding: 60px 0 80px;
    background: #ffffff;
}

.related-products h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 30px;
    color: #111111;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.related-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    color: #111111;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    padding: 14px 16px 16px;
}

.related-info h3 {
    font-size: 0.98rem;
    margin-bottom: 6px;
    color: #111111;
}

.related-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000000;
}