/* =============================================================
   D'panne Phones — Feuille de style globale
   Toutes les pages sont couvertes ici. Ne pas mettre de <style>
   inline dans les fichiers .twig.
   ============================================================= */


/* -------------------------------------------------------------
   BASE
   ------------------------------------------------------------- */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa !important;
}


/* -------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------- */

.navbar-nav .nav-item .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: rgb(9, 71, 113);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

.navbar-nav .nav-item .nav-link:hover {
    color: rgb(9, 71, 113) !important;
}

.navbar .phone-btn {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #333333;
}

.navbar .phone-btn:hover {
    color: rgb(9, 71, 113);
}

/* Taille de police navbar */
.navbar .nav-link {
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.navbar .nav-link.phone-btn {
    font-size: 15px;
    font-weight: 700;
}


/* -------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------------------------------------------
   CAROUSEL / BANNIÈRES
   ------------------------------------------------------------- */

#carouselExampleIndicators {
    width: 90%;
    height: 460px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.carousel-inner img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.carousel-item {
    height: 100%;
    transition: transform 0.7s ease, opacity 0.8s ease;
}

.carousel-caption.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    color: white;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: 40px 60px;
    border-radius: 0;
    width: 100%;
    height: 100%;
    font-size: 1em;
    justify-content: flex-end;
    padding-bottom: 50px;
}

.carousel-caption.home h5 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.carousel-caption.home p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    max-width: 560px;
}

@media (max-width: 768px) {
    #carouselExampleIndicators { height: 300px; }
    .carousel-inner img { height: 300px; }
    .carousel-caption.home { padding: 20px 20px 30px; }
    .carousel-caption.home h5 { font-size: 18px; }
    .carousel-caption.home p { font-size: 13px; }
    .carousel-ctas { gap: 8px; }
    .carousel-btn-primary, .carousel-btn-secondary { font-size: 12px; padding: 8px 16px; }
}

/* Bannière pages intérieures */
#carouselExampleIndicators2 {
    width: 90%;
    height: 300px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}


/* -------------------------------------------------------------
   CARDS BOOTSTRAP (surcharges globales)
   ------------------------------------------------------------- */

.card {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    background-color: transparent;
}

.card-body {
    background-color: none;
    padding: 15px;
}

.card-text {
    font-size: 15px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
}

#card1 {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

#card1:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(9, 71, 113, 0.15);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#card-body1 {
    padding: 0.5rem;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1450px;
    }
}


/* -------------------------------------------------------------
   ACCUEIL — Section "Notre Boutique"
   ------------------------------------------------------------- */

.accueil-boutique-section {
    display: flex;
    align-items: stretch;
    margin: 60px auto;
    max-width: 1400px;
    width: 95%;
}

/* Image côté gauche */
.accueil-boutique-img-wrap {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    min-height: 420px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.accueil-boutique-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.accueil-boutique-section:hover .accueil-boutique-img-wrap img {
    transform: scale(1.04);
}

.accueil-boutique-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.accueil-boutique-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    color: rgb(9, 71, 113);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    letter-spacing: 0.3px;
}

/* Contenu côté droit */
.accueil-boutique-content {
    flex: 1;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accueil-boutique-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(9, 71, 113);
    margin-bottom: 10px;
}

.accueil-boutique-title {
    font-size: 34px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 16px;
    line-height: 1.15;
}

.accueil-boutique-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Horaires */
.accueil-horaires {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    border: 1px solid #f0f2f5;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.accueil-horaires-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #adb5bd;
    margin-bottom: 14px;
}

.accueil-horaires-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accueil-horaires-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.accueil-horaires-day {
    font-weight: 600;
    color: #1b2e45;
    min-width: 100px;
}

.accueil-horaires-dot {
    flex: 1;
    height: 1px;
    background: #dee2e6;
    border-radius: 1px;
}

.accueil-horaires-time {
    color: #495057;
    font-size: 13px;
}

.accueil-horaires-row.closed .accueil-horaires-day,
.accueil-horaires-row.closed .accueil-horaires-time {
    color: #adb5bd;
}

/* Boutons CTA */
.accueil-boutique-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.accueil-btn-primary {
    display: inline-flex;
    align-items: center;
    background: rgb(9, 71, 113);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.accueil-btn-primary:hover {
    background: #0a5a8a;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.accueil-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: rgb(9, 71, 113);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.accueil-btn-secondary:hover {
    border-color: rgb(9, 71, 113);
    color: rgb(9, 71, 113);
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .accueil-boutique-section {
        flex-direction: column;
    }
    .accueil-boutique-img-wrap {
        width: 100%;
        min-height: 220px;
    }
    .accueil-boutique-content {
        padding: 30px 24px;
    }
    .accueil-boutique-title {
        font-size: 26px;
    }
}


/* -------------------------------------------------------------
   ACCUEIL
   ------------------------------------------------------------- */

/* -------------------------------------------------------------
   ACCUEIL — Bande articles défilante
   ------------------------------------------------------------- */

.articles-ticker-wrap {
    display: flex;
    align-items: center;
    background: #f0f5fb;
    overflow: hidden;
    padding: 14px 0;
    gap: 0;
}

.articles-ticker-label {
    flex-shrink: 0;
    background: linear-gradient(135deg, #0d1b2a, rgb(9,71,113));
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 22px;
    height: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
    border-radius: 0 12px 12px 0;
    margin-right: 16px;
    box-shadow: 4px 0 12px rgba(9,71,113,0.15);
}

.articles-ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.articles-ticker-track-wrap::before,
.articles-ticker-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.articles-ticker-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f0f5fb, transparent);
}

.articles-ticker-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f0f5fb, transparent);
}

.articles-ticker-track {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: ticker-scroll 35s linear infinite;
    width: max-content;
    padding: 4px 8px;
}

.articles-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.articles-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: #343a40;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    border: 1px solid rgba(9,71,113,0.08);
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, color 0.15s;
    position: relative;
}

.articles-ticker-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9,71,113,0.14);
    text-decoration: none;
    color: rgb(9, 71, 113);
}

.articles-ticker-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
}

.articles-ticker-noimg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dee2e6;
    font-size: 16px;
    flex-shrink: 0;
}

/* Badge "Nouveauté" sur chaque carte */
.ticker-novelty-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35, #f7c59f);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.articles-ticker-name {
    font-size: 13px;
    font-weight: 600;
}

.articles-ticker-price {
    font-size: 13px;
    font-weight: 800;
    color: rgb(9, 71, 113);
}


/* -------------------------------------------------------------
   ACCUEIL — Section derniers articles
   ------------------------------------------------------------- */

.home-articles-section {
    padding: 70px 0 60px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.home-articles-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-articles-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(9, 71, 113);
    margin-bottom: 10px;
}

.home-articles-title {
    font-size: 32px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 10px;
}

.home-articles-subtitle {
    font-size: 15px;
    color: #adb5bd;
    margin: 0;
}

/* home-articles-grid → défini en bas du fichier avec auto-fill */

.home-articles-empty {
    text-align: center;
    padding: 60px 20px;
    color: #adb5bd;
    margin-bottom: 32px;
}

.home-articles-empty i {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.home-articles-empty p {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 6px;
}

.home-articles-empty small {
    font-size: 13px;
}

.home-articles-cta {
    text-align: center;
}

.home-articles-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: rgb(9, 71, 113);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgb(9, 71, 113);
    transition: all 0.2s;
}

.home-articles-btn:hover {
    background: rgb(9, 71, 113);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}


/* -------------------------------------------------------------
   ACCUEIL — Section sélection appareil
   ------------------------------------------------------------- */

.appareil-section {
    padding: 70px 0 60px;
    text-align: center;
}

.appareil-header {
    margin-bottom: 48px;
}

.appareil-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(9, 71, 113);
    margin-bottom: 10px;
}

.appareil-title {
    font-size: 32px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 10px;
}

.appareil-subtitle {
    font-size: 15px;
    color: #adb5bd;
    margin: 0;
}

.appareil-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 0 40px;
}

/* Variante grande (page réparation) */
.appareil-section--large {
    padding: 60px 0 80px;
}

.appareil-grid--large {
    gap: 36px;
    padding: 0 60px;
}

.appareil-card--large {
    width: 360px;
}

.appareil-card--large .appareil-img-wrap {
    height: 260px;
    padding: 28px 24px;
}

.appareil-card--large .appareil-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
}

.appareil-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    overflow: hidden;
    width: 280px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.appareil-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(9, 71, 113, 0.15);
    border-color: rgb(9, 71, 113);
    text-decoration: none;
}

.appareil-img-wrap {
    background: transparent;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    overflow: hidden;
}

.appareil-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.appareil-card:hover .appareil-img-wrap img {
    transform: scale(1.1);
}

.appareil-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-top: 1px solid #f0f2f5;
}

.appareil-label {
    font-size: 15px;
    font-weight: 700;
    color: #1b2e45;
    transition: color 0.2s;
}

.appareil-card:hover .appareil-label {
    color: rgb(9, 71, 113);
}

.appareil-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f6fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(9, 71, 113);
    font-size: 12px;
    transition: background 0.2s, transform 0.2s;
}

.appareil-card:hover .appareil-arrow {
    background: rgb(9, 71, 113);
    color: white;
    transform: translateX(3px);
}


/* Blocs texte présentation (sans card) */
.accueil-text-block {
    padding: 10px 20px;
}

.accueil-text-block h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 14px;
    line-height: 1.3;
}

.accueil-text-block p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.75;
    margin: 0;
}

#containerAccueil {
    width: 100%;
    margin-top: 150px;
    background-color: transparent;
}

#containerAccueil2 {
    padding: 30px;
    margin-bottom: 150px;
}

#imgAccueil {
    width: 50%;
    height: 50%;
    object-fit: cover;
}

#imgAccueil2 {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

#titleAccueil {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#textAccueil {
    font-size: 17px;
}

.highlight2 {
    color: rgb(9, 71, 113);
    font-weight: bold;
    font-size: 19px;
}



/* -------------------------------------------------------------
   GOOGLE REVIEWS
   ------------------------------------------------------------- */

.google-review {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.rating-review-item {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.rating-review-item .left-rating {
    flex: 1 1 80%;
    max-width: 30%;
}

.rating-review-item .left-rating .star-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-review-item .left-rating h3 {
    margin: 0 12px 0 0;
    font-size: 40px;
}

.rating-review-item .left-rating .fa-star {
    font-size: 20px;
    color: #28a745;
}

.rating-review-item .number-rating span {
    display: block;
    margin-bottom: 2px;
    color: #474848;
    font-size: 15px;
    margin-left: 15px;
}

.rating-review-item .right-rating {
    flex: 1 1 80%;
    max-width: 300px;
}

.rating-review-item .right-rating ul.order-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.rating-review-item .right-rating ul.order-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.rating-review-item .right-rating ul.order-list li:last-child {
    margin-bottom: 0;
}

.rating-review-item .right-rating .star-value {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-width: 25px;
}

.rating-review-item .right-rating .star-value h5 {
    margin: 0 2px 0 0;
    font-size: 12px;
}

.rating-review-item .right-rating .star-value .fa-star {
    font-size: 10px;
}

.rating-review-item .right-rating .progress {
    flex: 1 255px;
    max-width: 255px;
    height: 6px;
    margin-right: 20px;
    margin-bottom: 0;
    background-color: #ddd;
}

.rating-review-item .right-rating .rating-hit {
    color: #B2B2B2;
    font-size: 16px;
}

.review-container {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    gap: 10px;
    margin-bottom: 50px;
}

.reviewsTitle {
    font-size: 30px;
    font-weight: 400;
}

#card_Review {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    border: 1px solid white;
    margin-left: 15px;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0.2, 0.2);
}

.review-rating {
    font-size: 17px;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 1px;
    margin-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
}

.card-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 1px;
    margin-top: 10px;
}

#cardTextReview {
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-time {
    font-size: 12px;
    color: #666;
    margin-top: 0;
}

.fa-star {
    width: 25px;
    height: 25px;
}


/* -------------------------------------------------------------
   RÉPARATION — Choix du type / marque / modèle
   ------------------------------------------------------------- */

#faqContent {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.titreRep {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

#faq-section {
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 8px;
}

#faq-question {
    font-weight: bold;
}

#uneRep {
    font-size: 2em;
    font-weight: bold;
}

/* Grille des marques */
.marques-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px 0 40px;
}

.marque-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 28px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1b2e45;
    transition: border-color 0.1s ease, box-shadow 0.12s ease, transform 0.12s ease, color 0.1s ease;
    border: 2px solid transparent;
    min-height: 150px;
    width: 160px;
    flex-shrink: 0;
}

.marque-card:hover {
    border-color: rgb(9, 71, 113);
    box-shadow: 0 6px 20px rgba(9,71,113,0.15);
    transform: translateY(-4px);
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.marque-card img {
    max-height: 70px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.marque-card span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
}

.marques-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 14px;
}

.marques-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

/* Ancien système carte marque (choisir_modele) */
.image_marque {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-princ {
    width: 150px;
}

#card-marques {
    max-height: 80px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

#card-body-marques {
    padding: 0.5rem;
    margin-top: 15px;
}

#pDoute {
    font-size: 30px;
    font-weight: bold;
}

.contact-section .btn-contact {
    margin-top: 20px;
}


/* -------------------------------------------------------------
   RÉPARATION — Liste des réparations
   ------------------------------------------------------------- */

.rep-page-title {
    font-size: 26px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 6px;
}

.rep-page-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 36px;
}

.rep-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 20px 28px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rep-card:hover {
    border-color: rgba(9,71,113,0.3);
    box-shadow: 0 4px 16px rgba(9,71,113,0.1);
}

.rep-card.selected {
    border-color: rgb(9, 71, 113);
    background: #f0f6fc;
}

.rep-info { flex: 1; }

.rep-name {
    font-size: 15px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 4px;
}

.rep-desc {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.rep-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.rep-price {
    font-size: 16px;
    font-weight: 700;
    color: rgb(9, 71, 113);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

.rep-price.free {
    color: #28a745;
}

/* Checkbox personnalisée */
.rep-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}

.rep-checkbox:checked {
    background-color: rgb(9, 71, 113);
    border-color: rgb(9, 71, 113);
}

.rep-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 8px;
    height: 13px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.rep-checkbox:hover {
    border-color: rgb(9, 71, 113);
}

/* Barre de total */
.total-bar {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 20px 28px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
    color: #1b2e45;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: rgb(9, 71, 113);
}

.btn-rdv {
    background-color: rgb(9, 71, 113);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-rdv:hover {
    background-color: #0a5a8a;
    color: white;
    text-decoration: none;
}

.section-divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 30px 0;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #adb5bd;
    margin-bottom: 14px;
}


/* -------------------------------------------------------------
   BOUTIQUE — Layout, sidebar, grille produits
   ------------------------------------------------------------- */

/* Layout global boutique */
.boutique-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* Sidebar catégories */
.cat-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.cat-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(135deg, #0d1b2a, rgb(9,71,113));
    padding: 16px 22px;
    margin-bottom: 0;
}

.cat-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.15s;
}

.cat-link:hover {
    background: #f0f6fc;
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.cat-link.active {
    border-left-color: rgb(9, 71, 113);
    color: rgb(9, 71, 113);
    background: #e8f3fc;
    font-weight: 700;
}

.cat-link i {
    width: 18px;
    text-align: center;
    color: #adb5bd;
    font-size: 14px;
}

.cat-link.active i { color: rgb(9, 71, 113); }

/* Grille produits */
.products-area { flex: 1; min-width: 0; }

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

.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: all 0.22s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(9,71,113,0.13);
    border-color: rgba(9,71,113,0.2);
}

