/* ====================================
RESET
==================================== */

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

body {
    font-family: "Montserrat", sans-serif;
}



/* ====================================
    HEADER (MOBILE)
    ==================================== */

.header {
    width: 100%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #147a83;
    padding: 15px;
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */

.logo img {
    height: 40px;
    border-radius: 8px;
}

/* LOUPE MOBILE */

.search-mobile {
    color: black;
    font-size: 20px;
    cursor: pointer;
}

/* BURGER */

.burger {
    font-size: 28px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

/* SEARCH MOBILE — OVERLAY */

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.search-overlay.active {
    display: flex;
    flex-direction: column;
}

.search-overlay-box {
    background: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-overlay-box input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    /* 16px évite le zoom auto sur iOS */
    font-family: inherit;
}

.search-overlay-close {
    color: white;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 8px;
    line-height: 1;
}

.search-overlay-results {
    background: white;
    max-height: 60vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* La barre desktop reste inchangée */
.search {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #147a83;
    padding: 10px;
}

.search input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: black;
}

.search.active {
    display: block;
}

/* ICONS — visibles sur mobile aussi */

.icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icons i {
    font-size: 18px;
    cursor: pointer;
    color: #0d1f24;
}

.icons a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}


.icons a:hover i {
    color: #f5f5f5;
}

/* DROPDOWN RECHERCHE */

.search {
    position: relative;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    min-width: 320px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    z-index: 999;
    overflow: hidden;
}

.search-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f5fafa;
}

.search-result-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
    min-width: 0;
}

.search-result-brand {
    font-size: 11px;
    font-weight: 600;
    color: #147a83;
}

.search-result-name {
    font-family: "Saira", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0d1f24;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-family: "Saira", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0d1f24;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-no-result {
    padding: 16px 14px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

/* BADGE COMPTEUR PANIER */

.panier-icon-wrap {
    position: relative;
}

.panier-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
    animation: badge-pop 0.25s ease;
}

@keyframes badge-pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ====================================
    HEADER TABLETTE
    ==================================== */

@media (min-width:768px) {

    .burger {
        display: none;
    }

    .search-mobile {
        display: none;
    }

    .header-top {
        padding: 20px 30px;
        gap: 20px;
    }

    /* SEARCH DESKTOP */

    .search {
        display: block;
        position: relative;
        background: none;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 450px;
        padding: 0;
        margin: 0 auto;
    }

    .search input {
        padding: 10px 15px 10px 40px;
    }

    /* ICONS desktop — taille plus grande */
    .icons i {
        font-size: 20px;
    }

}



/* ====================================
    HEADER DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .logo img {
        height: 80px;
    }

    .header-top {
        padding: 20px 100px;
    }

    .search input {
        padding: 20px 0px 20px 20px;
    }

    .icons {
        gap: 30px;
    }

    .icons i {
        font-size: 25px;
        cursor: pointer;
        color: #0d1f24;
    }

}



/* ====================================
    MENU (MOBILE)
    ==================================== */

.menu {
    display: none;
    flex-direction: column;
    background: #f5f5f5;
}

.menu a {
    padding: 15px;
    text-decoration: none;
    color: #333;
    text-align: center;
    font-family: "Saira", sans-serif;
}

.menu.active {
    display: flex;
}



/* ====================================
    MENU TABLETTE
    ==================================== */

@media (min-width:768px) {

    .menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        padding: 20px;
        border-bottom: #147a83 3px solid;
    }

    .menu a {
        padding: 14px 22px;
        border-radius: 8px;
        transition: all 0.25s ease;
    }

    /* Hover */
    .menu a:hover {
        background: rgba(20, 122, 131, 0.1);
    }

    /* Actif */
    .menu a.menu-active {
        background: #147a83;
        color: white;
        transform: translateY(-2px);
    }

}



/* ====================================
    MENU DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .menu {
        gap: 80px;
        border-bottom: #147a83 3px solid;
    }
}

/* ====================================
    MENU GRAND DESKTOP
    ==================================== */

@media (min-width:1200px) {

    .menu {
        gap: 130px;
        border-bottom: #147a83 3px solid;
    }
}



/* ====================================
    HERO (MOBILE)
    ==================================== */

.hero {
    width: 100%;
}

.hero-slide {
    position: relative;
}

.hero-video {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    max-width: 300px;
}

