.gdt-tour-archive {
    color: #10213f;
    font-family: inherit;
}

.gdt-tour-search {
    margin: 0 0 28px;
}

.gdt-tour-search--smart-sticky {
    position: fixed;
    top: 50px;
    left: 50%;
    z-index: 9998;
    width: min(1160px, calc(100vw - 24px));
    transform: translate(-50%, -120%);
    transition: transform 180ms ease;
}

.gdt-tour-search--sticky-visible {
    transform: translate(-50%, 12px);
}

.gdt-tour-search--sticky-hidden {
    transform: translate(-50%, -120%);
}

.gdt-tour-searchbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto auto;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 33, 63, 0.06);
}

.gdt-tour-searchbar__input {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 36px;
    gap: 10px;
    align-items: center;
    min-height: 42px;
    margin: 0;
    padding: 0 8px 0 12px;
    border: 1px solid #edf0f5;
    border-radius: 7px;
    color: #f36b21;
}

.gdt-tour-searchbar__input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #10213f;
    font-size: 13px;
}

.gdt-tour-searchbar__input button,
.gdt-tour-filter-toggle,
.gdt-tour-category-pill {
    min-height: 34px;
    border: 1px solid #edf0f5;
    border-radius: 6px;
    background: #fff;
    color: #52637a;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.gdt-tour-searchbar__input button {
    border-color: transparent;
    color: #f36b21;
    padding: 0;
}

.gdt-tour-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.gdt-tour-category-pill,
.gdt-tour-filter-toggle {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    white-space: nowrap;
}

.gdt-tour-category-pill.is-active {
    border-color: #f36b21;
    background: #f36b21;
    color: #fff;
}

.gdt-tour-filter-toggle {
    border-color: #fee3d4;
    color: #f36b21;
}

.gdt-tour-clear-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid #d8dde7;
    border-radius: 6px;
    background: #fff;
    color: #52637a;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.gdt-tour-clear-filters[hidden] {
    display: none;
}

.gdt-tour-filter-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(16, 33, 63, 0.28);
}

.gdt-tour-filter-drawer__panel {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(390px, 100vw);
    height: 100%;
    margin-left: auto;
    background: #fff;
    box-shadow: -18px 0 40px rgba(16, 33, 63, 0.18);
}

.gdt-tour-filter-drawer__header,
.gdt-tour-filter-drawer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #e7ebf2;
}

.gdt-tour-filter-drawer__footer {
    justify-content: center;
    border-top: 1px solid #e7ebf2;
    border-bottom: 0;
}

.gdt-tour-filter-close {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #10213f;
    font-size: 22px;
    cursor: pointer;
}

.gdt-tour-filter-drawer__body {
    display: grid;
    grid-template-columns: 132px 1fr;
    min-height: 0;
}

.gdt-tour-filter-tabs {
    border-right: 1px solid #e7ebf2;
    background: #f5f8fb;
}

.gdt-tour-filter-tabs button {
    display: block;
    width: 100%;
    min-height: 44px;
    border: 0;
    border-bottom: 1px solid #e7ebf2;
    background: transparent;
    color: #10213f;
    padding: 0 12px;
    text-align: left;
    font-size: 12px;
    cursor: pointer;
}

.gdt-tour-filter-tabs button.is-active {
    background: #fff;
    color: #0d5bd7;
    font-weight: 700;
}

.gdt-tour-filter-content {
    padding: 18px;
    overflow: auto;
}

.gdt-tour-filter-pane {
    display: none;
}

.gdt-tour-filter-pane.is-active {
    display: grid;
    gap: 16px;
}

.gdt-tour-filter-pane label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #52637a;
    font-size: 13px;
    font-weight: 700;
}

.gdt-tour-filter-pane input[type="date"] {
    min-height: 40px;
    border: 1px solid #d8dde7;
    border-radius: 6px;
    padding: 0 10px;
}

.gdt-tour-price-filter {
    display: grid;
    gap: 12px;
}

.gdt-tour-price-filter__label {
    color: #10213f;
    font-weight: 700;
}

.gdt-tour-price-filter__value {
    display: inline-flex;
    gap: 6px;
    width: fit-content;
    border-radius: 6px;
    background: #f2f5f9;
    color: #10213f;
    padding: 10px 12px;
    font-weight: 700;
}

.gdt-tour-price-filter input[type="range"] {
    width: 100%;
    accent-color: #0d72ba;
}

