/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 15 2026 | 02:41:14 */
/* ==========================================================================
   GRILLE DES CARTES DE VOYAGE
   ========================================================================== */
.pacha-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   DESIGN DE LA CARTE
   ========================================================================== */
.pacha-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* La bordure supérieure prend la couleur du pays définie dans le HTML */
    border-top: 6px solid var(--theme-color);
}

.pacha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* --- EN-TÊTE DE LA CARTE --- */
.pacha-card-header {
    padding: 20px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.pacha-card-flag {
    width: 38px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.pacha-card-date {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--theme-color);
    background: rgba(0, 0, 0, 0.03);
    padding: 5px 12px;
    border-radius: 20px;
}

/* --- CORPS DE LA CARTE --- */
.pacha-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pacha-card-title {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
    margin: 0 0 15px 0;
}

/* --- PIED DE LA CARTE (Infos + Bouton) --- */
.pacha-card-footer {
    padding: 15px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
    margin-top: auto;
}

.pacha-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pacha-card-pax {
    font-size: 0.8em;
    color: #666;
    font-weight: 500;
}

.pacha-card-price {
    font-size: 1.2em;
    font-weight: 800;
    color: #333;
}

/* Bouton de téléchargement */
.pacha-card-btn {
    padding: 8px 18px;
    background-color: transparent;
    color: var(--theme-color) !important;
    border: 2px solid var(--theme-color);
    border-radius: 30px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
}

.pacha-card-btn:hover {
    background-color: var(--theme-color) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* ==========================================================================
   BARRE DE FILTRES
   ========================================================================== */
.pacha-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 0 10px;
}

.pacha-filter-select {
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background-color: #ffffff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    /* Style de la flèche (optionnel) */
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230288D1%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.pacha-filter-select:hover {
    border-color: #b3b3b3;
}

.pacha-filter-select:focus {
    border-color: #0288D1; /* Bleu Pachamama */
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.15);
}

@media (max-width: 600px) {
    .pacha-filter-select { width: 100%; }
}