#experience-popup .popup-content {
    max-width: 950px;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
}

#experience-popup .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #E6007A;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

#exp-popup-image-container {
    width: 67%;
    margin: 10px auto 0;
    height: 252px;
    /* 5% taller on desktop */
    overflow: hidden;
    border-radius: 10px;
}

#exp-popup-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#experience-popup .exp-popup-content-wrapper {
    padding: 5px 30px 70px;
    /* Increased bottom padding to prevent button overlap */
    text-align: center;
    position: relative;
}

#experience-popup .exp-popup-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #eee;
    padding: 8px;
    box-sizing: border-box;
}

#experience-popup #exp-popup-name {
    font-size: 1.6rem;
    /* Slightly smaller */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

#experience-popup #exp-popup-description-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    /* Reduced from 25px */
    line-height: 1.5;
}

/* Section Title */
#experience-popup .exp-popup-section {
    margin-bottom: 0;
    border-top: 1px solid #eee;
    padding-top: 0;
}

#experience-popup .exp-popup-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 6px 0;
    text-align: center;
}

/* Icon Cards Container */
#experience-popup .exp-popup-icon-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Individual Icon Card */
#experience-popup .exp-icon-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px 8px;
    /* Adjusted padding for horizontal layout */
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s ease;
}

#experience-popup .exp-icon-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

#experience-popup .exp-icon-card .card-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #E6007A;
    flex-shrink: 0;
}

#experience-popup .exp-icon-card .card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#experience-popup .exp-icon-card .card-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

#experience-popup .exp-icon-card .card-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tags for What To Bring */
#experience-popup .exp-popup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#experience-popup .exp-tag {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

#experience-popup .exp-tag .tag-icon {
    font-size: 0.9rem;
}

#experience-popup .cta-button {
    display: inline-block;
    width: auto;
    background-color: #E6007A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#experience-popup .map-toggle-link {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.exp-popup-swiper-button-next,
.exp-popup-swiper-button-prev {
    color: #fff;
    background-color: transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: none !important;
}

.exp-popup-swiper-button-next::after,
.exp-popup-swiper-button-prev::after {
    font-size: 24px;
    font-weight: 700;
}

/* Mobile styles (768px and below) */
@media (max-width: 768px) {
    #experience-popup .popup-content {
        max-width: 95%;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    #exp-popup-image-container {
        width: 90%;
        height: 248px;
        /* 15% taller on mobile */
        flex-shrink: 0;
        /* Prevent squishing */
    }

    #experience-popup .exp-popup-content-wrapper {
        padding: 10px 15px 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    #experience-popup #exp-popup-name {
        font-size: 1.5rem;
        margin-top: 0;
    }

    #experience-popup #exp-popup-description-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    #experience-popup .exp-popup-icon-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    #experience-popup .exp-icon-card {
        padding: 8px 6px;
        flex-direction: row;
        gap: 8px;
    }

    #experience-popup .exp-icon-card .card-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    #experience-popup .exp-icon-card .card-value {
        font-size: 0.7rem;
    }

    #experience-popup .exp-icon-card .card-label {
        font-size: 0.55rem;
    }

    #experience-popup .exp-popup-section {
        margin-bottom: 0;
        padding-top: 0;
    }

    #experience-popup .exp-popup-section-title {
        font-size: 0.85rem;
        margin: 4px 0;
    }

    #experience-popup .exp-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    #experience-popup .cta-button {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 66%;
        margin: 15px auto 10px;
        display: block;
    }
}