.hero-text h1 {
    font-family: "Saira";
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 14px;
}


/* ====================================
    HERO TABLETTE
    ==================================== */

@media (min-width:768px) {

    .hero-video {
        height: 500px;
    }

}


/* ====================================
    HERO DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .hero-video {
        height: 700px;
    }

    .hero-text h1 {
        font-size: 70px;
        line-height: 70px;
    }

    .hero-text p {
        font-size: 18px;
        width: 450px;
        line-height: 1.5;
        margin-bottom: 30px;
        margin-left: 5px;
    }

}

/* ====================================
CATEGORIES HEADER (MOBILE)
==================================== */

.categories-header {
    background: #f5f5f5;
    padding: 30px 20px;
    margin-top: 20px;
}

.categories-title {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.categories-title span {
    color: #147a83;
    font-weight: 700;
    font-size: 28px;
    font-family: "Saira", sans-serif;
}


/* ====================================
    CATEGORIES HEADER TABLETTE
    ==================================== */

@media (min-width:768px) {
    .categories-header {
        padding: 40px;
        margin-top: 40px;
    }

    .categories-title {
        font-size: 20px;
    }

    .categories-title span {
        color: #147a83;
        font-weight: 700;
        font-size: 30px;
    }
}


/* ====================================
    CATEGORIES HEADER DESKTOP
    ==================================== */

@media (min-width:1024px) {
    .categories-header {
        padding: 50px 60px;
        margin-top: 40px;
    }

    .categories-title {
        font-size: 26px;
    }

    .categories-title span {
        color: #147a83;
        font-weight: 700;
        font-size: 40px;
    }
}


/* ====================================
    CATEGORIES CONTENT (MOBILE)
    ==================================== */

.categories-content {
    background: #ffffff;
    padding: 40px 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* On force l'ordre d'affichage sur mobile (Image toujours en haut) */
.categories-grid>div:nth-child(1) {
    order: 1;
}

/* Image Trottinette */
.categories-grid>div:nth-child(2) {
    order: 2;
}

/* Texte Trottinette */
.categories-grid>div:nth-child(3) {
    order: 4;
}

/* Texte Vélo (passe en bas) */
.categories-grid>div:nth-child(4) {
    order: 3;
}

/* Image Vélo (passe en haut) */
.categories-grid>div:nth-child(5) {
    order: 5;
}

/* Image Accessoires */
.categories-grid>div:nth-child(6) {
    order: 6;
}

/* Texte Accessoires */
.categories-grid>div:nth-child(7) {
    order: 8;
}

/* Texte Pièces (passe en bas) */
.categories-grid>div:nth-child(8) {
    order: 7;
}

/* Image Pièces (passe en haut) */


/* ====================================
    IMAGES (MOBILE - BORDURES 4 CÔTÉS)
    ==================================== */

.category-image {
    padding: 6px;
    background: white;
}

.category-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Trottinette */
.category-image:nth-child(1) {
    border: 10px solid #147a83;
    border-radius: 10px;
}

/* Vélo */
.category-image:nth-child(4) {
    border: 10px solid #5b7dd8;
    border-radius: 10px;
}

/* Accessoires */
.category-image:nth-child(5) {
    border: 10px solid #147a83;
    border-radius: 10px;
}

/* Pièces */
.category-image:nth-child(8) {
    border: 10px solid #777;
    border-radius: 10px;
}


/* ====================================
    TEXTES & BOUTONS
    ==================================== */

.category-text {
    text-align: center;
    padding: 20px;
}

.category-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
}

.category-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: #0d1f24;
    color: white;
    text-decoration: none;
}

.btn-green {
    background: #147a83;
}

.btn-blue {
    background: #5b7dd8;
}

.btn-grey {
    background: #777;
}


/* ====================================
    CATEGORIES TABLETTE
    ==================================== */

