.theme-l2 {
    padding-bottom: 2rem;
    color: var(--black);
}

.theme-l2-breadcrumb {
    padding: 1.8rem 0 2.4rem;
}

.theme-l2-breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
}

.theme-l2-breadcrumb a {
    color: #9d9d9d;
    font-size: 1.4rem;
}

.theme-l2-breadcrumb a:hover,
.theme-l2-breadcrumb span {
    color: var(--red);
    font-size: 1.4rem;
    font-weight: 500;
}

.theme-l2-breadcrumb .arrow {
    width: 1.6rem;
}

.theme-l2-intro {
    grid-area: intro;
    min-width: 0;
    margin-bottom: 0;
}

.theme-l2-intro h1 {
    font-size: 4.2rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1.2rem;
    word-break: break-word;
}

.theme-l2-intro-copy {
    color: #5d666d;
    font-size: 1.6rem;
    line-height: 1.7;
}

.theme-l2-intro-copy.is-collapsed {
    max-height: 8.2rem;
    overflow: hidden;
    position: relative;
}

.theme-l2-intro-copy.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.theme-l2-intro-copy.is-collapsed img,
.theme-l2-intro-copy.is-collapsed h1,
.theme-l2-intro-copy.is-collapsed h2,
.theme-l2-intro-copy.is-collapsed h3,
.theme-l2-intro-copy.is-collapsed h4 {
    display: none;
}

.theme-l2-intro-copy p,
.theme-l2-intro-copy li {
    color: #5d666d;
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.theme-l2-intro-copy ul,
.theme-l2-intro-copy ol {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}

.theme-l2-intro-copy h1,
.theme-l2-intro-copy h2,
.theme-l2-intro-copy h3,
.theme-l2-intro-copy h4,
.theme-l2-intro-copy h5,
.theme-l2-intro-copy h6 {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--black);
    margin: 1.2rem 0 0.8rem;
}

.theme-l2-intro-copy img {
    max-width: 100%;
    height: auto;
}

.theme-l2-readmore {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 700;
}

.theme-l2-readmore:hover {
    color: var(--black);
}

.theme-l2-intro-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
    color: #5d666d;
    font-size: 1.5rem;
}

.theme-l2-layout {
    display: grid;
    grid-template-columns: 28rem minmax(0, 1fr);
    grid-template-areas:
        "sidebar intro"
        "sidebar main";
    gap: 2.4rem 3.2rem;
    align-items: start;
}

.theme-l2-sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 11rem;
}

.theme-l2-main {
    grid-area: main;
    min-width: 0;
}

.theme-l2-filters {
    background: #fff;
    color: var(--black);
    border: 1px solid #eadfd6;
    border-radius: 1.6rem;
    padding: 2rem 1.8rem;
}

.theme-l2-filter-group + .theme-l2-filter-group {
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid #eee8e2;
}

.theme-l2-filter-group h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1.4rem;
}

.theme-l2-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.theme-l2-filter-head h4 {
    margin: 0;
}

.theme-l2-filter-head a {
    color: var(--red);
    font-size: 1.3rem;
    font-weight: 600;
}

.theme-l2-price-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.8rem;
    align-items: center;
}

.theme-l2-price-row span {
    color: #8a8f9c;
}

.theme-l2-price-row input {
    width: 100%;
    min-height: 4.2rem;
    border: 1px solid #d8d8d8;
    background: #fff;
    border-radius: 0.6rem;
    color: var(--black);
    padding: 0 1rem;
    font-size: 1.3rem;
}

.theme-l2-price-row input::placeholder {
    color: #9aa0a6;
}

.theme-l2-range {
    position: relative;
    height: 2.4rem;
}

.theme-l2-range input[type="range"] {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    appearance: none;
    background: none;
}

.theme-l2-range input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #fff;
    border: 0;
    box-shadow: 0 0 0 3px #f75940;
    cursor: pointer;
}

.theme-l2-range input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #fff;
    border: 0;
    box-shadow: 0 0 0 3px #f75940;
    cursor: pointer;
}

.theme-l2-range input[type="range"]::-webkit-slider-runnable-track {
    height: 0.3rem;
    background: #e4e4e4;
    border-radius: 1rem;
}

.theme-l2-range-labels {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 1.3rem;
    margin-top: 0.6rem;
}

.theme-l2-check {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1.1rem;
    cursor: pointer;
}

.theme-l2-check input {
    width: 1.6rem;
    height: 1.6rem;
    accent-color: #f75940;
}

.theme-l2-check em {
    font-style: normal;
    color: #8a8f9c;
    font-weight: 600;
}

.theme-l2-check-list.is-collapsed .theme-l2-check:nth-child(n+7) {
    display: none;
}