.product-img-wrap {
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-img-wrap .no-img {
    font-size: 64px;
    color: #dee2e6;
}

.product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.badge-etat {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge-neuf     { background: #d4edda; color: #155724; }
.badge-occasion { background: #fff3cd; color: #856404; }

.badge-grade {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: #e8f0fe;
    color: #1a56db;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* Specs */
.pc-specs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.pc-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 3px 0;
    border-bottom: 1px solid #f0f2f5;
}
.pc-spec-key { color: #6c757d; }
.pc-spec-val { color: #1b2e45; font-weight: 600; }

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f2f5;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: rgb(9, 71, 113);
}

.btn-cart {
    background: rgb(9, 71, 113);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.btn-cart:hover {
    background: #0a5a8a;
    color: white;
    text-decoration: none;
}

/* Variante hydrogel — accent vert bouclier */
.btn-cart--hydrogel {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-cart--hydrogel:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    color: white;
    text-decoration: none;
}

.btn-cart--hydrogel:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal hydrogel */
.hydrogel-modal-content {
    border-radius: 14px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.hydrogel-modal-header {
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0a5a8a 100%);
    color: #fff;
    padding: 20px 24px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hydrogel-modal-header .modal-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hydrogel-modal-header .close {
    color: rgba(255,255,255,0.8);
    text-shadow: none;
    opacity: 1;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.hydrogel-modal-header .close:hover { color: #fff; }

.hydrogel-modal-price {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-top: 2px;
}

.hydrogel-modal-price small {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.75;
}

.hydrogel-modal-hint {
    font-size: 13px;
    color: #6b7280;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 4px;
}

.hydrogel-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgb(9,71,113);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-right: 6px;
}

.hydrogel-modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 14px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

/* ═══════════════════════════════════════════
   HYDROGEL LANDING PAGE (hlp-)
═══════════════════════════════════════════ */

.btn-cart--lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
}

/* ── Hero ── */
.hlp-hero {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.hlp-hero-img {
    flex: 0 0 280px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}

.hlp-hero-img img {
    width: 100%;
    display: block;
}

.hlp-hero-content {
    flex: 1;
    min-width: 0;
}

.hlp-hero-title {
    font-size: 26px;
    font-weight: 900;
    color: #1a2b4b;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}

.hlp-hero-subtitle {
    font-size: 20px;
    font-weight: 800;
    color: #1a2b4b;
    text-transform: uppercase;
    margin: 28px 0 6px;
}

.hlp-hero-sep {
    width: 60px;
    height: 3px;
    background: rgb(9,71,113);
    border-radius: 2px;
    margin-bottom: 16px;
}

.hlp-hero-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 14px;
}

.hlp-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.hlp-hero-price {
    display: flex;
    flex-direction: column;
}

.hlp-price-amount {
    font-size: 32px;
    font-weight: 900;
    color: rgb(9,71,113);
    line-height: 1;
}

.hlp-price-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* ── Avantages (fond bleu foncé) ── */
.hlp-advantages {
    background: rgb(9,71,113);
    border-radius: 16px;
    padding: 36px 32px;
    margin-bottom: 32px;
    color: #fff;
}

.hlp-advantages-title {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
}

.hlp-advantages-sep {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    margin-bottom: 24px;
}

.hlp-advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.hlp-advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hlp-advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 0;
    color: rgba(255,255,255,0.92);
}

.hlp-advantages-list li i {
    color: #4ade80;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 13px;
}

/* ── Étapes de pose ── */
.hlp-steps {
    margin-bottom: 32px;
}

.hlp-steps-title {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a2b4b;
    margin: 0 0 6px;
}

.hlp-steps-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.hlp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hlp-step-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 18px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hlp-step-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.hlp-step-icon {
    font-size: 36px;
    color: rgb(9,71,113);
    margin-bottom: 14px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hlp-step-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4b;
    margin: 0 0 10px;
    line-height: 1.4;
}

.hlp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgb(9,71,113);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-right: 4px;
    vertical-align: middle;
}

.hlp-step-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Conseil pro ── */
.hlp-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 20px;
    font-size: 13px;
    color: #92400e;
    line-height: 1.6;
}

.hlp-tip i {
    font-size: 20px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── CTA final ── */
.hlp-cta {
    margin-bottom: 10px;
}

.hlp-cta-inner {
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0a5a8a 100%);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: #fff;
}

.hlp-cta-text {
    flex: 1;
}

.hlp-cta-text h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
}

.hlp-cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.hlp-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hlp-cta-price {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
}

.hlp-cta-price small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.hlp-cta-link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s;
}

.hlp-cta-link:hover {
    color: #fff !important;
}

/* ── Responsive hydrogel landing ── */
@media (max-width: 992px) {
    .hlp-hero {
        flex-direction: column;
    }

    .hlp-hero-img {
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hlp-advantages-grid {
        grid-template-columns: 1fr;
    }

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

    .hlp-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .hlp-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hlp-steps-grid {
        grid-template-columns: 1fr;
    }

    .hlp-hero-title {
        font-size: 20px;
    }

    .hlp-advantages {
        padding: 24px 18px;
    }
}

/* Colonne droite boutique */
.boutique-right-col {
    width: 270px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

/* Mini-panier */
.mini-cart {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Cards livraison */
.delivery-cards {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 0 0 8px 0;
}

.delivery-cards-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
    background: linear-gradient(135deg, #0d1b2a, rgb(9,71,113));
    padding: 12px 16px;
    margin-bottom: 6px;
}

.delivery-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.delivery-card:last-child { border-bottom: none; }

.delivery-card--free {
    background: #f0fdf4;
}

.delivery-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.delivery-card-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.delivery-card-info strong {
    font-size: 13px;
    color: #1b2e45;
    font-weight: 700;
}

.delivery-card-info span {
    font-size: 11px;
    color: #6b7280;
}

.delivery-card-free-badge {
    font-size: 10px;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    border-radius: 20px;
    padding: 2px 8px;
    flex-shrink: 0;
}

.mini-cart-header {
    background: linear-gradient(135deg, #0d1b2a, rgb(9,71,113));
    color: white;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cart-body {
    padding: 14px;
    max-height: 340px;
    overflow-y: auto;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 13px;
}

.mini-cart-item:last-child { border-bottom: none; }

/* Vignette image */
.mini-cart-thumb {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    overflow: hidden;
    background: #f0f4f8;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-thumb i {
    font-size: 16px;
    color: #dee2e6;
}

.mini-cart-item-name {
    color: #343a40;
    flex: 1;
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.mini-cart-qty {
    background: rgb(9, 71, 113);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-cart-empty {
    text-align: center;
    color: #adb5bd;
    font-size: 13px;
    padding: 30px 0;
}

.mini-cart-footer {
    padding: 14px;
    border-top: 1px solid #f0f2f5;
}

.btn-voir-panier {
    display: block;
    background: rgb(9, 71, 113);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-voir-panier:hover {
    background: #0a5a8a;
    color: white;
    text-decoration: none;
}

/* Titres boutique */
.boutique-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 4px;
}

.boutique-page-sub {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 28px;
}

/* État vide */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #adb5bd;
}

.empty-state i { font-size: 56px; margin-bottom: 18px; display: block; }

/* Responsive boutique */
@media (max-width: 992px) {
    .cat-sidebar, .boutique-right-col { display: none; }
}


/* -------------------------------------------------------------
   PANIER (cart)
   ------------------------------------------------------------- */

.cart-page-title {
    font-size: 26px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 6px;
}

.cart-table-wrap {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 20px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.cart-table thead th {
    background: #f8f9fa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    padding: 14px 20px;
    border-bottom: 1px solid #e9ecef;
}

.cart-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    font-size: 14px;
    color: #343a40;
    border-bottom: 1px solid #f0f2f5;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background: #fafbfc;
}

.cart-product-img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
    mix-blend-mode: multiply;
    padding: 4px;
    border: 1px solid #f0f2f5;
}

.cart-product-name {
    font-weight: 600;
    color: #1b2e45;
}

.cart-product-cat {
    font-size: 12px;
    color: #adb5bd;
    margin-top: 2px;
}

.cart-price {
    font-weight: 700;
    color: rgb(9, 71, 113);
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s;
}

.btn-remove:hover {
    background: #fde8e8;
}

/* Récapitulatif commande */
.cart-summary {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 24px 28px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
    border-bottom: 1px solid #f0f2f5;
}

.cart-summary-row:last-of-type {
    border-bottom: none;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 8px;
    border-top: 2px solid #e9ecef;
}

.cart-total-label {
    font-size: 16px;
    font-weight: 700;
    color: #1b2e45;
}

.cart-total-amount {
    font-size: 24px;
    font-weight: 700;
    color: rgb(9, 71, 113);
}

.btn-checkout {
    display: block;
    background: rgb(9, 71, 113);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.2s;
}

.btn-checkout:hover {
    background: #0a5a8a;
    color: white;
    text-decoration: none;
}
.btn-checkout--stripe {
    background: linear-gradient(135deg, #635bff, #4f44e0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .3px;
}
.btn-checkout--stripe:hover {
    background: linear-gradient(135deg, #4f44e0, #3a31c8);
    color: white;
}

/* ================================================
   CODE PROMO — panier
   ================================================ */
.promo-form {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px dashed #86efac;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 16px 0;
}

.promo-form-label {
    font-size: 12px;
    font-weight: 700;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.promo-form-row {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    padding: 9px 12px;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.promo-input:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

.promo-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.promo-apply-btn {
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.15s;
    white-space: nowrap;
}

.promo-apply-btn:hover {
    background: #15803d;
}

.receipt-tax-row--promo {
    color: #15803d;
    font-weight: 600;
}

.receipt-tax-row--promo strong {
    background: #dcfce7;
    color: #15803d;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 11.5px;
    letter-spacing: 0.02em;
}

/* ================================================
   ADMIN — Page Paramètres (AppSetting)
   ================================================ */
.settings-category {
    margin-bottom: 24px;
}

.setting-toggle-wrap {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
}

.setting-toggle {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

.setting-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.setting-toggle-slider {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    background: #cbd5e1;
    border-radius: 30px;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}

.setting-toggle-slider::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.setting-toggle-input:checked + .setting-toggle-slider {
    background: #16a34a;
}

.setting-toggle-input:checked + .setting-toggle-slider::before {
    transform: translateX(22px);
}

.setting-toggle--small .setting-toggle-slider {
    width: 38px;
    height: 22px;
}

.setting-toggle--small .setting-toggle-slider::before {
    width: 16px;
    height: 16px;
}

.setting-toggle--small .setting-toggle-input:checked + .setting-toggle-slider::before {
    transform: translateX(16px);
}

.setting-toggle-label {
    font-size: 14px;
    color: #0f172a;
}

.setting-toggle-label strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.setting-toggle-label small {
    display: block;
    color: #475569;
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 400;
}

.settings-fields--disabled {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(25%);
}

.setting-field {
    margin-bottom: 18px;
}

.setting-field-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.setting-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13.5px;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.setting-input:focus {
    border-color: #16a34a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

.setting-field-help {
    display: block;
    font-size: 11.5px;
    color: #6b7280;
    margin-top: 5px;
    line-height: 1.5;
}

/* ================================================
   ADMIN — Images du site (regroupement par catégorie)
   ================================================ */

/* Sommaire de navigation en haut de page */
.site-image-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.site-image-toc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s;
}

.site-image-toc-link:hover {
    background: rgb(9,71,113);
    color: #fff;
    border-color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(9,71,113,0.2);
}

.site-image-toc-link i {
    font-size: 13px;
}

.site-image-toc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    background: #e0f2fe;
    color: #075985;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 2px;
    transition: background 0.15s, color 0.15s;
}

.site-image-toc-link:hover .site-image-toc-badge {
    background: rgba(255,255,255,0.22);
    color: #fff;
}

/* Catégorie — en-tête et grille */
.site-image-category {
    margin-bottom: 40px;
    scroll-margin-top: 20px;
}

.site-image-category-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 0 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid #e5e7eb;
}

.site-image-category-head-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.site-image-category-icon {
    font-size: 28px;
    color: rgb(9,71,113);
    background: #eff6ff;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.site-image-category-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.site-image-category-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.site-image-category-count {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    padding-top: 8px;
}

.site-image-category-count strong {
    color: #15803d;
}

/* ================================================
   SOCIAL FOLLOW — Section "Suivez-nous"
   ================================================ */

/* Version complète (pages contact / about) */
.social-follow-section {
    max-width: 900px;
    margin: 50px auto 20px;
    padding: 40px 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 18px;
    text-align: center;
}

.social-follow-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.social-follow-title i {
    color: #3b82f6;
}

.social-follow-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0 auto 28px;
    max-width: 500px;
    line-height: 1.55;
}

.social-follow-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.social-follow-card {
    --brand: #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    justify-content: center;
}

.social-follow-card:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}

.social-follow-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    transition: background 0.25s;
}

.social-follow-card:hover .social-follow-card-icon {
    background: rgba(255, 255, 255, 0.25);
}

/* Version compacte (footer) */
.social-follow-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-follow-icon-compact {
    --brand: #3b82f6;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
    text-decoration: none;
}

.social-follow-icon-compact:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 576px) {
    .social-follow-section {
        padding: 28px 18px;
        margin: 32px 16px 16px;
    }
    .social-follow-title { font-size: 18px; }
    .social-follow-subtitle { font-size: 13px; }
    .social-follow-card {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ================================================
   PAYMENT SUCCESS page
   ================================================ */
.payment-success-card {
    max-width: 540px;
    padding: 44px 40px;
}
.payment-success-icon {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
}
.payment-success-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(26,127,55,.2);
    animation: ring-pulse 2s ease-in-out infinite;
}
.payment-success-core {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a7f37, #2ea84a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(26,127,55,.35);
}
.payment-recap {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    text-align: left;
}
.payment-recap-header {
    background: rgb(9,71,113);
    color: #fff;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.88rem;
}
.payment-recap-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.payment-recap-table th,
.payment-recap-table td {
    padding: 8px 14px;
    border-bottom: 1px solid #e9ecef;
}
.payment-recap-table th {
    background: #f0f4f8;
    color: #555;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.payment-recap-table tfoot td {
    background: #e8f0f8;
    font-weight: 700;
    color: rgb(9,71,113);
    border-bottom: none;
}
.payment-recap-table td:last-child,
.payment-recap-table th:last-child { text-align: right; }
.payment-success-actions { margin-top: 4px; }

.btn-continue {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    border: 2px solid #e9ecef;
    color: #6c757d;
    transition: all 0.15s;
}

.btn-continue:hover {
    border-color: rgb(9, 71, 113);
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: #adb5bd;
}

.empty-cart i {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.empty-cart p {
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
}


/* -------------------------------------------------------------
   QUI SOMMES-NOUS (about)
   ------------------------------------------------------------- */

#quiSommesNous {
    font-size: 35px;
    font-weight: bold;
    color: white;
}

#container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    margin-top: 20px;
}

#contentQsN {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

p.qSomNousText {
    margin: 10px 0;
}

.titreQsNs {
    font-size: 22px;
    font-weight: 700;
    color: #1b2e45;
}

.qSomNousText {
    font-size: 15px;
    color: #495057;
    line-height: 1.75;
}

/* Section boutique (encart dark) */
.boutique-section {
    background: linear-gradient(135deg, #0d1b2a 0%, rgb(9,71,113) 100%);
    border-radius: 20px;
    padding: 48px 52px;
    color: white;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}

.boutique-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.boutique-section::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.boutique-section > * { position: relative; z-index: 1; }

.boutique-welcome-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.boutique-welcome-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.boutique-welcome-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.boutique-infos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.boutique-info-card {
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 22px 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.12);
}

.boutique-info-card h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tableau horaires */
.horaires-table {
    width: 100%;
    border-collapse: collapse;
}

.horaires-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.horaires-table tr:last-child { border-bottom: none; }

.horaires-table td {
    padding: 8px 4px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.horaires-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.horaires-table td:last-child {
    color: rgba(255,255,255,0.7);
    text-align: right;
}

.badge-ouvert {
    display: inline-block;
    background: rgba(40,167,69,0.25);
    color: #6ddf8f;
    border: 1px solid rgba(40,167,69,0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}

.adresse-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.adresse-line i {
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.btn-boutique {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: rgb(9,71,113);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 28px;
    transition: all 0.2s;
}

.btn-boutique:hover {
    background: #f0f6fc;
    color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .boutique-infos { grid-template-columns: 1fr; }
    .boutique-section { padding: 32px 24px; }
    .boutique-welcome-title { font-size: 24px; }
}


/* -------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------- */

#besoinDr {
    font-size: 30px;
    font-weight: bold;
}

#besoinRens {
    font-size: 35px;
    font-weight: bold;
    color: white;
}

#map {
    border-radius: 15px;
}


/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */

footer {
    background-color: rgb(9, 71, 113);
    color: white;
    font-size: 12px;
    text-decoration: none;
}


/* -------------------------------------------------------------
   COMPOSANTS GLOBAUX
   ------------------------------------------------------------- */

/* Divider décoratif */
#divider {
    width: 30%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(9, 71, 113), transparent);
    position: relative;
    margin: 30px auto;
}

/* Boutons navbar */
#regisconn {
    border-color: rgb(9, 71, 113);
    color: rgb(9, 71, 113);
}

#regisconn:hover {
    background-color: rgb(9, 71, 113);
    color: rgb(255, 255, 255) !important;
}

/* Bouton contact */
#contactezNous {
    border-color: rgb(9, 71, 113);
    color: rgb(9, 71, 113);
}

#contactezNous:hover {
    background-color: rgb(9, 71, 113);
    color: white !important;
}

/* Surlignage texte */
.highlight {
    color: rgb(9, 71, 113);
    font-weight: 600;
    font-size: 16px;
}


/* -------------------------------------------------------------
   ADMIN — Layout sidebar
   ------------------------------------------------------------- */

body.admin-body { background-color: #f0f2f5; }

#sidebar {
    min-height: calc(100vh - 56px);
    background: linear-gradient(180deg, #0d1b2a 0%, #1b2e45 100%);
    padding: 0;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
}

.sidebar-header {
    padding: 20px 16px 10px;
    color: #adb5bd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 8px;
}

#sidebar .nav-link {
    color: #c9d1d9;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid transparent;
    transition: all 0.15s;
    cursor: pointer;
    text-decoration: none;
}

#sidebar .nav-link:hover,
#sidebar .nav-link.active {
    background-color: rgba(255,255,255,0.07);
    color: #ffffff;
    border-left-color: rgb(9, 71, 113);
}

#sidebar .nav-link i {
    width: 18px;
    text-align: center;
    color: rgb(9, 71, 113);
    font-size: 13px;
}

#admin-main { padding: 30px 40px; }


/* -------------------------------------------------------------
   ADMIN — Titres et cartes
   ------------------------------------------------------------- */

.admin-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 6px;
}

.admin-page-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 30px;
}

.admin-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 28px 32px;
    margin-bottom: 24px;
}

.admin-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f2f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card h3 i { color: rgb(9, 71, 113); }

/* Bannière de bienvenue dashboard */
.admin-welcome {
    background: linear-gradient(135deg, #0d1b2a, rgb(9, 71, 113));
    color: white;
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-welcome h2 { font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.admin-welcome p  { margin: 0; font-size: 13px; opacity: 0.8; }

.admin-stats { display: flex; gap: 12px; flex-wrap: wrap; }

.stat-box {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 18px;
    text-align: center;
    min-width: 70px;
}

.stat-box .stat-number { font-size: 20px; font-weight: 700; display: block; }
.stat-box .stat-label  { font-size: 11px; opacity: 0.8; }

/* Cards KPI dashboard */
.dash-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.dash-card:hover {
    border-color: rgba(9,71,113,0.3);
    box-shadow: 0 6px 20px rgba(9,71,113,0.12);
    transform: translateY(-2px);
}

.dash-card i  { font-size: 28px; color: rgb(9,71,113); margin-bottom: 12px; display: block; }
.dash-card h4 { font-size: 14px; font-weight: 700; color: #1b2e45; margin-bottom: 4px; }
.dash-card p  { font-size: 12px; color: #adb5bd; margin: 0; }

/* Vignettes Commandes & Clients — accent coloré */
.dash-card--commandes {
    border-color: rgba(9,71,113,0.18) !important;
    background: linear-gradient(135deg, #fff 70%, rgba(9,71,113,0.06));
}
.dash-card--commandes i { color: rgb(9,71,113); }
.dash-card--commandes:hover { border-color: rgb(9,71,113) !important; }

.dash-card--clients {
    border-color: rgba(40,167,69,0.2) !important;
    background: linear-gradient(135deg, #fff 70%, rgba(40,167,69,0.06));
}
.dash-card--clients i { color: #16a34a; }
.dash-card--clients:hover { border-color: #16a34a !important; }


/* -------------------------------------------------------------
   ADMIN — Formulaires
   ------------------------------------------------------------- */

.admin-form .form-group,
.admin-card .form-group {
    margin-bottom: 22px;
}

.admin-form label,
.admin-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 7px;
}

.admin-form .form-control,
.admin-form select,
.admin-card .form-control,
.admin-card select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    padding: 10px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.admin-form .form-control:focus,
.admin-form select:focus,
.admin-card .form-control:focus {
    border-color: rgb(9, 71, 113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.1);
    outline: none;
}

.admin-form textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.admin-card .row {
    margin-bottom: 6px;
}

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

.form-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #adb5bd;
    margin-bottom: 18px;
    margin-top: 4px;
}

.form-divider {
    border: none;
    border-top: 1px solid #f0f2f5;
    margin: 24px 0;
}

.btn-admin-submit {
    background-color: rgb(9, 71, 113);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-admin-submit:hover {
    background-color: #0a5a8a;
    color: white;
    text-decoration: none;
}

.btn-admin-back {
    background-color: #6c757d;
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 10px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-admin-back:hover {
    background-color: #5a6268;
    color: white;
    text-decoration: none;
}

.breadcrumb-admin {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

.breadcrumb-admin a {
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.breadcrumb-admin a:hover { text-decoration: underline; }


/* -------------------------------------------------------------
   ADMIN — Tableaux
   ------------------------------------------------------------- */

.table thead th {
    background-color: #f8f9fa;
    color: #495057;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
    padding: 12px 16px;
}

.table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 14px;
    color: #343a40;
}

.table tbody tr:hover { background-color: #f8f9fa; }
.table img { border-radius: 6px; object-fit: cover; }

/* ═══════════════════════════════════════════════════
   ADMIN — Grille d'images modifiables (SiteImage)
═══════════════════════════════════════════════════ */
.site-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.site-image-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
}

.site-image-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.site-image-preview {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-image-placeholder {
    text-align: center;
    color: #cbd5e1;
}

.site-image-placeholder i {
    font-size: 42px;
    display: block;
    margin-bottom: 8px;
}

.site-image-placeholder span {
    font-size: 12px;
    font-weight: 600;
}

.site-image-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-image-badge--custom {
    background: rgba(22,163,74,0.92);
    color: #fff;
    border: 1px solid rgba(22,163,74,0.3);
}

.site-image-badge--default {
    background: rgba(255,255,255,0.92);
    color: #64748b;
    border: 1px solid rgba(0,0,0,0.08);
}

.site-image-body {
    padding: 18px 20px 20px;
}

.site-image-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.site-image-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 12px;
}

.site-image-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #94a3b8;
    padding: 8px 0;
    border-top: 1px dashed #eef2f6;
    border-bottom: 1px dashed #eef2f6;
    margin-bottom: 14px;
}

.site-image-meta code {
    background: #f1f5f9;
    color: #475569;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
}

.site-image-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* ═══════════════════════════════════════════════════
   PAGES D'ERREUR 404 / 500
═══════════════════════════════════════════════════ */
.err-page {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6fb 100%);
}

.err-page-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.err-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.err-blob--1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgb(9,71,113), transparent 70%);
    top: -100px; left: -80px;
}

.err-blob--2 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, #22c55e, transparent 70%);
    bottom: -100px; right: -80px;
    opacity: 0.25;
}

.err-page-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    animation: repFadeUp 0.6s ease-out;
}

.err-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 8px 22px rgba(245,158,11,0.3);
}

.err-code {
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 50%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.err-page--500 .err-code {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.err-title {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.err-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto 26px;
}

.err-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.err-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.err-btn--primary {
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 100%);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(9,71,113,0.25);
}

.err-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(9,71,113,0.35);
    color: #fff !important;
}

.err-btn--ghost {
    background: #fff;
    color: rgb(9,71,113) !important;
    border: 1.5px solid #e5e7eb;
}

.err-btn--ghost:hover {
    border-color: rgb(9,71,113);
    background: #f8fafc;
    color: rgb(9,71,113) !important;
    transform: translateY(-1px);
}

/* Suggestions 404 */
.err-suggestions {
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.err-suggestions-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 16px;
}

.err-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
}

.err-suggestion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none !important;
    color: #1a2b4b !important;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.err-suggestion i {
    font-size: 22px;
    color: rgb(9,71,113);
}

.err-suggestion:hover {
    border-color: rgb(9,71,113);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(9,71,113,0.15);
    color: rgb(9,71,113) !important;
}

@media (max-width: 640px) {
    .err-code { font-size: 68px; }
    .err-title { font-size: 22px; }
    .err-text { font-size: 14px; }
    .err-btn { padding: 11px 18px; font-size: 13px; }
}

/* Neutralise le hover des tables dans le footer (fond bleu, texte blanc) */
footer .table tbody tr:hover,
footer .table tbody tr:hover td {
    background-color: transparent !important;
    color: #fff !important;
}

/* Exception pour la ligne Dimanche (texte semi-transparent conservé) */
footer .table tbody tr:last-child:hover td {
    color: rgba(255,255,255,0.6) !important;
}

.badge-new {
    background-color: #d4edda; color: #155724;
    padding: 3px 8px; border-radius: 20px; font-size: 11px; font-weight: 600;
}

.badge-cat {
    font-size: 11px; font-weight: 600;
    padding: 3px 9px; border-radius: 20px;
    background: #e8f0fe; color: #1a56db;
}


/* -------------------------------------------------------------
   ADMIN — Onglets filtres (filter-tabs)
   ------------------------------------------------------------- */

.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.filter-tab {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    transition: border-color 0.1s, color 0.1s, background 0.1s;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-tab:hover { border-color: rgb(9,71,113); color: rgb(9,71,113); }

.filter-tab.active {
    background: rgb(9,71,113);
    border-color: rgb(9,71,113);
    color: white;
}

.tab-count {
    display: inline-block;
    padding: 0 6px;
    font-size: 11px;
    border-radius: 10px;
    margin-left: 4px;
    background: rgba(255,255,255,0.25);
}

.filter-tab:not(.active) .tab-count {
    background: #f0f2f5;
    color: #adb5bd;
}

.filter-tab--empty {
    opacity: 0.45;
    cursor: default;
}

.filter-tab--empty:hover {
    border-color: #e9ecef;
    color: #6c757d;
}


/* -------------------------------------------------------------
   ADMIN — Formulaire article
   ------------------------------------------------------------- */

.article-form .form-group {
    margin-bottom: 22px;
}

.article-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 7px;
}

.article-form .form-control,
.article-form select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    padding: 10px 14px;
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.article-form .form-control:focus,
.article-form select:focus {
    border-color: rgb(9, 71, 113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.1);
    outline: none;
}

.article-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.img-preview {
    max-height: 130px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    display: block;
    margin-bottom: 14px;
}


/* -------------------------------------------------------------
   ADMIN — Ancien sidebar (compatibilité)
   ------------------------------------------------------------- */

.sidebar .list-group-item {
    padding: 10px;
    font-size: 14px;
}

.sidebar .btn {
    margin-top: 5px;
    margin-left: 20px;
}


/* -------------------------------------------------------------
   ADMIN — Specs groups in article form
   ------------------------------------------------------------- */

.specs-group {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.specs-group-title {
    font-size: 14px;
    font-weight: 700;
    color: rgb(9, 71, 113);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

/* Sous-titre dans un groupe specs (ex: "💻 Matériel", "🖥️ Écran"…) */
.specs-subtitle {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a2b4b;
    margin-bottom: 10px;
    padding: 6px 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
    border-left: 3px solid rgb(9, 71, 113);
    padding-left: 10px;
    background: #f8fafc;
    border-radius: 0 6px 6px 0;
}

.specs-subtitle.mt-3 {
    margin-top: 18px !important;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.specs-grid--2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .specs-grid,
    .specs-grid--2,
    .specs-grid--3,
    .specs-grid--4 { grid-template-columns: 1fr !important; }
}

#specs-section {
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}


/* -------------------------------------------------------------
   BOUTIQUE — PC Specs card
   ------------------------------------------------------------- */

.pc-specs-list {
    margin: 8px 0 12px 0;
    font-size: 12px;
}

.pc-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #f0f2f5;
}

.pc-spec-key {
    color: #6c757d;
    font-weight: 500;
    min-width: 100px;
}

.pc-spec-val {
    color: #212529;
    font-weight: 600;
    text-align: right;
}

/* Hydrogel model selector */
.hydrogel-form select {
    border-radius: 8px;
    font-size: 13px;
}


/* =============================================================
   HOMEPAGE — Divider
   ============================================================= */

.home-section-divider {
    width: 40%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(9, 71, 113), transparent);
    margin: 0 auto;
}


