.travel-product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.travel-product-sidebar__group {
    border: 1px solid rgba(168, 110, 33, 0.25);
    border-radius: 14px;
    background: linear-gradient(180deg, #fffdfa 0%, #fff6e6 100%);
    box-shadow: 0 10px 22px rgba(133, 82, 21, 0.1);
    overflow: hidden;
}

.travel-product-sidebar__group h3 {
    margin: 0;
    padding: 12px 14px;
    font-size: 0.9rem;
    color: #6a4215;
    text-transform: uppercase;
    font-weight: 800;
    border-bottom: 1px solid rgba(168, 110, 33, 0.18);
    background: rgba(255, 240, 213, 0.8);
}

.travel-product-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.travel-product-sidebar__item,
.travel-product-sidebar__subitem {
    list-style: none;
}

.travel-product-sidebar__row,
.travel-product-sidebar__place-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.travel-product-sidebar__row > a {
    flex: 1;
}

.travel-product-sidebar__toggle {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(133, 82, 21, 0.2);
    border-radius: 8px;
    background: #fff7eb;
    color: #8d5d27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.travel-product-sidebar__toggle:hover {
    background: #fbe6c8;
    color: #6e461a;
}

.travel-product-sidebar__toggle i {
    font-size: 0.7rem;
}

.travel-product-sidebar__toggle.is-open i,
.travel-product-sidebar__item.is-open > .travel-product-sidebar__row .travel-product-sidebar__toggle i,
.travel-product-sidebar__subitem.is-open > .travel-product-sidebar__place-row .travel-product-sidebar__toggle i {
    transform: rotate(180deg);
}

.travel-product-sidebar__toggle--small {
    width: 24px;
    height: 24px;
    border-radius: 7px;
}

.travel-product-sidebar__sublist,
.travel-product-sidebar__third-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0 0 0 12px;
    display: none;
}

.travel-product-sidebar__sublist.is-open,
.travel-product-sidebar__third-list.is-open {
    display: block;
}

.travel-product-sidebar__subitem {
    padding: 4px 0;
}

.travel-product-sidebar__place {
    flex: 1;
    display: block;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(255, 239, 214, 0.72);
    color: #6b4a1f;
    font-size: 0.86rem;
    font-weight: 700;
}

.travel-product-sidebar__third-list {
    margin-top: 5px;
    padding-left: 14px;
}

.travel-product-sidebar__third-list li a {
    display: block;
    padding: 6px 9px;
    border-radius: 8px;
    text-decoration: none;
    color: #5f4320;
    font-size: 0.84rem;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.travel-product-sidebar__third-list li a:hover {
    background: rgba(206, 154, 67, 0.2);
    color: #70481b;
}

.travel-product-sidebar__third-list li.is-active a {
    background: linear-gradient(90deg, rgba(7, 93, 132, 0.14) 0%, rgba(213, 161, 74, 0.2) 100%);
    color: #06445f;
}

.travel-product-sidebar__row > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #523716;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.travel-product-sidebar__row > a:hover {
    background: rgba(213, 161, 74, 0.16);
    color: #7b4f1d;
}

.travel-product-sidebar__item.is-active > .travel-product-sidebar__row > a {
    background: linear-gradient(90deg, rgba(7, 93, 132, 0.14) 0%, rgba(213, 161, 74, 0.2) 100%);
    color: #06445f;
}

.travel-product-sidebar__list img,
.travel-product-sidebar__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.travel-product-sidebar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4ead4;
    color: #8e642a;
}

.travel-product-sidebar__empty {
    margin: 0;
    padding: 12px 14px;
    color: #785a31;
}

.travel-product-card .travel-item-card__body {
    gap: 8px;
}

.travel-product-card__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #6e4f29;
    font-size: 0.88rem;
}

.travel-product-card__meta span i {
    width: 14px;
    color: #a06f2f;
}

.travel-product-card__bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.travel-product-card__price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #7f4d20;
}

.travel-product-card .btn {
    border-radius: 999px;
    padding: 5px 12px;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    height: 40px !important;
    line-height: 37px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px !important;
}

@media (max-width: 767.98px) {
    .travel-product-sidebar {
        gap: 12px;
    }

    .travel-product-sidebar__group h3 {
        font-size: 0.82rem;
    }
}
