/* Filtres Expériences */
.experiences-filters-section {
    padding: 2.5rem 0 1.5rem;
    background: #FAF8F5;
    border-bottom: 1px solid #E6E1DA;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.filter-pills.filter-category {
    margin-bottom: 0;
}

.pill-btn, .pill-btn-sub {
    border: 1px solid #D5CECA;
    background: #FFFFFF;
    color: #1C1C1C;
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.pill-btn.active, .pill-btn:hover {
    background: #1C1C1C;
    color: #FFFFFF;
    border-color: #1C1C1C;
}

.pill-btn-sub {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    background: transparent;
    border-color: #E6E1DA;
}

.pill-btn-sub.active, .pill-btn-sub:hover {
    background: #C06C46;
    color: #FFFFFF;
    border-color: #C06C46;
}

/* Grille Expériences */
.experiences-grid-section {
    padding: 4rem 0 6rem;
    background: #FAF8F5;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem 2rem;
}

.experience-card {
    background: #FFFFFF;
    border: 1px solid #E6E1DA;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.exp-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.exp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .exp-image-wrapper img {
    transform: scale(1.04);
}

.exp-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

.badge-affiliate {
    background: rgba(28, 28, 28, 0.85);
    color: #FAF8F5;
    backdrop-filter: blur(4px);
}

.badge-concierge {
    background: #C06C46;
    color: #FFFFFF;
}

.exp-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.exp-meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #8C7B6D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.exp-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.exp-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.exp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #F0ECE4;
}

.exp-price .price-label {
    display: block;
    font-size: 0.68rem;
    color: #888;
    text-transform: uppercase;
}

.exp-price .price-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C1C1C;
}

.exp-cta-btn {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 0.6rem 1rem;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-exp-affiliate {
    background: #1C1C1C;
    color: #FFFFFF;
}

.btn-exp-affiliate:hover {
    background: #C06C46;
}

.btn-exp-concierge {
    background: transparent;
    color: #C06C46;
    border: 1px solid #C06C46;
}

.btn-exp-concierge:hover {
    background: #C06C46;
    color: #FFFFFF;
}

/* Bloc Sur-Mesure */
.bespoke-concierge-section {
    background: #1C1C1C;
    padding: 4.5rem 0;
    color: #FFFFFF;
}

.concierge-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.concierge-tag {
    font-size: 0.75rem;
    color: #C06C46;
    letter-spacing: 2px;
    font-weight: 600;
}

.concierge-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
    color: #FAF8F5;
}

.concierge-content p {
    font-size: 0.95rem;
    color: #B0A8A0;
    max-width: 600px;
    line-height: 1.6;
}

.btn-concierge-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #C06C46;
    color: #FFFFFF;
    padding: 1.1rem 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.25s ease;
    white-space: nowrap;
}

.btn-concierge-whatsapp:hover {
    background: #A85A38;
}

@media (max-width: 860px) {
    .concierge-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