.gdt-tour-filter-apply {
    min-height: 38px;
    min-width: 170px;
    border: 0;
    border-radius: 999px;
    background: #f36b21;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.gdt-tour-results__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 26px;
    font-size: 20px;
}

.gdt-tour-sort {
    position: relative;
    font-size: 14px;
    font-weight: 400;
}

.gdt-tour-sort__toggle {
    display: inline-flex;
    min-height: 36px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8dde7;
    border-radius: 6px;
    background: #fff;
    color: #10213f;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.gdt-tour-sort__toggle:hover,
.gdt-tour-sort__toggle[aria-expanded="true"] {
    border-color: #f36b21;
    color: #f36b21;
}

.gdt-tour-sort__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    width: 176px;
    border: 1px solid #d9dde5;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 33, 63, 0.12);
    padding: 18px 18px 16px;
}

.gdt-tour-sort__title {
    position: relative;
    margin: 0 0 15px;
    padding-left: 12px;
    color: #10213f;
    font-size: 14px;
    font-weight: 700;
}

.gdt-tour-sort__title::before {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: 0;
    width: 3px;
    background: #4e91ff;
    content: "";
}

.gdt-tour-sort__group {
    margin: 14px 0 8px;
    color: #97a3b4;
    font-size: 15px;
}

.gdt-tour-sort__option {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 9px 0;
    color: #52637a;
    font-size: 14px;
    cursor: pointer;
}

.gdt-tour-sort__option input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #4e91ff;
}

.gdt-tour-archive--loading .gdt-tour-results {
    opacity: 0.55;
    pointer-events: none;
}

.gdt-tour-grid {
    display: grid;
    grid-template-columns: repeat(var(--gdt-tour-columns, 3), minmax(0, 1fr));
    gap: 24px;
}

.gdt-tour-card {
    overflow: hidden;
    border: 1px solid #d9dde5;
    border-radius: 7px;
    background: #fff;
}

.gdt-tour-card__image {
    display: block;
    aspect-ratio: 16 / 10.8;
    background: #f6f8fb;
    text-decoration: none;
}

.gdt-tour-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gdt-tour-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #8a96a8;
    font-weight: 700;
}

.gdt-tour-card__body {
    display: grid;
    gap: 14px;
    padding: 18px 16px 16px;
}

.gdt-tour-card h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.gdt-tour-card h3 a {
    color: #06152b;
    text-decoration: none;
}

.gdt-tour-card__meta {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-width: 0;
    color: #52637a;
    font-size: 13px;
}

.gdt-tour-card__location {
    min-height: 20px;
}

.gdt-tour-card__review {
    color: #64758e;
    font-size: 14px;
    min-height: 20px;
}

.gdt-tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gdt-tour-card__price {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: #10213f;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.gdt-tour-card__price .price {
    color: #06152b;
    font-size: 16px;
    font-weight: 800;
}

.gdt-tour-empty {
    border: 1px solid #d9dde5;
    border-radius: 7px;
    padding: 24px;
    color: #52637a;
    background: #fff;
}

.gdt-tour-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 0;
}

.gdt-tour-pagination .page-numbers {
    display: inline-flex;
    min-width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8dde7;
    border-radius: 6px;
    color: #10213f;
    text-decoration: none;
}

.gdt-tour-pagination .current {
    border-color: #ef7425;
    background: #ef7425;
    color: #fff;
}

@media (max-width: 900px) {
    .gdt-tour-searchbar {
        grid-template-columns: auto auto minmax(0, 1fr);
        align-items: stretch;
    }

    .gdt-tour-searchbar__input {
        grid-column: 1 / -1;
    }

    .gdt-tour-categories {
        grid-column: 1 / -1;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .gdt-tour-filter-toggle {
        width: 38px;
        min-height: 38px;
        padding: 0;
        justify-self: start;
    }

    .gdt-tour-filter-toggle__text {
        display: none;
    }

    .gdt-tour-clear-filters {
        min-height: 38px;
        justify-self: start;
    }

    .gdt-tour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .gdt-tour-grid {
        grid-template-columns: 1fr;
    }

    .gdt-tour-filter-drawer__body {
        grid-template-columns: 108px 1fr;
    }

    .gdt-tour-filter-tabs button {
        padding: 0 9px;
        font-size: 11px;
    }
}