/* =============================================================
   CAROUSEL — Boutons CTA
   ============================================================= */

.carousel-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.carousel-btn-primary {
    display: inline-block;
    background: rgb(9, 71, 113);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
}

.carousel-btn-primary:hover {
    background: #0a5a8f;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.carousel-btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    backdrop-filter: blur(4px);
}

.carousel-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}


/* =============================================================
   HOMEPAGE — Blocs présentation (remplace containerAccueil)
   ============================================================= */

.presentation-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.presentation-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
    border-bottom: 1px solid #f0f2f5;
}

.presentation-row:last-child {
    border-bottom: none;
}

.presentation-row--reverse {
    flex-direction: row-reverse;
}

.presentation-img {
    flex: 0 0 44%;
    max-width: 44%;
    height: 320px;
    border-radius: 18px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 20px;
}

.presentation-img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.07));
    transition: transform 0.35s ease;
}

.presentation-row:hover .presentation-img img {
    transform: scale(1.05);
}

.presentation-content {
    flex: 1;
}

.presentation-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgb(9, 71, 113);
    margin-bottom: 10px;
}

.presentation-title {
    font-size: 26px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 16px;
    line-height: 1.3;
}

.presentation-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.75;
    margin-bottom: 24px;
}

.presentation-btn {
    display: inline-flex;
    align-items: center;
    background: rgb(9, 71, 113);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.presentation-btn:hover {
    background: #0a5a8f;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .presentation-row,
    .presentation-row--reverse {
        flex-direction: column;
        gap: 24px;
        padding: 36px 0;
    }
    .presentation-img {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 210px;
    }
    .presentation-img img {
        max-height: 165px;
        max-width: 75%;
    }
    .presentation-title {
        font-size: 21px;
    }
}


/* =============================================================
   HOMEPAGE — Section Avis clients (refonte)
   ============================================================= */

.reviews-section {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0 60px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4285f4;
    background: #e8f0fe;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(66,133,244,0.2);
}

.reviews-title {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.reviews-global-rating {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    padding: 14px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.reviews-score {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.02em;
}

.reviews-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    padding-left: 12px;
    border-left: 1px solid #e2e8f0;
}

/* Grille responsive 3 colonnes (au lieu du scroll horizontal) */
.review-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #eef2f6;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

/* Filet bleu décoratif en haut de chaque avis Google */
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285f4 0%, #34a853 33%, #fbbc04 66%, #ea4335 100%);
    opacity: 0.7;
}

.review-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-author {
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-time {
    font-size: 12px;
    color: #adb5bd;
    margin-top: 2px;
}

.review-stars-small {
    color: #f5a623;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =============================================================
   PAGE ORDINATEUR — Réparation & Services PC
   ============================================================= */

/* Hero */
.ordi-hero {
    position: relative;
    width: 90%;
    margin: 24px auto 0;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.ordi-hero-img-wrap {
    position: absolute;
    inset: 0;
}

.ordi-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ordi-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(9,71,113,0.82) 0%, rgba(9,71,113,0.35) 60%, transparent 100%);
}

.ordi-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 64px;
    max-width: 600px;
}

.ordi-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}

.ordi-hero-title {
    font-size: 38px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ordi-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 28px;
}

.ordi-hero-cta {
    display: inline-flex;
    align-items: center;
    background: white;
    color: rgb(9,71,113);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ordi-hero-cta:hover {
    background: #f0f4f8;
    color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Navigation rapide */
.ordi-quicknav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 28px 20px 10px;
    width: 90%;
    margin: 0 auto;
}

.ordi-quicknav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: white;
    border: 2px solid #e9ecef;
    color: #495057;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, transform 0.15s;
}

.ordi-quicknav-item i {
    color: rgb(9,71,113);
    font-size: 14px;
}

.ordi-quicknav-item:hover {
    border-color: rgb(9,71,113);
    color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Sections générales */
.ordi-section {
    padding: 72px 0 60px;
}

.ordi-section--alt {
    background: #f8f9fb;
}

.ordi-section-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.ordi-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.ordi-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgb(9,71,113);
    margin-bottom: 10px;
}

.ordi-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ordi-section-subtitle {
    font-size: 15px;
    color: #adb5bd;
    margin: 0;
}

/* Boost cards */
.ordi-boost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
}

.ordi-boost-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ordi-boost-card:hover {
    border-color: rgb(9,71,113);
    box-shadow: 0 8px 32px rgba(9,71,113,0.12);
    transform: translateY(-4px);
}

.ordi-boost-img-wrap {
    height: 200px;
    background: #e8f0f8;
    position: relative;
    overflow: hidden;
}

.ordi-boost-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ordi-boost-card:hover .ordi-boost-img-wrap img {
    transform: scale(1.04);
}

.ordi-boost-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: rgb(9,71,113);
    opacity: 0.18;
    pointer-events: none;
}

.ordi-boost-img-wrap img + .ordi-boost-img-placeholder {
    display: none;
}

.ordi-boost-body {
    padding: 26px;
}

.ordi-boost-icon {
    width: 44px;
    height: 44px;
    background: #e8f0f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(9,71,113);
    font-size: 20px;
    margin-bottom: 14px;
}

.ordi-boost-title {
    font-size: 20px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 10px;
}

.ordi-boost-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ordi-boost-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ordi-boost-list li {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ordi-boost-list li i {
    color: #28a745;
    font-size: 12px;
    flex-shrink: 0;
}

/* Combo banner */
.ordi-combo-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0a5a8f 100%);
    border-radius: 16px;
    padding: 24px 32px;
    color: white;
}

.ordi-combo-icon {
    font-size: 32px;
    color: #ffd700;
    flex-shrink: 0;
}

.ordi-combo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ordi-combo-text strong {
    font-size: 16px;
    font-weight: 800;
}

.ordi-combo-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.ordi-combo-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: rgb(9,71,113);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.15s;
}

.ordi-combo-btn:hover {
    background: #f0f4f8;
    color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Création PC */
.ordi-creation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.ordi-creation-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    border: 2px solid transparent;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ordi-creation-card:hover {
    box-shadow: 0 10px 32px rgba(9,71,113,0.12);
    transform: translateY(-4px);
}

.ordi-creation-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #e8f0f8;
}

.ordi-creation-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ordi-creation-card:hover .ordi-creation-img-wrap img {
    transform: scale(1.04);
}

.ordi-creation-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgb(9,71,113);
    opacity: 0.15;
    pointer-events: none;
}

.ordi-creation-img-wrap img + .ordi-creation-img-placeholder {
    display: none;
}

.ordi-creation-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ordi-creation-badge--gamer {
    background: #1b2e45;
    color: #00d4ff;
}

.ordi-creation-badge--bureau {
    background: rgb(9,71,113);
    color: white;
}

.ordi-creation-body {
    padding: 28px;
}

.ordi-creation-title {
    font-size: 20px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 10px;
}

.ordi-creation-title i {
    color: rgb(9,71,113);
}

.ordi-creation-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Grille de specs */
.ordi-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f0f2f5;
    border: 1px solid #f0f2f5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}

.ordi-spec-item {
    background: white;
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ordi-spec-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #adb5bd;
}

.ordi-spec-val {
    font-size: 13px;
    font-weight: 600;
    color: #1b2e45;
}

.ordi-creation-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.ordi-creation-btn--gamer {
    background: #1b2e45;
    color: white;
}

.ordi-creation-btn--gamer:hover {
    background: #0f1e30;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.ordi-creation-btn--bureau {
    background: rgb(9,71,113);
    color: white;
}

.ordi-creation-btn--bureau:hover {
    background: #0a5a8f;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Transfert de données */
.ordi-transfert-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ordi-transfert-img {
    flex: 0 0 44%;
    max-width: 44%;
    height: 380px;
    border-radius: 18px;
    background: #e8f0f8;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ordi-transfert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ordi-transfert-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgb(9,71,113);
    opacity: 0.15;
}

.ordi-transfert-img img + .ordi-transfert-img-placeholder {
    display: none;
}

.ordi-transfert-content {
    flex: 1;
}

.ordi-transfert-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.75;
    margin-bottom: 28px;
}

.ordi-transfert-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ordi-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ordi-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgb(9,71,113);
    color: white;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ordi-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}

.ordi-step-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
}

.ordi-step-text span {
    font-size: 13px;
    color: #6c757d;
}

/* Dévis cards */
.ordi-devis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

.ordi-devis-card {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ordi-devis-card:hover {
    border-color: rgba(9,71,113,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(9,71,113,0.1);
}

.ordi-devis-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.ordi-devis-icon--diagnostic { background: #e8f0f8; color: rgb(9,71,113); }
.ordi-devis-icon--devis      { background: #e8f5e9; color: #28a745; }
.ordi-devis-icon--conseil    { background: #fff3e0; color: #f57c00; }
.ordi-devis-icon--garanti    { background: #fce4ec; color: #e91e63; }

.ordi-devis-title {
    font-size: 15px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 10px;
}

.ordi-devis-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

/* CTA finale */
.ordi-cta-finale {
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0a5a8f 100%);
    border-radius: 18px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ordi-cta-finale-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.ordi-cta-finale-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.ordi-cta-finale-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.ordi-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: rgb(9,71,113);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    white-space: nowrap;
}

.ordi-cta-btn-primary:hover {
    background: #f0f4f8;
    color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-2px);
}

.ordi-cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.ordi-cta-phone i {
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .ordi-boost-grid,
    .ordi-creation-grid {
        grid-template-columns: 1fr;
    }
    .ordi-devis-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ordi-transfert-row {
        flex-direction: column;
        gap: 32px;
    }
    .ordi-transfert-img {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 260px;
    }
    .ordi-cta-finale {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    .ordi-cta-finale-actions {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .ordi-hero { height: 300px; }
    .ordi-hero-content { padding: 0 28px; }
    .ordi-hero-title { font-size: 24px; }
    .ordi-hero-subtitle { font-size: 14px; }
    .ordi-section-title { font-size: 24px; }
    .ordi-devis-grid { grid-template-columns: 1fr; }
    .ordi-specs-grid { grid-template-columns: 1fr; }
    .ordi-quicknav { gap: 6px; }
    .ordi-quicknav-item span { display: none; }
    .ordi-quicknav-item { padding: 10px 14px; }
    .ordi-combo-banner { flex-direction: column; text-align: center; }
}


/* =============================================================
   PAGE RÉPARATION — choisir_type
   ============================================================= */

/* Hero */
.rep-hero {
    position: relative;
    width: 90%;
    margin: 24px auto 0;
    border-radius: 20px;
    overflow: hidden;
    height: 440px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.rep-hero-img-wrap { position: absolute; inset: 0; }
.rep-hero-img { width: 100%; height: 100%; object-fit: cover; }
.rep-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(9,71,113,0.85) 0%, rgba(9,71,113,0.4) 55%, transparent 100%);
}
.rep-hero-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 64px;
    max-width: 640px;
}
.rep-hero-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.rep-hero-title {
    font-size: 40px; font-weight: 900; color: white;
    line-height: 1.2; margin-bottom: 14px;
}
.rep-hero-subtitle {
    font-size: 15px; color: rgba(255,255,255,0.85);
    line-height: 1.65; margin-bottom: 28px;
}
.rep-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.rep-hero-btn-primary {
    display: inline-flex; align-items: center;
    background: white; color: rgb(9,71,113);
    font-size: 14px; font-weight: 700;
    padding: 13px 26px; border-radius: 50px;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.rep-hero-btn-primary:hover { background: #f0f4f8; color: rgb(9,71,113); text-decoration: none; transform: translateY(-2px); }
.rep-hero-btn-secondary {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.15); color: white;
    font-size: 14px; font-weight: 600;
    padding: 13px 26px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    backdrop-filter: blur(4px);
}
.rep-hero-btn-secondary:hover { background: rgba(255,255,255,0.28); color: white; text-decoration: none; transform: translateY(-2px); }

/* Stats */
.rep-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-radius: 16px;
    width: 88%; max-width: 900px;
    margin: -28px auto 0;
    position: relative; z-index: 3;
    padding: 0 20px;
}
.rep-stat-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 24px 36px; text-align: center;
}
.rep-stat-num {
    font-size: 26px; font-weight: 900;
    color: rgb(9,71,113); line-height: 1;
    margin-bottom: 5px;
}
.rep-stat-label { font-size: 12px; color: #6c757d; font-weight: 500; }
.rep-stat-sep { width: 1px; height: 40px; background: #f0f2f5; flex-shrink: 0; }

/* Sections */
.rep-section { padding: 80px 0 64px; }
.rep-section--alt { background: #f8f9fb; }
.rep-section-inner { width: 90%; max-width: 1200px; margin: 0 auto; }
.rep-faq-inner { max-width: 860px; }
.rep-section-header { text-align: center; margin-bottom: 52px; }
.rep-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgb(9,71,113); margin-bottom: 10px;
}
.rep-section-title { font-size: 30px; font-weight: 800; color: #1b2e45; margin-bottom: 10px; }
.rep-section-subtitle { font-size: 15px; color: #adb5bd; margin: 0; }

/* Trust grid */
.rep-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}
.rep-trust-card {
    background: white; border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.rep-trust-card:hover {
    border-color: rgba(9,71,113,0.18);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(9,71,113,0.1);
}
.rep-trust-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}
.rep-trust-title { font-size: 15px; font-weight: 700; color: #1b2e45; margin-bottom: 10px; }
.rep-trust-text { font-size: 13px; color: #6c757d; line-height: 1.65; margin: 0; }

/* Bandeau réassurance */
.rep-reassurance-banner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 0;
    background: rgb(9,71,113);
    border-radius: 14px;
    padding: 20px 32px;
}
.rep-reassurance-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.85); font-size: 14px;
    padding: 8px 24px;
}
.rep-reassurance-item i { color: rgba(255,255,255,0.5); font-size: 16px; }
.rep-reassurance-item strong { color: white; }
.rep-reassurance-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }

/* Pannes grid */
.rep-pannes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.rep-panne-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 20px 12px;
    background: white; border-radius: 14px;
    border: 2px solid #f0f2f5;
    text-align: center; font-size: 12px; font-weight: 600;
    color: #495057;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
    cursor: default;
}
.rep-panne-item:hover {
    border-color: rgb(9,71,113);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(9,71,113,0.1);
    color: rgb(9,71,113);
}
.rep-panne-item i { font-size: 22px; color: rgb(9,71,113); }

/* FAQ accordion */
.rep-faq-list { display: flex; flex-direction: column; gap: 10px; }
.rep-faq-item {
    background: white; border-radius: 14px;
    border: 2px solid #f0f2f5;
    overflow: hidden;
    transition: border-color 0.2s;
}
.rep-faq-item:has(.show) { border-color: rgb(9,71,113); }
.rep-faq-question {
    width: 100%; background: none; border: none; outline: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; cursor: pointer;
    font-size: 15px; font-weight: 600; color: #1b2e45;
    text-align: left;
    transition: color 0.15s;
}
.rep-faq-question:hover { color: rgb(9,71,113); }
.rep-faq-chevron {
    font-size: 13px; color: #adb5bd; flex-shrink: 0;
    transition: transform 0.25s;
}
.rep-faq-question[aria-expanded="true"] .rep-faq-chevron,
.rep-faq-question:not(.collapsed) .rep-faq-chevron { transform: rotate(180deg); color: rgb(9,71,113); }
.rep-faq-answer { padding: 0 24px 20px; }
.rep-faq-answer p {
    font-size: 14px; color: #6c757d; line-height: 1.75; margin: 0;
    border-top: 1px solid #f0f2f5; padding-top: 16px;
}

/* CTA finale */
.rep-cta-section {
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0a5a8f 100%);
    padding: 60px 20px;
}
.rep-cta-inner {
    width: 90%; max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.rep-cta-title { font-size: 24px; font-weight: 800; color: white; margin-bottom: 8px; }
.rep-cta-sub { font-size: 15px; color: rgba(255,255,255,0.75); margin: 0; }
.rep-cta-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.rep-cta-btn-primary {
    display: inline-flex; align-items: center;
    background: white; color: rgb(9,71,113);
    font-size: 14px; font-weight: 700;
    padding: 13px 26px; border-radius: 50px;
    text-decoration: none; white-space: nowrap;
    transition: background 0.15s, transform 0.15s;
}
.rep-cta-btn-primary:hover { background: #f0f4f8; color: rgb(9,71,113); text-decoration: none; transform: translateY(-2px); }
.rep-cta-btn-secondary {
    display: inline-flex; align-items: center;
    background: transparent; color: white;
    font-size: 14px; font-weight: 600;
    padding: 13px 26px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none; white-space: nowrap;
    transition: background 0.15s, transform 0.15s;
}
.rep-cta-btn-secondary:hover { background: rgba(255,255,255,0.12); color: white; text-decoration: none; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 992px) {
    .rep-trust-grid { grid-template-columns: 1fr 1fr; }
    .rep-pannes-grid { grid-template-columns: repeat(4, 1fr); }
    .rep-stats { gap: 0; }
    .rep-stat-item { padding: 20px 20px; }
}
@media (max-width: 768px) {
    .rep-hero { height: 320px; }
    .rep-hero-content { padding: 0 28px; }
    .rep-hero-title { font-size: 26px; }
    .rep-hero-subtitle { font-size: 13px; }
    .rep-trust-grid { grid-template-columns: 1fr; }
    .rep-pannes-grid { grid-template-columns: repeat(3, 1fr); }
    .rep-stats { flex-direction: column; gap: 0; border-radius: 12px; }
    .rep-stat-sep { width: 80%; height: 1px; }
    .rep-stat-item { padding: 16px; }
    .rep-reassurance-banner { flex-direction: column; }
    .rep-reassurance-sep { display: none; }
    .rep-cta-inner { flex-direction: column; text-align: center; }
    .rep-cta-actions { justify-content: center; }
    .rep-section-title { font-size: 24px; }
}
@media (max-width: 480px) {
    .rep-pannes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   AUTH PAGES — Inscription / Connexion / Vérification
   ============================================================= */

.auth-page-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fb;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.09);
    width: 100%;
    max-width: 480px;
}

.auth-card--wide  { max-width: 700px; }
.auth-card--center { text-align: center; }

/* ================================================
   CHECK EMAIL — page confirmation post-inscription
   ================================================ */
.check-email-card {
    max-width: 520px;
    padding: 44px 40px;
}

/* Icône animée */
.check-email-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
}
.check-email-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(9,71,113,.15);
    animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50%       { transform: scale(1.15); opacity: .15; }
}
.check-email-icon-core {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(9,71,113), #1a7fd4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(9,71,113,.3);
}

.check-email-title {
    font-size: 1.35rem !important;
    margin-bottom: 10px !important;
}
.check-email-intro {
    color: #555;
    font-size: 0.97rem;
    margin-bottom: 24px;
}
.check-email-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    margin: 0 0 28px;
}

/* Étapes */
.check-email-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    text-align: left;
}
.check-email-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.step-dot {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}
.step-dot--done {
    background: #e8f5e9;
    color: #28a745;
    border: 2px solid #28a745;
}
.step-dot--active {
    background: rgb(9,71,113);
    color: #fff;
    box-shadow: 0 3px 10px rgba(9,71,113,.35);
    animation: step-bounce .8s ease-in-out infinite alternate;
}
@keyframes step-bounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-3px); }
}
.step-dot--pending {
    background: #f0f0f0;
    color: #aaa;
    border: 2px solid #ddd;
}
.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.step-text strong {
    font-size: 0.92rem;
    color: #1a2a3a;
}
.check-email-step--pending .step-text strong { color: #aaa; }
.step-text span {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
}

.check-email-info-box {
    margin-bottom: 20px;
    text-align: left;
}
.check-email-resend {
    font-size: 0.85rem;
    color: #777;
}
.check-email-resend .auth-link {
    margin-left: 6px;
}

.auth-card-header { text-align: center; margin-bottom: 32px; }

.auth-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

.auth-title {
    font-size: 24px; font-weight: 800;
    color: #1b2e45; margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px; color: #6c757d;
    line-height: 1.6; margin: 0;
}

.auth-form { display: flex; flex-direction: column; gap: 0; }

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.auth-form-row.auth-form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.auth-form-group {
    display: flex; flex-direction: column; gap: 5px;
    margin-bottom: 18px;
}

.auth-label {
    font-size: 13px; font-weight: 600;
    color: #1b2e45;
}

.auth-required { color: #dc3545; }

.auth-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #1b2e45;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100%;
}

.auth-input:focus {
    border-color: rgb(9,71,113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.1);
}

/* Erreurs inline champs formulaire inscription/connexion */
.auth-form-group ul,
.auth-form-group .form-error-wrapper {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}
.auth-form-group ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #c62828;
    background: #fce4ec;
    border-left: 3px solid #e53935;
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 4px;
    line-height: 1.4;
}
.auth-form-group ul li::before {
    content: "⚠";
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.auth-pwd-hint {
    font-size: 12px; font-weight: 600;
    margin-top: 4px; min-height: 18px;
}

/* --- Icône info + tooltip règles mot de passe --- */
.pwd-info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    color: #6c8ebf;
    cursor: pointer;
    font-size: 0.85rem;
    vertical-align: middle;
}
.pwd-info-icon:focus { outline: none; }
.pwd-info-icon .fa-circle-info { transition: color .2s; }
.pwd-info-icon:hover .fa-circle-info,
.pwd-info-icon:focus .fa-circle-info { color: rgb(9,71,113); }

