:root {
  --primary: var(--accent-primary);
  --primary-light: #8b9770;
  --accent: var(--accent-secondary);
  --text: var(--text-primary);
  --text-muted: rgba(0,0,0,0.7);
  --card-bg: var(--background-alt);
  --swiper-theme-color: #75805b;
}

/* =================================
   SYSTÈME BEST SPOTS - MODALS
   ================================= */

/* Modal d'information spots */
.spots-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.spots-modal-content {
    background: var(--background);
    border-radius: 15px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.spots-modal-header {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.spots-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spots-modal-close:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.spots-modal-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.spots-modal-rating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--background);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
}

.spots-modal-body {
    padding: 30px;
}

.spots-modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}

.spots-modal-location {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.spots-modal-location i {
    margin-right: 10px;
    color: #75805b;
}

.spots-info-section {
    margin: 25px 0;
}

.spots-info-title {
    color: #75805b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.spots-info-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.spots-amenity-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    padding: 8px 0;
}

.spots-amenity-item i {
    color: #75805b;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.spots-contact-info {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.spots-contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: var(--text-muted);
}

.spots-contact-item i {
    color: #75805b;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.spots-contact-item a {
    color: #75805b;
    text-decoration: none;
    transition: var(--transition);
}

.spots-contact-item a:hover {
    color: var(--primary-light);
}

.spots-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.spots-btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 200px;
    border: none;
    cursor: pointer;
}

.spots-btn-secondary {
    background: transparent;
    color: #75805b;
    border: 2px solid #75805b;
    padding: 13px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 200px;
    cursor: pointer;
}

.spots-btn-primary:hover {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.spots-btn-secondary:hover {
    background: var(--accent);
    color: var(--background);
    transform: translateY(-2px);
}


.main-gallery {
    width: 100%;
    height: 400px;
    margin-bottom: 15px;
}
.main-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumb-gallery {
    height: 120px;
    box-sizing: border-box;
}
.thumb-gallery .swiper-slide {
    width: 100px;
    height: 100px;
    opacity: 0.5;
}
.thumb-gallery .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--accent);
}
.thumb-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Rendre les cartes spots cliquables */
.spot-card {
    cursor: pointer;
    transition: var(--transition);
}

.spot-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .spots-modal-content {
        margin: 10px;
        max-height: 95vh;
        width: 100%;
    }
    
    .spots-modal-header {
        height: 200px;
    }
    
    .spots-modal-title {
        font-size: 1.5rem;
    }
    
    .spots-cta-buttons {
        flex-direction: column;
    }

    .spots-btn-primary,
    .spots-btn-secondary {
        min-width: auto;
    }

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

    .main-gallery {
        height: 250px;
    }

    .thumb-gallery {
        height: 80px;
    }
}