@media (min-width:768px) {

    .categories-content {
        padding: 60px 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .category-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .categories-grid>div {
        order: 0 !important;
    }

    .category-image:nth-child(1) {
        border-right: none;
        border-radius: 10px 0 0 10px;
    }

    .category-image:nth-child(4) {
        border-left: none;
        border-radius: 0 10px 10px 0;
    }

    .category-image:nth-child(5) {
        border-right: none;
        border-radius: 10px 0 0 10px;
    }

    .category-image:nth-child(8) {
        border-left: none;
        border-radius: 0 10px 10px 0;
    }

    .category-text {
        text-align: center;
        padding: 40px;
    }

    .category-text h3 {
        font-size: 26px;
    }

    .category-text p {
        font-size: 16px;
    }

}


/* ====================================
    CATEGORIES DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .categories-content {
        padding: 80px 60px;
    }

    .categories-grid {
        max-width: 1200px;
        margin: auto;
        gap: 60px;
    }

    .category-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .category-text h3 {
        font-size: 30px;
    }

}

/* ====================================
SERVICES HEADER (MOBILE)
==================================== */

.services-header {
    background: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: "Saira", sans-serif;
    font-weight: 600;
}

.services-header p {
    margin: 0 auto;
    line-height: 1.5;
}



/* ====================================
    SERVICES HEADER TABLETTE
    ==================================== */

@media (min-width:768px) {

    .services-header {
        padding: 50px 40px;
    }

    .services-header h2 {
        font-size: 32px;
    }


}



/* ====================================
    SERVICES HEADER DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .services-header {
        padding: 40px 40px;
    }

    .services-header h2 {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .services-header p {
        font-size: 18px;
        max-width: 1200px;
    }

}



/* ====================================
    SERVICES CONTENT (MOBILE)
    ==================================== */

.services-content {
    background: #147a83;
    padding: 40px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}



/* CARTES */

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}



/* OVERLAY SOMBRE */

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}


/* TEXTE SUR IMAGE */

.service-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.service-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: start;
}

.service-text p {
    font-size: 14px;
    max-width: 200px;
    text-align: start;
}



/* ====================================
    SERVICES TABLETTE
    ==================================== */

@media (min-width:768px) {

    .services-content {
        padding: 60px 40px;
    }

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

    .service-card img {
        height: 320px;
    }

    .service-text h3 {
        font-size: 24px;
        text-align: start;
    }

    .service-text p {
        font-size: 14px;
        text-align: start;
    }

}



/* ====================================
    SERVICES DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .services-content {
        padding: 80px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 70px;
        max-width: 1200px;
        margin: auto;
    }

    .service-card img {
        height: 450px;

    }

    .service-text h3 {
        font-size: 26px;
        text-align: start;
    }

    .service-text p {
        font-size: 16px;
        text-align: start;
    }

}


/* ====================================
SHOPS HEADER (MOBILE)
==================================== */

.shops-header {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.shops-container {
    max-width: 1200px;
    margin: auto;
}

.shops-header h2 {
    font-size: 34px;
    color: #147a83;
    margin-bottom: 5px;
    font-family: "Saira", sans-serif;
}

.shops-header p {
    max-width: 1000px;
    margin: auto;
    line-height: 1.6;
    font-size: 18px;
}


/* ====================================
    SHOPS CONTENT (MOBILE)
    ==================================== */

.shops-content {
    background: #ffffff;
    padding: 40px 20px;
}

.shops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}


/* ====================================
    IMAGES
    ==================================== */

.shop-image {
    padding: 8px;
    background: white;
    border-radius: 10px;
}

.shop-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

/* bordures */
.shop-border-left {
    border: 10px solid #0d1f24;
    border-radius: 10px;
}

.shop-border-right {
    border: 10px solid #147a83;
    border-radius: 10px;
}


/* ====================================
    TEXTES
    ==================================== */

.shop-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.shop-text h3 {
    font-size: 34px;
    font-family: "Saira", sans-serif;
    color: #0d1f24;
}


/* ====================================
    BOUTONS
    ==================================== */

.btn-shop-brest {
    padding: 14px 28px;
    border-radius: 8px;
    background: #0d1f24;
    color: white;
    text-decoration: none;
}

.btn-shop-lorient {
    padding: 14px 28px;
    border-radius: 8px;
    background: #147a83;
    color: white;
    text-decoration: none;
}


/* ====================================
    FLECHES (Cachées sur mobile)
    ==================================== */

.arrow-brest {
    width: 90px;
    display: none;
}

.arrow-lorient {
    width: 130px;
    display: none;
}


/* ====================================
    RÉORGANISATION BOUTIQUES (MOBILE)
    ==================================== */

