.excursion-dates-container {
    padding: 40px 20px;
    border-radius: 20px;
}

.excursion-dates-title {
    text-align: center;
    margin-bottom: 20px;
}
.excursion-dates-title p {
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.excursion-dates-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.excursion-dates-scroll-container::-webkit-scrollbar {
    display: none;
}

.excursion-dates-block {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 320px;
    min-width: 320px;
    height: 150px;
}

.excursion-dates-block-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.excursion-dates-block-content {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 80px; 
}
.date-text p {
    font-size: 20px;
    font-weight: 600;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.form-price-text p {
    font-size: 15px;
    color: #888;
    font-weight: 400;
    margin: 0;
}

.price-block-text {
    display: flex;
    align-items: center;
}

.price-text {
    font-size: 20px;
    font-weight: 600;
    color: #ED2D95;
    margin: 0;
}

.price-text-currency {
    font-size: 22px;
    font-weight: 600;
    padding-left: 5px;
    margin: 0;
}

.comment-block {
    background: #E6F4EA;
    color: #2E7D32;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 30px;
    display: inline-block;
    width: fit-content;
}
.comment-text {
    margin: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(50,60,70,0.13);
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow .18s;
    opacity: 0.9;
}
.scroll-btn-left { left: -23px; }
.scroll-btn-right { right: -23px; }
.scroll-btn:active { box-shadow: 0 2px 8px #52B94733; }

.widget-excursion-price .btn {
    display: none;
}

.excursion-dates-block-list {
    display: flex;
    flex-wrap: nowrap;
}

@media (min-width: 768px) {
    .excursion-dates-block-list {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
    }
}


@media (max-width: 767.98px) {
    .excursion-dates-scroll-container {
        overflow-x: hidden;
        flex-direction: column !important;
        padding-bottom: 0;
        max-height: none;
    }

    .excursion-dates-block-list {
        flex-direction: column;
        align-items: center;
    }

    .excursion-dates-block {
        margin-bottom: 20px;
        width: auto;
        min-width: 320px;
        height: 130px;
    }

    .widget-excursion-price .scroll-btn {
        display: none;
    }

    .widget-excursion-price .btn {
        display: inline-flex;
    }
}

.excursion-info-price .section-head {
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.05em;
  }
.excursion-info-price .section-head td { 
    padding:.55rem 1rem; 
}