.pwd-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a2a3a;
    color: #e8f0f8;
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.8;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    z-index: 100;
    pointer-events: none;
}
.pwd-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a2a3a;
}
.pwd-info-icon:hover .pwd-tooltip,
.pwd-info-icon:focus .pwd-tooltip { display: block; }

.auth-btn-primary {
    display: flex; align-items: center; justify-content: center;
    width: 100%;
    background: rgb(9,71,113); color: white;
    font-size: 15px; font-weight: 700;
    padding: 14px 24px; border-radius: 50px;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
    text-decoration: none;
}

.auth-btn-primary:hover {
    background: #0a5a8f; transform: translateY(-1px);
    color: white; text-decoration: none;
}

.auth-flash {
    border-radius: 10px; padding: 13px 16px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 20px;
}

.auth-flash--success { background: #e8f5e9; color: #2e7d32; }
.auth-flash--warning { background: #fff3e0; color: #e65100; }
.auth-flash--error   { background: #fce4ec; color: #c62828; }

.auth-info-box {
    background: #e8f0f8; border-radius: 10px;
    padding: 13px 16px; font-size: 13px;
    color: rgb(9,71,113); font-weight: 500;
    margin-bottom: 0;
}

.auth-info-box i { color: rgb(9,71,113); }

.auth-actions { margin-top: 24px; }

.auth-link {
    font-size: 13px; font-weight: 600;
    color: rgb(9,71,113); text-decoration: none;
}

.auth-link:hover { text-decoration: underline; }

.auth-footer-links {
    text-align: center; margin-top: 24px;
    font-size: 13px; color: #6c757d;
}

.auth-footer-links a {
    color: rgb(9,71,113); font-weight: 600; text-decoration: none;
}

.auth-footer-links a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .auth-card { padding: 28px 20px; }
    .auth-form-row { grid-template-columns: 1fr; gap: 0; }
    .auth-card--wide { max-width: 100%; }
}


/* =============================================================
   BOUTIQUE — Page détail article
   ============================================================= */

/* Fil d'Ariane */
.article-breadcrumb {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.article-breadcrumb a {
    color: rgb(9, 71, 113);
    text-decoration: none;
    font-weight: 500;
}

.article-breadcrumb a:hover { text-decoration: underline; }

.bc-sep {
    color: #adb5bd;
    font-size: 15px;
    margin: 0 2px;
}

.bc-current {
    color: #495057;
    font-weight: 600;
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Layout principal 2 colonnes */
.article-detail-wrap {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .article-detail-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Colonne image */
.article-detail-img-col {}

.article-detail-img-frame {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.article-detail-img-frame img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 8px;
}

.article-detail-no-img {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #adb5bd;
}

.article-detail-no-img i { font-size: 52px; }
.article-detail-no-img span { font-size: 14px; }

/* Colonne informations */
.article-detail-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.article-detail-name {
    font-size: 26px;
    font-weight: 800;
    color: #1b2e45;
    line-height: 1.25;
    margin-bottom: 12px;
}

.article-detail-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Bloc spécifications */
.article-detail-specs {
    background: #f8fafc;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.article-specs-title {
    font-size: 13px;
    font-weight: 700;
    color: rgb(9, 71, 113);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.article-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f0f2f5;
    gap: 12px;
}

.article-spec-row:last-child { border-bottom: none; }

.article-spec-row--full {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.article-spec-key {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
}

.article-spec-val {
    font-size: 13px;
    color: #212529;
    font-weight: 600;
    text-align: right;
}

/* Titres de groupe dans les specs téléphone */
.spec-group-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgb(9, 71, 113);
    background: #eff6ff;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 10px 0 4px;
    display: inline-block;
}

.spec-group-label--legal {
    background: #fff3cd;
    color: #856404;
}

.compatible-models-list {
    font-size: 12px;
    text-align: left;
    color: #495057;
    line-height: 1.7;
}

/* Pilule santé batterie */
.battery-pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.battery-good  { background: #d4edda; color: #155724; }
.battery-mid   { background: #fff3cd; color: #856404; }
.battery-low   { background: #f8d7da; color: #721c24; }

/* Bloc achat principal (prix + panier) */
.article-buy-block {
    background: #f8fafc;
    border: 1px solid #e0e8f0;
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 22px;
}

.article-buy-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.article-price-amount {
    font-size: 36px;
    font-weight: 900;
    color: rgb(9, 71, 113);
    letter-spacing: -1px;
    line-height: 1;
}

.article-price-hint {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.article-buy-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-buy-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 12px;
    color: #6c757d;
}

.article-buy-reassurance span {
    display: inline-flex;
    align-items: center;
}

.article-buy-reassurance i {
    color: rgb(9, 71, 113);
    font-size: 11px;
}

/* Liens bas de fiche (CGV + retour) */
.article-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

/* Bouton Ajouter au panier (grand) */
.btn-cart-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #1a6fa8 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 16px rgba(9,71,113,0.30);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-cart-detail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.btn-cart-detail:hover {
    background: linear-gradient(135deg, #073d64 0%, rgb(9,71,113) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9,71,113,0.40);
    text-decoration: none;
}

.btn-cart-detail:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(9,71,113,0.25);
}

/* Lien retour boutique */
.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.15s;
}

.article-back-link:hover {
    color: rgb(9, 71, 113);
    text-decoration: none;
}

/* Lien image dans la grille boutique */
.product-img-link {
    display: block;
    text-decoration: none;
}

.product-img-link:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* Lien nom produit dans la grille */
.product-name-link {
    color: inherit;
    text-decoration: none;
}

.product-name-link:hover {
    color: rgb(9, 71, 113);
    text-decoration: underline;
}


/* =============================================================
   PAIEMENT — Bande modes de paiement (boutique + footer)
   ============================================================= */

/* Bande boutique */
.payment-methods-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    background: #f4f7fb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 24px;
    margin-top: 36px;
    font-size: 13px;
    color: #495057;
}

.pms-lock {
    color: rgb(9, 71, 113);
    font-size: 14px;
}

.pms-label {
    font-weight: 600;
    color: #1b2e45;
    margin-right: 4px;
}

.pms-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pms-icons .fab {
    font-size: 28px;
    line-height: 1;
}

.pms-icons .fa-cc-visa       { color: #1a1f71; }
.pms-icons .fa-cc-mastercard { color: #eb001b; }
.pms-icons .fa-cc-amex       { color: #2e77bc; }
.pms-icons .fa-apple-pay     { color: #000; }
.pms-stripe                  { color: #6772e5; }

.pms-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    padding: 3px 7px;
    letter-spacing: 0.3px;
    line-height: 1;
}

.pms-cb {
    background: #003189;
    color: #fff;
}

.pms-gpay {
    background: #fff;
    color: #444;
    border: 1.5px solid #dadce0;
    font-size: 11px;
    font-family: 'Google Sans', Arial, sans-serif;
}


/* Bande footer */
.footer-payment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.15);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.footer-payment-strip .fab {
    font-size: 24px;
    line-height: 1;
    color: rgba(255,255,255,0.9);
}

.footer-payment-strip .fa-lock {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-payment-strip span:not(.footer-pms-badge) {
    font-weight: 600;
}

.footer-pms-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    padding: 2px 6px;
    letter-spacing: 0.2px;
    background: rgba(255,255,255,0.9);
    color: #003189;
}

.footer-pms-gpay {
    color: #444;
    font-family: Arial, sans-serif;
}


/* =============================================================
   PANIER — Contrôle quantité (+/−)
   ============================================================= */

/* Panier complet */
.cart-qty-ctrl {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    color: #495057;
    font-size: 11px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.qty-btn:hover {
    text-decoration: none;
    color: #fff;
}

.qty-btn--minus:hover { background: #dc3545; color: #fff; }
.qty-btn--plus:hover  { background: rgb(9, 71, 113); color: #fff; }

.qty-value {
    min-width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: rgb(9, 71, 113);
    background: #fff;
    border-left: 1.5px solid #dee2e6;
    border-right: 1.5px solid #dee2e6;
    padding: 0 4px;
    line-height: 28px;
}

/* Mini-panier */
.mini-qty-ctrl {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 9px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.mini-qty-btn:hover { background: rgb(9, 71, 113); color: #fff; text-decoration: none; }

.mini-qty-val {
    min-width: 22px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: rgb(9, 71, 113);
    background: #fff;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    padding: 0 2px;
    line-height: 20px;
}


/* =============================================================
   BOUTIQUE — Bloc rassurant
   ============================================================= */

.reassurance-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .reassurance-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .reassurance-strip { grid-template-columns: repeat(2, 1fr); }
}

.reassurance-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    gap: 6px;
}

.reassurance-item i {
    font-size: 24px;
    color: rgb(9, 71, 113);
    margin-bottom: 4px;
}

.reassurance-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
    line-height: 1.2;
}

.reassurance-item span {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.45;
}


/* =============================================================
   BOUTIQUE — Filtre marques (téléphones)
   ============================================================= */

.brand-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0 16px;
    grid-column: 1 / -1;  /* span full boutique-layout width */
}

.brand-filter-label {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.brand-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid #dee2e6;
    color: #495057;
    background: #fff;
    text-decoration: none;
    transition: all 0.15s;
}

.brand-pill:hover {
    border-color: rgb(9, 71, 113);
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.brand-pill--active {
    background: rgb(9, 71, 113);
    border-color: rgb(9, 71, 113);
    color: #fff !important;
}


/* =============================================================
   BOUTIQUE — Mini-cart total
   ============================================================= */

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    margin: 4px -16px 8px;
    background: #f0f6fc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    color: #1b2e45;
}

.mini-cart-total-amount {
    font-size: 15px;
    font-weight: 800;
    color: rgb(9, 71, 113);
}


/* =============================================================
   FICHE PRODUIT — Vignettes spécifications (téléphone)
   ============================================================= */

.spec-vignettes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .spec-vignettes { grid-template-columns: repeat(4, 1fr); }
}

.spec-vignette {
    background: #f8fafc;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    transition: border-color 0.15s, background 0.15s;
}

.spec-vignette:hover {
    background: #eff6ff;
    border-color: rgb(9, 71, 113);
}

.spec-vignette i {
    font-size: 20px;
    color: rgb(9, 71, 113);
    margin-bottom: 2px;
}

.spec-vignette strong {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #6c757d;
    line-height: 1;
}

.spec-vignette span {
    font-size: 12px;
    font-weight: 600;
    color: #1b2e45;
    line-height: 1.3;
}


/* =============================================================
   ADMIN — Grilles de specs (3 colonnes, 4 colonnes)
   ============================================================= */

.specs-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
    margin-bottom: 4px;
}

.specs-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .specs-grid--3 { grid-template-columns: 1fr 1fr; }
    .specs-grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .specs-grid--3, .specs-grid--4 { grid-template-columns: 1fr; }
}

.specs-group-title--legal {
    background: #fff3cd;
    color: #856404;
    border-radius: 6px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}


/* =============================================================
   FOOTER — Liens légaux
   ============================================================= */

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-legal-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}

.footer-legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 14px 24px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.footer-legal-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal-inline a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.15s;
}

.footer-legal-inline a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal-inline span {
    color: rgba(255,255,255,0.35);
}


/* =============================================================
   BOUTIQUE — Tooltip grade
   ============================================================= */

.grade-tooltip-wrap {
    position: relative;
    cursor: help;
}

.grade-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1b2e45;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.grade-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1b2e45;
}

.grade-tooltip-wrap:hover .grade-tooltip,
.grade-tooltip-wrap:focus .grade-tooltip {
    display: block;
}


/* =============================================================
   FICHE PRODUIT — Bloc garanties légales
   ============================================================= */

.article-legal-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-legal-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #edf2f7;
}

.article-legal-row:last-child { border-bottom: none; }

.article-legal-row > i {
    color: rgb(9, 71, 113);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.article-legal-row > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.article-legal-row strong {
    font-size: 13px;
    color: #1b2e45;
}

.article-legal-row span {
    font-size: 11px;
    color: #6c757d;
}

.legal-cgv-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: rgb(9, 71, 113);
    text-decoration: none;
    margin-bottom: 14px;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.legal-cgv-link:hover {
    opacity: 1;
    text-decoration: underline;
    color: rgb(9, 71, 113);
}


/* =============================================================
   PAGES LÉGALES (mentions, CGV, confidentialité)
   ============================================================= */

.legal-page-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 16px;
}

@media (max-width: 860px) {
    .legal-page-wrap { grid-template-columns: 1fr; }
    .legal-toc { display: none; }
}

/* Sommaire sticky */
.legal-toc {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 18px 16px;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legal-toc-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: rgb(9, 71, 113);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.legal-toc a {
    display: block;
    font-size: 13px;
    color: #495057;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid #f0f2f5;
    transition: color 0.15s;
}

.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: rgb(9, 71, 113); }

/* Contenu principal */
.legal-content section {
    margin-bottom: 40px;
    scroll-margin-top: 20px;
}

.legal-h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.legal-h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1b2e45;
    margin: 16px 0 8px;
}

.legal-content p {
    font-size: 14px;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-list {
    font-size: 14px;
    color: #495057;
    line-height: 1.75;
    padding-left: 22px;
    margin-bottom: 12px;
}

.legal-list li { margin-bottom: 4px; }

/* Encart mise en valeur */
.legal-highlight {
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 13px;
    color: #78350f;
    margin-bottom: 16px;
    line-height: 1.6;
}

.legal-highlight--blue {
    background: #eff6ff;
    border-left-color: rgb(9, 71, 113);
    color: #1e3a5f;
}

/* Exception / avertissement */
.legal-exception {
    background: #fff3f3;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #7f1d1d;
    margin-top: 12px;
}

/* Tableau infos (deux colonnes) */
.legal-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.legal-info-row {
    display: flex;
    gap: 16px;
    padding: 10px 16px;
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
    align-items: baseline;
}

.legal-info-row:last-child { border-bottom: none; }

.legal-info-row > span {
    color: #6c757d;
    font-weight: 500;
    min-width: 150px;
    flex-shrink: 0;
}

/* Tableau données (3+ colonnes) */
.legal-data-table {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
    margin-bottom: 14px;
}

.legal-data-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgb(9, 71, 113);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 10px 16px;
    gap: 16px;
}

.legal-data-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 9px 16px;
    gap: 16px;
    border-bottom: 1px solid #f0f2f5;
    color: #495057;
    align-items: center;
}

.legal-data-row:last-child { border-bottom: none; }
.legal-data-row:nth-child(odd) { background: #f8fafc; }

/* Tableau grades */
.grade-explain-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 14px 0;
}

.grade-explain-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 16px;
}

.grade-explain-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.grade-a { background: #d4edda; color: #155724; }
.grade-b { background: #fff3cd; color: #856404; }
.grade-c { background: #f8d7da; color: #721c24; }

.grade-explain-row > div strong {
    display: block;
    font-size: 14px;
    color: #1b2e45;
    margin-bottom: 4px;
}

.grade-explain-row > div p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Droits RGPD grid */
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin: 14px 0;
}

.legal-right-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 13px;
}

.legal-right-card i {
    font-size: 22px;
    color: rgb(9, 71, 113);
    margin-bottom: 4px;
}

.legal-right-card strong {
    color: #1b2e45;
    font-size: 13px;
}

.legal-right-card span {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.4;
}

/* Date de mise à jour */
.legal-update-date {
    font-size: 12px;
    color: #adb5bd;
    margin-bottom: 28px;
    font-style: italic;
}

/* Liens retour en bas de page */
.legal-back-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.legal-back-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: rgb(9, 71, 113);
    text-decoration: none;
    background: #eff6ff;
    padding: 7px 14px;
    border-radius: 8px;
    transition: background 0.15s;
}

.legal-back-links a:hover {
    background: #dbeafe;
    color: rgb(9, 71, 113);
    text-decoration: none;
}

/* ═════════════════════════════════════════════════════════════
   ACCORDION SPÉCIFICATIONS (Bootstrap 4 Compatible)
   ═════════════════════════════════════════════════════════════ */

.specs-accordion {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.specs-accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.specs-accordion-item:last-child {
    border-bottom: none;
}

.specs-accordion-header {
    margin-bottom: 0;
    padding: 0;
}

.specs-accordion-button {
    display: block;
    width: 100%;
    text-align: left;
    background: #f8fafc;
    color: #1b2e45;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.specs-accordion-button:hover {
    background: #eff6ff;
    color: rgb(9, 71, 113);
}

.specs-accordion-button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(9, 71, 113, 0.25);
}

.specs-accordion-button.collapsed {
    background: #f8fafc;
    color: #1b2e45;
}

.specs-accordion-button:not(.collapsed) {
    background: #eff6ff;
    color: rgb(9, 71, 113);
}

.specs-accordion-collapse {
    display: none;
}

.specs-accordion-collapse.show {
    display: block;
}

.specs-accordion-body {
    background: #fff;
    padding: 14px 16px;
    border-top: 1px solid #f0f2f5;
}