@media (max-width: 767px) {
    .shops-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* On gère l'espacement avec des marges personnalisées ci-dessous */
    }

    .shop-text {
        display: contents;
        /* Désintègre la boîte pour libérer les éléments */
    }

    /* --- BREST --- */
    .shops-grid>.shop-text:nth-child(2) h3 {
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }

    .shops-grid>.shop-image:nth-child(1) {
        order: 2;
        margin-bottom: 30px;
    }

    .btn-shop-brest {
        order: 3;
        align-self: center;
        margin-bottom: 70px;
    }

    /* --- LORIENT --- */
    .shops-grid>.shop-text:nth-child(3) h3 {
        order: 4;
        text-align: center;
        margin-bottom: 20px;
    }

    .shops-grid>.shop-image:nth-child(4) {
        order: 5;
        margin-bottom: 30px;
    }

    .btn-shop-lorient {
        order: 6;
        align-self: center;
    }
}


/* ====================================
    TABLETTE
    ==================================== */

@media (min-width:768px) {

    .shops-header {
        padding: 70px 40px;
    }

    .shops-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 70px;
    }

    .shop-text h3 {
        font-size: 35px;
        font-family: "Saira", sans-serif;
        color: #0d1f24;
    }

    .shop-image img {
        height: 300px;
    }

    /* On réaffiche les flèches sur tablette et ordinateur */
    .arrow-brest {
        width: 140px;
        display: block;
    }

    .arrow-lorient {
        width: 110px;
        display: block;
    }

}


/* ====================================
    DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .shops-header {
        padding: 60px 40px;
    }

    .shops-content {
        padding: 80px 20px;
    }

    .shops-grid {
        max-width: 1200px;
        margin: auto;
        gap: 80px;
    }

    .shop-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .shops-container h2 {
        font-size: 40px;
        font-family: "Saira", sans-serif;
        color: #147a83;
    }

    .shop-text h3 {
        font-size: 42px;
        font-family: "Saira", sans-serif;
        color: #0d1f24;
        font-weight: 500;
    }

    .shop-image img {
        height: 320px;
    }

    .arrow-brest {
        width: 200px;
    }

    .arrow-lorient {
        width: 200px;
    }

    .btn-shop-brest {
        padding: 20px 30px;
        border-radius: 8px;
        background: #0d1f24;
        color: white;
        text-decoration: none;
        font-size: 20px;
    }

    .btn-shop-lorient {
        padding: 20px 30px;
        border-radius: 8px;
        background: #147a83;
        color: white;
        text-decoration: none;
        font-size: 20px;
    }

}

/* ====================================
LOCATION HEADER (MOBILE)
==================================== */

.location-header {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.location-header h2 {
    font-size: 32px;
    font-family: "Saira", sans-serif;
}


/* ====================================
    LOCATION CONTENT (MOBILE)
    ==================================== */

.location-content {
    background: #ffffff;
    padding: 40px 20px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* ====================================
    RÉORGANISATION HORAIRES/MAP (MOBILE UNIQUEMENT)
    ==================================== */
@media (max-width: 767px) {

    /* --- LORIENT --- */
    .hours-lorient {
        order: 1;
    }

    .map-lorient {
        order: 2;
        margin-bottom: 30px;
    }

    /* Marge pour séparer de Brest */

    /* --- BREST --- */
    .hours-brest {
        order: 3;
    }

    .map-brest {
        order: 4;
    }
}


/* ====================================
MAP
==================================== */

.map iframe {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    border: 6px solid #147a83;
}


/* ====================================
MAP TABLETTE
==================================== */

@media (min-width:768px) {

    .map iframe {
        height: 350px;
    }
}


/* ====================================
    MAP DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .map iframe {
        height: 400px;
    }
}



/* ====================================
    HORAIRES
    ==================================== */

.hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    gap: 12px;
}

.hours h3 {
    font-size: 28px;
    font-family: "Saira", sans-serif;
    margin-bottom: 20px;
}

.hours p,
/* Ajouté pour sécuriser si tu utilises des <p> */
.hours li {
    line-height: 1.6;
}

.phone {
    margin-top: 10px;
    font-weight: 600;
}



/* ====================================
    LOCATION TABLETTE
    ==================================== */

@media (min-width:768px) {

    .location-header {
        padding: 70px 40px;
    }

    .location-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .hours h3 {
        font-size: 32px;
    }

    .hours p,
    /* Ajouté pour sécuriser si tu utilises des <p> */
    .hours li {
        line-height: 1.2;
    }

}


/* ====================================
    LOCATION DESKTOP
    ==================================== */

@media (min-width:1024px) {

    .location-header {
        padding: 40px 40px;

    }

    .location-header h2 {
        font-size: 40px;
        font-family: "Saira", sans-serif;
    }


    .location-content {
        padding: 80px 20px;
    }

    .location-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 80px;
        max-width: 1200px;
        margin: auto;
        align-items: center;
    }

    /* ligne 1 */

    .map-lorient {
        grid-column: 1;
        grid-row: 1;
    }

    .hours-lorient {
        grid-column: 2;
        grid-row: 1;
    }

    /* ligne 2 */

    .hours-brest {
        grid-column: 1;
        grid-row: 2;
    }

    .map-brest {
        grid-column: 2;
        grid-row: 2;
    }

    .hours h3 {
        font-size: 30px;
    }

    .hours p,
    /* Ajouté pour sécuriser si tu utilises des <p> */
    .hours li {
        line-height: 1.6;
    }


}


