body {
    font-family: Arial, sans-serif;
    background-color: #0b132b;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
    line-height: 1.6;
}

/* ================== HEADER ================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000a2a;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Ancien menu admin supprimé en V2.9.5 : navigation unifiée via includes/admin-nav.php */

.user-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.12);
    white-space: nowrap;
}

.admin-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(0,212,255,0.18);
    color: #7ee7ff;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00d4ff;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

nav a {
    color: #b388ff;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
}

nav a:hover {
    background: #1c2541;
}

/* Lien Réalisations en rouge néon gaming */
nav a[href="gallery.php"] {
    color: #ff4d6d !important;
    text-shadow:
        0 0 6px rgba(255, 77, 109, 0.85),
        0 0 12px rgba(255, 77, 109, 0.65),
        0 0 18px rgba(255, 77, 109, 0.45);
    transition: all 0.25s ease;
}

nav a[href="gallery.php"]:hover {
    background: rgba(255, 77, 109, 0.12);
    color: #ff6b88 !important;
    text-shadow:
        0 0 8px rgba(255, 107, 136, 0.95),
        0 0 16px rgba(255, 107, 136, 0.75),
        0 0 24px rgba(255, 107, 136, 0.55);
}

.nav-pro {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white !important;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}


/* Lien Évènements en jaune néon */
nav a[href="evenements.php"] {
    color: #ffd447 !important;
    text-shadow:
        0 0 6px rgba(255, 212, 71, 0.85),
        0 0 12px rgba(255, 212, 71, 0.65),
        0 0 18px rgba(255, 170, 0, 0.45);
    transition: all 0.25s ease;
}

nav a[href="evenements.php"]:hover {
    background: rgba(255, 212, 71, 0.12);
    color: #ffe066 !important;
    text-shadow:
        0 0 8px rgba(255, 224, 102, 0.95),
        0 0 16px rgba(255, 224, 102, 0.75),
        0 0 24px rgba(255, 224, 102, 0.55);
}


.nav-pro:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    opacity: 0.96;
}

.menu-toggle {
    display: none;
    background: #1c2541;
    color: white;
    border: none;
    font-size: 26px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle:hover {
    background: #2b355c;
}

/* ================== HERO / HOME ================== */
.hero {
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-premium {
    background:
        linear-gradient(rgba(8, 16, 45, 0.72), rgba(8, 16, 45, 0.78)),
        url('images/hero-banner.jpg') center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-overlay {
    width: 100%;
    padding: 60px 50px;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.35);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 50px;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    color: #e4e7ef;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.section-title {
    text-align: center;
    margin: 20px 0 30px;
}

.section-title h2 {
    color: #00d4ff;
    font-size: 34px;
    margin-bottom: 10px;
}

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

.seo-footer {
    margin-top: 40px;
    padding: 40px 20px;
    background: #0b0b0b;
    border-top: 2px solid #222;
    color: #ccc;
    text-align: center;
}

.seo-footer h3 {
    color: #ffcc00;
    margin-bottom: 30px;
}

.seo-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.seo-links div {
    text-align: left;
}

.seo-links h4 {
    margin-bottom: 10px;
    color: #fff;
}

.seo-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 6px;
}

.seo-links a:hover {
    color: #ffcc00;
}

.home-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 35px 0 45px;
}

.highlight-box {
    background: linear-gradient(180deg, #1c2541, #16203a);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.highlight-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.highlight-box h3 {
    margin: 0 0 10px;
    color: #00d4ff;
}

.highlight-box p {
    margin: 0;
    color: #d8dfef;
    line-height: 1.6;
}

.home-blocks {
    display: grid;
    gap: 24px;
}

.home-blocks-premium {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 45px;
}

.container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #00e0ff;
}

.container p {
    margin-bottom: 15px;
}

.container ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.container a {
    color: #00e0ff;
    text-decoration: none;
}

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

