body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #121212, #2b2b2b);
    color: white;
}

.detail-main {
    padding: 160px 20px 180px;
    max-width: 1300px;
    margin: auto;
}

.top-bar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.btn-retour {
    background-color: #2b2b2b;
    color: #00ffc8;
    padding: 10px 20px;
    border: 2px solid #00ffc8;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-retour:hover {
    background-color: #00ffc8;
    color: #121212;
}

.detail-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
.detail-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: initial;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.detail-content {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    align-items: stretch;
}

.content-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.content-box h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-promo {
    display: inline-block;
    background: #ff004c;
    color: white;
    font-size: 0.75em;
    padding: 4px 10px;
    border-radius: 12px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #dddddd;
}

.prix {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #00ffc8;
    font-weight: bold;
}
.reduction {
    color: #ff004c;
    font-weight: bold;
    margin-left: 10px;
    font-size: 0.9em;
}

/* Services inclus */
.service-inclus {
    list-style: none;
    padding: 0;
    margin: 10px 0 25px;
}
.service-inclus li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #aaffaa;
    position: relative;
    padding-left: 28px;
}
.service-inclus li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Boutons */
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.btn {
    background-color: #2c8249;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn:hover {
    background-color: #226b3c;
}
.btn.secondary {
    background-color: #0077cc;
}
.btn.secondary:hover {
    background-color: #005fa3;
}
.btn.commander {
    background: linear-gradient(135deg, #ff007a, #d100d1);
}
.btn.commander:hover {
    background: linear-gradient(135deg, #cc0066, #9c00b8);
}

/* Suggestions */
.suggestions {
    margin-top: 80px;
    text-align: center;
}
.suggestions h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
}
.suggestions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.suggestion-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}
.suggestion-card:hover {
    transform: scale(1.05);
}
.suggestion-card img {
    width: 100%;
    height: 180px;
    object-fit: initial;
    border-radius: 6px;
    margin-bottom: 15px;
}
.suggestion-card h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 980px) {
    .detail-wrapper {
        flex-direction: column;
    }
    .detail-content {
        width: 100%;
    }
    .content-box {
        height: auto;
    }
    .buttons {
        justify-content: center;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
