/* ==================================================
   gyg.css
   GetYourGuide-Style Activity Slider
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.gyg-activities-section,
.gyg-activities-section * {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.gyg-activities-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.gyg-section-head {
    margin-bottom: 30px;
}

.gyg-section-head h2 {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.9px;
    color: #17233f;
    margin: 0 0 10px;
}

.gyg-section-head p {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.35px;
    color: #5f6b7a;
    margin: 0;
}

.gyg-slider-wrap {
    position: relative;
}

.gyg-card-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 4px 22px;
    scrollbar-width: none;
}

.gyg-card-slider::-webkit-scrollbar {
    display: none;
}

.gyg-card {
    flex: 0 0 300px;
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: #17233f;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gyg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none !important;
}

.gyg-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #f2f4f7;
}

.gyg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge */
.gyg-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #17233f;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.25px;
    padding: 10px 12px;
    border-radius: 5px;
}

/* Heart */
.gyg-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #17233f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

/* Card Body */
.gyg-card-body {
    padding: 20px 20px 18px;
}

.gyg-card-body h3 {
    font-size: 20px;
    line-height: 1.26;
    font-weight: 750;
    letter-spacing: -0.65px;
    color: #17233f;
    margin: 0 0 18px;
    min-height: 76px;
}

.gyg-meta {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.25px;
    color: #17233f;
    margin: 0 0 18px;
}

.gyg-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}

.gyg-rating {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.25px;
    color: #17233f;
    white-space: nowrap;
}

.gyg-rating span {
    color: #6d7480;
    font-weight: 500;
}

.gyg-price {
    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #17233f;
    text-align: right;
    white-space: nowrap;
}

.gyg-price span {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: #6d7480;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Arrows */
.gyg-arrow {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #0071eb;
    background: #ffffff;
    color: #0071eb;
    font-size: 42px;
    line-height: 46px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyg-arrow:hover {
    background: #f4f9ff;
}

.gyg-arrow-left {
    left: -28px;
}

.gyg-arrow-right {
    right: -28px;
}

/* Tablet */
@media (max-width: 991px) {
    .gyg-section-head h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .gyg-section-head p {
        font-size: 17px;
    }

    .gyg-card {
        flex: 0 0 290px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gyg-activities-section {
        padding: 42px 0;
    }

    .gyg-section-head {
        margin-bottom: 22px;
    }

    .gyg-section-head h2 {
        font-size: 30px;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

    .gyg-section-head p {
        font-size: 15px;
        line-height: 1.45;
    }

    .gyg-card-slider {
        gap: 18px;
        padding-bottom: 18px;
    }

    .gyg-card {
        flex: 0 0 82%;
    }

    .gyg-img-wrap {
        height: 190px;
    }

    .gyg-card-body {
        padding: 18px;
    }

    .gyg-card-body h3 {
        font-size: 19px;
        line-height: 1.26;
        min-height: auto;
    }

    .gyg-meta {
        font-size: 14px;
    }

    .gyg-arrow {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gyg-section-head h2 {
        font-size: 27px;
    }

    .gyg-card {
        flex: 0 0 86%;
    }

    .gyg-img-wrap {
        height: 180px;
    }

    .gyg-price {
        font-size: 21px;
    }
}