/* ── 1. BASE ── */
* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #1a1a1a;
    margin: 0;
}

/* ── 2. NAVBAR ── */
.navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    height: 64px;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0 14px !important;
    line-height: 64px;
}

/* Navbar transparente (sur hero) */
.navbar:not(.scrolled) .nav-link            { color: rgba(255,255,255,0.92) !important; }
.navbar:not(.scrolled) .nav-link:hover      { color: #FFB81C !important; }
.navbar:not(.scrolled) .btn-cart            { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.5); color: #fff !important; }

/* Navbar scrollée */
.navbar.scrolled .nav-link                  { color: #555 !important; }
.navbar.scrolled .nav-link:hover            { color: #C8102E !important; }
.navbar.scrolled .btn-cart                  { background: #C8102E; border: none; color: #fff !important; }

/* Bouton panier */
.btn-cart {
    background: #C8102E;
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 18px !important;
    line-height: normal;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.btn-cart:hover { background: #a50d25; color: #fff !important; }

/* ── Burger → Croix (sans transition intermédiaire) ── */
.navbar-toggler .navbar-toggler-icon {
    transition: none !important;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath stroke='rgba%280,0,0,0.75%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 2l12 12M14 2L2 14'/%3e%3c/svg%3e") !important;
}

/* ── Menu burger mobile ── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.97);
        border-radius: 0 0 12px 12px;
        padding: 12px 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .navbar-collapse .nav-link,
    .navbar:not(.scrolled) .navbar-collapse .nav-link {
        color: #1a1a1a !important;
        line-height: 2.5;
    }
    .navbar-collapse .nav-link:hover,
    .navbar:not(.scrolled) .navbar-collapse .nav-link:hover {
        color: #C8102E !important;
    }
    .navbar-collapse .btn-cart {
        background: #C8102E !important;
        color: #fff !important;
        border: none !important;
        margin-top: 8px;
        justify-content: center;
    }
    .navbar-collapse .dropdown-item { color: #1a1a1a !important; }

    .dropdown-menu-shop {
        max-height: 55vh;
        overflow-y: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background:
            linear-gradient(white 30%, rgba(255,255,255,0)) center top,
            linear-gradient(rgba(255,255,255,0), white 70%) center bottom,
            radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.1), rgba(0,0,0,0)) center top,
            radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.1), rgba(0,0,0,0)) center bottom;
        background-repeat: no-repeat;
        background-size: 100% 40px, 100% 40px, 100% 8px, 100% 8px;
        background-attachment: local, local, scroll, scroll;
    }
}

/* ── Dropdown boutique ── */
.dropdown-menu-shop {
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    min-width: 220px;
}
.dropdown-menu-shop .dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: background 0.15s;
}
.dropdown-menu-shop .dropdown-item:hover {
    background: #f8f7f5;
    color: #C8102E;
}
.dropdown-menu-shop .dropdown-divider {
    margin: 6px 0;
    border-color: #ebebeb;
}

/* ── 3. HERO ── */
.hero-section {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    margin-top: -68px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: #fff;
}
.hero-title span   { color: #FFB81C; }
.hero-subtitle     { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.hero-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 6px;
}
.badge-red   { background: #C8102E; color: #fff; }
.badge-gold  { background: #FFB81C; color: #7a4e00; }
.badge-white { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.hero-logo {
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
    animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* ── 4. BOUTONS ── */
.btn-hero-primary {
    background: #C8102E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    margin-right: 12px;
}
.btn-hero-primary:hover        { background: #a50d25; color: #fff; transform: translateY(-2px); }
.btn-hero-primary.w-100        { width: 100%; text-align: center; display: block; margin-right: 0; }

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.7);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-2px); }

/* ── 5. SECTIONS ── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C8102E;
    margin-bottom: 4px;
}
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}
.link-voir-tout {
    font-size: 0.875rem;
    font-weight: 600;
    color: #C8102E;
    text-decoration: none;
    transition: color 0.15s;
}
.link-voir-tout:hover { color: #a50d25; }

/* ── 6. BANDEAU SCROLL CATÉGORIES ── */
.scroll-track-wrapper {
    overflow: hidden;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 16px 0;
}
.scroll-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: scrollLeft 65s linear infinite;
}
.scroll-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.scroll-cat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 10px 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
    min-width: 120px;
    height: 56px;
}
.scroll-cat-item:hover { border-color: #C8102E; transform: translateY(-2px); }

/* ── 7. CARTES CATÉGORIES (texte + icône) ── */
.cat-card {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    display: block;
    transition: border-color 0.2s, transform 0.2s;
    background: #fff;
}
.cat-card:hover         { border-color: #C8102E; transform: translateY(-3px); color: #1a1a1a; }
.cat-card-icon          { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.cat-card-name          { font-weight: 700; font-size: 0.95rem; }

/* ── 8. CARTES CATÉGORIES AVEC IMAGE ── */
.cat-card-img {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    aspect-ratio: 2/3;
    background: #f0efed;
    width: 100%;
}
.cat-card-img img               { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cat-card-img:hover img         { transform: scale(1.05); }
.cat-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.cat-card-img:hover .cat-card-img-overlay { opacity: 1; }
.cat-card-img-name { color: #fff; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.3px; }

/* ── 9. CARTES PRODUITS ── */
.product-card {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
    height: 100%;
}
.product-card:hover             { box-shadow: 0 8px 30px rgba(0,0,0,0.09); transform: translateY(-3px); }
.product-card a                 { text-decoration: none; color: inherit; }

.product-img {
    height: 260px;
    background: #f8f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}
.product-img img {
    max-height: 240px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder        { width: 120px; height: 170px; background: #e0ddd5; border-radius: 6px; }

/* Badges produits */
.badge-type {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-display  { background: #C8102E; color: #fff; }
.badge-booster  { background: #004899; color: #fff; }
.badge-pack     { background: #FFB81C; color: #7a4e00; }
.badge-box      { background: #1a1a1a; color: #fff; }
.badge-new {
    position: absolute;
    top: 10px; right: 10px;
    background: #FFB81C; color: #7a4e00;
    font-size: 0.65rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
}
.badge-top {
    position: absolute;
    top: 10px; right: 10px;
    background: #C8102E; color: #fff;
    font-size: 0.65rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
}

/* Corps carte produit */
.product-body           { padding: 14px; }
.product-name           { font-size: 0.875rem; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; line-height: 1.4; min-height: 38px; }
.product-footer         { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price          { font-size: 1.05rem; font-weight: 800; color: #000; }
.product-stock-ok       { font-size: 0.75rem; color: #16a34a; font-weight: 500; }
.product-stock-no       { font-size: 0.75rem; color: #dc2626; font-weight: 500; }

.btn-add {
    width: 32px; height: 32px;
    background: #C8102E;
    border: none; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    color: #fff; font-size: 1.2rem; line-height: 1;
    text-decoration: none;
}
.btn-add:hover { background: #a50d25; color: #fff; }

/* ── 10. SCROLL PRODUITS HORIZONTAL ── */
.scroll-products-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}
.scroll-products-track::-webkit-scrollbar { display: none; }
.scroll-product-item {
    min-width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
}
.scroll-nav             { display: flex; gap: 8px; align-items: center; }
.scroll-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ebebeb;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #1a1a1a; font-size: 1rem;
}
.scroll-btn:hover { border-color: #C8102E; color: #C8102E; }

/* ── 11. SÉPARATEUR UNIVERS ── */
.universe-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}
.universe-divider::before,
.universe-divider::after    { content: ''; flex: 1; height: 1px; background: #e0ddd5; }
.universe-divider-label {
    background: #1a1a1a; color: #fff;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 6px 18px; border-radius: 20px;
    white-space: nowrap;
}
.universe-divider-link { white-space: nowrap; }

/* ── 12. RASSURANCE ── */
.reassurance-block {
    padding: 32px 24px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.reassurance-block:hover    { box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-3px); }
.reassurance-icon           { font-size: 2.2rem; margin-bottom: 14px; color: #C8102E; }
.reassurance-title          { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.reassurance-text           { font-size: 0.875rem; color: #666; margin: 0; line-height: 1.6; }

/* ── 13. FOOTER ── */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 48px 0 24px;
}
.footer-brand               { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; display: block; }
.footer-brand span          { color: #C8102E; }
.footer-heading             { font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
footer ul                   { list-style: none; padding: 0; margin: 0; }
footer ul li                { margin-bottom: 8px; }
footer a                    { color: #aaa; text-decoration: none; font-size: 0.875rem; transition: color 0.15s; }
footer a:hover              { color: #fff; }
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

/* ── 14. FORMULAIRES AUTH ── */
.auth-form {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 32px;
}
.auth-field                 { margin-bottom: 18px; }
.auth-field label           { display: block; font-size: 0.875rem; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.auth-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: border-color 0.2s;
    outline: none;
}
.auth-input:focus           { border-color: #C8102E; }
.auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #555;
}
.auth-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: #C8102E; flex-shrink: 0; }

/* ── 15. PAGES LÉGALES ── */
.legal-section              { margin-bottom: 36px; }
.legal-section h2           { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #ebebeb; }
.legal-section p,
.legal-section li           { font-size: 0.9rem; color: #444; line-height: 1.8; }
.legal-section ul,
.legal-section ol           { padding-left: 20px; }
.legal-section li           { margin-bottom: 6px; }
.legal-date                 { font-size: 0.8rem; color: #999; margin-top: 40px; padding-top: 20px; border-top: 1px solid #ebebeb; }

/* ── 16. PAGE HERO (toutes pages sauf home) ── */
.page-hero {
    position: relative;
    padding: 120px 0 50px;
    margin-top: -64px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
}
.page-hero-bg               { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay          { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.page-hero-content          { position: relative; z-index: 2; width: 100%; padding-bottom: 8px; }

/* ── 17. FILTRES CATALOGUE ── */
.filter-toggle-btn {
    background: transparent;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-toggle-btn:hover,
.filter-toggle-btn.active   { background: #C8102E; border-color: #C8102E; color: #fff; }

.filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    background: #f8f7f5;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #ebebeb;
    margin-bottom: 24px;
    animation: slideDown 0.2s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.filter-bar-item            { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 130px; }
.filter-bar-label           { font-size: 0.75rem; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.06em; }
.filter-bar-input,
.filter-bar-select {
    padding: 9px 12px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.filter-bar-input:focus,
.filter-bar-select:focus    { border-color: #C8102E; }
.filter-bar-btn {
    background: #C8102E; color: #fff;
    border: none; padding: 9px 24px;
    border-radius: 8px; font-size: 0.875rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.filter-bar-btn:hover       { background: #a50d25; }
.filter-reset               { font-size: 0.8rem; color: #999; text-decoration: none; padding: 9px 0; }
.filter-reset:hover         { color: #C8102E; }

/* ── 18. PAGE PRODUIT (fiche) ── */
.product-detail-img {
    background: #f8f7f5;
    border-radius: 16px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-img-placeholder-large  { width: 180px; height: 250px; background: #e0ddd5; border-radius: 8px; }
.product-detail-info-row        { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.product-detail-info-label      { font-size: 0.8rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.06em; min-width: 60px; }
.product-detail-info-value      { font-size: 0.875rem; color: #1a1a1a; font-weight: 500; }

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    overflow: hidden;
}
.quantity-selector button       { width: 36px; height: 40px; border: none; background: #f8f7f5; font-size: 1.1rem; cursor: pointer; color: #1a1a1a; transition: background 0.2s; }
.quantity-selector button:hover { background: #ebebeb; }
.quantity-selector input        { width: 48px; height: 40px; border: none; border-left: 1px solid #ebebeb; border-right: 1px solid #ebebeb; text-align: center; font-size: 0.9rem; font-weight: 600; color: #1a1a1a; outline: none; }

.btn-add-to-cart {
    background: #C8102E; color: #fff;
    border: none; padding: 10px 20px;
    border-radius: 8px; font-size: 0.875rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.btn-add-to-cart:hover { background: #a50d25; transform: translateY(-1px); }

.product-reassurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 16px;
}
.product-reassurance-item       { display: flex; align-items: center; gap: 12px; padding: 8px; }
.product-reassurance-title      { font-size: 0.82rem; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }
.product-reassurance-sub        { font-size: 0.75rem; color: #999; margin: 0; }

/* ── 19. PANIER ── */
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ebebeb;
}
.cart-item-img                  { flex-shrink: 0; }
.cart-item-info                 { flex: 1; }
.cart-item-category             { font-size: 0.75rem; color: #999; margin: 0 0 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.cart-item-name                 { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; margin: 0 0 6px; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 4px 8px;
}
.cart-item-qty button           { background: none; border: none; font-size: 1rem; cursor: pointer; color: #555; padding: 0 4px; transition: color 0.2s; }
.cart-item-qty button:hover     { color: #C8102E; }
.cart-item-qty span             { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 80px;
}
.cart-item-remove               { background: none; border: none; font-size: 0.75rem; color: #ccc; cursor: pointer; transition: color 0.2s; }
.cart-item-remove:hover         { color: #C8102E; }
.cart-summary {
    background: #f8f7f5;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #ebebeb;
    position: sticky;
    top: 80px;
}
.cart-summary-row               { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; margin-bottom: 12px; color: #555; }

/* ── 20. MON COMPTE ── */
.account-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    margin-bottom: 2px;
}
.account-nav-item:hover,
.account-nav-item.active        { background: #fff; color: #C8102E; }
.account-nav-item i             { font-size: 1rem; width: 18px; }

/* ── 21. CARTES À L'UNITÉ ── */
.card-unit-item                 { cursor: pointer; transition: transform 0.2s; }
.card-unit-item:hover           { transform: translateY(-4px); }
.card-unit-img {
    aspect-ratio: 63/88;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 180px;
    margin: 0 auto;
}

/* ── 22. EFFET 3D CARTE ── */
.card-3d-scene {
    perspective: 1000px;
    width: 260px;
    margin: 0 auto;
    cursor: pointer;
}
.card-3d {
    width: 100%;
    aspect-ratio: 63/88;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-radius: 12px;
}
.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%; height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}
.card-3d-front img,
.card-3d-back img               { width: 100%; height: 100%; object-fit: cover; }
.card-3d-back                   { transform: rotateY(180deg); }
.card-3d-placeholder {
    width: 100%; height: 100%;
    background: #e0ddd5;
    display: flex; align-items: center; justify-content: center;
    color: #999; font-size: 0.9rem;
}
.card-3d-front::after,
.card-3d-back::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    pointer-events: none;
    border-radius: 12px;
}
.btn-flip {
    background: #1a1a1a; color: #fff;
    border: none; border-radius: 8px;
    padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
}
.btn-flip:hover { background: #C8102E; }

/* ── 23. RESPONSIVE MOBILE ── */
@media (max-width: 768px) {
    .hero-section               { padding: 180px 0 60px; min-height: 560px; text-align: center; }
    .hero-title                 { font-size: 2rem; }
    .hero-subtitle              { font-size: 0.9rem; }
    .col-lg-5                   { display: block !important; }
    .hero-logo                  { max-width: 140px; display: block; margin: 20px auto 0; }

    footer .row                 { text-align: center; }
    footer ul                   { display: flex; flex-direction: column; align-items: center; }
    footer .col-md-3,
    footer .col-md-6            { text-align: center; }
    .footer-bottom              { flex-direction: column; text-align: center; gap: 8px; }
}