/* ====================================
PARTNERS HEADER
==================================== */

.partners-header {
    background: #f5f5f5;
    padding: 40px 40px;
    text-align: center;
    margin-bottom: 20px;
}

.partners-header h2 {
    font-size: 32px;
    font-family: "Saira", sans-serif;
    color: #147a83;
    margin-bottom: 10px;
}

.partners-header p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}


/* ====================================
PARTNERS SECTION
==================================== */

.partners-content {
    background: #032b35;
    position: relative;
    padding: 60px 0;
}

.partners-container {
    max-width: 1200px;
    margin: auto;
}

.partners-slider {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 10px 0;
}


/* ====================================
GRADIENT EDGES
==================================== */

.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #032b35, transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #032b35, transparent);
}


/* ====================================
SWIPER
==================================== */

.swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ====================================
PARTNER CARD
==================================== */

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    gap: 10px;
}

.partner:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* ====================================
LOGO CIRCLE
==================================== */

.logo-circle {
    width: 120px;
    height: 120px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 65%;
    object-fit: contain;
}

/* ====================================
TEXT
==================================== */

.partner p {
    font-size: 14px;
    margin-top: 8px;
}


/* ====================================
TABLETTE
==================================== */

@media (min-width:768px) {

    .partners-header {
        padding: 50px 40px;
        margin-bottom: 30px;
    }


    .partners-header {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .logo-circle {
        width: 110px;
        height: 110px;
    }

    .logo-circle img {
        width: 65px;
        height: 65px;
    }

    .partner p {
        font-size: 15px;
    }
}


/* ====================================
DESKTOP
==================================== */

@media (min-width:1024px) {

    .partners-header {
        padding: 50px 40px;
        margin-bottom: 40px;
    }

    .partners-header h2 {
        font-size: 36px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .logo-circle img {
        width: 70px;
        height: 70px;
    }

    .partner p {
        font-size: 16px;
    }
}

/* ====================================
FOOTER (MOBILE)
==================================== */

.footer-top {
    background-color: #f5f5f5;
    /* Fond gris clair de ton image */
    padding: 50px 20px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    /* Centré sur mobile pour faire plus propre */
}

.footer-col h4 {
    font-family: "Saira", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #0d1f24;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    /* Enlève les puces */
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s ease;
}

/* Effet au survol pour les liens */
.footer-col a:hover {
    color: #147a83;
}

/* Bandeau du bas */
.footer-bottom {
    background-color: #03808c;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 500;

}


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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 colonnes */
        text-align: center;
        /* Aligné à gauche comme sur ta maquette */
    }

    .footer-col h4 {
        font-size: 24px;
    }

    .footer-col a {
        font-size: 17px;
    }


    .footer-bottom p {
        font-size: 16px;
        font-weight: 500;
    }
}


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

@media (min-width: 1024px) {
    .footer-top {
        padding: 80px 20px;
    }

    .footer-grid {
        display: flex;
        /* On remplace grid par flex sur desktop */
        justify-content: space-between;
        /* Espace équitablement, colle aux extrémités */
        text-align: left;
        /* Sécurité pour forcer l'alignement à gauche */
    }

    .footer-col h4 {
        font-size: 28px;
    }

    .footer-col a {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 16px;
        font-weight: 500;
    }
}