.theme-l2-show-more {
    background: none;
    border: 0;
    color: var(--red);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.theme-l2-promo {
    margin-top: 2rem;
    background: #fff6ef;
    border-radius: 1.8rem;
    padding: 2.2rem 1.8rem;
    text-align: center;
}

.theme-l2-promo-photos {
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.theme-l2-promo-photos img {
    width: 5.2rem;
    height: 5.2rem;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -1.2rem;
}

.theme-l2-promo-photos img:first-child {
    margin-left: 0;
}

.theme-l2-promo h5 {
    font-size: 1.8rem;
    color: var(--black);
    margin: 0 0 0.5rem;
}

.theme-l2-promo p {
    color: #6c757d;
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
}

.theme-l2-promo .button {
    width: 100%;
}

.theme-l2-filter-toggle {
    width: 100%;
    margin-bottom: 1.4rem;
    border: 1px solid #eadfd6;
    background: #fff;
    color: var(--black);
    border-radius: 3rem;
    min-height: 4.6rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.theme-l2-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
    padding: 1.6rem 0;
    border-top: 1px solid #eee8e2;
}

.theme-l2-selected {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 4.4rem;
}

.theme-l2-selected-label {
    color: #6b6b6b;
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.theme-l2-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.8rem 0.7rem 1.4rem;
    border: 1px solid #c48a62;
    background: #fff6ef;
    color: #b56e4c;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}

.theme-l2-chip:hover {
    color: #8f4e2f;
    border-color: #8f4e2f;
}

.theme-l2-chip-x {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    border: 1.4px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 500;
}

.theme-l2-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
}

.theme-l2-sort-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 4.4rem;
    padding: 0 1.6rem;
    border: 1px solid #2c3661;
    border-radius: 999px;
    background: #fff;
    color: #2c3661;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
}

.theme-l2-sort-pill span {
    white-space: nowrap;
}

.theme-l2-sort-pill select {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232C3661' d='M1 1.2L6 6.8 11 1.2'/%3E%3C/svg%3E") no-repeat right center;
    padding: 0 2rem 0 0;
    color: inherit;
    font-size: inherit;
    font-weight: 500;
    min-width: 16rem;
    cursor: pointer;
}

.theme-l2-view-switch {
    display: flex;
    border: 1px solid #eadfd6;
    border-radius: 1.2rem;
    overflow: hidden;
}

.theme-l2-view-switch a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    color: #8a8f9c;
}

.theme-l2-view-switch a.is-active,
.theme-l2-view-switch a:hover {
    background: var(--red);
    color: #fff;
}

.theme-l2-results.is-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
}

.theme-l2-results.is-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.theme-l2-item {
    min-width: 0;
}

.theme-l2-results.is-grid > .theme-l2-item {
    display: flex;
}

.theme-l2-results.is-grid .theme-l2-grid-card {
    width: 100%;
}

.theme-l2-grid-card,
.theme-l2-list-card {
    background: #fff;
    border: 1px solid #e8e4df;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0.8rem 2rem rgba(44, 54, 97, 0.05);
}

.theme-l2-grid-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.theme-l2-grid-card:hover,
.theme-l2-list-card:hover {
    box-shadow: 0 1.2rem 2.8rem rgba(44, 54, 97, 0.1);
}

.theme-l2-card-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.theme-l2-grid-card .theme-l2-card-media {
    height: 24rem;
}

.theme-l2-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-l2-grid-card:hover .theme-l2-card-media img,
.theme-l2-list-card:hover .theme-l2-card-media img {
    transform: scale(1.04);
}

.theme-l2-badge {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    z-index: 2;
    background: #e94aa1;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    max-width: calc(100% - 6rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-l2-wish {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
}

.theme-l2-card-body,
.theme-l2-list-details,
.theme-l2-list-cta {
    padding: 1.8rem 2rem 2rem;
}

.theme-l2-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.theme-l2-card-body h3,
.theme-l2-list-details h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 0 0 0.8rem;
    font-weight: 700;
}

.theme-l2-list-details h3 {
    font-size: 2.4rem;
}

.theme-l2-card-body h3 a,
.theme-l2-list-details h3 a {
    color: var(--black);
}

.theme-l2-card-body h3 a:hover,
.theme-l2-list-details h3 a:hover {
    color: var(--red);
}

.theme-l2-stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.theme-l2-stars img {
    width: 1.6rem;
}

.theme-l2-stars span {
    margin-left: 0.6rem;
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 500;
}

.theme-l2-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 0 0 1.6rem;
}

.theme-l2-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 4.4rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--black);
}

.theme-l2-tag.is-outline {
    background: #fff;
    border: 1px solid #d8d8d8;
}

.theme-l2-tag.is-pink {
    background: #fde4ee;
    border: 1px solid transparent;
}