/* ================== BUTTONS ================== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #00aacc);
    color: #000 !important;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #000 !important;
}

.btn-order {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000 !important;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 0 12px rgba(0,255,136,0.4);
}

.btn-order:hover {
    background: linear-gradient(135deg, #00ffaa, #00dd77);
    color: #000 !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,255,136,0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #a96cff, #7d49d8);
    color: #fff !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #9b5fff, #6d3fd0);
    color: #fff !important;
}

.btn-view {
    display: inline-block;
    margin: 10px 0 12px 0;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.btn-view:hover {
    background: rgba(255,255,255,0.1);
}

.lp-btn-yellow {
    background: linear-gradient(135deg, #ffd60a, #ffb700);
    color: #000;
}

.lp-btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.delete-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.delete-btn:hover {
    background: #ff1a1a;
    transform: translateY(-1px);
}

/* ================== CARDS / PRODUCTS ================== */
.home-card,
.product {
    background: #1c2541;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.premium-card,
.card {
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.premium-card:hover,
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.card-image {
    height: 220px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0b132b;
    transition: transform 0.5s ease;
}

.premium-card:hover .card-image,
.card:hover .card-image {
    transform: scale(1.06);
}

.card-content {
    padding: 22px;
    transition: transform 0.3s ease;
}

.premium-card:hover .card-content,
.card:hover .card-content {
    transform: translateY(-5px);
}

.home-card h2,
.product h2,
.page-intro h1 {
    color: #00d4ff;
    margin-top: 0;
}

.premium-card h2 {
    transition: color 0.3s ease;
}

.premium-card:hover h2 {
    color: #7CFF9B;
}

.home-card p,
.product p,
.page-intro p {
    line-height: 1.6;
}

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

.product-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #0b132b;
}

.product h2 {
    min-height: 58px;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.product h2 a {
    color: #00d4ff;
    text-decoration: none;
}

.product h2 a:hover {
    text-decoration: underline;
}

.product p {
    margin: 5px 0;
}

.product .btn {
    margin-top: auto;
    background: linear-gradient(135deg, #00c6ff, #009fe3);
    color: #000 !important;
    font-weight: bold;
    text-align: center;
}

.product .btn:hover {
    background: linear-gradient(135deg, #00e0ff, #00b7ff);
    color: #000 !important;
}

.card .btn {
    background: linear-gradient(135deg, #00c6ff, #009fe3);
    color: #000 !important;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card .btn:hover {
    background: linear-gradient(135deg, #00e0ff, #00b7ff);
    color: #000 !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 200, 255, 0.3);
}

.card .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.card .btn:hover::after {
    left: 120%;
}

.premium-card .btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-card:hover .btn {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(0, 212, 255, 0.4);
}

.premium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
    pointer-events: none;
}

.premium-card:hover::after {
    opacity: 1;
}

.page-intro {
    background: #1c2541;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.cta-section {
    margin: 10px 0 20px;
}

.cta-box {
    background: linear-gradient(135deg, #182445, #243764);
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.cta-box h2 {
    margin-top: 0;
    color: #00d4ff;
    font-size: 32px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 18px;
    color: #dce4f5;
    line-height: 1.7;
}

/* ================== FORMS ================== */
.input-group {
    display: flex;
    align-items: center;
    background: #0b132b;
    border: 1px solid #2f3b66;
    border-radius: 12px;
    padding: 0 14px;
    transition: 0.2s;
}

.input-group span {
    margin-right: 10px;
    font-size: 18px;
    opacity: 0.8;
}

.input-group input,
.input-group textarea {
    border: none;
    outline: none;
    background: transparent;
    color: white;
    width: 100%;
    padding: 14px 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.input-group textarea {
    min-height: 160px;
    resize: vertical;
}

.input-group:focus-within {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0,212,255,0.15);
}

select {
    color: white;
}

select option {
    background: #1c2541;
    color: white;
}

/* ================== BADGES / IMAGE OVERLAYS ================== */
.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd166, #ff9f1c);
    color: #111827;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.product-card-image-wrap,
.product-image-wrap,
.image-wrap {
    position: relative;
}

/* ================== MAGASIN ================== */
.magasin-section {
    margin-top: 40px;
}

.magasin-section h2 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.magasin-img img {
    width: 100%;
    border-radius: 12px;
}

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

.magasin-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s;
}

.magasin-grid img:hover {
    transform: scale(1.03);
}

.magasin-text {
    margin-top: 15px;
    line-height: 1.6;
    color: #ccc;
}

.magasin-list {
    margin-top: 15px;
    padding-left: 20px;
}

.magasin-list li {
    margin-bottom: 8px;
}

.btn-retour {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background: #00d4ff;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
}

/* ================== TRUST / REVIEWS / FOOTER ================== */
.trust-section {
    margin-top: 60px;
    padding: 40px 20px;
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dbe4f0;
}

.trust-icon {
    font-size: 26px;
    line-height: 1;
}

.client-counter {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 30px auto 10px;
    color: #00d4ff;
    max-width: 1100px;
    padding: 0 20px;
}

.premium-reviews {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 50px;
}

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

.reviews-header h3 {
    margin: 0 0 8px 0;
    color: #ffd166;
    font-size: 30px;
}

.reviews-header p {
    margin: 0;
    color: #dbe4f0;
}

.reviews-slider-outer {
    overflow: hidden;
    position: relative;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.review-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1c2541, #16203a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    color: #dbe4f0;
    position: relative;
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.review-meta strong {
    display: block;
    color: white;
}

.review-stars {
    margin-top: 6px;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    font-size: 14px;
}

.review-stars span {
    color: #ffd166;
    font-size: 18px;
    line-height: 1;
}

.review-content {
    line-height: 1.7;
    font-size: 15px;
}

.review-verified {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(124, 255, 155, 0.12);
    border: 1px solid rgba(124, 255, 155, 0.25);
    color: #7CFF9B;
    font-size: 12px;
    font-weight: bold;
}

.review-submeta {
    margin-top: 4px;
    font-size: 13px;
    color: #b9c7db;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.review-product-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,212,255,0.10);
    border: 1px solid rgba(0,212,255,0.18);
    color: #9beaff;
    font-size: 12px;
    font-weight: bold;
}

.reviews-controls {
    text-align: center;
    margin-top: 16px;
}

.reviews-controls button {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    border: none;
    padding: 10px 16px;
    margin: 0 6px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.reviews-controls button:hover {
    opacity: 0.92;
}

.site-footer {
    background: #0b132b;
    padding: 40px 20px;
    color: #dbe4f0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    color: #00d4ff;
    margin-top: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #dbe4f0;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-contact p,
.footer-brand p {
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #9fb0c8;
}

.trust-box {
    margin-top: 20px;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
}

.trust-box h3 {
    margin-bottom: 10px;
    color: #ffd700;
}

.trust-box ul {
    list-style: none;
    padding: 0;
}

.trust-box li {
    margin-bottom: 6px;
}

.conversion-box {
    margin-top: 15px;
    padding: 10px;
    background: #222;
    border-left: 4px solid #ffd700;
    font-size: 14px;
}

.btn-yellow {
    background: #ffd700;
    color: black;
    padding: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.btn-green {
    background: #28a745;
    color: white;
    padding: 10px;
}

.btn-outline {
    border: 1px solid #fff;
    padding: 10px;
    display: inline-block;
    margin-top: 10px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 900px) {
    .container {
        padding: 12px;
    }

    .admin-bar-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .admin-bar-label {
        text-align: center;
    }

    .admin-bar-links {
        justify-content: center;
    }

    .user-badge {
        width: 100%;
        text-align: center;
        margin-left: 0;
        order: 2;
    }

    .site-header {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 20px;
        position: relative;
    }

    .logo {
        font-size: 22px;
        width: auto;
        text-align: left;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    nav#siteNav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        background: #09122f;
        padding: 15px;
        border-radius: 12px;
        box-sizing: border-box;
    }

    nav#siteNav.show {
        display: flex;
    }

    nav#siteNav a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        background: #1c2541;
        border-radius: 8px;
        text-align: center;
        font-size: 14px;
    }

    nav#siteNav a:hover {
        background: #2b355c;
    }

    .hero-premium {
        min-height: 320px;
        border-radius: 14px;
    }

    .hero-overlay {
        padding: 28px 18px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 10px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn,
    .btn-secondary,
    .btn-view,
    .btn-order {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 14px 16px;
        font-size: 15px;
    }

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

    .section-title p {
        font-size: 15px;
    }

    .home-highlights {
        gap: 14px;
        margin: 24px 0 30px;
    }

    .highlight-box {
        padding: 18px;
    }

    .home-blocks-premium {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product,
    .page-intro,
    .home-card,
    .cta-box {
        border-radius: 12px;
        padding: 18px;
    }

    .product-image {
        height: 200px;
    }

    .product h2,
    .home-card h2,
    .page-intro h1,
    .cta-box h2 {
        font-size: 24px;
        min-height: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .client-counter {
        font-size: 20px;
    }

    .reviews-header h3 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .site-header {
        padding: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-premium {
        min-height: 280px;
    }

    .hero h1 {
        font-size: 26px;
    }

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

    .hero-overlay {
        padding: 22px 14px;
    }

    .card-image {
        height: 160px;
    }

    .product-image {
        height: 180px;
    }

    .product h2,
    .home-card h2,
    .page-intro h1 {
        font-size: 22px;
    }

    .highlight-box,
    .product,
    .page-intro,
    .home-card,
    .cta-box {
        padding: 16px;
    }
}


/* ================== GALERIE REALISATIONS ================== */
.gallery-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.gallery-card {
    background: linear-gradient(180deg, #1c2541, #16203a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.40);
}

.gallery-image-wrap {
    background: #0b132b;
}

.gallery-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    color: #00d4ff;
    margin: 0 0 10px 0;
}

.gallery-content p {
    color: #dbe4f0;
    line-height: 1.6;
    margin-bottom: 0;
}

.gallery-empty,
.gallery-message {
    background: #1c2541;
    border-radius: 16px;
    padding: 20px;
    color: #dbe4f0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.gallery-message.success {
    border-left: 4px solid #00ff88;
}

.gallery-message.error {
    border-left: 4px solid #ff4d4d;
}

.gallery-form {
    background: linear-gradient(180deg, #1c2541, #16203a);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    max-width: 760px;
}

.gallery-form label {
    display: block;
    margin: 15px 0 8px;
    color: #00d4ff;
    font-weight: bold;
}

.gallery-form input[type="text"],
.gallery-form textarea,
.gallery-form input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #2f3b66;
    background: #0b132b;
    color: white;
    padding: 14px;
}

.gallery-form textarea {
    min-height: 130px;
    resize: vertical;
}

.gallery-help {
    color: #cfd7e6;
    font-size: 14px;
    margin-top: 8px;
}

.admin-gallery-table {
    width: 100%;
    border-collapse: collapse;
    background: #1c2541;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.admin-gallery-table th,
.admin-gallery-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    vertical-align: middle;
}

.admin-gallery-table th {
    color: #00d4ff;
    background: #16203a;
}

.admin-gallery-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: #0b132b;
}

.admin-gallery-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.status-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 13px;
}

.status-ok {
    background: rgba(0,255,136,0.15);
    color: #7cff9b;
}

.status-wait {
    background: rgba(255,209,102,0.16);
    color: #ffd166;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-image {
        height: 210px;
    }

    .gallery-form {
        padding: 18px;
    }

    .admin-gallery-table,
    .admin-gallery-table thead,
    .admin-gallery-table tbody,
    .admin-gallery-table th,
    .admin-gallery-table td,
    .admin-gallery-table tr {
        display: block;
    }

    .admin-gallery-table thead {
        display: none;
    }

    .admin-gallery-table tr {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .admin-gallery-table td {
        border-bottom: none;
        padding: 8px 0;
    }

    .admin-gallery-thumb {
        width: 100%;
        height: 190px;
    }
}


/* ================== UPLOAD GALERIE - STYLE DU SITE ================== */

.upload-box {
    max-width: 760px;
    margin: 30px auto;
    background: linear-gradient(180deg, #1c2541, #16203a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.upload-box h1 {
    color: #00d4ff;
    margin-top: 0;
    margin-bottom: 20px;
}

.upload-box p {
    color: #dbe4f0;
}

.upload-box input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    background: #0b132b;
    color: white;
    border: 1px solid #2f3b66;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
}

.upload-box input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #00d4ff, #00aacc);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 12px;
}

.upload-box input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #00e0ff, #00b7ff);
}

.upload-box .btn {
    margin-top: 10px;
}

.upload-box .page-intro {
    margin-bottom: 20px;
    background: #0b132b;
    border-left: 4px solid #00d4ff;
}

@media (max-width: 900px) {
    .upload-box {
        padding: 18px;
        border-radius: 14px;
        margin: 20px auto;
    }
}


/* ================== KLARNA PREMIUM / PAIEMENT EN 3X ================== */
.klarna-premium-box {
    margin: 20px 0;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff5fa, #ffe3f0);
    border: 1px solid rgba(255, 179, 209, 0.95);
    color: #111827;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.klarna-premium-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.klarna-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffb3d1;
    color: #111827;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: -0.2px;
}

.klarna-mention {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.klarna-premium-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.klarna-premium-main strong {
    display: block;
    font-size: 18px;
    color: #111827;
    margin-bottom: 4px;
}

.klarna-premium-main p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.45;
}

.klarna-premium-price {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.9);
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.klarna-premium-foot {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(17, 24, 39, 0.10);
    color: #4b5563;
    font-size: 12px;
}

.klarna-premium-cart {
    margin-top: 16px;
    max-width: 680px;
}

@media (max-width: 700px) {
    .klarna-premium-main {
        align-items: stretch;
        flex-direction: column;
    }

    .klarna-premium-price {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        font-size: 22px;
    }
}


/* ================== BOUTON AJOUT PANIER NEON ================== */
.btn-add-cart-neon {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    padding: 16px 26px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #ff1f8f 0%, #ff4d6d 45%, #ff8c24 100%) !important;
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255, 255, 255, 0.26) !important;
    box-shadow:
        0 0 0 2px rgba(255, 77, 109, 0.16),
        0 0 18px rgba(255, 31, 143, 0.55),
        0 0 34px rgba(255, 140, 36, 0.34),
        0 10px 24px rgba(0, 0, 0, 0.35);
    transform: translateZ(0);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-add-cart-neon::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
    transform: translateX(-120%) skewX(-18deg);
    transition: transform 0.6s ease;
}

.btn-add-cart-neon:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) scale(1.04);
    filter: saturate(1.12);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.18),
        0 0 22px rgba(255, 31, 143, 0.75),
        0 0 46px rgba(255, 140, 36, 0.56),
        0 14px 30px rgba(0, 0, 0, 0.42);
}

.btn-add-cart-neon:hover::before {
    transform: translateX(120%) skewX(-18deg);
}

.btn-add-cart-neon:active {
    transform: translateY(0) scale(0.99);
}

.buy-box .btn-add-cart-neon {
    margin-left: 2px;
}

@media (max-width: 900px) {
    .btn-add-cart-neon {
        width: 100%;
        min-width: 0;
        padding: 16px 18px !important;
        font-size: 16px;
    }

    .buy-box .btn-add-cart-neon {
        margin-left: 0;
    }
}


/* ================== ANIMATION ENTREE ARCADE ================== */
.arcade-intro {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(0, 212, 255, 0.16), transparent 36%),
        linear-gradient(180deg, #02040d 0%, #050816 45%, #000000 100%);
    overflow: hidden;
    animation: arcadeIntroFadeIn 0.25s ease-out both;
}

.arcade-intro-hide {
    animation: arcadeIntroFadeOut 0.75s ease forwards;
}

.arcade-intro-screen {
    position: relative;
    width: min(92vw, 760px);
    min-height: 360px;
    padding: 42px 28px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(0, 212, 255, 0.09), rgba(124, 58, 237, 0.10)),
        rgba(3, 8, 28, 0.96);
    border: 2px solid rgba(0, 212, 255, 0.45);
    box-shadow:
        0 0 28px rgba(0, 212, 255, 0.35),
        0 0 70px rgba(124, 58, 237, 0.26),
        inset 0 0 35px rgba(255, 255, 255, 0.04);
    text-align: center;
    overflow: hidden;
}

.arcade-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.045) 0px,
        rgba(255,255,255,0.045) 1px,
        transparent 2px,
        transparent 5px
    );
    opacity: 0.45;
    pointer-events: none;
}