/* Prix repositionné à gauche */
.article-detail-left-price {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.article-detail-left-price .article-detail-price {
    font-size: 28px;
    font-weight: 900;
    color: rgb(9, 71, 113);
    letter-spacing: -0.5px;
}


/* Chevron accordion */
.specs-chevron {
    font-size: 11px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.specs-accordion-button:not(.collapsed) .specs-chevron {
    transform: rotate(180deg);
}

/* DAS - couleur avertissement */
.specs-accordion-button--legal {
    background: #fffbeb !important;
    color: #856404 !important;
}

.specs-accordion-button--legal:not(.collapsed) {
    background: #fff3cd !important;
}

.specs-accordion-body--legal {
    background: #fffdf0 !important;
    border-top: 1px solid #ffeeba !important;
}

/* Hydrogel select */
.hydrogel-select {
    border-radius: 8px;
    border-color: #d0d7de;
    font-size: 14px;
}


/* =============================================================
   PAGE CONNEXION — Layout & Form
   ============================================================= */

.login-page-wrap {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 860px) {
    .login-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .login-info-col {
        order: 2;
    }
    .login-form-col {
        order: 1;
    }
}

/* Colonne info gauche */
.login-info-card {
    background: linear-gradient(145deg, #0a4771 0%, #1b5e8e 100%);
    border-radius: 16px;
    padding: 36px 32px;
    color: #fff;
    position: sticky;
    top: 20px;
}

.login-info-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 28px;
    opacity: 0.9;
}

.login-info-logo i {
    font-size: 22px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-info-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.login-info-sub {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 28px;
    line-height: 1.5;
}

.login-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.login-info-icon {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.login-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.login-info-item span {
    font-size: 12px;
    opacity: 0.75;
    line-height: 1.45;
}

/* Colonne formulaire droite */
.login-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.login-form-header {
    margin-bottom: 26px;
}

.login-form-title {
    font-size: 26px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 4px;
}

.login-form-sub {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Alertes */
.login-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.login-alert--error {
    background: #fdf2f2;
    color: #c0392b;
    border: 1px solid #fad7d7;
}

.login-alert--warning {
    background: #fffbec;
    color: #856404;
    border: 1px solid #ffe08a;
}

.login-alert--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Champs du formulaire */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0;
}

.login-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-forgot {
    font-size: 12px;
    color: rgb(9, 71, 113);
    text-decoration: none;
    font-weight: 500;
}

.login-forgot:hover {
    text-decoration: underline;
    color: rgb(9, 71, 113);
}

.login-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d0d7de;
    border-radius: 8px;
    font-size: 14px;
    color: #1b2e45;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.login-input:focus {
    outline: none;
    border-color: rgb(9, 71, 113);
    box-shadow: 0 0 0 3px rgba(9, 71, 113, 0.12);
    background: #fff;
}

/* Champ mot de passe avec toggle */
.login-password-wrap {
    position: relative;
}

.login-password-wrap .login-input {
    padding-right: 44px;
}

.login-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 14px;
    padding: 4px;
    transition: color 0.15s;
}

.login-eye-btn:hover {
    color: rgb(9, 71, 113);
}

/* Bouton connexion */
.login-submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, rgb(9, 71, 113) 0%, #1b5e8e 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 4px;
}

.login-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* Séparateur ou */
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #9ca3af;
    font-size: 13px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

/* Liens extra */
.login-extra-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.login-no-account,
.login-resend-link {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.login-link-register {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: rgb(9, 71, 113);
    text-decoration: none;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 4px;
    transition: background 0.15s;
}

.login-link-register:hover {
    background: #dbeafe;
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.login-link-secondary {
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    margin-left: 4px;
    transition: color 0.15s;
}

.login-link-secondary:hover {
    color: rgb(9, 71, 113);
    text-decoration: underline;
}

/* Note sécurité bas de formulaire */
.login-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.login-security-note i {
    font-size: 10px;
    color: #6b7280;
}



/* =============================================================
   VIGNETTES PRODUIT — États colorés (batterie, grade)
   ============================================================= */

.spec-vignette--good {
    border-color: #bbf7d0 !important;
    background: #f0fdf4 !important;
}
.spec-vignette--good i { color: #16a34a !important; }
.spec-vignette--good strong { color: #166534 !important; }

.spec-vignette--mid {
    border-color: #fde68a !important;
    background: #fffbeb !important;
}
.spec-vignette--mid i { color: #d97706 !important; }
.spec-vignette--mid strong { color: #92400e !important; }

.spec-vignette--low {
    border-color: #fecaca !important;
    background: #fef2f2 !important;
}
.spec-vignette--low i { color: #dc2626 !important; }
.spec-vignette--low strong { color: #991b1b !important; }

.spec-vignette--grade {
    border-color: #c7d2fe !important;
    background: #eef2ff !important;
}
.spec-vignette--grade i { color: #4f46e5 !important; }
.spec-vignette--grade strong { color: #3730a3 !important; }


/* =============================================================
   NAVBAR — Dropdown Mon Compte
   ============================================================= */

.navbar-account-dropdown {
    min-width: 220px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-account-header {
    padding: 10px 16px 8px;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-account-header strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
}

.dropdown-account-header small {
    font-size: 12px;
    color: #6c757d;
}

.navbar-account-dropdown .dropdown-item {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    color: #374151;
    transition: background 0.15s;
}

.navbar-account-dropdown .dropdown-item:hover {
    background: #eff6ff;
    color: rgb(9, 71, 113);
}

.dropdown-item--logout {
    color: #dc2626 !important;
}

.dropdown-item--logout:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}


/* =============================================================
   PAGE CONTACT — Layout & styles
   ============================================================= */

.contact-page-wrap {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 8px;
}

.contact-page-sub {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

@media (max-width: 860px) {
    .contact-layout { grid-template-columns: 1fr; }
}

/* Colonne info */
.contact-info-card {
    background: linear-gradient(145deg, #0a4771 0%, #1b5e8e 100%);
    border-radius: 16px;
    padding: 32px 28px;
    color: #fff;
    position: sticky;
    top: 20px;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-info-baseline {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 28px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.contact-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-item span {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
}

.contact-info-link {
    color: #fff;
    font-size: 12px;
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.15s;
}

.contact-info-link:hover {
    opacity: 1;
    text-decoration: underline;
    color: #fff;
}

.contact-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.contact-tag {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
}

.contact-response-card {
    background: #eff6ff;
    border: 1px solid #c7d7ef;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 16px;
}

.contact-response-icon {
    color: rgb(9, 71, 113);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-response-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 3px;
}

.contact-response-card span {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

/* Formulaire contact */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-title {
    font-size: 20px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f2f5;
}

.contact-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.contact-alert--error   { background: #fdf2f2; color: #c0392b; border: 1px solid #fad7d7; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .contact-form-row { grid-template-columns: 1fr; }
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0;
}

.contact-required {
    color: #ef4444;
}

.contact-input {
    padding: 11px 14px;
    border: 1.5px solid #d0d7de;
    border-radius: 8px;
    font-size: 14px;
    color: #1b2e45;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.contact-input:focus {
    outline: none;
    border-color: rgb(9, 71, 113);
    box-shadow: 0 0 0 3px rgba(9, 71, 113, 0.12);
    background: #fff;
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.contact-rgpd {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgb(9, 71, 113) 0%, #1b5e8e 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    width: 100%;
}

.contact-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* Section carte */
.contact-map-section {
    margin-top: 48px;
}

.contact-map-title {
    font-size: 20px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 20px;
}

.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


/* =============================================================
   PAGE MON COMPTE
   ============================================================= */

.account-page-wrap {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* En-tête bienvenue */
.account-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #0a4771 0%, #1b5e8e 100%);
    border-radius: 16px;
    padding: 28px 32px;
    color: #fff;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.account-welcome-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: -1px;
}

.account-welcome-info {
    flex: 1;
    min-width: 200px;
}

.account-welcome-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.account-welcome-email {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.account-status-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.account-status--verified  { background: rgba(134,239,172,0.3); color: #d1fae5; }
.account-status--pending   { background: rgba(253,230,138,0.3); color: #fef3c7; }

.account-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
    margin-left: auto;
}

.account-logout-btn:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
}

/* Stats rapides */
.account-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

@media (max-width: 700px) {
    .account-stats-row { grid-template-columns: repeat(2, 1fr); }
}

.account-stat-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.account-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: rgb(9, 71, 113);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}

.account-stat-icon--green  { background: #f0fdf4; color: #16a34a; }
.account-stat-icon--blue   { background: #eff6ff; color: rgb(9, 71, 113); }
.account-stat-icon--orange { background: #fff7ed; color: #ea580c; }

.account-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: #1b2e45;
    line-height: 1;
    margin-bottom: 4px;
}

.account-stat-label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

.account-stat-link {
    color: rgb(9, 71, 113);
    text-decoration: none;
    font-size: 15px;
}

/* Grid 2 colonnes */
.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

@media (max-width: 700px) {
    .account-grid { grid-template-columns: 1fr; }
    .account-welcome { flex-direction: column; text-align: center; }
    .account-logout-btn { margin: 0 auto; }
}

/* Cards */
.account-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

.account-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e9ecef;
}

.account-card-header i {
    color: rgb(9, 71, 113);
    font-size: 16px;
}

.account-card-header h2 {
    font-size: 15px;
    font-weight: 700;
    color: #1b2e45;
    margin: 0;
}

.account-card-body {
    padding: 16px 20px;
}

.account-card-footer {
    padding: 12px 20px;
    border-top: 1px solid #f0f2f5;
    background: #fafbfc;
}

.account-card-action {
    font-size: 12px;
    font-weight: 600;
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.account-card-action:hover {
    text-decoration: underline;
    color: rgb(9, 71, 113);
}

/* Infos personnelles */
.account-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
    gap: 12px;
    font-size: 13px;
}

.account-info-row:last-child { border-bottom: none; }

.account-info-label {
    color: #6c757d;
    font-weight: 500;
    min-width: 90px;
    flex-shrink: 0;
}

.account-info-val {
    color: #1b2e45;
    font-weight: 600;
    text-align: right;
}

/* Raccourcis */
.account-shortcuts {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-shortcut {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #1b2e45;
    transition: background 0.15s;
}

.account-shortcut:hover {
    background: #eff6ff;
    text-decoration: none;
    color: rgb(9, 71, 113);
}

.account-shortcut-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eff6ff;
    color: rgb(9, 71, 113);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.account-shortcut-icon--orange { background: #fff7ed; color: #ea580c; }
.account-shortcut-icon--green  { background: #f0fdf4; color: #16a34a; }
.account-shortcut-icon--gray   { background: #f8f9fa; color: #6c757d; }

.account-shortcut strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.account-shortcut span {
    font-size: 11px;
    color: #9ca3af;
}

/* Section commandes */
.account-orders-section {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

.account-orders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e9ecef;
}

.account-orders-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1b2e45;
    margin: 0;
}

.account-orders-header i { color: rgb(9, 71, 113); }

.account-orders-count {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    background: #f0f2f5;
    padding: 3px 10px;
    border-radius: 20px;
}

.account-orders-empty {
    text-align: center;
    padding: 48px 24px;
    color: #9ca3af;
}

.account-orders-empty i {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.account-orders-empty p {
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 16px;
}

.account-orders-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgb(9, 71, 113);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
}

.account-orders-cta:hover { opacity: 0.9; color: #fff; text-decoration: none; }

.account-orders-list {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Carte commande */
.account-order-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.account-order-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #f8fafc;
    flex-wrap: wrap;
    gap: 8px;
}

.account-order-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-order-num {
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
}

.account-order-date {
    font-size: 12px;
    color: #6c757d;
}

.account-order-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-order-statut {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.statut--pending    { background: #fff3cd; color: #856404; }
.statut--paid       { background: #d1fae5; color: #065f46; }
.statut--prep       { background: #dbeafe; color: #1e40af; }
.statut--shipped    { background: #e0e7ff; color: #3730a3; }
.statut--done       { background: #d1fae5; color: #064e3b; }
.statut--cancelled  { background: #fee2e2; color: #991b1b; }

.account-order-total {
    font-size: 16px;
    font-weight: 900;
    color: rgb(9, 71, 113);
}

.account-order-items {
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}

.account-order-item:last-child { border-bottom: none; }

.account-order-item-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    flex-shrink: 0;
}

.account-order-item-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dee2e6;
    font-size: 16px;
}

.account-order-item-info {
    flex: 1;
}

.account-order-item-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
}

.account-order-item-info span {
    font-size: 12px;
    color: #6c757d;
}

.account-order-item-subtotal {
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
}

.account-order-footer {
    padding: 10px 18px;
    background: #fafbfc;
    border-top: 1px solid #f0f2f5;
}

.account-order-contact {
    font-size: 12px;
    font-weight: 600;
    color: rgb(9, 71, 113);
    text-decoration: none;
}

.account-order-contact:hover { text-decoration: underline; color: rgb(9, 71, 113); }

/* Commande annulée — atténuée */
.account-order-card--cancelled {
    opacity: 0.65;
}

/* Compteur en cours (orange) */
.account-orders-count--active {
    background: #fff7ed;
    color: #ea580c;
    border-color: #fdba74;
}

/* ── Flash messages compte ── */
.account-flash {
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.account-flash--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.account-flash--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ── Bouton modifier profil ── */
.account-edit-toggle {
    margin-left: auto;
    background: none;
    border: 1.5px solid rgb(9, 71, 113);
    color: rgb(9, 71, 113);
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.account-edit-toggle:hover,
.account-edit-toggle--active {
    background: rgb(9, 71, 113);
    color: #fff;
}

/* ── Formulaire édition profil ── */
.account-profile-form {
    padding-top: 0 !important;
    border-top: 1px solid #e9ecef;
}
.profile-edit-form {
    padding: 18px 20px 8px;
}
.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
@media (max-width: 540px) {
    .profile-form-grid { grid-template-columns: 1fr; }
}
.profile-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.profile-field--full {
    grid-column: 1 / -1;
}
.profile-field label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.profile-input,
.profile-field input {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1a2b4b;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.profile-input:focus,
.profile-field input:focus {
    outline: none;
    border-color: rgb(9, 71, 113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.08);
}
.profile-field ul {
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}
.profile-field ul li {
    font-size: 12px;
    color: #dc2626;
    font-weight: 500;
}
.profile-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 4px;
}
.profile-btn-save {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: rgb(9, 71, 113);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.profile-btn-save:hover { opacity: 0.88; }
.profile-btn-cancel {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.profile-btn-cancel:hover { background: #f3f4f6; }

/* ── Bloc contact vendeur ── */
.account-card--contact {
    grid-column: 1 / -1;
}
@media (min-width: 900px) {
    .account-card--contact { grid-column: auto; }
}
.account-contact-intro {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}
.account-contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.account-contact-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.account-contact-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.account-contact-btn i {
    font-size: 20px;
    flex-shrink: 0;
}
.account-contact-btn strong {
    display: block;
    font-size: 14px;
    margin-bottom: 1px;
}
.account-contact-btn span {
    font-size: 12px;
    opacity: 0.85;
}
.account-contact-btn--primary {
    background: rgb(9, 71, 113);
    color: #fff;
}
.account-contact-btn--secondary {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.account-contact-info {
    margin-top: 14px;
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}


/* ============================================================
   ADMIN — COMMANDES & CLIENTS
   ============================================================ */

.admin-commandes-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 24px 60px;
}

/* En-tête de page */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}
.admin-back-link {
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}
.admin-back-link:hover { color: rgb(9,71,113); text-decoration: none; }
.admin-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b2e45;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cmd-num { color: rgb(9,71,113); }
.admin-page-header-stats { align-self: center; }
.admin-header-stat { font-size: 14px; color: #6c757d; }

/* Onglets de filtre */
.admin-statut-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.admin-statut-tab {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: #f0f2f5;
    color: #495057;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.15s;
}
.admin-statut-tab:hover { background: #e2e6ea; color: #1b2e45; text-decoration: none; }
.admin-statut-tab.active { background: #1b2e45; color: #fff; border-color: #1b2e45; }
.tab-count {
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 700;
}
.admin-statut-tab.active .tab-count { background: rgba(255,255,255,0.25); }

/* Tableau admin */
.admin-table-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.admin-table thead tr {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}
.admin-table th {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.admin-table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f2f5;
    color: #1b2e45;
}
.admin-table--inner { margin: 0; }
.admin-table-row:hover td { background: #f8fbff; }
.admin-table tfoot td {
    padding: 14px 16px;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.cmd-id { font-weight: 700; color: rgb(9,71,113); white-space: nowrap; }
.cmd-date { white-space: nowrap; font-size: 13px; }
.cmd-date small { color: #6c757d; }
.cmd-item-line { font-size: 12.5px; color: #495057; line-height: 1.6; }
.cmd-total-amount { color: #0a6940; font-size: 15px; font-weight: 700; }
.cmd-total-row td { font-size: 14px; }

/* Badges statut */
.badge-statut {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.badge-statut--lg { font-size: 14px; padding: 7px 16px; border-radius: 20px; }
.badge-statut--pending  { background: #fff3cd; color: #856404; }
.badge-statut--payee    { background: #fde8c8; color: #92400e; }  /* orange — payée mais pas encore préparée */
.badge-statut--prep     { background: #cff4fc; color: #055160; }
.badge-statut--shipped  { background: #d0d3f7; color: #2b2d8e; }
.badge-statut--done     { background: #d1e7dd; color: #0a3622; }  /* vert — livrée/retirée */
.badge-statut--cancelled{ background: #f8d7da; color: #58151c; }
.badge-count {
    background: rgb(9,71,113);
    color: #fff;
    border-radius: 10px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 700;
}

/* Boutons d'action */
.btn-admin-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}
.btn-admin-action--view {
    background: #e8f0f8;
    color: rgb(9,71,113);
    border: 1px solid #c5d8ef;
}
.btn-admin-action--view:hover {
    background: rgb(9,71,113);
    color: #fff;
    text-decoration: none;
}

.btn-admin-action--edit {
    background: #fff8e1;
    color: #b45309;
    border: 1px solid #fde68a;
}
.btn-admin-action--edit:hover {
    background: #f59e0b;
    color: #fff;
    text-decoration: none;
}

.btn-admin-action--delete {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}
.btn-admin-action--delete:hover {
    background: #dc2626;
    color: #fff;
    text-decoration: none;
}

/* ── Page édition client ── */
.admin-edit-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .admin-edit-grid { grid-template-columns: 1fr; }
}

.admin-card--edit { padding: 0; }

.admin-form-grid {
    padding: 0 24px 8px;
}
.admin-form-section {
    margin-bottom: 24px;
    padding-top: 20px;
}
.admin-form-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f3f5;
}
.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.admin-form-row--full {
    grid-template-columns: 1fr;
}
.admin-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.admin-form-field label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}
.admin-input {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1a2b4b;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.admin-input:focus {
    outline: none;
    border-color: rgb(9, 71, 113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.08);
}
.admin-form-field ul { margin: 2px 0 0; padding: 0; list-style: none; }
.admin-form-field ul li { font-size: 12px; color: #dc2626; }

/* Toggle isVerified */
.admin-verified-toggle { padding: 4px 0 8px; }
.admin-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
}
.admin-toggle-track {
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}
.admin-toggle-track.admin-toggle--on { background: #16a34a; }
.admin-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.admin-toggle-track.admin-toggle--on .admin-toggle-thumb { transform: translateX(20px); }
.admin-toggle-text { font-size: 13px; color: #374151; }

/* Actions formulaire */
.admin-form-actions {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #f1f3f5;
}
.btn-admin-save {
    padding: 11px 24px;
    border-radius: 8px;
    border: none;
    background: rgb(9, 71, 113);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-admin-save:hover { opacity: 0.88; }
.btn-admin-cancel {
    padding: 11px 20px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.btn-admin-cancel:hover { background: #f3f4f6; text-decoration: none; color: #374151; }

/* Zone dangereuse */
.admin-card--danger-zone { border: 1.5px solid #fecaca; }
.admin-card-header--danger {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border-bottom: 1px solid #fecaca;
}
.admin-danger-body { padding: 20px; }
.admin-danger-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 18px;
}
.btn-admin-delete {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    border: 1.5px solid #dc2626;
    background: #fff;
    color: #dc2626;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-admin-delete:hover {
    background: #dc2626;
    color: #fff;
}

/* Layout 2 colonnes pour show */
.admin-show-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .admin-show-grid { grid-template-columns: 1fr; }
}
.admin-show-main, .admin-show-side { display: flex; flex-direction: column; gap: 20px; }

/* Cards */
.admin-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}
.admin-card-header {
    padding: 14px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
    display: flex;
    align-items: center;
}
.admin-card-footer {
    padding: 14px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}
.admin-card--statut { border: 2px solid #cff4fc; }
.admin-card--info {
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
    font-size: 14px;
}

/* Boutons avancement statut */
.admin-statut-actions {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn-statut {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-statut--prep    { background: #cff4fc; color: #055160; }
.btn-statut--prep:hover { background: #0dcaf0; color: #fff; }
.btn-statut--ship    { background: #d0d3f7; color: #2b2d8e; }
.btn-statut--ship:hover { background: #4c51c6; color: #fff; }
.btn-statut--pickup  { background: #d1e7dd; color: #0a3622; }
.btn-statut--pickup:hover { background: #198754; color: #fff; }
.btn-statut--done    { background: #d1e7dd; color: #0a3622; }
.btn-statut--done:hover { background: #0a6940; color: #fff; }

/* ── Formulaire expédition avec numéro de suivi ── */
.form-expedier {
    background: #f0f4ff;
    border: 1.5px solid #c7d2fe;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
}
.expedition-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.expedition-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 5px;
}
.expedition-input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid #c7d2fe;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.expedition-input:focus {
    outline: none;
    border-color: #4c51c6;
    box-shadow: 0 0 0 3px rgba(76,81,198,0.1);
}

/* ── Suivi transporteur admin ── */
.admin-tracking-num {
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1a2b4b;
}

/* ── Suivi côté client ── */
.account-order-tracking {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 10px 0 0;
}
.account-tracking-header {
    font-size: 12px;
    font-weight: 700;
    color: #4c51c6;
    margin-bottom: 6px;
}
.account-tracking-num {
    font-family: monospace;
    font-size: 17px;
    font-weight: 800;
    color: #1a2b4b;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.account-tracking-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #4c51c6;
    text-decoration: none;
    border: 1px solid #c7d2fe;
    border-radius: 6px;
    padding: 4px 12px;
    background: #fff;
    transition: background 0.2s;
}
.account-tracking-link:hover {
    background: #4c51c6;
    color: #fff;
    text-decoration: none;
}
.btn-statut--cancel  { background: #f8d7da; color: #58151c; }
.btn-statut--cancel:hover { background: #dc3545; color: #fff; }

/* Infos client dans show commande */
.admin-client-info {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
}
.admin-client-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(9,71,113), #1b5e8e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.admin-client-avatar--sm { width: 34px; height: 34px; font-size: 12px; }
.admin-client-avatar--lg { width: 52px; height: 52px; font-size: 17px; }
.admin-client-mini { display: flex; align-items: center; gap: 10px; }

/* Liste infos */
.admin-info-list { padding: 8px 0; }
.admin-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid #f0f2f5;
    font-size: 13.5px;
}
.admin-info-row:last-child { border-bottom: none; }
.admin-info-label { color: #6c757d; font-weight: 500; flex-shrink: 0; }
.admin-info-value { color: #1b2e45; text-align: right; word-break: break-word; }
.admin-stripe-id { font-family: monospace; font-size: 11px; color: #6c757d; }

/* Item thumbnail */
.cmd-item-info { display: flex; align-items: center; gap: 10px; }
.cmd-item-thumb {
    width: 44px; height: 44px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
}
.cmd-item-thumb--placeholder {
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 16px;
}

/* Flash */
.admin-flash {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.admin-flash--success { background: #d1e7dd; color: #0a3622; }
.admin-flash--error   { background: #f8d7da; color: #58151c; }

/* Lien admin */
.admin-link { color: rgb(9,71,113); text-decoration: none; }
.admin-link:hover { text-decoration: underline; }

/* Empty state */
.admin-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #adb5bd;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.admin-empty-state i { font-size: 48px; margin-bottom: 16px; display: block; }
.admin-empty-state p { font-size: 16px; margin: 0; }
.admin-empty-state--sm { padding: 30px 20px; }
.admin-empty-state--sm i { font-size: 30px; }

/* Bouton contacter client */
.btn-admin-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgb(9,71,113);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-admin-contact:hover { background: #0a5a94; color: #fff; text-decoration: none; }

/* =============================================================
   WIDGET COMMANDES À EXPÉDIER (dashboard admin)
   ============================================================= */

.admin-card--expedier {
    border-left: 4px solid #e8732a;
}

.expedier-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8732a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 9px;
    margin-left: 8px;
    vertical-align: middle;
}

.expedier-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expedier-row {
    display: grid;
    grid-template-columns: 60px 1fr 110px 90px 120px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fff9f5;
    border: 1px solid #f4e0ce;
    border-radius: 10px;
    text-decoration: none;
    color: #1b2e45;
    transition: background 0.15s, box-shadow 0.15s;
}

.expedier-row:hover {
    background: #fef0e4;
    box-shadow: 0 2px 8px rgba(232,115,42,0.12);
    text-decoration: none;
    color: #1b2e45;
}

.expedier-id {
    font-weight: 700;
    font-size: 13px;
    color: rgb(9,71,113);
}

.expedier-client {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expedier-date {
    font-size: 12px;
    color: #6c757d;
}

.expedier-total {
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
    text-align: right;
}

.expedier-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8732a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.15s;
}

.expedier-row:hover .expedier-btn {
    background: #c85f1f;
}

@media (max-width: 768px) {
    .expedier-row {
        grid-template-columns: 50px 1fr 80px;
        grid-template-rows: auto auto;
    }
    .expedier-date, .expedier-total { display: none; }
}


/* =============================================================
   BOUTIQUE — BANDEAU LIVRAISON (delivery-strip)
   ============================================================= */

.delivery-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    flex-wrap: wrap;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    flex: 1;
    min-width: 160px;
}

.delivery-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.delivery-info strong {
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
    line-height: 1.2;
}

.delivery-info span {
    font-size: 11px;
    color: #6c757d;
}

.delivery-sep {
    width: 1px;
    height: 36px;
    background: #eef0f3;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .delivery-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
    .delivery-sep { width: 100%; height: 1px; }
    .delivery-option { padding: 4px 0; }
}


/* =============================================================
   PANIER — BLOC OPTIONS DE LIVRAISON (cart-delivery-box)
   ============================================================= */

.cart-delivery-box {
    margin-top: 18px;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #eef0f3;
    border-radius: 12px;
}

.cart-delivery-title {
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-delivery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eef0f3;
    font-size: 12px;
}

.cart-delivery-row:last-of-type { border-bottom: none; }

.cart-delivery-carrier {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #374151;
}

.cart-delivery-delay {
    color: #6c757d;
    font-size: 11px;
}

.cart-delivery-row--free .cart-delivery-carrier { color: #16a34a; }

.cart-delivery-free {
    color: #16a34a !important;
    font-weight: 700;
}

.cart-delivery-note {
    font-size: 11px;
    color: #adb5bd;
    margin: 10px 0 0;
    line-height: 1.4;
}


/* =============================================================
   PAGE SUCCESS — ÉTAPES LIVRAISON (success-steps)
   ============================================================= */

.success-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 28px 0 22px;
    flex-wrap: wrap;
}

.success-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
}

.success-step--done {
    opacity: 1;
}

.success-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #6c757d;
    transition: background 0.2s;
}

.success-step--done .success-step-icon {
    background: #1a7f37;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(26,127,55,0.15);
}

.success-step-label {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.success-step--done .success-step-label {
    color: #1a7f37;
}

.success-step-arrow {
    margin: 0 8px;
    color: #dee2e6;
    font-size: 12px;
    padding-bottom: 20px;
}


/* =============================================================
   PAGE SUCCESS — INFO LIVRAISON (success-delivery-info)
   ============================================================= */

.success-delivery-info {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.success-delivery-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

.success-delivery-row i {
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}


/* =============================================================
   BOUTON SECONDAIRE AUTH (auth-btn-secondary)
   ============================================================= */

.auth-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: #f0f2f5;
    color: #1b2e45;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-decoration: none;
}

.auth-btn-secondary:hover {
    background: #e4e7eb;
    border-color: #c5cad0;
    color: #1b2e45;
    text-decoration: none;
}

.payment-success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    width: 100%;
}


/* =============================================================
   PANIER — TICKET DE CAISSE (receipt)
   ============================================================= */

.receipt-header {
    font-size: 14px;
    font-weight: 700;
    color: #1b2e45;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 2px solid #f0f2f5;
}

.receipt-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.receipt-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}

.receipt-item-name {
    flex: 1;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
}

.receipt-item-option {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 400;
}

.receipt-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.receipt-item-qty {
    font-size: 12px;
    color: #9ca3af;
    min-width: 28px;
    text-align: right;
}

.receipt-item-price {
    font-size: 13px;
    font-weight: 600;
    color: #1b2e45;
    min-width: 72px;
    text-align: right;
}

.receipt-divider {
    height: 1px;
    background: #f0f2f5;
    margin: 12px 0;
}

.receipt-divider--thick {
    height: 2px;
    background: #e5e7eb;
    margin: 10px 0;
}

.receipt-tax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #6c757d;
    padding: 3px 0;
}

.receipt-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 12px;
}

.receipt-total-label {
    font-size: 15px;
    font-weight: 700;
    color: #1b2e45;
}

.receipt-total-amount {
    font-size: 20px;
    font-weight: 800;
    color: rgb(9, 71, 113);
}

.receipt-legal {
    font-size: 11px;
    color: #adb5bd;
    margin-bottom: 16px;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #dee2e6;
}


/* =============================================================
   BOUTIQUE — MOBILE : barre catégories + bouton panier flottant
   ============================================================= */

/* Barre de filtres catégories mobile — cachée sur desktop */
.mobile-cat-bar {
    display: none;
}

@media (max-width: 992px) {
    .mobile-cat-bar {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 0 0 14px 0;
        margin-bottom: 18px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-cat-bar::-webkit-scrollbar { display: none; }
}

.mobile-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
}

.mobile-cat-pill:hover {
    border-color: rgb(9,71,113);
    color: rgb(9,71,113);
    text-decoration: none;
}

.mobile-cat-pill.active {
    background: rgb(9,71,113);
    border-color: rgb(9,71,113);
    color: #fff;
}

/* Bouton panier flottant mobile */
.mobile-cart-fab {
    display: none;
}

@media (max-width: 992px) {
    .mobile-cart-fab {
        display: flex;
        align-items: center;
        gap: 10px;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        background: rgb(9,71,113);
        color: #fff;
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        box-shadow: 0 6px 24px rgba(9,71,113,0.35);
        z-index: 999;
        white-space: nowrap;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .mobile-cart-fab:hover {
        color: #fff;
        text-decoration: none;
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 10px 30px rgba(9,71,113,0.45);
    }
}

.mobile-cart-fab-count {
    background: #fff;
    color: rgb(9,71,113);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.mobile-cart-fab-total {
    font-size: 15px;
    font-weight: 700;
}


/* =============================================================
   ACCUEIL — Grille articles : centrer quand < 4 articles
   ============================================================= */

.home-articles-grid {
    display: grid;
    /* Cap à 4 colonnes max, chaque card = 240px min/260px max */
    grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
    gap: 24px;
    margin: 0 auto 40px;      /* centre horizontalement */
    justify-content: center;   /* centre les colonnes quand elles ne remplissent pas */
    max-width: 1180px;
    padding: 0 10px;
}

@media (max-width: 600px) {
    .home-articles-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}


/* =============================================================
   HYDROGEL — Sélecteur marque + modèle
   ============================================================= */

.hydrogel-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1b2e45;
    margin-bottom: 8px;
}

.hydrogel-select {
    display: block;
    width: 100%;
    max-width: 340px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    margin-bottom: 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
    transition: border-color 0.15s;
}

.hydrogel-select:focus {
    outline: none;
    border-color: rgb(9,71,113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.12);
}

.hydrogel-select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

.btn-cart-detail:disabled {
    background: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}


/* =============================================================
   FICHE PRODUIT — Section présentation Film Hydrogel
   ============================================================= */

.hydrogel-section {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 16px;
}

/* ── Intro ── */
.hydrogel-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
}

.hydrogel-intro-content { flex: 1; }

.hydrogel-intro-img {
    flex-shrink: 0;
    width: 280px;
    text-align: center;
}

.hydrogel-intro-img img {
    width: 100%;
    max-width: 260px;
    filter: drop-shadow(0 12px 30px rgba(9,71,113,0.15));
}

.hydrogel-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(9,71,113);
    margin-bottom: 10px;
}

.hydrogel-intro-title {
    font-size: 30px;
    font-weight: 900;
    color: #1b2e45;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hydrogel-intro-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* ── Titres de section ── */
.hydrogel-section-title {
    font-size: 26px;
    font-weight: 900;
    color: #1b2e45;
    text-align: center;
    margin-bottom: 36px;
}

/* ── Avantages ── */
.hydrogel-advantages { margin-bottom: 70px; }

.hydrogel-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hydrogel-advantage-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 22px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hydrogel-advantage-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.hydrogel-advantage-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.hydrogel-advantage-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 8px;
}

.hydrogel-advantage-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── VS Table ── */
.hydrogel-vs { margin-bottom: 70px; }

.hydrogel-vs-table {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.hydrogel-vs-header,
.hydrogel-vs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.hydrogel-vs-header {
    background: linear-gradient(135deg, #0d1b2a, rgb(9,71,113));
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}

.hydrogel-vs-header > div,
.hydrogel-vs-row > div {
    padding: 14px 20px;
    text-align: center;
}

.hydrogel-vs-header > div:first-child,
.hydrogel-vs-row > div:first-child {
    text-align: left;
}

.hydrogel-vs-col--hydro { background: rgba(220,252,231,0.3); }
.hydrogel-vs-header .hydrogel-vs-col--hydro { background: rgba(255,255,255,0.12); color: #86efac; }
.hydrogel-vs-header .hydrogel-vs-col--verre { background: rgba(0,0,0,0.1); color: #cbd5e1; }

.hydrogel-vs-row {
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #374151;
}

.hydrogel-vs-row:last-child { border-bottom: none; }
.hydrogel-vs-row:nth-child(even) { background: #f8fafc; }

.hydrogel-vs-label {
    font-weight: 600;
    color: #1b2e45;
}

/* ── Étapes de pose ── */
.hydrogel-steps { margin-bottom: 70px; }

.hydrogel-steps-sub {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 36px;
    margin-top: -20px;
}

.hydrogel-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.hydrogel-step {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s;
}

.hydrogel-step:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.hydrogel-step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(9,71,113);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hydrogel-step-icon {
    font-size: 24px;
    color: rgb(9,71,113);
    margin: 10px 0 12px;
}

.hydrogel-step h3 {
    font-size: 13px;
    font-weight: 800;
    color: #1b2e45;
    margin-bottom: 8px;
}

.hydrogel-step p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

.hydrogel-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

/* ── CTA final ── */
.hydrogel-cta {
    background: linear-gradient(135deg, #0d1b2a, rgb(9,71,113));
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
}

.hydrogel-cta h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
}

.hydrogel-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}

.hydrogel-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hydrogel-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.hydrogel-cta-btn--primary {
    background: #fff;
    color: rgb(9,71,113);
}

.hydrogel-cta-btn--primary:hover {
    background: #e8f0fa;
    color: rgb(9,71,113);
    text-decoration: none;
    transform: translateY(-2px);
}

.hydrogel-cta-btn--secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.hydrogel-cta-btn--secondary:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .hydrogel-intro { flex-direction: column; gap: 30px; }
    .hydrogel-intro-img { width: 200px; }
    .hydrogel-advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .hydrogel-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .hydrogel-vs-header > div,
    .hydrogel-vs-row > div { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 600px) {
    .hydrogel-advantages-grid { grid-template-columns: 1fr; }
    .hydrogel-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .hydrogel-cta { padding: 32px 20px; }
}

/* Grille 8 étapes hydrogel */
.hydrogel-steps-grid--8 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .hydrogel-steps-grid--8 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hydrogel-steps-grid--8 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE PARTENAIRES — Design premium
═══════════════════════════════════════════════════════════════ */

/* ── Animations ── */
@keyframes ptn-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -20px) scale(1.05); }
    66%      { transform: translate(-20px, 25px) scale(0.95); }
}

@keyframes ptn-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ptn-pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}

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

@keyframes ptn-shine {
    0%   { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(300%) skewX(-15deg); }
}

/* ══════════════════════════════════════════════
   BANNIÈRE HERO GRANDE — page réparation (460px)
═══════════════════════════════════════════════ */
#carouselExampleIndicators2.banner-page,
.carousel.banner-page {
    width: 90%;
    height: 460px;
    border-radius: 18px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
}

.banner-page .carousel-inner,
.banner-page .carousel-item {
    height: 460px;
}

.banner-page .carousel-inner img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* ══════════════════════════════════════════════
   BANNIÈRE PARTENAIRES — réduite (290px desktop)
═══════════════════════════════════════════════ */
#carouselExampleIndicators2.banner-partenaires {
    width: 90%;
    height: 290px;
    border-radius: 16px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 22px rgba(0,0,0,0.13);
    overflow: hidden;
}

.banner-partenaires .carousel-inner,
.banner-partenaires .carousel-item {
    height: 290px;
}

.banner-partenaires .carousel-inner img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

/* Caption par défaut sur les bannières de pages secondaires —
   titre centré vertical + horizontal, lisible sur n'importe quelle photo */
.banner-page .carousel-caption {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    text-align: center;
}

.banner-page .carousel-caption h1,
.banner-page .carousel-caption h2,
.banner-page .carousel-caption h5,
.banner-page .carousel-caption #uneRep,
.banner-page .carousel-caption #quiSommesNous {
    color: #fff;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    margin: 0;
}

/* Responsive tablet */
@media (max-width: 991px) {
    #carouselExampleIndicators2.banner-page { height: 420px; }
    .banner-page .carousel-inner,
    .banner-page .carousel-item,
    .banner-page .carousel-inner img { height: 420px; }
    .banner-page .carousel-caption h1,
    .banner-page .carousel-caption h2,
    .banner-page .carousel-caption h5,
    .banner-page .carousel-caption #uneRep,
    .banner-page .carousel-caption #quiSommesNous { font-size: 34px; }
}

/* Responsive mobile */
@media (max-width: 575px) {
    #carouselExampleIndicators2.banner-page {
        height: 380px;
        width: 94%;
        border-radius: 14px;
    }
    .banner-page .carousel-inner,
    .banner-page .carousel-item,
    .banner-page .carousel-inner img { height: 380px; }
    .banner-page .carousel-caption h1,
    .banner-page .carousel-caption h2,
    .banner-page .carousel-caption h5,
    .banner-page .carousel-caption #uneRep,
    .banner-page .carousel-caption #quiSommesNous { font-size: 26px; }
}

/* Caption : centré verticalement + horizontalement (override Bootstrap) */
.banner-partenaires .partners-caption {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 20px 16px;
    text-align: center;
    animation: ptn-fade-up 0.7s ease-out;
}

/* Bannière réduite : on masque les stats pour garder une hauteur compacte.
   Le contenu factuel des partenaires reste visible juste en dessous. */
.banner-partenaires .partners-caption-stats {
    display: none !important;
}

.partners-caption-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 12px;
}

.partners-caption-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74,222,128,0.28);
    animation: ptn-pulse-dot 2.4s ease-in-out infinite;
}

.partners-caption-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    max-width: 700px;
}

.partners-caption-accent {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    position: relative;
    padding: 0 4px;
}

.partners-caption-accent::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 4px; right: 4px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.9), transparent);
    border-radius: 2px;
}

.partners-caption-sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.92);
    line-height: 1.45;
    max-width: 560px;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Stats à l'intérieur de la bannière */
.partners-caption-stats {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
}

.partners-caption-stats .ptn-stat-num {
    color: #fff;
}

.partners-caption-stats .ptn-stat-num i {
    color: #fbbf24;
}

.partners-caption-stats .ptn-stat-label {
    color: rgba(255,255,255,0.8);
}

.partners-caption-stats .ptn-stat-sep {
    background: rgba(255,255,255,0.25);
}

.ptn-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ptn-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: ptn-float 18s ease-in-out infinite;
}

.ptn-blob--1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #f59e0b, transparent 70%);
    top: -80px; left: -100px;
    animation-delay: 0s;
}

.ptn-blob--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #2196f3, transparent 70%);
    bottom: -120px; right: -80px;
    animation-delay: -6s;
    opacity: 0.3;
}

.ptn-blob--3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #22c55e, transparent 70%);
    top: 40%; left: 50%;
    transform: translateX(-50%);
    animation-delay: -12s;
    opacity: 0.2;
}

.ptn-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    animation: ptn-fade-up 0.8s ease-out;
}

/* Badge */
.ptn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    color: #fff;
}

.ptn-hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74,222,128,0.25);
    animation: ptn-pulse-dot 2.4s ease-in-out infinite;
}

/* Titre */
.ptn-hero-title {
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 22px;
    color: #fff;
}

.ptn-hero-title span {
    display: inline-block;
}

.ptn-hero-title-accent {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    padding: 0 6px;
}

.ptn-hero-title-accent::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 6px;
    right: 6px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

/* Sous-titre */
.ptn-hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    max-width: 640px;
    margin: 0 auto 38px;
}

/* Stats */
.ptn-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 18px 34px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    margin-bottom: 40px;
}

.ptn-stat {
    text-align: center;
}

.ptn-stat-num {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ptn-stat-num i {
    font-size: 24px;
    color: #fbbf24;
}

.ptn-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    font-weight: 600;
}

.ptn-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
}

/* Scroll */
.ptn-hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.2s;
}

.ptn-hero-scroll:hover {
    color: #fbbf24 !important;
}

.ptn-hero-scroll i {
    font-size: 16px;
    animation: ptn-bounce-arrow 1.8s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════ */
.ptn-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px 80px;
}

/* ══════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════ */
.ptn-section {
    margin-bottom: 80px;
}

.ptn-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 46px;
}

.ptn-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d97706;
    background: #fef3c7;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(245,158,11,0.2);
}

.ptn-section-eyebrow i {
    font-size: 11px;
}

.ptn-section-eyebrow--blue {
    color: rgb(9,71,113);
    background: #e6f0f7;
    border-color: rgba(9,71,113,0.15);
}

.ptn-section-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.ptn-section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════
   PARTENAIRES PREMIUM — Cards éditoriales
═══════════════════════════════════════════════ */
.ptn-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.ptn-premium-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 16px rgba(15,23,42,0.06);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    animation: ptn-fade-up 0.6s ease-out backwards;
}

.ptn-premium-card:nth-child(1) { animation-delay: 0.1s; }
.ptn-premium-card:nth-child(2) { animation-delay: 0.2s; }
.ptn-premium-card:nth-child(3) { animation-delay: 0.3s; }

.ptn-premium-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.06),
        0 20px 48px rgba(9,71,113,0.18);
}

/* Ruban Premium */
.ptn-premium-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow:
        0 2px 8px rgba(245,158,11,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    overflow: hidden;
}

.ptn-premium-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: ptn-shine 3s ease-in-out infinite;
}

.ptn-premium-ribbon i {
    font-size: 10px;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

/* Image */
.ptn-premium-img {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ptn-premium-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.08) 100%);
    pointer-events: none;
}

.ptn-premium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.ptn-premium-card:hover .ptn-premium-img img {
    transform: scale(1.06);
}

.ptn-premium-noimg {
    font-size: 72px;
    color: #cbd5e1;
}

/* Body */
.ptn-premium-body {
    padding: 26px 26px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ptn-premium-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgb(9,71,113);
    background: #eff6fb;
    padding: 4px 11px;
    border-radius: 16px;
    align-self: flex-start;
    margin-bottom: 14px;
}

.ptn-premium-category i {
    font-size: 9px;
}

.ptn-premium-name {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    line-height: 1.25;
}

.ptn-premium-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 22px;
    flex: 1;
}

.ptn-premium-actions {
    margin-top: auto;
}

.ptn-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(9,71,113,0.25);
    position: relative;
    overflow: hidden;
}

.ptn-premium-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4d7a 0%, rgb(9,71,113) 100%);
    opacity: 0;
    transition: opacity 0.25s;
}

.ptn-premium-btn span, .ptn-premium-btn i {
    position: relative;
    z-index: 1;
}

.ptn-premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9,71,113,0.35);
    color: #fff !important;
}

.ptn-premium-btn:hover::before {
    opacity: 1;
}

.ptn-premium-btn i {
    transition: transform 0.25s;
}

.ptn-premium-btn:hover i {
    transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   PARTENAIRES NORMAL — Grille de tuiles
═══════════════════════════════════════════════ */
.ptn-normal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}

.ptn-normal-tile {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    text-decoration: none !important;
    color: inherit !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    animation: ptn-fade-up 0.5s ease-out backwards;
}

.ptn-normal-tile:nth-child(1) { animation-delay: 0.05s; }
.ptn-normal-tile:nth-child(2) { animation-delay: 0.1s; }
.ptn-normal-tile:nth-child(3) { animation-delay: 0.15s; }
.ptn-normal-tile:nth-child(4) { animation-delay: 0.2s; }
.ptn-normal-tile:nth-child(5) { animation-delay: 0.25s; }
.ptn-normal-tile:nth-child(6) { animation-delay: 0.3s; }

.ptn-normal-tile:hover {
    transform: translateY(-6px);
    border-color: rgb(9,71,113);
    box-shadow: 0 14px 30px rgba(9,71,113,0.15);
    color: inherit !important;
    text-decoration: none !important;
}

.ptn-normal-tile--nolink {
    cursor: default;
}

.ptn-normal-tile--nolink:hover {
    transform: none;
    border-color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ptn-normal-img {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    overflow: hidden;
}

.ptn-normal-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ptn-normal-tile:hover .ptn-normal-img img {
    transform: scale(1.1) rotate(-2deg);
}

.ptn-normal-noimg {
    font-size: 52px;
    color: #cbd5e1;
}

.ptn-normal-hover {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgb(9,71,113);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s, transform 0.25s;
    box-shadow: 0 4px 10px rgba(9,71,113,0.35);
}

.ptn-normal-tile:hover .ptn-normal-hover {
    opacity: 1;
    transform: scale(1);
}

.ptn-normal-info {
    padding: 14px 16px 16px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.ptn-normal-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 3px;
}

.ptn-normal-cat {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   BANDEAU VALEURS
═══════════════════════════════════════════════ */
.ptn-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 42px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6fb 100%);
    border-radius: 20px;
    margin-bottom: 80px;
    border: 1px solid #e2e8f0;
}

.ptn-value {
    text-align: center;
}

.ptn-value-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgb(9,71,113);
    box-shadow: 0 4px 14px rgba(9,71,113,0.12);
    border: 1px solid rgba(9,71,113,0.08);
}

.ptn-value h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.ptn-value p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════
   ÉTAT VIDE
═══════════════════════════════════════════════ */
.ptn-empty {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6fb 100%);
    border-radius: 24px;
    border: 2px dashed #cbd5e1;
}

.ptn-empty-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: rgb(9,71,113);
    box-shadow: 0 6px 20px rgba(9,71,113,0.15);
}

.ptn-empty h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
}

.ptn-empty p {
    font-size: 15px;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ══════════════════════════════════════════════
   CTA DEVENIR PARTENAIRE
═══════════════════════════════════════════════ */
.ptn-cta {
    position: relative;
    background: linear-gradient(135deg, #0a1f3a 0%, rgb(9,71,113) 60%, #0d4d7a 100%);
    border-radius: 28px;
    overflow: hidden;
    padding: 64px 48px;
    text-align: center;
}

.ptn-cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(245,158,11,0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(33,150,243,0.15) 0%, transparent 45%);
    pointer-events: none;
}

.ptn-cta-content {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    color: #fff;
}

.ptn-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 26px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(245,158,11,0.4);
    transform: rotate(-4deg);
}

.ptn-cta h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.15;
}

.ptn-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 32px;
}

.ptn-cta-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.ptn-cta-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.ptn-cta-btn--primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a1f3a !important;
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

.ptn-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,158,11,0.5);
    color: #0a1f3a !important;
}

.ptn-cta-btn--ghost {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ptn-cta-btn--ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 992px) {
    .partners-caption-title { font-size: 38px; }
    .ptn-section-title { font-size: 30px; }
    .ptn-values { grid-template-columns: 1fr; padding: 36px 28px; }
    .ptn-cta { padding: 52px 32px; }
}

@media (max-width: 768px) {
    #carouselExampleIndicators2.banner-partenaires { height: 420px; }
    .banner-partenaires .carousel-inner,
    .banner-partenaires .carousel-item,
    .banner-partenaires .carousel-inner img { height: 420px; }

    .partners-caption { padding: 24px 20px; }
    .partners-caption-title { font-size: 28px; line-height: 1.18; }
    .partners-caption-sub { font-size: 14px; margin-bottom: 22px; }
    .partners-caption-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
    .partners-caption-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 12px 18px;
    }
    .ptn-stat-sep { display: none; }
    .ptn-stat-num { font-size: 22px; }

    .ptn-container { padding: 60px 16px; }
    .ptn-section { margin-bottom: 60px; }
    .ptn-section-title { font-size: 26px; }
    .ptn-section-desc { font-size: 14px; }

    .ptn-premium-grid { grid-template-columns: 1fr; gap: 22px; }
    .ptn-premium-body { padding: 22px 22px 24px; }
    .ptn-premium-name { font-size: 21px; }

    .ptn-normal-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
    .ptn-normal-img { padding: 20px; }

    .ptn-cta { padding: 44px 24px; border-radius: 20px; }
    .ptn-cta h2 { font-size: 26px; }
    .ptn-cta p { font-size: 14.5px; }
    .ptn-cta-btn { width: 100%; justify-content: center; }
    .ptn-cta-actions { display: flex; width: 100%; }
}

@media (max-width: 480px) {
    #carouselExampleIndicators2.banner-partenaires { height: 380px; }
    .banner-partenaires .carousel-inner,
    .banner-partenaires .carousel-item,
    .banner-partenaires .carousel-inner img { height: 380px; }
    .partners-caption-title { font-size: 22px; }
    .partners-caption-sub { font-size: 13px; }
    .partners-caption-stats { gap: 12px; padding: 10px 14px; }
    .ptn-stat-num { font-size: 18px; }
    .ptn-stat-label { font-size: 10px; }
    .ptn-normal-grid { grid-template-columns: repeat(2, 1fr); }
    .ptn-normal-name { font-size: 12.5px; }
}

/* ═══════════════════════════════════════════════════
   PANIER — SÉLECTION MODE DE LIVRAISON
═══════════════════════════════════════════════════ */
.receipt-tax-row--shipping {
    padding: 8px 0;
    font-size: 13px;
    color: #374151;
    font-weight: 600;
    border-top: 1px dashed #e5e7eb;
    margin-top: 6px;
}

.shipping-select-box {
    margin-top: 20px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.shipping-select-title {
    font-size: 13px;
    font-weight: 700;
    color: rgb(9,71,113);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
    position: relative;
}

.shipping-option:hover {
    border-color: rgb(9,71,113);
    box-shadow: 0 2px 8px rgba(9,71,113,0.08);
}

.shipping-option--active {
    border-color: rgb(9,71,113) !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #eff6fb 100%);
    box-shadow:
        0 0 0 3px rgba(9,71,113,0.1),
        0 2px 8px rgba(9,71,113,0.08);
}

.shipping-option--active::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: rgb(9,71,113);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.shipping-option input[type="radio"] {
    display: none;
}

.shipping-option-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
}

.shipping-option--active .shipping-option-icon {
    background: #fff;
    border-color: rgba(9,71,113,0.2);
}

.shipping-option-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.shipping-option-label {
    font-size: 13px;
    color: #1a2b4b;
    font-weight: 700;
}

.shipping-option-delay {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
}

.shipping-option-price {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 800;
    color: rgb(9,71,113);
    padding-right: 22px;
}

.shipping-free {
    color: #16a34a;
    font-weight: 800;
    font-size: 13px;
}

.shipping-note {
    font-size: 11px;
    color: #6b7280;
    font-style: italic;
    margin: 10px 2px 0;
    line-height: 1.5;
}

.shipping-bulky-notice {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, #eff6fb 0%, #dbeafe 100%);
    border: 1px solid rgba(9,71,113,0.2);
    border-left: 3px solid rgb(9,71,113);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.shipping-bulky-notice > i {
    font-size: 18px;
    color: rgb(9,71,113);
    flex-shrink: 0;
    margin-top: 2px;
}

.shipping-bulky-notice > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
    line-height: 1.5;
}

.shipping-bulky-notice strong {
    color: rgb(9,71,113);
    font-size: 12.5px;
    font-weight: 700;
}

.shipping-bulky-notice span {
    color: #475569;
}

/* ═══════════════════════════════════════════════════
   NOTICE — "Vérifiez vos spams" (réutilisable)
═══════════════════════════════════════════════════ */
.spam-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    border-left: 3px solid #f59e0b;
    border-radius: 12px;
    padding: 14px 18px;
    margin: 18px 0 6px;
    text-align: left;
}

.spam-notice > i {
    font-size: 20px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.spam-notice > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 13px;
    line-height: 1.55;
}

.spam-notice strong {
    color: #92400e;
    font-size: 13.5px;
    font-weight: 700;
}

.spam-notice span {
    color: #78350f;
}

.spam-notice em {
    background: rgba(245, 158, 11, 0.18);
    color: #78350f;
    padding: 1px 6px;
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 12.5px;
}

/* ═══════════════════════════════════════════════════
   CONTACT — Boutons sous la carte Google Maps
═══════════════════════════════════════════════════ */
.contact-map-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-map-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: rgb(9,71,113);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 6px rgba(9,71,113,0.15);
}

.contact-map-btn:hover {
    background: #0a5a8a;
    transform: translateY(-1px);
    color: #fff !important;
}

.contact-map-btn--ghost {
    background: #fff;
    color: rgb(9,71,113) !important;
    border: 1.5px solid #e2e8f0;
    box-shadow: none;
}

.contact-map-btn--ghost:hover {
    background: #f8fafc;
    border-color: rgb(9,71,113);
    color: rgb(9,71,113) !important;
}

/* ═══════════════════════════════════════════════════
   AVIS — Avatars initiales + badge Google + CTA
═══════════════════════════════════════════════════ */
.review-avatar--initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.review-badge-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    margin-left: 4px;
    vertical-align: middle;
}

.review-quote-icon {
    color: rgba(9,71,113,0.18);
    font-size: 18px;
    margin-right: 6px;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    background: #fff;
    color: #4285f4 !important;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.reviews-google-link:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 14px rgba(66,133,244,0.2);
    transform: translateY(-2px);
    color: #4285f4 !important;
    text-decoration: none !important;
}

/* ═══════════════════════════════════════════════════
   AVIS CLIENTS — PAGE /AVIS + FORMULAIRE + MES AVIS
═══════════════════════════════════════════════════ */

/* ── En-tête page /avis ── */
.rev-page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6fb 100%);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    margin-bottom: 36px;
    border: 1px solid #e2e8f0;
}

.rev-page-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #16a34a;
    background: #dcfce7;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(22,163,74,0.2);
    margin-bottom: 14px;
}

.rev-page-title {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.rev-global-score {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 28px;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.rev-global-score-number {
    font-size: 48px;
    font-weight: 900;
    color: rgb(9,71,113);
    line-height: 1;
}

.rev-global-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.rev-global-count {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.rev-global-count strong {
    color: #1a2b4b;
}

.rev-distribution {
    max-width: 420px;
    margin: 0 auto 22px;
}

.rev-dist-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.rev-dist-label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    min-width: 24px;
    text-align: right;
}

.rev-dist-label .fa-star {
    color: #f59e0b;
    font-size: 11px;
}

.rev-dist-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rev-dist-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    transition: width 0.5s ease-out;
}

.rev-dist-count {
    font-size: 12px;
    color: #6b7280;
    min-width: 30px;
    text-align: left;
    font-weight: 600;
}

.rev-page-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 100%);
    color: #fff !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(9,71,113,0.2);
}

.rev-page-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9,71,113,0.3);
    color: #fff !important;
}

