/* Styles des promotions - identique au CSS précédent mais organisé */
.promo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.promo-content {
    position: relative;
    background: white;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.close-promo {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-promo:hover {
    color: #ff4757;
}

.promo-header {
    background: linear-gradient(135deg, #28a745, #3bd16f);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.promo-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.4em;
}

.promo-header p {
    margin: 0;
    opacity: 0.9;
}

.promo-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.promo-image:hover img {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.promo-details h4 {
    margin: 0 0 10px 0;
    color: #2d3436;
    font-size: 1.3em;
}

.promo-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #636e72;
    margin-bottom: 15px;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.promo-features li {
    padding: 5px 0;
    color: #2d3436;
}

.promo-price {
    text-align: center;
    font-size: 1.4em;
    color: #28a745;
    font-weight: bold;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #28a745;
}

.promo-footer {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
    justify-content: center;
}

.promo-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    flex: 1;
}

.promo-btn.primary {
    background: linear-gradient(135deg, #28a745, #3bd16f);
    color: white;
}

.promo-btn.secondary {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-footer-note {
    text-align: center;
    padding: 10px 20px 20px;
    border-top: 1px solid #eee;
}

.promo-footer-note small {
    color: #636e72;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .promo-content {
        margin: 10% auto;
        width: 95%;
    }

    .promo-footer {
        flex-direction: column;
    }

    .promo-image img {
        height: 150px;
    }
}