.arcade-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    background: rgba(255, 212, 71, 0.14);
    filter: blur(22px);
    transform: translate(-50%, -50%);
    animation: arcadeGlowPulse 1.4s ease-in-out infinite alternate;
}

.arcade-intro-logo {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    font-size: clamp(30px, 6vw, 58px);
    font-weight: 900;
    color: #ffd447;
    letter-spacing: 1px;
    text-shadow:
        0 0 8px rgba(255, 212, 71, 0.95),
        0 0 20px rgba(255, 170, 0, 0.70),
        0 0 38px rgba(255, 77, 109, 0.45);
    animation: arcadeLogoPop 0.8s cubic-bezier(.2, 1.4, .4, 1) both;
}

.arcade-intro-subtitle {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    color: #9beaff;
    font-size: clamp(14px, 2.6vw, 19px);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
    animation: arcadeSubtitleIn 0.75s ease-out 0.35s both;
}

.arcade-loader {
    position: relative;
    z-index: 2;
    margin: 42px auto 24px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.arcade-pacman-loader {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffd447;
    box-shadow: 0 0 18px rgba(255, 212, 71, 0.8);
    animation: arcadePacmanMove 1.2s ease-in-out infinite alternate;
}

.arcade-pacman-loader::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #050816;
    animation: arcadePacmanMouth 0.22s linear infinite alternate;
}

