﻿/* ══════════════════════════════════════════
   BRAINROT DETAIL - WIKI VERSION
   ══════════════════════════════════════════ */
 
.app-body {
    margin-left: 210px;
    padding: 30px 40px;
    background: #f0f4f4;
    min-height: 100vh;
    box-sizing: border-box;
}
 
main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}
 
/* ── COLONNE GAUCHE ── */
.detail-left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 
.btn-back {
    display: inline-block;
    background: #0d4a4a;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}
.btn-back:hover {
    background: #15908a;
    transform: translateX(-5px);
}
 
.detail-card {
    background: #fff;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
 
.detail-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
 
.detail-title-top {
    font-family: 'Bangers', cursive, sans-serif;
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #0d4a4a;
    border-radius: 16px;
    padding: 12px 20px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(13, 74, 74, 0.3);
}
 
/* ── COLONNE DROITE ── */
.detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Status Boxes */
.status-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.status-box-green {
    background: #0d4a4a;
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(13, 74, 74, 0.2);
}

.status-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #555;
    font-size: 1.1rem;
}

.status-label-white {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.info-value {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #0d4a4a !important; /* Force la visibilité sur fond blanc */
}

.info-value-white {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Variants Section */
.variantes-section {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.variantes-title {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #0d4a4a;
    margin-bottom: 20px;
    border-bottom: 3px solid #f0f4f4;
    padding-bottom: 10px;
}

.variante-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #f8fbfb;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #333;
    transition: all 0.2s;
}

.variante-item:hover {
    background: #f0f4f4;
    transform: scale(1.01);
}

.variante-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #d63fa0;
    color: #fff;
    border-radius: 8px;
    margin-right: 15px;
    text-decoration: none;
    transition: background 0.2s;
}

.variante-link:hover {
    background: #bb2d8a;
}

.icon-search::before {
    content: '🔍';
    font-size: 14px;
}