/* ── Liste des avis ── */
.rev-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rev-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s;
}

.rev-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

.rev-card--verified {
    border-left: 3px solid #16a34a;
}

.rev-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.rev-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.rev-card-meta {
    flex: 1;
    min-width: 0;
}

.rev-card-author {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b4b;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.rev-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(22,163,74,0.2);
}

.rev-card-date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.rev-card-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.rev-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.rev-card-comment {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.65;
    margin: 0 0 10px;
}

.rev-card-product {
    font-size: 12px;
    color: #6b7280;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 10px;
}

.rev-card-product a {
    color: rgb(9,71,113);
    font-weight: 600;
    text-decoration: none;
}

.rev-card-response {
    margin-top: 14px;
    padding: 12px 14px;
    background: #eff6fb;
    border-left: 3px solid rgb(9,71,113);
    border-radius: 8px;
}

.rev-card-response-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgb(9,71,113);
    margin-bottom: 4px;
}

.rev-card-response-date {
    color: #6b7280;
    font-weight: 500;
}

.rev-card-response p {
    margin: 0;
    font-size: 13.5px;
    color: #374151;
    line-height: 1.6;
}

/* État vide */
.rev-empty {
    text-align: center;
    padding: 70px 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
}

.rev-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.rev-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4b;
    margin: 0 0 8px;
}