.arcade-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255,255,255,0.9);
    animation: arcadeDotBlink 0.7s ease-in-out infinite alternate;
}

.arcade-dot:nth-child(3) { animation-delay: 0.12s; }
.arcade-dot:nth-child(4) { animation-delay: 0.24s; }
.arcade-dot:nth-child(5) { animation-delay: 0.36s; }

.arcade-press-start {
    position: relative;
    z-index: 2;
    color: #7cff9b;
    font-size: clamp(18px, 4vw, 30px);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow:
        0 0 8px rgba(124, 255, 155, 0.85),
        0 0 18px rgba(124, 255, 155, 0.55);
    animation: arcadePressBlink 0.8s steps(2, start) infinite;
    user-select: none;
}

.arcade-press-start:hover {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255,255,255,0.95),
        0 0 22px rgba(124,255,155,0.75);
}

@keyframes arcadeIntroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes arcadeIntroFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.03);
    }
}

@keyframes arcadeLogoPop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.88);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes arcadeSubtitleIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arcadeGlowPulse {
    from {
        opacity: 0.38;
        transform: translate(-50%, -50%) scale(0.92);
    }
    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.12);
    }
}

@keyframes arcadePacmanMove {
    from { transform: translateX(-6px); }
    to { transform: translateX(8px); }
}

