/* ========================================
   PROVENCE TOUR - Styles Frontend
   Version 1.0.6 - Prix EUR décalés
======================================== */

/* Grid des voyages */
.pt-voyages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Carte voyage */
.pt-voyage-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pt-voyage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.pt-voyage-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Badge promotion */
.pt-promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 2;
}

/* Contenu de la carte */
.pt-voyage-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pt-voyage-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.pt-voyage-card p {
    margin: 0 0 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== CONTENEUR PRIX (DZD + EUR) - VERSION 1.0.6 ===== */
.pt-price-box {
    margin-bottom: 20px;
}

/* Anciens prix (barrés) */
.pt-old-prices-list {
    margin-bottom: 10px;
}

.pt-old-price-main {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.pt-old-price-secondary {
    text-decoration: line-through;
    color: #bbb;
    font-size: 13px;
    font-weight: 400;
    padding-left: 30px;
}

/* Nouveaux prix (en évidence) - AFFICHAGE DZD + EUR */
.pt-prices-display {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pt-price-dzd {
    color: #1473ff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.pt-price-eur {
    color: #1473ff;
    font-size: 22px;
    font-weight: 800;
    opacity: 0.85;
    padding-left: 30px;
    position: relative;
}

.pt-price-eur::before {
    content: "≈";
    position: absolute;
    left: 8px;
    font-size: 16px;
    opacity: 0.6;
}

/* Bouton réserver */
.pt-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1473ff 0%, #0d5dd8 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pt-btn:hover {
    background: linear-gradient(135deg, #0d5dd8 0%, #0a4fb8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 115, 255, 0.3);
}

/* Badge complet */
.pt-soldout {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .pt-voyages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt-voyage-card h3 {
        font-size: 20px;
    }

    .pt-price-dzd {
        font-size: 24px;
    }

    .pt-price-eur {
        font-size: 20px;
        padding-left: 25px;
    }

    .pt-voyage-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .pt-voyage-content {
        padding: 20px;
    }

    .pt-price-dzd {
        font-size: 22px;
    }

    .pt-price-eur {
        font-size: 19px;
        padding-left: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pt-voyage-card {
    animation: fadeIn 0.5s ease forwards;
}

.pt-voyage-card:nth-child(1) { animation-delay: 0.1s; }
.pt-voyage-card:nth-child(2) { animation-delay: 0.2s; }
.pt-voyage-card:nth-child(3) { animation-delay: 0.3s; }
.pt-voyage-card:nth-child(4) { animation-delay: 0.4s; }
.pt-voyage-card:nth-child(5) { animation-delay: 0.5s; }
.pt-voyage-card:nth-child(6) { animation-delay: 0.6s; }