

    .theme-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .theme-btn:hover {
        background-color: #e61e4d;
        transform: translateY(-2px);
    }

    /* En-tête */
    .page-header {
        padding: 30px 0;
        background-color: white;
        border-bottom: 1px solid var(--medium-gray);
    }

    /* Galerie d'images */
    .gallery-container {
        margin-bottom: 30px;
    }

    .main-image {
        height: 360px;
        object-fit: cover;
        width: 80%;
        border-radius: 12px;
    }

    .thumbnail-container {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .thumbnail {
        width: 100px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .thumbnail:hover {
        transform: scale(1.05);
    }

    .thumbnail.active {
        border: 3px solid var(--primary-color);
    }

    /* Section de détails */
    .details-section {
        padding: 40px 0;
        background-color: var(--light-gray);
    }

    .amenities-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }

    .amenity-item {
        display: flex;
        align-items: center;
        padding: 10px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .amenity-item i {
        margin-right: 10px;
        color: var(--primary-color);
        font-size: 18px;
        width: 24px;
    }

    /* Carte de réservation */
    .booking-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        padding: 25px;
        position: sticky;
        top: 20px;
    }

    .price-display {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark-color);
    }

    .availability-badge {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .form-control {
        border-radius: 8px;
        padding: 12px;
        border: 1px solid var(--medium-gray);
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(255, 56, 92, 0.25);
    }

    .form-label {
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 8px;
    }

    /* Section d'avis */
    .reviews-section {
        padding: 40px 0;
        background: white;
    }

    .review-card {
        background: var(--light-gray);
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }

    .rating-stars {
        color: #FF385C;
        margin-bottom: 5px;
    }

    /* Calendrier des disponibilités */
    .availability-calendar {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }

    .calendar-day {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
    }

    .calendar-day.header {
        font-weight: 600;
        color: #666;
        cursor: default;
        background: transparent;
    }

    .calendar-day.occupied {
        background-color: #ffebee;
        color: #d32f2f;
        text-decoration: line-through;
    }

    .calendar-day.available {
        background-color: #e8f5e9;
        color: #2e7d32;
    }

    .calendar-day.today {
        border: 2px solid #FF385C;
    }

    .calendar-day.selected {
        background-color: #FF385C;
        color: white;
    }

    .calendar-day.empty {
        background-color: transparent;
        cursor: default;
    }

    .calendar-navigation {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .calendar-nav-btn {
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }

    .calendar-nav-btn:hover {
        background: #e0e0e0;
    }

    /* Amélioration des champs de date */
    .date-input-group {
        position: relative;
    }

    .date-input-group .form-control {
        padding-left: 40px;
    }

    .date-input-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        z-index: 5;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-image {
            height: 300px;
        }

        .amenities-list {
            grid-template-columns: 1fr;
        }

        .booking-card {
            position: static;
            margin-top: 30px;
        }

        .calendar-grid {
            gap: 4px;
        }

        .calendar-day {
            height: 35px;
            font-size: 0.85rem;
        }
    }