@keyframes arcadePacmanMouth {
    from {
        border-top-width: 3px;
        border-bottom-width: 3px;
    }
    to {
        border-top-width: 11px;
        border-bottom-width: 11px;
    }
}

@keyframes arcadeDotBlink {
    from { opacity: 0.35; transform: scale(0.82); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes arcadePressBlink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0.25; }
}

@media (max-width: 700px) {
    .arcade-intro-screen {
        min-height: 320px;
        padding: 34px 18px;
        border-radius: 18px;
    }

    .arcade-loader {
        gap: 12px;
        margin-top: 34px;
    }

    .arcade-pacman-loader {
        width: 28px;
        height: 28px;
    }

    .arcade-pacman-loader::before {
        border-left-width: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .arcade-intro {
        display: none !important;
    }
}
/* ===== Promotions et badges produits - Étape 1 ===== */
.le-price-block,
.promo-price-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.old-price {
    color: #cbd5e1;
    text-decoration: line-through;
    opacity: 0.78;
    font-weight: 700;
}

.new-price,
.regular-price {
    color: #ffd166;
    font-size: 24px;
    font-weight: 950;
}

.promo-badge,
.offer-ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .35px;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.promo-badge.is-promo,
.offer-ribbon.is-promo {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #111827;
}

.promo-badge.is-soldes,
.offer-ribbon.is-soldes {
    background: linear-gradient(135deg, #ff3b30, #b91c1c);
    color: #ffffff;
}

.offer-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 6;
}

.product-card-image-wrap,
.product-image-wrap,
.image-wrap,
.main-image-box,
.le-hero-photo {
    position: relative;
}


/* ===== Léarcade V2 Sprint 2.1 : prix sur cartes produits ===== */
.le-product-card-v2 .le-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 8px;
}

.le-product-card-v2 .le-card-old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 800;
}

.le-product-card-v2 .le-card-new-price,
.le-product-card-v2 .le-card-regular-price {
    color: #ffffff;
    font-size: 17px;
    font-weight: 950;
}

.le-product-card-v2 .le-card-price.is-offer .le-card-new-price {
    color: #ffd166;
    font-size: 20px;
}

.le-product-card-v2 .le-card-ribbon {
    text-transform: uppercase;
}