.rev-empty p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 auto;
    max-width: 400px;
    line-height: 1.6;
}

.rev-bottom-cta {
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(135deg, #eff6fb 0%, #dbeafe 100%);
    border-radius: 16px;
    margin-top: 40px;
}

/* ═══════════════════════════════════════════════════
   Rappel avis Google sur /avis
═══════════════════════════════════════════════════ */
.rev-google-recap {
    margin: 60px 0 40px;
    padding: 44px 36px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.rev-google-recap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4 0%, #34a853 33%, #fbbc04 66%, #ea4335 100%);
}

.rev-google-recap-header {
    text-align: center;
    margin-bottom: 32px;
}

.rev-google-recap-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4285f4;
    background: #e8f0fe;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(66,133,244,0.2);
    margin-bottom: 14px;
}

.rev-google-recap-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.rev-google-recap-score {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #eef2f6;
}

.rev-google-score-num {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.rev-google-score-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.rev-google-score-count {
    font-size: 13px;
    color: #64748b;
    padding-left: 12px;
    border-left: 1px solid #e2e8f0;
}

.rev-google-score-count strong {
    color: #0f172a;
}

.rev-google-recap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.rev-google-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}

.rev-google-card:hover {
    box-shadow: 0 4px 14px rgba(66,133,244,0.1);
    transform: translateY(-2px);
}

.rev-google-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.rev-google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rev-google-avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.rev-google-meta {
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}

.rev-google-author {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a2b4b;
}

.rev-google-time {
    font-size: 11.5px;
    color: #64748b;
    margin-top: 2px;
}

.rev-google-badge {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 5px rgba(66,133,244,0.3);
}

.rev-google-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rev-google-text {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.rev-google-recap-cta {
    text-align: center;
}

.rev-google-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    background: #fff;
    color: #4285f4 !important;
    font-size: 13.5px;
    font-weight: 700;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.rev-google-link:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 14px rgba(66,133,244,0.18);
    transform: translateY(-2px);
    color: #4285f4 !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .rev-google-recap { padding: 32px 22px; }
    .rev-google-recap-title { font-size: 22px; }
    .rev-google-recap-grid { grid-template-columns: 1fr; }
}

.rev-bottom-cta h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a2b4b;
    margin: 0 0 10px;
}

.rev-bottom-cta p {
    font-size: 14.5px;
    color: #475569;
    margin: 0 0 18px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Formulaire de création ── */
.rev-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.rev-form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.rev-form-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(9,71,113,0.25);
}

.rev-form-title {
    font-size: 26px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 8px;
}

.rev-form-sub {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 14px;
}

.rev-commande-badge {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    color: #166534;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(22,163,74,0.2);
}

.rev-field {
    margin-bottom: 22px;
}

.rev-field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a2b4b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rev-input, .rev-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #1a2b4b;
    transition: border-color 0.2s;
    font-family: inherit;
}

.rev-input:focus, .rev-textarea:focus {
    border-color: rgb(9,71,113);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(9,71,113,0.08);
}

.rev-textarea {
    resize: vertical;
    min-height: 120px;
}

.rev-helper {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

/* Étoiles radio (ancien système — conservé pour compat) */
.rev-stars-radio {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rev-stars-radio label {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #374151;
    transition: all 0.15s;
    margin: 0;
}

.rev-stars-radio label:has(input:checked) {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
    font-weight: 700;
}

.rev-star-input {
    margin-right: 10px;
    accent-color: #f59e0b;
}

/* ═══════════════════════════════════════════════════
   NOUVEAU SÉLECTEUR ÉTOILES — Étoiles à gauche + pastille à droite
═══════════════════════════════════════════════════ */
.rev-rating-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rev-rating-row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: #f8fafc;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    margin: 0;
    transition: all 0.15s;
}

.rev-rating-row:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.rev-rating-row:has(.rev-rating-input:checked) {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
    transform: scale(1.01);
}

.rev-rating-input {
    display: none;
}

.rev-rating-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 3px;
    flex-shrink: 0;
}

.rev-rating-row .far.fa-star {
    color: #d4d4d8;
}

/* Spacer entre étoiles et pastille */
.rev-rating-row > .rev-rating-stars + .rev-rating-pill {
    margin-left: auto;
}

.rev-rating-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid;
    flex-shrink: 0;
    min-width: 95px;
}

.rev-rating-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f59e0b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 6px rgba(245,158,11,0.3);
    flex-shrink: 0;
}

.rev-rating-row:has(.rev-rating-input:checked) .rev-rating-check {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 560px) {
    .rev-rating-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 10px 14px;
    }
    .rev-rating-stars {
        font-size: 15px;
        letter-spacing: 2px;
    }
    .rev-rating-pill {
        grid-column: 1 / 2;
        min-width: 0;
        justify-self: start;
        font-size: 10.5px;
        padding: 3px 10px;
    }
    .rev-rating-check {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        align-self: center;
    }
}

/* Choix affichage nom */
.rev-display-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.rev-display-choice {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13.5px;
    color: #374151;
    transition: all 0.15s;
    margin: 0;
}

.rev-display-choice:has(.rev-display-input:checked) {
    background: #eff6fb;
    border-color: rgb(9,71,113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.08);
    font-weight: 600;
    color: rgb(9,71,113);
}

.rev-display-input {
    margin-right: 8px;
    accent-color: rgb(9,71,113);
}

/* Notice modération */
.rev-moderation-notice {
    display: flex;
    gap: 12px;
    background: #eff6fb;
    border: 1px solid rgba(9,71,113,0.15);
    border-left: 3px solid rgb(9,71,113);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 22px;
}

.rev-moderation-notice > i {
    color: rgb(9,71,113);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rev-moderation-notice strong {
    display: block;
    color: rgb(9,71,113);
    font-size: 13px;
}

.rev-moderation-notice span {
    font-size: 13px;
    color: #475569;
}

/* Boutons */
.rev-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.rev-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 100%);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 12px rgba(9,71,113,0.2);
}

.rev-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(9,71,113,0.3);
}

.rev-cancel-link {
    color: #6b7280 !important;
    font-size: 13px;
    text-decoration: none !important;
    font-weight: 600;
}

.rev-cancel-link:hover {
    color: #374151 !important;
}

/* ── Mes avis (statut + variantes) ── */
.rev-card--my {
    position: relative;
}

.rev-card--pending {
    border-left: 3px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fff 30%);
}

.rev-card--rejected {
    border-left: 3px solid #ef4444;
    opacity: 0.7;
}

.rev-my-status {
    margin-bottom: 10px;
}

.rev-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rev-status--approved {
    background: #dcfce7;
    color: #166534;
    border: 1px solid rgba(22,163,74,0.3);
}

.rev-status--pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid rgba(245,158,11,0.3);
}

.rev-status--rejected {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid rgba(239,68,68,0.3);
}

/* ═══════════════════════════════════════════════════
   FLASH MESSAGES (rev-flash)
═══════════════════════════════════════════════════ */
.rev-flash {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 48px 16px 18px;
    border-radius: 12px;
    border: 1px solid;
    border-left-width: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
    animation: revFlashIn 0.4s ease-out;
}

@keyframes revFlashIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rev-flash > i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.rev-flash > div { flex: 1; }

.rev-flash-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: currentColor;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
}

.rev-flash-close:hover { opacity: 1; }

.rev-flash--success {
    background: #dcfce7;
    border-color: #22c55e;
    color: #14532d;
}

.rev-flash--error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #7f1d1d;
}

.rev-flash--info {
    background: #dbeafe;
    border-color: rgb(9,71,113);
    color: #0c4a6e;
}

.rev-flash--warning {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #78350f;
}

/* ═══════════════════════════════════════════════════
   ADMIN — Badge notif sidebar "Avis clients"
═══════════════════════════════════════════════════ */
.sidebar-notif-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: auto;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(239,68,68,0.4);
    animation: sidebarBadgePulse 2.5s ease-in-out infinite;
    float: right;
    line-height: 1;
}

@keyframes sidebarBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 6px rgba(239,68,68,0.4); }
    50%      { transform: scale(1.1); box-shadow: 0 2px 10px rgba(239,68,68,0.6); }
}

/* ═══════════════════════════════════════════════════
   ADMIN — Dash card "Avis clients" avec badge
═══════════════════════════════════════════════════ */
.dash-card--reviews {
    position: relative;
}

/* Liseré orange uniquement si avis en attente de modération */
.dash-card--reviews-pending {
    border-left: 3px solid #f59e0b;
}

.dash-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239,68,68,0.4);
    line-height: 1;
}

/* ═══════════════════════════════════════════════════
   ADMIN — Section Avis en attente (widget)
═══════════════════════════════════════════════════ */
.admin-card--pending-reviews {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fff 60%);
}

/* ═══════════════════════════════════════════════════
   ADMIN — Meilleures ventes (best-sellers)
═══════════════════════════════════════════════════ */
.bestseller-total-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 14px;
    margin-left: 8px;
    vertical-align: middle;
}

.bestseller-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.bestseller-row {
    display: grid;
    grid-template-columns: 50px 52px 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border: 1px solid #eef2f6;
    border-radius: 10px;
    transition: box-shadow 0.2s, transform 0.15s;
}

.bestseller-row:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    transform: translateY(-1px);
}

.bestseller-rank {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #6b7280;
}

.bestseller-rank--1, .bestseller-rank--2, .bestseller-rank--3 {
    font-size: 24px;
}

.bestseller-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bestseller-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bestseller-thumb > i {
    font-size: 22px;
    color: #cbd5e1;
}

.bestseller-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.bestseller-info strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a2b4b;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bestseller-info small {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.bestseller-stats {
    display: flex;
    gap: 18px;
    align-items: center;
}

.bestseller-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    border-left: 1px solid #e5e7eb;
}

.bestseller-stat:first-child { border-left: none; }

.bestseller-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: rgb(9,71,113);
    line-height: 1;
}

.bestseller-stat-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 3px;
    font-weight: 600;
}

.bestseller-revenue {
    font-size: 16px;
    font-weight: 900;
    color: #16a34a;
    background: #dcfce7;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(22,163,74,0.2);
}

/* ═══════════════════════════════════════════════════
   PAGE STATISTIQUES — /admin/statistiques
═══════════════════════════════════════════════════ */