.theme-l2-tag.is-peach {
    background: #f6e6d8;
    border: 1px solid transparent;
}

.theme-l2-grid-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: auto;
    margin-bottom: 1.6rem;
}

.theme-l2-kv span {
    display: block;
    color: #8a8f9c;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.theme-l2-kv strong,
.theme-l2-grid-price {
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.theme-l2-grid-price {
    font-size: 2.6rem;
}

.theme-l2-book {
    width: 100%;
}

.theme-l2-price-insight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.2rem 0 0;
    padding: 0.8rem 1.2rem;
    border: 1px solid #4caf50;
    background: #eaf7ea;
    color: #2e7d32;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.theme-l2-price-insight svg {
    flex-shrink: 0;
}

.theme-l2-btn-arrow {
    margin-left: 0.6rem;
    font-weight: 400;
}

.theme-l2-list-card {
    display: grid;
    grid-template-columns: 32rem minmax(0, 1fr) 24rem;
    align-items: stretch;
}

.theme-l2-list-card .theme-l2-card-media {
    min-height: 28rem;
}

.theme-l2-list-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-l2-list-excerpt {
    color: #5d666d;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0 0 1.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.theme-l2-list-cta {
    background: #fff6ee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
}

.theme-l2-list-price {
    font-size: 2.4rem !important;
}

.theme-l2-list-cta .button {
    width: 100%;
}

.theme-l2-booked {
    margin: 0;
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 500;
}

.theme-l2-pager {
    grid-column: 1 / -1;
    margin-top: 1.6rem;
    border: 0;
    background: none;
    float: none;
}

.theme-l2-pages,
.theme-l2-pager .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 2.4rem 0 0;
    list-style: none;
    margin: 0;
    float: none;
    border: 0;
    background: none;
}

.theme-l2-pages > li,
.theme-l2-pages > .page-item,
.theme-l2-pager .pagination > li {
    display: inline-flex;
    float: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    border-radius: 0;
}

.theme-l2-pages > li > a,
.theme-l2-pages > li > span,
.theme-l2-pages .page-link,
.theme-l2-pager .pagination > li > a,
.theme-l2-pager .pagination > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    min-width: 4.4rem;
    padding: 0;
    border-radius: 1.2rem;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #2c2c2c;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    outline: 0;
}

.theme-l2-pages > .active > a,
.theme-l2-pages > .active > span,
.theme-l2-pages > .active > a:hover,
.theme-l2-pages > .active > a:focus,
.theme-l2-pages > .page-item.active .page-link,
.theme-l2-pager .pagination > .active > a,
.theme-l2-pager .pagination > .active > span {
    background: #4da6ff;
    border-color: #4da6ff;
    color: #fff;
}

.theme-l2-pages > li > a:hover,
.theme-l2-pages .page-link:hover,
.theme-l2-pager .pagination > li > a:hover {
    background: #f7f7f7;
    border-color: #dcdcdc;
    color: #111;
}

.theme-l2-pages > .disabled > span,
.theme-l2-pages > .disabled > a,
.theme-l2-pages > .disabled > a:hover,
.theme-l2-pages > .page-item.disabled .page-link,
.theme-l2-pager .pagination > .disabled > span,
.theme-l2-pager .pagination > .disabled > a {
    background: #fff;
    border-color: #e6e6e6;
    color: #c4c4c4;
}

.theme-l2-why {
    margin-top: 6rem;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.theme-l2-why::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 48, 0.45);
}

.theme-l2-why .container {
    position: relative;
    z-index: 1;
}

.theme-l2-why-card {
    max-width: 54rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 2rem;
    padding: 3.2rem;
}

.theme-l2-why-card p {
    color: #5d666d;
    font-size: 1.6rem;
    margin: 1.2rem 0 2rem;
}

.theme-l2-empty {
    grid-column: 1 / -1;
    padding: 3rem 0;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .theme-l2-list-card {
        grid-template-columns: 24rem minmax(0, 1fr) 20rem;
    }
}

@media (max-width: 767px) {
    .theme-l2-intro h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 991px) {
    .theme-l2-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "sidebar"
            "main";
    }

    .theme-l2-sidebar {
        position: static;
    }

    .theme-l2-filters {
        display: none;
    }

    .theme-l2-filters.is-open {
        display: block;
        margin-bottom: 1.6rem;
    }

    .theme-l2-results.is-grid {
        grid-template-columns: 1fr;
    }

    .theme-l2-list-card {
        grid-template-columns: 1fr;
    }

    .theme-l2-list-card .theme-l2-card-media {
        width: 100%;
        height: 22rem;
        min-height: 0;
    }

    .theme-l2-list-cta {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .theme-l2-filter-toggle {
        display: none;
    }
}