/* Sélecteur d'année */
.stats-year-select {
    padding: 8px 32px 8px 14px;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23fff'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

.stats-year-select option {
    background: rgb(9,71,113);
    color: #fff;
}

/* ── KPI cards ── */
.stats-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stats-kpi {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.15s, box-shadow 0.2s;
    border-left-width: 4px;
}

.stats-kpi:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.stats-kpi--ca      { border-left-color: rgb(9,71,113); }
.stats-kpi--orders  { border-left-color: #f59e0b; }
.stats-kpi--cart    { border-left-color: #3b82f6; }
.stats-kpi--clients { border-left-color: #16a34a; }
.stats-kpi--reviews { border-left-color: #fbbf24; }

.stats-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #94a3b8;
    flex-shrink: 0;
}

.stats-kpi--ca      .stats-kpi-icon { background: #eff6fb; color: rgb(9,71,113); }
.stats-kpi--orders  .stats-kpi-icon { background: #fef3c7; color: #d97706; }
.stats-kpi--cart    .stats-kpi-icon { background: #dbeafe; color: #3b82f6; }
.stats-kpi--clients .stats-kpi-icon { background: #dcfce7; color: #16a34a; }
.stats-kpi--reviews .stats-kpi-icon { background: #fef3c7; color: #f59e0b; }

.stats-kpi-content { flex: 1; min-width: 0; }

.stats-kpi-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 3px;
}

.stats-kpi-value {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.stats-kpi-value small {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.stats-kpi-trend {
    font-size: 11.5px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

.stats-trend--up   { color: #16a34a; font-weight: 700; }
.stats-trend--down { color: #ef4444; font-weight: 700; }

/* ── Graphiques ── */
.stats-charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stats-chart-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.stats-chart-card--wide {
    grid-column: 1 / -1;
}

.stats-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.stats-chart-header h3 {
    font-size: 14px;
    font-weight: 800;
    color: #1a2b4b;
    margin: 0;
}

.stats-chart-total {
    font-size: 14px;
    font-weight: 800;
    color: rgb(9,71,113);
    background: #eff6fb;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(9,71,113,0.15);
}

.stats-chart-body {
    position: relative;
    /* Limite la hauteur des graphiques pour éviter qu'ils prennent trop de place */
    max-height: 260px;
}

.stats-chart-body canvas {
    max-height: 240px !important;
}

/* Le graphique CA (wide) peut être légèrement plus haut */
.stats-chart-card--wide .stats-chart-body {
    max-height: 220px;
}

.stats-chart-card--wide .stats-chart-body canvas {
    max-height: 200px !important;
}

/* Variante TALL — pour le top 10 articles (10 barres = plus haut) */
.stats-chart-card--wide .stats-chart-body--tall {
    max-height: 460px;
}
.stats-chart-card--wide .stats-chart-body--tall canvas {
    max-height: 440px !important;
    min-height: 380px;
}

/* Variante SPLIT — canvas à gauche + légende texte à droite */
.stats-chart-body--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 18px;
    align-items: center;
    max-height: none;
}

.stats-chart-body--split .stats-chart-canvas-wrap {
    position: relative;
    height: 220px;
}

.stats-chart-body--split canvas {
    max-height: 220px !important;
    max-width: 100%;
}

.stats-chart-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 0;
}

.stats-legend-row {
    display: grid;
    grid-template-columns: 12px 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background 0.15s;
}

.stats-legend-row:hover {
    background: #f8fafc;
}

.stats-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stats-legend-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a2b4b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stats-legend-label small {
    font-weight: 400;
    margin-left: 6px;
}

.stats-legend-value {
    font-size: 13px;
    font-weight: 800;
    color: rgb(9,71,113);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.stats-legend-pct {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 46px;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Sélecteurs de période */
.stats-filters {
    display: inline-flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .stats-chart-body--split {
        grid-template-columns: 1fr;
    }
    .stats-chart-body--split .stats-chart-canvas-wrap {
        max-width: 240px;
        margin: 0 auto;
    }
    .stats-filters {
        flex-wrap: wrap;
    }
    .stats-chart-card--wide .stats-chart-body--tall {
        max-height: 500px;
    }
}

.stats-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

.stats-empty i {
    font-size: 32px;
    color: #cbd5e1;
}

/* ── Section Trafic (placeholder) ── */
.stats-traffic-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 30px;
}

.stats-traffic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.stats-traffic-header h3 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.stats-traffic-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #0ea5e9;
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(14,165,233,0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-traffic-body {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stats-traffic-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0ea5e9;
    box-shadow: 0 4px 14px rgba(14,165,233,0.15);
}

.stats-traffic-content {
    flex: 1;
}

.stats-traffic-content strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 6px;
}

.stats-traffic-content p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 12px;
}

.stats-traffic-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stats-traffic-hints span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.7);
    color: #475569;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid rgba(14,165,233,0.15);
}

.stats-traffic-hints i {
    color: #0ea5e9;
    font-size: 10px;
}

/* Mode GA actif */
.stats-traffic-card--active {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(22,163,74,0.25);
}

.stats-traffic-badge--active {
    background: #dcfce7;
    color: #166534;
    border-color: rgba(22,163,74,0.3);
}

.stats-traffic-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #fff;
    color: #4285f4 !important;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid #4285f4;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.stats-traffic-btn:hover {
    background: #4285f4;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(66,133,244,0.3);
    transform: translateY(-1px);
}

.stats-traffic-btn--ghost {
    background: transparent;
    color: #0f172a !important;
    border-color: rgba(0,0,0,0.15);
}

.stats-traffic-btn--ghost:hover {
    background: #f8fafc;
    color: #0f172a !important;
    border-color: rgba(0,0,0,0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stats-traffic-body code {
    background: #eff6fb;
    color: rgb(9,71,113);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .stats-charts-grid { grid-template-columns: 1fr; }
    .stats-chart-card--wide { grid-column: auto; }
}

@media (max-width: 560px) {
    .stats-traffic-body { flex-direction: column; }
    .stats-traffic-icon { margin: 0 auto; }
    .stats-traffic-content { text-align: center; }
    .stats-traffic-hints { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   FLOW RÉPARATION — Hero + Stepper + Cards + Devis sticky
═══════════════════════════════════════════════════════════════ */

/* Animation apparition cascade */
@keyframes repFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO banner ── */
.rep-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1f3a 0%, rgb(9,71,113) 50%, #0d4d7a 100%);
    padding: 50px 20px 40px;
    overflow: hidden;
    color: #fff;
    margin-bottom: 40px;
}

.rep-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.rep-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.28;
}

.rep-hero-blob--1 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
    top: -120px; right: -80px;
}

.rep-hero-blob--2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #22c55e 0%, transparent 70%);
    bottom: -100px; left: -60px;
    opacity: 0.2;
}

.rep-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.rep-hero-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.rep-hero-breadcrumb a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    font-weight: 500;
}

.rep-hero-breadcrumb a:hover {
    color: #fbbf24 !important;
}

.rep-hero-sep {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.rep-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 14px;
}

.rep-hero-title {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    line-height: 1.15;
}

.rep-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 0 28px;
}

/* ── STEPPER ── */
.rep-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow-x: auto;
}

.rep-step {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: inherit !important;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.rep-step--done:hover {
    background: rgba(255,255,255,0.1);
    cursor: pointer;
}

.rep-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rep-step--done .rep-step-circle {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}

.rep-step--active .rep-step-circle {
    background: #fbbf24;
    color: #0a1f3a;
    box-shadow: 0 0 0 4px rgba(251,191,36,0.3);
    animation: repPulse 2s ease-in-out infinite;
}

.rep-step--upcoming .rep-step-circle {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.55);
    border: 1px dashed rgba(255,255,255,0.3);
}

@keyframes repPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(251,191,36,0.3); }
    50%      { box-shadow: 0 0 0 8px rgba(251,191,36,0.15); }
}

.rep-step-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    white-space: nowrap;
}

.rep-step-label small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.rep-step--active .rep-step-label small { color: #fbbf24; }

.rep-step-label span {
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin-top: 1px;
}

.rep-step--upcoming .rep-step-label span { color: rgba(255,255,255,0.55); }

.rep-step-line {
    flex: 1 1 20px;
    min-width: 18px;
    height: 2px;
    border-radius: 2px;
}

.rep-step-line--done    { background: #22c55e; }
.rep-step-line--upcoming { background: rgba(255,255,255,0.2); }

/* ── CONTAINER ── */
.rep-container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.rep-container--flex {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

/* ── Bandeau contextuel (marque/modèle sélectionné) ── */
.rep-context-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #eff6fb 0%, #dbeafe 100%);
    border: 1px solid rgba(9,71,113,0.15);
    border-left: 4px solid rgb(9,71,113);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 22px;
}

.rep-context-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rep-context-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(0,0,0,0.05);
}

.rep-context-brand small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rep-context-brand strong {
    font-size: 15px;
    color: #1a2b4b;
    font-weight: 800;
}

.rep-context-change {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: rgb(9,71,113) !important;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    border: 1px solid rgba(9,71,113,0.15);
    transition: all 0.2s;
}

.rep-context-change:hover {
    background: rgb(9,71,113);
    color: #fff !important;
    border-color: rgb(9,71,113);
}

/* ── Guide info ── */
.rep-guide-info {
    display: flex;
    gap: 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 22px;
}

.rep-guide-info > i {
    color: #d97706;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rep-guide-info strong {
    display: block;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 3px;
}

.rep-guide-info span {
    font-size: 13px;
    color: #78350f;
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   GRILLE MARQUES
═══════════════════════════════════════════════════ */
.rep-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.rep-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 18px 20px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
                border-color 0.2s;
    opacity: 0;
    animation: repFadeUp 0.5s ease-out forwards;
    overflow: hidden;
}

.rep-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,71,113,0) 0%, rgba(9,71,113,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.rep-brand-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgb(9,71,113);
    box-shadow: 0 12px 30px rgba(9,71,113,0.18);
}

.rep-brand-card:hover::before {
    opacity: 1;
}

.rep-brand-img {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s;
}

.rep-brand-card:hover .rep-brand-img {
    transform: scale(1.08);
}

.rep-brand-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rep-brand-img > i {
    font-size: 36px;
    color: #cbd5e1;
}

.rep-brand-name {
    position: relative;
    font-size: 15px;
    font-weight: 800;
    color: #1a2b4b;
    text-align: center;
    transition: color 0.2s;
}

.rep-brand-card:hover .rep-brand-name {
    color: rgb(9,71,113);
}

.rep-brand-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(9,71,113,0.08);
    color: rgb(9,71,113);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s, background 0.2s;
}

.rep-brand-card:hover .rep-brand-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgb(9,71,113);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   GRILLE MODÈLES
═══════════════════════════════════════════════════ */
.rep-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.rep-model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none !important;
    color: inherit !important;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
                border-color 0.2s;
    opacity: 0;
    animation: repFadeUp 0.5s ease-out forwards;
}

.rep-model-card:hover {
    transform: translateY(-6px);
    border-color: rgb(9,71,113);
    box-shadow: 0 14px 32px rgba(9,71,113,0.18);
    color: inherit !important;
}

.rep-model-img {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
}

.rep-model-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.rep-model-card:hover .rep-model-img img {
    transform: scale(1.1);
}

.rep-model-img > i {
    font-size: 46px;
    color: #cbd5e1;
}

.rep-model-info {
    padding: 14px 16px 16px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.rep-model-brand {
    font-size: 10.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.rep-model-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a2b4b;
    line-height: 1.3;
    margin-bottom: 8px;
}

.rep-model-cta {
    font-size: 11.5px;
    font-weight: 700;
    color: rgb(9,71,113);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0.7;
    transition: opacity 0.2s, gap 0.2s;
}

.rep-model-card:hover .rep-model-cta {
    opacity: 1;
    gap: 8px;
}

.rep-model-cta i {
    font-size: 10px;
}

/* ═══════════════════════════════════════════════════
   LISTE RÉPARATIONS + DEVIS
═══════════════════════════════════════════════════ */
.rep-main-col {
    min-width: 0;
}

.rep-section {
    margin-bottom: 28px;
}

.rep-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1.5px solid #e5e7eb;
}

.rep-section-head i {
    font-size: 16px;
}

.rep-section-head h2 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.rep-section-head small {
    font-size: 12px;
    color: #94a3b8;
    margin-left: auto;
    font-style: italic;
}

.rep-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rep-item {
    display: block;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    margin: 0;
    opacity: 0;
    animation: repFadeUp 0.4s ease-out forwards;
}

.rep-item:hover {
    border-color: rgb(9,71,113);
    box-shadow: 0 4px 14px rgba(9,71,113,0.1);
    transform: translateX(4px);
}

.rep-item--selected {
    border-color: rgb(9,71,113) !important;
    background: linear-gradient(135deg, #eff6fb 0%, #dbeafe 100%);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.1), 0 4px 14px rgba(9,71,113,0.12);
}

.rep-item-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rep-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
}

.rep-item-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.rep-item--selected .rep-item-icon {
    background: rgb(9,71,113);
    color: #fff;
}

.rep-item-main {
    flex: 1;
    min-width: 0;
}

.rep-item-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a2b4b;
    line-height: 1.3;
    margin-bottom: 2px;
}

.rep-item-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.rep-item-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.rep-item-price {
    font-size: 15px;
    font-weight: 900;
    color: rgb(9,71,113);
    white-space: nowrap;
}

.rep-item-price--free {
    color: #16a34a;
    background: #dcfce7;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rep-item-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.rep-item:hover .rep-item-check {
    border-color: rgb(9,71,113);
}

.rep-item--selected .rep-item-check {
    background: rgb(9,71,113);
    border-color: rgb(9,71,113);
    color: #fff;
    transform: scale(1.05);
}

/* ── DEVIS STICKY (desktop) ── */
.rep-devis {
    position: relative;
}

.rep-devis-sticky {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.rep-devis-header {
    background: linear-gradient(135deg, rgb(9,71,113) 0%, #0d4d7a 100%);
    color: #fff;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
}

.rep-devis-empty {
    padding: 36px 20px;
    text-align: center;
    color: #94a3b8;
}

.rep-devis-empty i {
    font-size: 34px;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: block;
}

.rep-devis-empty p {
    font-size: 13px;
    margin: 0;
    line-height: 1.55;
}

.rep-devis-list {
    list-style: none;
    padding: 14px 20px;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.rep-devis-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #eef2f6;
    font-size: 13px;
}

.rep-devis-item:last-child { border-bottom: none; }

.rep-devis-item-name {
    color: #374151;
    flex: 1;
    line-height: 1.35;
}

.rep-devis-item-price {
    color: rgb(9,71,113);
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.rep-devis-summary {
    background: #f8fafc;
    padding: 14px 20px;
    border-top: 1px solid #e5e7eb;
}

.rep-devis-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #64748b;
    padding: 4px 0;
}

.rep-devis-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid #e5e7eb;
    font-size: 14px;
    color: #1a2b4b;
    font-weight: 800;
}

.rep-devis-amount {
    font-size: 22px;
    font-weight: 900;
    color: rgb(9,71,113);
    transition: transform 0.25s;
    font-variant-numeric: tabular-nums;
}

.rep-devis-amount--pulse {
    animation: repAmountPulse 0.4s ease-out;
}

@keyframes repAmountPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.12); color: #22c55e; }
    100% { transform: scale(1); }
}

.rep-devis-cta {
    display: block;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff !important;
    font-size: 14.5px;
    font-weight: 800;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: filter 0.2s, transform 0.15s;
    box-shadow: 0 2px 10px rgba(22,163,74,0.2) inset;
}

.rep-devis-cta:hover {
    filter: brightness(1.08);
    color: #fff !important;
}

.rep-devis-reassurance {
    padding: 12px 18px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rep-devis-reassurance > div {
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.rep-devis-reassurance i {
    color: #16a34a;
    font-size: 11px;
    width: 14px;
    text-align: center;
}

/* ── Devis mobile (barre fixe bas) ── */
.rep-mobile-devis {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    z-index: 100;
}

.rep-mobile-devis-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.rep-mobile-devis-info small {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.rep-mobile-devis-info strong {
    font-size: 20px;
    font-weight: 900;
    color: rgb(9,71,113);
    margin-top: 2px;
}

.rep-mobile-devis-btn {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(22,163,74,0.25);
}

/* ── Aide / État vide partagés ── */
.rep-help-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6fb 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 30px;
}

.rep-help-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgb(9,71,113);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(9,71,113,0.25);
}

.rep-help-content strong {
    display: block;
    font-size: 15px;
    color: #1a2b4b;
    margin-bottom: 4px;
}

.rep-help-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 12px;
}

.rep-help-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rep-help-btn {
    display: inline-flex;
    align-items: center;
    background: rgb(9,71,113);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s;
}

.rep-help-btn:hover {
    background: #0d4d7a;
    color: #fff !important;
    transform: translateY(-1px);
}

.rep-help-btn--phone {
    background: #16a34a;
}

.rep-help-btn--phone:hover {
    background: #15803d;
}

.rep-empty {
    text-align: center;
    padding: 60px 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    margin-bottom: 30px;
}

.rep-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 14px;
    display: block;
}

.rep-empty h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a2b4b;
    margin: 0 0 8px;
}

.rep-empty p {
    font-size: 14px;
    color: #64748b;
    max-width: 440px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.rep-empty-btn {
    display: inline-flex;
    align-items: center;
    background: rgb(9,71,113);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.2s;
}

.rep-empty-btn:hover { background: #0d4d7a; color: #fff !important; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .rep-container--flex {
        grid-template-columns: 1fr;
    }
    .rep-devis-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .rep-hero { padding: 36px 18px 30px; }
    .rep-hero-title { font-size: 26px; }
    .rep-hero-sub { font-size: 14px; }

    .rep-stepper {
        padding: 10px 14px;
        gap: 4px;
    }
    .rep-step-circle { width: 28px; height: 28px; font-size: 11px; }
    .rep-step-label small { font-size: 9px; }
    .rep-step-label span { font-size: 11.5px; }

    .rep-brands-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
    .rep-brand-card { padding: 20px 14px 16px; }
    .rep-brand-img { width: 60px; height: 60px; }
    .rep-brand-name { font-size: 13px; }

    .rep-models-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }

    .rep-context-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .rep-context-change { width: 100%; justify-content: center; }

    .rep-item-content { padding: 12px 14px; gap: 10px; }
    .rep-item-icon { width: 32px; height: 32px; font-size: 13px; }
    .rep-item-name { font-size: 13.5px; }
    .rep-item-desc { font-size: 12px; }
    .rep-item-price { font-size: 14px; }

    /* Réserve de l'espace en bas pour la barre mobile devis */
    .rep-main-col { padding-bottom: 90px; }

    .rep-help-box { flex-direction: column; padding: 18px; }
    .rep-help-icon { align-self: flex-start; }
}

@media (max-width: 480px) {
    .rep-stepper {
        overflow-x: scroll;
        justify-content: flex-start;
    }
    .rep-step-label { display: none; }
    .rep-step-line { min-width: 14px; }
    .rep-hero-title { font-size: 22px; }
}

@media (max-width: 768px) {
    .bestseller-row {
        grid-template-columns: 40px 42px 1fr;
        gap: 10px;
        padding: 10px 12px;
    }
    .bestseller-stats {
        grid-column: 1 / -1;
        justify-content: space-around;
        padding-top: 10px;
        border-top: 1px solid #eef2f6;
        margin-top: 4px;
    }
    .bestseller-revenue {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 15px;
    }
    .bestseller-rank { font-size: 18px; }
}

/* Responsive */
@media (max-width: 768px) {
    .rev-form-card { padding: 28px 22px; }
    .rev-form-title { font-size: 22px; }
    .rev-display-choices { grid-template-columns: 1fr; }
    .rev-page-header { padding: 28px 20px; }
    .rev-page-title { font-size: 26px; }
    .rev-global-score-number { font-size: 40px; }
    .rev-card-header { flex-wrap: wrap; gap: 10px; }
    .rev-card-stars { width: 100%; }
    .rev-form-actions { flex-direction: column-reverse; align-items: stretch; }
    .rev-submit-btn { width: 100%; }
    .rev-bottom-cta { padding: 28px 20px; }
    .rev-bottom-cta h3 { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════
   AVIS SUR FICHE PRODUIT (section boutique/show)
═══════════════════════════════════════════════════ */
.article-reviews-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.article-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.article-reviews-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.article-reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-reviews-score {
    font-size: 28px;
    font-weight: 900;
    color: rgb(9,71,113);
}

.article-reviews-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
}

.article-reviews-count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.article-reviews-empty {
    text-align: center;
    padding: 30px;
    color: #6b7280;
    font-size: 14px;
}

.article-reviews-empty i {
    display: block;
    font-size: 36px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════
   BOUTONS COMPTE — "Laisser un avis"
═══════════════════════════════════════════════════ */
.account-order-review-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(245,158,11,0.25);
}

.account-order-review-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
    color: #fff !important;
}

.account-order-review-done {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #16a34a;
    font-weight: 600;
    background: #dcfce7;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(22,163,74,0.2);
}

/* ═══════════════════════════════════════════════════
   SÉLECTEUR D'ARTICLES (formulaire avis type Amazon)
═══════════════════════════════════════════════════ */
.rev-article-select {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.rev-article-choice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s;
    margin: 0;
}

.rev-article-choice:hover {
    border-color: rgb(9,71,113);
    background: #eff6fb;
    box-shadow: 0 2px 8px rgba(9,71,113,0.08);
}

.rev-article-choice:has(.rev-article-input:checked) {
    background: linear-gradient(135deg, #eff6fb 0%, #dbeafe 100%);
    border-color: rgb(9,71,113);
    box-shadow: 0 0 0 3px rgba(9,71,113,0.1);
}

.rev-article-choice:has(.rev-article-input:checked) .rev-article-check {
    opacity: 1;
    transform: scale(1);
}

.rev-article-choice--general {
    background: #fffbeb;
    border-color: rgba(245,158,11,0.25);
}

.rev-article-choice--general:hover {
    background: #fef3c7;
    border-color: #f59e0b;
}

.rev-article-choice--general:has(.rev-article-input:checked) {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

.rev-article-choice--general:has(.rev-article-input:checked) .rev-article-check {
    background: #f59e0b !important;
}

.rev-article-choice--disabled {
    background: #f1f5f9;
    border-color: #e5e7eb;
    opacity: 0.65;
    cursor: not-allowed;
}

.rev-article-input {
    display: none;
}

.rev-article-img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev-article-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rev-article-img > i {
    font-size: 22px;
    color: #cbd5e1;
}

.rev-article-img--general {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: rgba(245,158,11,0.3);
}

.rev-article-img--general > i {
    font-size: 24px;
    color: #d97706;
}

.rev-article-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rev-article-info strong {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a2b4b;
    line-height: 1.3;
}

.rev-article-info small {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.rev-article-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgb(9,71,113);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 6px rgba(9,71,113,0.25);
}

@media (max-width: 480px) {
    .shipping-option { padding: 10px 12px; gap: 10px; }
    .shipping-option-icon { width: 30px; height: 30px; font-size: 13px; }
    .shipping-option-label { font-size: 12px; }
    .shipping-option-delay { font-size: 10px; }
    .shipping-option-price { font-size: 13px; padding-right: 20px; }
}
