﻿:root {
    --navy-950: #071a2f;
    --navy-900: #0b2442;
    --navy-800: #12375e;
    --navy-700: #195081;
    --orange-600: #f45d17;
    --orange-500: #ff6a1a;
    --orange-100: #fff0e8;
    --sand-50: #fcfaf7;
    --blue-50: #f3f7fb;
    --blue-100: #e7f0f8;
    --ink: #10243c;
    --muted: #64748b;
    --line: #dfe7ef;
    --white: #fff;
    --success: #147d64;
    --danger: #c83d4b;
    --shadow-sm: 0 10px 30px rgba(11, 36, 66, .08);
    --shadow-md: 0 24px 60px rgba(7, 26, 47, .14);
    --shadow-lg: 0 36px 90px rgba(7, 26, 47, .2);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    body.modal-open, body.offcanvas-open {
        overflow: hidden;
    }

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
}

    button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
        outline: 3px solid rgba(255, 106, 26, .35);
        outline-offset: 2px;
    }

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.12;
}

p {
    color: var(--muted);
}

.container {
    width: min(100% - 40px, 1180px);
}

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--blue-50);
}

.section-navy {
    background: var(--navy-950);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange-600);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #ffc5a4;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy-800);
    font-weight: 800;
    white-space: nowrap;
}

    .text-link i {
        transition: transform .2s ease;
    }

    .text-link:hover i {
        transform: translateX(4px);
    }

.text-link-light {
    color: white;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.01em;
    padding: .72rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--orange-600);
    --bs-btn-border-color: var(--orange-600);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d94a0c;
    --bs-btn-hover-border-color: #d94a0c;
    --bs-btn-active-bg: #c94208;
    box-shadow: 0 10px 24px rgba(244, 93, 23, .24);
}

.btn-outline-dark {
    --bs-btn-color: var(--navy-950);
    --bs-btn-border-color: #bdcad7;
    --bs-btn-hover-bg: var(--navy-950);
    --bs-btn-hover-border-color: var(--navy-950);
}

.btn-dark {
    --bs-btn-bg: var(--navy-950);
    --bs-btn-border-color: var(--navy-950);
}

.btn-xl {
    min-height: 60px;
    font-size: 1.03rem;
}

/* Header */
.site-announcement {
    background: var(--navy-950);
    color: #dce9f5;
    font-size: .82rem;
    padding: 8px 0;
}

    .site-announcement a {
        color: #dce9f5;
    }

.site-header {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(214,225,236,.85);
    backdrop-filter: blur(18px);
    z-index: 1030;
}

    .site-header .navbar {
        min-height: 78px;
        padding: .75rem 0;
    }

    .site-header .navbar-brand {
        flex: 0 0 auto;
        margin-right: 1.15rem;
    }

        .site-header .navbar-brand img {
            width: 158px;
            height: auto;
        }

    .site-header .navbar-collapse {
        min-width: 0;
    }

    .site-header .navbar-nav {
        flex: 0 1 auto;
        flex-wrap: nowrap;
    }

    .site-header .nav-item {
        flex: 0 0 auto;
    }

    .site-header .nav-link {
        position: relative;
        color: #29425d;
        font-weight: 700;
        font-size: .91rem;
        line-height: 1.2;
        white-space: nowrap;
        border-radius: 999px;
        padding: .62rem .68rem !important;
    }

        .site-header .nav-link:hover {
            color: var(--orange-600);
            background: var(--orange-100);
        }

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    margin-left: .8rem;
}

@media (min-width: 1200px) {
    .site-header .container {
        width: min(100% - 28px, 1280px);
        max-width: 1280px;
    }
}

@media (min-width: 1200px) and (max-width: 1320px) {
    .site-header .navbar-brand {
        margin-right: .55rem;
    }

        .site-header .navbar-brand img {
            width: 145px;
        }

    .site-header .nav-link {
        font-size: .86rem;
        padding-inline: .5rem !important;
    }

    .header-actions {
        gap: 6px;
        margin-left: .4rem;
    }
}

.currency-form select {
    min-width: 78px;
    padding: .55rem 2rem .55rem .8rem;
    color: var(--navy-900);
    background-color: var(--blue-50);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.account-button, .cart-button, .icon-button {
    border: 1px solid #dce6ef;
    background: white;
    color: var(--navy-900);
    border-radius: 999px;
    min-height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    position: relative;
}

    .account-button:hover, .cart-button:hover, .icon-button:hover {
        border-color: #b8c9d9;
        background: var(--blue-50);
    }

.cart-button {
    background: var(--navy-950);
    border-color: var(--navy-950);
    color: white;
}

.avatar {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--orange-600);
    border-radius: 50%;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 21px;
    height: 21px;
    border-radius: 99px;
    background: var(--orange-500);
    color: white;
    border: 2px solid white;
    font-size: .68rem;
    display: grid;
    place-items: center;
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    padding: .6rem;
}

.dropdown-item {
    border-radius: 9px;
    padding: .65rem .75rem;
    font-weight: 600;
}

/* Home hero */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 82px;
    background: radial-gradient(circle at 10% 10%, rgba(255,106,26,.14), transparent 32%), linear-gradient(135deg, #fff 0%, #f7fbff 62%, #edf5fb 100%);
}

    .home-hero::before {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        right: -220px;
        top: -220px;
        border: 1px solid rgba(25,80,129,.1);
        border-radius: 50%;
        box-shadow: 0 0 0 60px rgba(25,80,129,.025), 0 0 0 120px rgba(25,80,129,.018);
    }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
    align-items: center;
    gap: 76px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-800);
    background: white;
    border: 1px solid #dce8f2;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: .77rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

    .hero-kicker i {
        color: var(--orange-600);
    }

.hero-copy h1 {
    max-width: 720px;
    margin: 22px 0 20px;
    font-size: clamp(3rem, 5.2vw, 5.2rem);
    letter-spacing: -.065em;
}

.hero-lead {
    max-width: 610px;
    color: #50677e;
    font-size: 1.16rem;
    line-height: 1.75;
}

.hero-search {
    position: relative;
    z-index: 5;
    margin-top: 32px;
    background: white;
    border: 1px solid #dae5ef;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) minmax(175px, .75fr) auto;
    align-items: center;
}

.search-field {
    min-width: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    padding: 7px 16px;
    border-right: 1px solid var(--line);
}

.search-field-icon {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    color: var(--orange-600);
    background: var(--orange-100);
    border-radius: 50%;
}

.search-field label {
    color: var(--navy-900);
    font-size: .72rem;
    font-weight: 800;
}

.search-field input, .search-field select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--muted);
    background: transparent;
    padding: 2px 0;
}

.search-field select {
    cursor: pointer;
}

.hero-search-button {
    min-height: 58px;
    padding-inline: 20px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-trust-avatars {
    display: flex;
}

    .hero-trust-avatars span {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        margin-left: -8px;
        border-radius: 50%;
        border: 3px solid white;
        background: var(--navy-800);
        color: white;
        font-size: .67rem;
        font-weight: 800;
    }

        .hero-trust-avatars span:first-child {
            margin-left: 0;
            background: var(--orange-600);
        }

        .hero-trust-avatars span:nth-child(3) {
            background: #2f7b70;
        }

.hero-trust strong, .hero-trust small {
    display: block;
}

.hero-trust small {
    color: var(--muted);
}

.hero-visual {
    position: relative;
    height: 610px;
}

.hero-photo {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-photo-main {
    left: 0;
    top: 38px;
    width: 72%;
    height: 520px;
    z-index: 2;
}

    .hero-photo-main::after {
        content: "";
        position: absolute;
        inset: 45% 0 0;
        background: linear-gradient(transparent, rgba(7,26,47,.86));
    }

    .hero-photo-main figcaption {
        position: absolute;
        z-index: 2;
        left: 26px;
        right: 26px;
        bottom: 24px;
        color: white;
    }

        .hero-photo-main figcaption span, .hero-photo-main figcaption strong {
            display: block;
        }

        .hero-photo-main figcaption span {
            font-size: .8rem;
            color: #e8f1f8;
        }

        .hero-photo-main figcaption strong {
            margin-top: 5px;
            font-family: var(--font-display);
            font-size: 1.2rem;
        }

.hero-photo-one {
    right: 0;
    top: 0;
    width: 35%;
    height: 245px;
    z-index: 3;
    border: 6px solid white;
}

.hero-photo-two {
    right: 2%;
    bottom: 0;
    width: 39%;
    height: 270px;
    z-index: 3;
    border: 6px solid white;
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid rgba(220,230,239,.9);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 12px 15px;
}

.hero-floating-rating {
    left: -34px;
    top: 16px;
}

    .hero-floating-rating i {
        color: #f5a623;
        font-size: 1.25rem;
    }

.hero-floating-card strong, .hero-floating-card span {
    display: block;
}

.hero-floating-card span {
    color: var(--muted);
    font-size: .71rem;
}

.hero-floating-price {
    right: 13%;
    bottom: 18px;
    display: block;
}

    .hero-floating-price strong {
        color: var(--orange-600);
        font-size: 1.1rem;
    }

.value-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: white;
}

.value-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .value-strip-grid > div {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 24px 19px;
        border-right: 1px solid var(--line);
    }

        .value-strip-grid > div:first-child {
            padding-left: 0;
        }

        .value-strip-grid > div:last-child {
            border-right: 0;
        }

.value-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange-600);
    background: var(--orange-100);
}

.value-strip strong, .value-strip small {
    display: block;
}

.value-strip strong {
    font-size: .9rem;
}

.value-strip small {
    color: var(--muted);
    font-size: .76rem;
}

/* Section headings */
.section-heading {
    max-width: 650px;
}

    .section-heading h2 {
        margin: 10px 0 12px;
        font-size: clamp(2rem, 3.4vw, 3.15rem);
    }

    .section-heading p {
        margin: 0;
        font-size: 1.02rem;
    }

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}

.section-heading-centered {
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading-light h2, .section-heading-light p {
    color: white;
}

.section-heading-light p {
    color: #b8cadb;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-tile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 22px;
    border: 1px solid #dde7ef;
    border-radius: 18px;
    background: white;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .category-tile:hover {
        transform: translateY(-4px);
        border-color: #c4d3df;
        box-shadow: var(--shadow-sm);
    }

.category-tile-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--orange-600);
    background: var(--orange-100);
    border-radius: 15px;
    font-size: 1.25rem;
}

.category-tile strong, .category-tile small {
    display: block;
}

.category-tile small {
    color: var(--muted);
    font-size: .78rem;
}

.category-arrow {
    color: #8499ad;
}

/* Experience cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.experience-card {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid #dce6ef;
    border-radius: 21px;
    box-shadow: 0 8px 25px rgba(11,36,66,.055);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .experience-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-md);
    }

.experience-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
}

    .experience-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.experience-card:hover .experience-card-media img {
    transform: scale(1.055);
}

.media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,47,.05), transparent 52%, rgba(7,26,47,.23));
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--navy-900);
    background: rgba(255,255,255,.94);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .7rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.card-badge-deal {
    color: #a53a07;
    background: #fff0e8;
}

.card-view-icon {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(7,26,47,.78);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
}

.experience-card-body {
    padding: 19px;
}

.experience-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: .72rem;
}

    .experience-meta span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .experience-meta i {
        color: var(--orange-600);
    }

.experience-card h3 {
    min-height: 46px;
    margin: 10px 0 8px;
    font-size: 1.04rem;
    line-height: 1.35;
    letter-spacing: -.02em;
}

    .experience-card h3 a:hover {
        color: var(--orange-600);
    }

.experience-card-body > p {
    height: 43px;
    overflow: hidden;
    margin: 0 0 16px;
    font-size: .82rem;
}

.experience-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 15px;
}

    .experience-card-footer small, .experience-card-footer strong, .experience-card-footer span {
        display: block;
    }

    .experience-card-footer small, .experience-card-footer span {
        color: var(--muted);
        font-size: .66rem;
    }

    .experience-card-footer strong {
        color: var(--navy-950);
        font-family: var(--font-display);
        font-size: 1.05rem;
    }

.btn-card {
    padding: .55rem .75rem;
    color: var(--navy-800);
    background: var(--blue-50);
    font-size: .73rem;
    box-shadow: none;
}

    .btn-card:hover {
        color: white;
        background: var(--navy-900);
    }

.experience-card-compact .experience-card-body > p {
    display: none;
}

/* Destinations */
.destination-showcase {
    padding: 96px 0;
}

.destination-mosaic {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 18px;
}

.destination-mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: 23px;
    min-height: 0;
}

    .destination-mosaic-card:nth-child(1) {
        grid-row: 1 / 3;
    }

    .destination-mosaic-card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .destination-mosaic-card:nth-child(n+5) {
        display: none;
    }

    .destination-mosaic-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .55s ease;
    }

    .destination-mosaic-card:hover img {
        transform: scale(1.06);
    }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,47,.04) 20%, rgba(7,26,47,.92) 100%);
}

.destination-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    color: white;
}

    .destination-content small {
        color: #c6d8e8;
        text-transform: uppercase;
        font-size: .67rem;
        font-weight: 800;
        letter-spacing: .1em;
    }

    .destination-content h3 {
        margin: 5px 0 8px;
        color: white;
        font-size: 1.55rem;
    }

    .destination-content div {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-size: .76rem;
    }

        .destination-content div span {
            color: #c6d8e8;
        }

.destination-open {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--navy-950);
    background: rgba(255,255,255,.92);
    border-radius: 50%;
}

.editorial-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 78px;
}

.editorial-image {
    position: relative;
}

    .editorial-image img {
        width: 100%;
        height: 570px;
        object-fit: cover;
        border-radius: 30px;
    }

    .editorial-image::before {
        content: "";
        position: absolute;
        left: -18px;
        bottom: -18px;
        width: 55%;
        height: 55%;
        border-radius: 28px;
        background: var(--orange-100);
        z-index: -1;
    }

.editorial-stat {
    position: absolute;
    right: -28px;
    bottom: 32px;
    color: white;
    background: var(--navy-950);
    border-radius: 18px;
    padding: 17px 21px;
    box-shadow: var(--shadow-md);
}

    .editorial-stat strong, .editorial-stat span {
        display: block;
    }

    .editorial-stat strong {
        color: white;
        font: 800 1.8rem var(--font-display);
    }

    .editorial-stat span {
        color: #bcd0e3;
        font-size: .78rem;
    }

.editorial-copy h2 {
    margin: 11px 0 20px;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.editorial-copy > p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.editorial-points {
    display: grid;
    gap: 15px;
    margin: 28px 0 31px;
}

    .editorial-points > div {
        display: flex;
        align-items: center;
        gap: 14px;
    }

        .editorial-points > div > i {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            color: var(--orange-600);
            background: var(--orange-100);
            border-radius: 14px;
            font-size: 1.1rem;
        }

    .editorial-points strong, .editorial-points small {
        display: block;
    }

    .editorial-points small {
        color: var(--muted);
    }

.testimonial-section {
    background: #fffaf7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    border: 1px solid #eedfd6;
    border-radius: 23px;
    background: white;
    padding: 28px;
}

.stars {
    display: inline-flex;
    gap: 3px;
    color: #f2a41c;
    font-size: .82rem;
}

.testimonial-card blockquote {
    min-height: 112px;
    margin: 17px 0 22px;
    color: #263f59;
    font-size: 1.02rem;
    line-height: 1.75;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid #eee5df;
    padding-top: 17px;
}

.review-avatar {
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--navy-800);
    font-weight: 800;
}

.testimonial-card strong, .testimonial-card small {
    display: block;
}

.testimonial-card small {
    color: var(--muted);
}

.newsletter-section {
    padding: 0 0 90px;
}

.newsletter-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr minmax(410px, .8fr);
    align-items: center;
    gap: 45px;
    padding: 50px;
    color: white;
    background: var(--navy-900);
    border-radius: 30px;
}

    .newsletter-card::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -100px;
        top: -130px;
        border-radius: 50%;
        background: rgba(255,106,26,.25);
    }

    .newsletter-card h2 {
        margin: 8px 0 10px;
        color: white;
        font-size: 2.1rem;
    }

    .newsletter-card p {
        margin: 0;
        color: #bed0e0;
    }

.newsletter-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

    .newsletter-actions .btn {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding-inline: 24px;
    }

/* Page heroes and catalogue */
.page-hero {
    position: relative;
    padding: 72px 0 0;
    color: white;
    background: radial-gradient(circle at 88% 12%, rgba(255,106,26,.3), transparent 28%), linear-gradient(125deg, var(--navy-950), var(--navy-700));
}

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
        background-size: 26px 26px;
        opacity: .25;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

.page-hero-copy {
    max-width: 730px;
}

.page-hero h1 {
    margin: 12px 0 16px;
    color: white;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.page-hero p {
    max-width: 650px;
    color: #c8d8e7;
    font-size: 1.08rem;
}

.page-search {
    transform: translateY(42px);
    display: grid;
    grid-template-columns: 1.5fr .8fr auto;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 22px;
    padding: 9px;
    box-shadow: var(--shadow-lg);
}

.page-search-field {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 18px;
    border-right: 1px solid var(--line);
}

    .page-search-field > i {
        color: var(--orange-600);
        font-size: 1.15rem;
    }

    .page-search-field div {
        flex: 1;
        min-width: 0;
    }

    .page-search-field label {
        display: block;
        color: var(--navy-900);
        font-size: .7rem;
        font-weight: 800;
    }

    .page-search-field input, .page-search-field select {
        width: 100%;
        color: var(--muted);
        background: transparent;
        border: 0;
        outline: 0;
    }

.page-search .btn {
    min-height: 58px;
}

.catalog-section {
    padding-top: 108px;
}

.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

    .catalog-toolbar h2 {
        margin: 5px 0 0;
        font-size: 1.5rem;
    }

.catalog-active-category {
    color: #d94a0c;
    font-weight: 800;
}

.catalog-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .catalog-toolbar-actions label {
        color: var(--muted);
        font-size: .77rem;
        font-weight: 700;
    }

    .catalog-toolbar-actions select {
        width: 190px;
        border-radius: 999px;
        border-color: var(--line);
        font-weight: 700;
    }

.catalog-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.filter-panel {
    position: sticky;
    top: 106px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
}

    .filter-panel .offcanvas-body {
        display: block;
        padding: 0;
    }

    .filter-panel form {
        padding: 22px;
    }

.filter-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.filter-reset {
    color: var(--orange-600);
    background: transparent;
    border: 0;
    font-size: .75rem;
    font-weight: 800;
}

.filter-group {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

    .filter-group h3 {
        margin-bottom: 13px;
        font-size: .9rem;
        letter-spacing: 0;
    }

.filter-options {
    display: grid;
    gap: 9px;
    max-height: 320px;
    overflow: auto;
}

.filter-radio {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #42576c;
    cursor: pointer;
    font-size: .83rem;
}

    .filter-radio input {
        accent-color: var(--orange-600);
    }

    .filter-radio span {
        flex: 1;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .filter-radio small {
        color: #94a3b8;
    }

.price-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .price-input-grid label span {
        display: block;
        color: var(--muted);
        font-size: .68rem;
        margin-bottom: 4px;
    }

    .price-input-grid .form-control {
        border-radius: 10px;
    }

.filter-help {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding: 16px;
    border-radius: 15px;
    background: var(--blue-50);
}

    .filter-help > i {
        color: var(--orange-600);
        font-size: 1.2rem;
    }

    .filter-help strong {
        font-size: .82rem;
    }

    .filter-help p {
        margin: 4px 0;
        font-size: .73rem;
        line-height: 1.45;
    }

    .filter-help a {
        color: var(--navy-800);
        font-size: .74rem;
        font-weight: 800;
    }

.catalog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.catalog-results-wrap {
    position: relative;
    min-height: 400px;
}

.results-loading {
    position: absolute;
    z-index: 10;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
    padding-top: 100px;
    background: rgba(255,255,255,.75);
    color: var(--navy-900);
    backdrop-filter: blur(3px);
}

.catalog-pagination {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.page-arrow, .page-numbers button {
    border: 1px solid var(--line);
    background: white;
    color: var(--navy-900);
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    font-weight: 800;
}

.page-arrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
}

    .page-arrow:disabled {
        opacity: .4;
    }

.page-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .page-numbers button.active {
        color: white;
        background: var(--navy-950);
        border-color: var(--navy-950);
    }

.empty-state {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed #cbd8e3;
    border-radius: 24px;
    padding: 42px;
    background: var(--blue-50);
}

.empty-state-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange-600);
    background: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.empty-state h3 {
    margin: 20px 0 8px;
}

.empty-state p {
    max-width: 500px;
}

/* Tour detail */
.detail-breadcrumb-section {
    padding: 32px 0 22px;
}

.detail-breadcrumb {
    margin-bottom: 22px;
    font-size: .8rem;
}

    .detail-breadcrumb a {
        color: var(--muted);
    }

.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.detail-labels {
    display: flex;
    gap: 8px;
}

    .detail-labels span {
        color: var(--navy-800);
        background: var(--blue-50);
        border-radius: 999px;
        padding: 6px 10px;
        font-size: .7rem;
        font-weight: 800;
    }

    .detail-labels .recommended-label {
        color: #9f3d0a;
        background: var(--orange-100);
    }

.detail-title-row h1 {
    max-width: 920px;
    margin: 12px 0;
    font-size: clamp(2.15rem, 4vw, 3.75rem);
}

.detail-submeta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: .85rem;
}

    .detail-submeta i {
        color: var(--orange-600);
    }

.share-button {
    flex: 0 0 auto;
}

.detail-gallery-section {
    padding-bottom: 34px;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.55fr .75fr .75fr;
    grid-template-rows: 240px 240px;
    gap: 10px;
    overflow: hidden;
    border-radius: 25px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #dce5ed;
}

    .gallery-image:first-child {
        grid-row: 1 / 3;
    }

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .gallery-image:hover img {
        transform: scale(1.035);
    }

.gallery-more {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    color: var(--navy-950);
    background: white;
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.gallery-count-1 {
    grid-template-columns: 1fr;
}

    .gallery-count-1 .gallery-image {
        grid-row: 1 / 3;
    }

.gallery-count-2 {
    grid-template-columns: 1.5fr 1fr;
}

    .gallery-count-2 .gallery-image:nth-child(2) {
        grid-row: 1 / 3;
    }

.detail-content-section {
    padding-top: 48px;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 70px;
    align-items: start;
}

.detail-quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 19px;
    margin-bottom: 38px;
}

    .detail-quick-facts > div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 17px;
        border-right: 1px solid var(--line);
    }

        .detail-quick-facts > div:last-child {
            border-right: 0;
        }

        .detail-quick-facts > div > span {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            color: var(--orange-600);
            background: var(--orange-100);
            border-radius: 50%;
        }

    .detail-quick-facts small, .detail-quick-facts strong {
        display: block;
    }

    .detail-quick-facts small {
        color: var(--muted);
        font-size: .66rem;
    }

    .detail-quick-facts strong {
        font-size: .76rem;
    }

.detail-block {
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

    .detail-block:first-of-type {
        padding-top: 0;
    }

    .detail-block h2 {
        margin: 8px 0 18px;
        font-size: 2rem;
    }

.detail-intro {
    color: #304a64;
    font-size: 1.1rem;
    font-weight: 600;
}

.rich-copy {
    color: #5b7084;
    white-space: pre-line;
    line-height: 1.85;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

    .highlight-grid > div {
        display: flex;
        gap: 10px;
    }

        .highlight-grid > div > span {
            flex: 0 0 auto;
            width: 25px;
            height: 25px;
            display: grid;
            place-items: center;
            color: white;
            background: var(--orange-600);
            border-radius: 50%;
            font-size: .7rem;
        }

    .highlight-grid p {
        margin: 0;
        color: #435a70;
    }

.inclusion-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .inclusion-list li {
        display: flex;
        gap: 10px;
        color: #435a70;
    }

    .inclusion-list i {
        color: var(--success);
    }

.info-accordion .accordion-item, .faq-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.info-accordion .accordion-button, .faq-accordion .accordion-button {
    font-weight: 800;
    color: var(--navy-900);
    box-shadow: none;
}

    .info-accordion .accordion-button:not(.collapsed), .faq-accordion .accordion-button:not(.collapsed) {
        color: var(--navy-900);
        background: var(--blue-50);
    }

.review-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .review-heading h2 {
        margin: 0;
    }

    .review-heading > span {
        color: var(--muted);
    }

.detail-review-list {
    display: grid;
    gap: 14px;
}

.detail-review {
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 16px;
}

    .detail-review header {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .detail-review header strong, .detail-review header small {
            display: block;
        }

        .detail-review header small {
            color: var(--muted);
        }

    .detail-review h3 {
        margin: 16px 0 6px;
        font-size: 1rem;
    }

    .detail-review p {
        margin: 0;
    }

.booking-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 15px;
}

.booking-card {
    border: 1px solid #d5e1ea;
    border-radius: 23px;
    padding: 25px;
    background: white;
    box-shadow: var(--shadow-md);
}

.booking-price small, .booking-price strong, .booking-price span {
    display: block;
}

.booking-price small, .booking-price span {
    color: var(--muted);
    font-size: .74rem;
}

.booking-price strong {
    color: var(--navy-950);
    font: 800 2rem var(--font-display);
}

.booking-options-summary {
    display: flex;
    gap: 9px;
    margin: 14px 0;
    padding: 11px;
    color: var(--navy-800);
    background: var(--blue-50);
    border-radius: 11px;
    font-size: .75rem;
}

.booking-field {
    margin-top: 20px;
}

    .booking-field label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
        font-size: .78rem;
        font-weight: 800;
    }

    .booking-field input {
        min-height: 50px;
        border-radius: 12px;
    }

.booking-travellers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

    .booking-travellers label, .booking-travellers small {
        display: block;
    }

    .booking-travellers label {
        font-weight: 800;
    }

    .booking-travellers small {
        color: var(--muted);
    }

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
}

    .quantity-control button {
        width: 31px;
        height: 31px;
        border: 0;
        border-radius: 50%;
        color: var(--navy-900);
        background: var(--blue-50);
    }

    .quantity-control input {
        width: 34px;
        border: 0;
        text-align: center;
        outline: 0;
        appearance: textfield;
    }

        .quantity-control input::-webkit-outer-spin-button, .quantity-control input::-webkit-inner-spin-button {
            appearance: none;
            margin: 0;
        }

.booking-total-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 13px;
}

    .booking-total-preview span {
        color: var(--muted);
    }

    .booking-total-preview strong {
        font: 800 1.18rem var(--font-display);
    }

.booking-assurances {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 17px;
    color: var(--muted);
    font-size: .7rem;
}

    .booking-assurances i {
        color: var(--success);
    }

.support-card {
    display: flex;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: var(--blue-50);
}

    .support-card > span {
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--orange-600);
        background: white;
    }

    .support-card p {
        margin: 4px 0 5px;
        font-size: .74rem;
    }

    .support-card a {
        color: var(--navy-800);
        font-size: .75rem;
        font-weight: 800;
    }

.gallery-modal .modal-content {
    background: rgba(7,26,47,.98);
}

.gallery-modal .modal-header {
    color: white;
    border-bottom-color: rgba(255,255,255,.1);
}

.gallery-modal .modal-title {
    color: white;
}

.gallery-modal .modal-body {
    display: grid;
    place-items: center;
}

    .gallery-modal .modal-body img {
        max-height: 84vh;
        object-fit: contain;
    }

/* Destination pages */
.destination-page-hero, .destination-detail-hero {
    position: relative;
    overflow: hidden;
    color: white;
}

.destination-page-hero {
    height: 570px;
    display: flex;
    align-items: center;
}

    .destination-page-hero > img, .destination-detail-hero > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.destination-page-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,26,47,.92) 0%, rgba(7,26,47,.56) 50%, rgba(7,26,47,.2) 100%);
}

.destination-page-hero .container, .destination-detail-hero .container {
    position: relative;
    z-index: 2;
}

.destination-page-hero h1 {
    max-width: 760px;
    margin: 11px 0 15px;
    color: white;
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.destination-page-hero p {
    max-width: 650px;
    color: #d1dfeb;
    font-size: 1.08rem;
}

.destination-hero-search {
    max-width: 620px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 27px;
    padding: 7px 7px 7px 18px;
    background: white;
    border-radius: 999px;
}

    .destination-hero-search i {
        color: var(--orange-600);
    }

    .destination-hero-search input {
        flex: 1;
        min-width: 0;
        border: 0;
        outline: 0;
    }

.destination-index-heading {
    align-items: center;
}

.continent-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

    .continent-filter button {
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 8px 13px;
        color: #496075;
        background: white;
        font-size: .76rem;
        font-weight: 800;
    }

        .continent-filter button.active {
            color: white;
            background: var(--navy-950);
            border-color: var(--navy-950);
        }

.destination-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destination-index-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease;
}

    .destination-index-card:hover {
        transform: translateY(-5px);
    }

    .destination-index-card[hidden] {
        display: none;
    }

.destination-index-media {
    position: relative;
    display: block;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
}

    .destination-index-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.destination-index-card:hover img {
    transform: scale(1.05);
}

.destination-index-price {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 10px;
    color: var(--navy-950);
    background: white;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
}

.destination-index-body {
    padding: 20px;
}

    .destination-index-body small {
        color: var(--orange-600);
        text-transform: uppercase;
        font-size: .66rem;
        font-weight: 800;
        letter-spacing: .08em;
    }

    .destination-index-body h3 {
        margin: 4px 0 8px;
        font-size: 1.35rem;
    }

    .destination-index-body p {
        height: 48px;
        overflow: hidden;
        margin-bottom: 16px;
        font-size: .82rem;
    }

    .destination-index-body footer {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding-top: 14px;
        border-top: 1px solid var(--line);
        font-size: .74rem;
    }

        .destination-index-body footer span {
            color: var(--muted);
        }

        .destination-index-body footer a {
            color: var(--navy-800);
            font-weight: 800;
        }

.destination-guide-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr .88fr;
    align-items: center;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow-sm);
}

    .destination-guide-card > div {
        padding: 55px;
    }

    .destination-guide-card h2 {
        margin: 9px 0 15px;
        font-size: 2.7rem;
    }

    .destination-guide-card img {
        width: 100%;
        height: 100%;
        min-height: 430px;
        object-fit: cover;
    }

.destination-detail-hero {
    min-height: 620px;
    display: flex;
    align-items: end;
    padding: 80px 0;
}

.destination-detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,47,.18) 10%, rgba(7,26,47,.92) 100%);
}

.breadcrumb-light .breadcrumb-item, .breadcrumb-light a, .breadcrumb-light .breadcrumb-item.active {
    color: #d8e5ef;
}

    .breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
        color: #9fb4c7;
    }

.destination-detail-hero h1 {
    max-width: 820px;
    margin: 10px 0;
    color: white;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.destination-detail-hero p {
    max-width: 700px;
    color: #d4e0ea;
    font-size: 1.15rem;
}

.destination-hero-facts {
    display: flex;
    gap: 23px;
    margin-top: 21px;
    font-weight: 700;
}

.destination-about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

    .destination-about-grid h2 {
        margin: 8px 0;
        font-size: 3rem;
    }

.city-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.city-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 22px;
}

    .city-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

    .city-card:hover img {
        transform: scale(1.06);
    }

.city-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,47,.04) 25%, rgba(7,26,47,.94));
}

.city-card > div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: white;
}

.city-card small {
    color: #c7d7e5;
}

.city-card h3 {
    margin: 5px 0 7px;
    color: white;
    font-size: 1.5rem;
}

.city-card p {
    height: 44px;
    margin: 0;
    overflow: hidden;
    color: #d4e1ec;
    font-size: .78rem;
}

.city-card-arrow {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-900);
    background: white;
}

.destination-callout {
    padding: 70px 0;
    color: white;
    background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
}

    .destination-callout .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .destination-callout h2 {
        margin: 7px 0 9px;
        color: white;
        font-size: 2.5rem;
    }

    .destination-callout p {
        max-width: 700px;
        margin: 0;
        color: #c6d8e7;
    }

/* Cart */
.simple-page-hero {
    padding: 55px 0 48px;
    background: var(--blue-50);
    border-bottom: 1px solid var(--line);
}

    .simple-page-hero .breadcrumb {
        font-size: .78rem;
    }

    .simple-page-hero h1 {
        margin: 8px 0;
        font-size: 3.5rem;
    }

    .simple-page-hero p {
        margin: 0;
    }

.cart-page-section {
    padding-top: 60px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 45px;
    align-items: start;
}

.cart-column-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

    .cart-column-heading h2 {
        margin: 0;
        font-size: 1.45rem;
    }

    .cart-column-heading a {
        color: var(--navy-800);
        font-size: .82rem;
        font-weight: 800;
    }

.cart-item-list {
    display: grid;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: opacity .2s, transform .2s;
}

    .cart-item.is-removing {
        opacity: .3;
        transform: scale(.98);
    }

.cart-item-image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.cart-item-info {
    padding: 21px;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 13px;
}

    .cart-item-top small {
        color: var(--orange-600);
        font-size: .68rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .cart-item-top h3 {
        margin: 5px 0 0;
        font-size: 1.23rem;
    }

.cart-remove {
    flex: 0 0 auto;
    width: 37px;
    height: 37px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #8a9aad;
    background: white;
}

    .cart-remove:hover {
        color: var(--danger);
        border-color: #eccbd0;
        background: #fff4f5;
    }

.cart-item-details {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0;
    color: var(--muted);
    font-size: .76rem;
}

    .cart-item-details i {
        color: var(--orange-600);
    }

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid var(--line);
    padding-top: 15px;
}

.cart-quantity label {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .68rem;
}

.cart-item-price {
    text-align: right;
}

    .cart-item-price small, .cart-item-price strong {
        display: block;
    }

    .cart-item-price small {
        color: var(--muted);
    }

    .cart-item-price strong {
        font: 800 1.15rem var(--font-display);
    }

.cart-reassurance {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding: 15px;
    border-radius: 13px;
    background: var(--blue-50);
}

    .cart-reassurance i {
        color: var(--navy-700);
    }

    .cart-reassurance p {
        margin: 0;
        font-size: .76rem;
    }

.cart-summary-column {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 13px;
}

.cart-summary-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 25px;
    box-shadow: var(--shadow-md);
}

    .cart-summary-card h2 {
        margin: 7px 0 22px;
        font-size: 1.55rem;
    }

.cart-summary-lines {
    display: grid;
    gap: 11px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

    .cart-summary-lines > div, .cart-summary-total {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .cart-summary-lines span {
        color: var(--muted);
    }

.cart-summary-total {
    align-items: center;
    padding: 19px 0;
}

    .cart-summary-total > span {
        font-weight: 800;
    }

    .cart-summary-total div {
        text-align: right;
    }

    .cart-summary-total strong, .cart-summary-total small {
        display: block;
    }

    .cart-summary-total strong {
        font: 800 1.55rem var(--font-display);
    }

    .cart-summary-total small {
        color: var(--muted);
    }

.secure-checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
}

    .secure-checkout-note i {
        color: var(--success);
    }

    .secure-checkout-note strong, .secure-checkout-note small {
        display: block;
    }

    .secure-checkout-note small {
        color: var(--muted);
        font-size: .67rem;
    }

.cart-support-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 16px;
    border-radius: 17px;
    background: var(--blue-50);
}

    .cart-support-link > i:first-child {
        color: var(--orange-600);
        font-size: 1.25rem;
    }

    .cart-support-link strong, .cart-support-link small {
        display: block;
    }

    .cart-support-link small {
        color: var(--muted);
    }

.empty-cart-state {
    max-width: 650px;
    margin: 10px auto;
    text-align: center;
}

.empty-cart-visual {
    position: relative;
    width: 150px;
    height: 120px;
    margin: 0 auto 25px;
}

    .empty-cart-visual span {
        width: 100px;
        height: 100px;
        display: grid;
        place-items: center;
        margin: auto;
        border-radius: 50%;
        color: var(--orange-600);
        background: var(--orange-100);
        font-size: 2.4rem;
    }

    .empty-cart-visual > i {
        position: absolute;
        right: 5px;
        top: 8px;
        color: var(--navy-700);
        font-size: 1.65rem;
        transform: rotate(-20deg);
    }

.empty-cart-state h2 {
    margin: 7px 0;
    font-size: 2.5rem;
}

/* Offcanvas cart */
.cart-offcanvas {
    width: min(440px, 100vw) !important;
}

    .cart-offcanvas .offcanvas-header {
        padding: 24px;
        border-bottom: 1px solid var(--line);
    }

    .cart-offcanvas .offcanvas-title {
        margin: 3px 0 0;
        font-size: 1.55rem;
    }

    .cart-offcanvas .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

.loading-state {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 60px 20px;
    color: var(--muted);
}

.mini-cart-empty {
    margin: auto;
    padding: 40px 28px;
    text-align: center;
}

    .mini-cart-empty > span {
        width: 68px;
        height: 68px;
        display: grid;
        place-items: center;
        margin: 0 auto 16px;
        border-radius: 50%;
        color: var(--orange-600);
        background: var(--orange-100);
        font-size: 1.7rem;
    }

    .mini-cart-empty h3 {
        margin-bottom: 8px;
    }

.mini-cart-items {
    flex: 1;
    overflow: auto;
    padding: 6px 22px;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 11px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

    .mini-cart-item img {
        width: 72px;
        height: 72px;
        border-radius: 12px;
        object-fit: cover;
    }

    .mini-cart-item small {
        color: var(--orange-600);
        font-size: .62rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mini-cart-item h3 {
        margin: 2px 0;
        font-size: .82rem;
        line-height: 1.35;
    }

    .mini-cart-item span {
        color: var(--muted);
        font-size: .72rem;
    }

    .mini-cart-item button {
        align-self: start;
        border: 0;
        color: #8fa0b0;
        background: transparent;
    }

.mini-cart-more {
    text-align: center;
    font-size: .75rem;
}

.mini-cart-footer {
    border-top: 1px solid var(--line);
    padding: 20px 23px;
    box-shadow: 0 -12px 30px rgba(11,36,66,.06);
}

    .mini-cart-footer > div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 13px;
    }

        .mini-cart-footer > div strong {
            font: 800 1.25rem var(--font-display);
        }

/* Checkout */
.checkout-header {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}

    .checkout-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .checkout-header > .container > a {
        color: var(--navy-800);
        font-weight: 800;
    }

    .checkout-header .container > div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .checkout-header .container > div > span {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--success);
            background: #e9f7f2;
        }

    .checkout-header strong, .checkout-header small {
        display: block;
    }

    .checkout-header small {
        color: var(--muted);
        font-size: .7rem;
    }

.checkout-section {
    background: var(--blue-50);
}

.checkout-title {
    max-width: 700px;
    margin-bottom: 35px;
}

    .checkout-title h1 {
        margin: 7px 0;
        font-size: 3.3rem;
    }

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: start;
}

.checkout-form-column {
    display: grid;
    gap: 18px;
}

.checkout-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    background: white;
}

.checkout-card-heading {
    display: flex;
    gap: 13px;
    margin-bottom: 24px;
}

    .checkout-card-heading > span {
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: white;
        background: var(--navy-900);
        font-weight: 800;
    }

    .checkout-card-heading h2 {
        margin: 0 0 3px;
        font-size: 1.35rem;
    }

    .checkout-card-heading p {
        margin: 0;
        font-size: .8rem;
    }

.checkout-card .form-label {
    font-size: .76rem;
    font-weight: 800;
}

.checkout-card .form-control {
    border-color: #d8e3ec;
    border-radius: 12px;
}

    .checkout-card .form-control:focus {
        border-color: var(--orange-500);
        box-shadow: 0 0 0 .2rem rgba(255,106,26,.1);
    }

.payment-method-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 2px solid var(--navy-800);
    border-radius: 15px;
}

.payment-method-logo {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: var(--navy-900);
    font-size: 1.2rem;
}

.payment-method-card strong, .payment-method-card small {
    display: block;
}

.payment-method-card small {
    color: var(--muted);
}

.payment-method-card > i {
    color: var(--success);
}

.payment-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

    .payment-security-grid > div {
        display: flex;
        gap: 10px;
        padding: 13px;
        border-radius: 12px;
        background: var(--blue-50);
    }

    .payment-security-grid i {
        color: var(--success);
    }

    .payment-security-grid strong, .payment-security-grid small {
        display: block;
    }

    .payment-security-grid strong {
        font-size: .74rem;
    }

    .payment-security-grid small {
        color: var(--muted);
        font-size: .66rem;
    }

.checkout-terms {
    display: flex;
    gap: 10px;
    padding: 2px 8px;
    color: #43596e;
    font-size: .8rem;
    cursor: pointer;
}

    .checkout-terms a {
        color: var(--navy-800);
        text-decoration: underline;
    }

.checkout-submit-note {
    margin: -7px 0 0;
    text-align: center;
    font-size: .72rem;
}

.checkout-summary-column {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 14px;
}

.checkout-summary-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.checkout-summary-heading {
    display: flex;
    justify-content: space-between;
    padding: 22px 23px 14px;
}

    .checkout-summary-heading a {
        color: var(--navy-800);
        font-size: .77rem;
        font-weight: 800;
    }

.checkout-summary-items {
    max-height: 370px;
    overflow: auto;
    padding: 0 23px;
}

    .checkout-summary-items article {
        display: grid;
        grid-template-columns: 72px minmax(0,1fr) auto;
        gap: 11px;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .checkout-summary-items img {
        width: 72px;
        height: 72px;
        border-radius: 11px;
        object-fit: cover;
    }

    .checkout-summary-items small {
        color: var(--orange-600);
        font-size: .61rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .checkout-summary-items h3 {
        margin: 2px 0 5px;
        font-size: .8rem;
        line-height: 1.3;
    }

    .checkout-summary-items span {
        display: block;
        color: var(--muted);
        font-size: .65rem;
    }

    .checkout-summary-items article > strong {
        font-size: .78rem;
    }

.checkout-price-lines {
    display: grid;
    gap: 8px;
    padding: 18px 23px;
}

    .checkout-price-lines > div, .checkout-grand-total {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .checkout-price-lines span {
        color: var(--muted);
    }

.checkout-grand-total {
    align-items: center;
    padding: 19px 23px;
    background: var(--navy-950);
    color: white;
}

    .checkout-grand-total > span {
        font-weight: 800;
    }

    .checkout-grand-total div {
        text-align: right;
    }

    .checkout-grand-total strong, .checkout-grand-total small {
        display: block;
    }

    .checkout-grand-total strong {
        color: white;
        font: 800 1.35rem var(--font-display);
    }

    .checkout-grand-total small {
        color: #b8cbdc;
    }

.checkout-help-card {
    display: flex;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--line);
}

    .checkout-help-card > i {
        color: var(--orange-600);
        font-size: 1.25rem;
    }

    .checkout-help-card p {
        margin: 3px 0;
        font-size: .73rem;
    }

    .checkout-help-card a {
        color: var(--navy-800);
        font-size: .75rem;
        font-weight: 800;
    }

.payment-result-section {
    min-height: 75vh;
    display: grid;
    place-items: center;
    padding: 80px 0;
    background: var(--blue-50);
}

.payment-result-card {
    max-width: 850px;
    margin: auto;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: white;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.payment-result-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 19px;
    border-radius: 50%;
    color: white;
    background: var(--success);
    font-size: 2rem;
}

.payment-result-card.failed .payment-result-icon {
    background: var(--danger);
}

.payment-result-card h1 {
    margin: 8px 0 11px;
    font-size: 2.8rem;
}

.receipt-panel {
    margin: 30px 0;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.receipt-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    background: var(--blue-50);
}

    .receipt-head div:last-child {
        text-align: right;
    }

    .receipt-head small, .receipt-head strong {
        display: block;
    }

    .receipt-head small {
        color: var(--muted);
    }

.receipt-customer {
    display: flex;
    gap: 20px;
    padding: 13px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
}

.receipt-items {
    padding: 0 20px;
}

    .receipt-items article {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
    }

        .receipt-items article:last-child {
            border-bottom: 0;
        }

        .receipt-items article > span {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            color: var(--orange-600);
            background: var(--orange-100);
            border-radius: 50%;
        }

    .receipt-items small, .receipt-items strong, .receipt-items p {
        display: block;
        margin: 0;
    }

    .receipt-items p {
        font-size: .72rem;
    }

.payment-result-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.payment-reference-help {
    max-width: 620px;
    margin: 22px auto 0;
    font-size: .75rem;
}

/* Support/legal/error */
.support-hero {
    padding: 95px 0;
    color: white;
    background: radial-gradient(circle at 80% 10%, rgba(255,106,26,.3), transparent 30%), var(--navy-950);
}

    .support-hero h1 {
        max-width: 800px;
        margin: 10px 0;
        color: white;
        font-size: 4.4rem;
    }

    .support-hero p {
        max-width: 650px;
        color: #c6d7e5;
        font-size: 1.08rem;
    }

.support-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
}

.support-options {
    display: grid;
    gap: 13px;
    align-content: start;
}

.support-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

    .support-option > span {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: var(--orange-600);
        background: var(--orange-100);
    }

    .support-option small, .support-option strong {
        display: block;
    }

    .support-option small {
        color: var(--orange-600);
        font-size: .66rem;
        text-transform: uppercase;
        font-weight: 800;
    }

    .support-option p {
        margin: 3px 0 0;
        font-size: .75rem;
    }

.support-form-card {
    padding: 34px;
    border-radius: 24px;
    background: var(--blue-50);
}

    .support-form-card h2 {
        margin: 7px 0;
        font-size: 2.2rem;
    }

    .support-form-card .form-control {
        border-color: var(--line);
        border-radius: 12px;
    }

.faq-section {
    margin-top: 90px;
}

.faq-accordion {
    max-width: 850px;
    margin: auto;
}

.legal-hero {
    padding: 75px 0;
    background: var(--blue-50);
    border-bottom: 1px solid var(--line);
}

    .legal-hero h1 {
        margin: 8px 0;
        font-size: 4rem;
    }

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 70px;
}

    .legal-layout aside {
        position: sticky;
        top: 110px;
        display: grid;
        align-self: start;
        gap: 8px;
        padding: 19px;
        border-radius: 15px;
        background: var(--blue-50);
    }

        .legal-layout aside a {
            color: var(--muted);
            font-size: .8rem;
        }

            .legal-layout aside a:hover {
                color: var(--orange-600);
            }

    .legal-layout article {
        max-width: 780px;
    }

        .legal-layout article section {
            margin-bottom: 38px;
            scroll-margin-top: 120px;
        }

        .legal-layout article h2 {
            font-size: 1.75rem;
        }

        .legal-layout article p {
            line-height: 1.85;
        }

.error-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--blue-50);
}

    .error-page .container {
        max-width: 700px;
    }

.error-code {
    display: inline-block;
    color: var(--orange-600);
    font: 800 1rem var(--font-display);
    text-transform: uppercase;
    letter-spacing: .15em;
}

.error-page h1 {
    margin: 10px 0;
    font-size: 3.4rem;
}

.error-page .container > div {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.error-page small {
    color: var(--muted);
}

/* Account modal */
.account-modal-dialog {
    width: min(1040px, calc(100% - 32px));
    max-width: 1040px;
}

.account-modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(4, 25, 47, .28);
}

.account-modal-shell {
    display: grid;
    grid-template-columns: 41% 59%;
    min-height: 650px;
}

.account-modal-aside {
    position: relative;
    isolation: isolate;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 48px 44px 40px;
    color: #fff;
    background: radial-gradient(circle at 8% 10%, rgba(255, 120, 45, .48), transparent 30%), radial-gradient(circle at 95% 85%, rgba(43, 139, 216, .35), transparent 38%), linear-gradient(150deg, #061b31 0%, #0b3155 58%, #0e4b7c 100%);
}

    .account-modal-aside::before,
    .account-modal-aside::after {
        position: absolute;
        z-index: -1;
        content: "";
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 50%;
    }

    .account-modal-aside::before {
        width: 320px;
        height: 320px;
        right: -150px;
        top: -115px;
    }

    .account-modal-aside::after {
        width: 240px;
        height: 240px;
        left: -120px;
        bottom: -110px;
    }

.account-aside-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
}

    .account-aside-badge i {
        color: #ffb083;
    }

.account-aside-top h2 {
    max-width: 390px;
    margin: 28px 0 14px;
    color: #fff;
    font-size: clamp(2.3rem, 3vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.account-aside-top p {
    max-width: 360px;
    margin: 0;
    color: #c6d8e8;
    font-size: .94rem;
    line-height: 1.75;
}

.account-benefit-list {
    display: grid;
    gap: 14px;
    margin: 38px 0 28px;
}

.account-benefit-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;
    background: rgba(255,255,255,.065);
}

    .account-benefit-item > span {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        color: #fff;
        background: rgba(255,107,26,.92);
        font-size: 1.05rem;
    }

    .account-benefit-item strong,
    .account-benefit-item small {
        display: block;
    }

    .account-benefit-item strong {
        color: #fff;
        font-size: .82rem;
    }

    .account-benefit-item small {
        margin-top: 2px;
        color: #bcd0e1;
        font-size: .69rem;
        line-height: 1.45;
    }

.account-aside-security {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #bfd1df;
    font-size: .72rem;
}

    .account-aside-security i {
        color: #87d8bd;
        font-size: 1rem;
    }

.account-modal-main {
    position: relative;
    min-width: 0;
    padding: 46px 52px 30px;
    background: #fff;
}

.account-modal-close {
    position: absolute;
    z-index: 3;
    right: 24px;
    top: 22px;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--blue-50);
    background-size: 11px;
    opacity: .72;
}

    .account-modal-close:hover {
        opacity: 1;
        background-color: #eef4f9;
    }

.account-mobile-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 48px 22px 0;
}

.account-mobile-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: #fff;
    background: var(--navy-900);
    font-size: 1.2rem;
}

.account-mobile-intro strong,
.account-mobile-intro small {
    display: block;
}

.account-mobile-intro strong {
    color: var(--navy-950);
}

.account-mobile-intro small {
    color: var(--muted);
    font-size: .7rem;
}

.account-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f5f8fb;
}

    .account-tabs .nav-link {
        min-height: 44px;
        border: 0;
        border-radius: 11px;
        color: #60758a;
        background: transparent;
        font-size: .78rem;
        font-weight: 800;
        transition: color .2s ease, background .2s ease, box-shadow .2s ease;
    }

        .account-tabs .nav-link.active {
            color: #fff;
            background: var(--navy-900);
            box-shadow: 0 8px 20px rgba(7, 37, 66, .18);
        }

.account-tab-content {
    padding-top: 1px;
}

.account-heading {
    margin: 30px 0 24px;
}

    .account-heading h3 {
        margin: 5px 0 8px;
        color: var(--navy-950);
        font-size: 2.15rem;
        line-height: 1.08;
        letter-spacing: -.035em;
    }

    .account-heading p {
        max-width: 470px;
        margin: 0;
        color: var(--muted);
        font-size: .82rem;
        line-height: 1.65;
    }

.account-field {
    margin-bottom: 16px;
}

    .account-field > label,
    .account-label-row label {
        display: block;
        margin: 0 0 7px;
        color: var(--navy-900);
        font-size: .7rem;
        font-weight: 800;
    }

.account-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.account-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

    .account-input-group > i {
        position: absolute;
        z-index: 2;
        left: 15px;
        color: #7d91a3;
        font-size: .92rem;
        pointer-events: none;
    }

    .account-input-group .form-control {
        min-height: 52px;
        padding: 12px 46px 12px 44px;
        border: 1px solid #d8e2ea;
        border-radius: 13px;
        color: var(--navy-950);
        background: #fff;
        font-size: .82rem;
        box-shadow: none;
    }

        .account-input-group .form-control::placeholder {
            color: #9aabb9;
        }

        .account-input-group .form-control:focus {
            border-color: rgba(255, 107, 26, .72);
            box-shadow: 0 0 0 4px rgba(255, 107, 26, .1);
        }

.account-password-toggle {
    position: absolute;
    z-index: 3;
    right: 8px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: #718699;
    background: transparent;
}

    .account-password-toggle:hover,
    .account-password-toggle:focus-visible {
        color: var(--navy-900);
        background: var(--blue-50);
    }

.account-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 3px 0 21px;
    color: var(--muted);
    font-size: .72rem;
}

    .account-options-row .form-check {
        margin: 0;
    }

    .account-options-row .form-check-input {
        margin-top: .15em;
    }

        .account-options-row .form-check-input:checked {
            border-color: var(--orange-600);
            background-color: var(--orange-600);
        }

.account-security-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: #4b7b68;
    font-weight: 700;
}

.account-submit {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-size: .88rem;
    box-shadow: 0 14px 28px rgba(255, 94, 15, .22);
}

    .account-submit > .bi {
        transition: transform .2s ease;
    }

    .account-submit:hover > .bi {
        transform: translateX(3px);
    }

    .account-submit:disabled > .bi {
        display: none;
    }

.account-switch-copy {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .74rem;
    text-align: center;
}

    .account-switch-copy button {
        border: 0;
        padding: 0;
        color: var(--navy-900);
        background: transparent;
        font-weight: 800;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.account-password-help {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: -2px 0 18px;
    padding: 10px 12px;
    border-radius: 11px;
    color: #5e7386;
    background: var(--blue-50);
    font-size: .68rem;
    line-height: 1.5;
}

    .account-password-help i {
        margin-top: 1px;
        color: var(--orange-600);
    }

.form-alert {
    margin-bottom: 16px;
    padding: 11px 13px;
    border: 1px solid #ffd0d6;
    border-radius: 11px;
    color: #8e2532;
    background: #fff0f2;
    font-size: .74rem;
    line-height: 1.55;
}

    .form-alert.success {
        border-color: #bfead9;
        color: #0e6852;
        background: #e9f8f2;
    }

.account-legal {
    margin: 20px 0 0;
    color: #7c8fa0;
    font-size: .65rem;
    line-height: 1.55;
    text-align: center;
}

    .account-legal a {
        color: var(--navy-800);
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

/* Footer */
.site-footer {
    padding: 70px 0 24px;
    color: #d1deea;
    background: #06172a;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.45fr .75fr .75fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 160px;
    filter: brightness(1.1);
}

.footer-brand p {
    max-width: 330px;
    margin: 19px 0;
    color: #9eb3c6;
}

.social-links {
    display: flex;
    gap: 8px;
}

    .social-links a {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 50%;
    }

        .social-links a:hover {
            color: white;
            background: var(--orange-600);
            border-color: var(--orange-600);
        }

.footer-top h6 {
    margin-bottom: 17px;
    color: white;
    font-size: .85rem;
    letter-spacing: .01em;
}

.footer-top > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-top a, .footer-top span {
    color: #9eb3c6;
    font-size: .82rem;
}

    .footer-top a:hover {
        color: white;
    }

.footer-contact i {
    color: var(--orange-500);
    margin-right: 7px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #7f97ab;
    font-size: .74rem;
}

.mobile-navigation .offcanvas-body {
    display: flex;
    flex-direction: column;
}

.mobile-nav-links {
    display: grid;
}

    .mobile-nav-links a {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 15px 6px;
        border-bottom: 1px solid var(--line);
        font-weight: 800;
    }

    .mobile-nav-links i {
        color: var(--orange-600);
    }

.mobile-nav-actions {
    margin-top: auto;
    display: grid;
    gap: 12px;
    padding-top: 25px;
}

.toast {
    color: var(--navy-950);
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 13px !important;
}

    .toast.toast-success {
        border-left: 4px solid var(--success) !important;
    }

    .toast.toast-danger {
        border-left: 4px solid var(--danger) !important;
    }

@media (max-width: 1199.98px) {
    .hero-grid {
        grid-template-columns: 1fr 440px;
        gap: 38px;
    }

    .hero-copy h1 {
        font-size: 4.1rem;
    }

    .hero-visual {
        height: 530px;
    }

    .hero-photo-main {
        height: 450px;
    }

    .hero-photo-one {
        height: 205px;
    }

    .hero-photo-two {
        height: 235px;
    }

    .experience-grid, .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .city-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 75px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

        .hero-copy h1, .hero-lead {
            margin-left: auto;
            margin-right: auto;
        }

    .hero-search {
        text-align: left;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .value-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

        .value-strip-grid > div:nth-child(2) {
            border-right: 0;
        }

        .value-strip-grid > div:nth-child(-n+2) {
            border-bottom: 1px solid var(--line);
        }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .experience-grid, .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 260px 260px;
    }

    .destination-mosaic-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .destination-mosaic-card:nth-child(4) {
        grid-column: 1 / 3;
    }

    .editorial-split {
        gap: 45px;
    }

    .editorial-image img {
        height: 500px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card blockquote {
        min-height: 0;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .page-search {
        grid-template-columns: 1fr 1fr auto;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
        border-radius: 0 22px 22px 0;
    }

        .filter-panel form {
            padding: 22px;
        }

    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-sidebar {
        position: static;
    }

    .detail-quick-facts {
        grid-template-columns: 1fr 1fr;
    }

        .detail-quick-facts > div:nth-child(2) {
            border-right: 0;
        }

        .detail-quick-facts > div:nth-child(-n+2) {
            border-bottom: 1px solid var(--line);
        }

    .destination-index-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destination-guide-card {
        grid-template-columns: 1fr;
    }

        .destination-guide-card img {
            min-height: 350px;
        }

    .destination-about-grid {
        gap: 35px;
    }

    .cart-layout, .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary-column, .checkout-summary-column {
        position: static;
    }

    .checkout-summary-column {
        grid-row: 1;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .legal-layout aside {
            position: static;
            display: flex;
            flex-wrap: wrap;
        }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

    .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 62px 0;
    }

    .site-announcement {
        font-size: .73rem;
    }

    .site-header .navbar {
        min-height: 68px;
    }

    .site-header .navbar-brand img {
        width: 135px;
    }

    .home-hero {
        padding: 52px 0 60px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-search {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .search-field {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-search-button {
        width: 100%;
        margin-top: 7px;
    }

    .hero-visual {
        height: 450px;
    }

    .hero-photo-main {
        width: 78%;
        height: 390px;
    }

    .hero-photo-one {
        width: 32%;
        height: 170px;
    }

    .hero-photo-two {
        width: 38%;
        height: 195px;
    }

    .hero-floating-rating {
        left: 2px;
        top: 8px;
    }

    .hero-floating-price {
        right: 5%;
        bottom: 5px;
    }

    .value-strip-grid {
        grid-template-columns: 1fr;
    }

        .value-strip-grid > div {
            border-right: 0;
            border-bottom: 1px solid var(--line);
            padding-left: 0;
        }

            .value-strip-grid > div:last-child {
                border-bottom: 0;
            }

    .section-heading-row {
        align-items: start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .category-grid, .experience-grid, .catalog-grid, .destination-index-grid {
        grid-template-columns: 1fr;
    }

    .experience-card-media {
        aspect-ratio: 1.5 / 1;
    }

    .destination-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px);
    }

    .destination-mosaic-card:nth-child(1), .destination-mosaic-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .editorial-split {
        grid-template-columns: 1fr;
    }

    .editorial-image img {
        height: 420px;
    }

    .editorial-stat {
        right: 12px;
    }

    .newsletter-card {
        padding: 32px 24px;
    }

    .newsletter-actions {
        justify-content: flex-start;
        flex-direction: column;
    }

        .newsletter-actions .btn {
            width: 100%;
        }

    .page-hero {
        padding-top: 55px;
    }

        .page-hero h1 {
            font-size: 2.8rem;
        }

    .page-search {
        transform: translateY(30px);
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .page-search-field {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .catalog-section {
        padding-top: 88px;
    }

    .catalog-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .catalog-toolbar-actions {
        width: 100%;
    }

        .catalog-toolbar-actions select {
            flex: 1;
        }

    .catalog-pagination {
        align-items: center;
    }

    .page-arrow span {
        display: none;
    }

    .detail-title-row {
        align-items: start;
    }

        .detail-title-row h1 {
            font-size: 2.35rem;
        }

    .share-button {
        width: 43px;
        height: 43px;
        padding: 0;
    }

    .share-button {
        font-size: 0;
    }

        .share-button i {
            font-size: 1rem;
        }

    .detail-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 150px;
    }

    .gallery-image:first-child {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-image:nth-child(n+4) {
        display: none;
    }

    .detail-quick-facts {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-grid, .inclusion-list {
        grid-template-columns: 1fr;
    }

    .review-heading {
        flex-wrap: wrap;
    }

    .destination-page-hero {
        height: 620px;
    }

        .destination-page-hero h1 {
            font-size: 3.1rem;
        }

    .destination-hero-search {
        border-radius: 17px;
    }

    .destination-index-heading {
        align-items: start;
    }

    .destination-guide-card > div {
        padding: 35px 25px;
    }

    .destination-guide-card h2 {
        font-size: 2.2rem;
    }

    .destination-detail-hero {
        min-height: 560px;
    }

        .destination-detail-hero h1 {
            font-size: 3.5rem;
        }

    .destination-about-grid {
        grid-template-columns: 1fr;
    }

        .destination-about-grid h2 {
            font-size: 2.3rem;
        }

    .city-card-grid {
        grid-template-columns: 1fr;
    }

    .destination-callout .container {
        align-items: start;
        flex-direction: column;
    }

    .cart-item {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .cart-item-image img {
        min-height: 100%;
    }

    .cart-item-info {
        padding: 15px;
    }

    .cart-item-details {
        display: grid;
        gap: 7px;
    }

    .cart-item-bottom {
        align-items: start;
        flex-direction: column;
        gap: 13px;
    }

    .cart-item-price {
        text-align: left;
    }

    .checkout-header .container > div {
        display: none;
    }

    .checkout-title h1 {
        font-size: 2.6rem;
    }

    .checkout-card {
        padding: 22px 18px;
    }

    .payment-security-grid {
        grid-template-columns: 1fr;
    }

    .payment-result-card {
        padding: 35px 20px;
    }

        .payment-result-card h1 {
            font-size: 2.2rem;
        }

    .receipt-head, .receipt-customer, .payment-result-actions {
        flex-direction: column;
    }

        .receipt-head div:last-child {
            text-align: left;
        }

    .receipt-items article {
        grid-template-columns: auto 1fr;
    }

        .receipt-items article > strong {
            grid-column: 2;
        }

    .support-hero h1, .legal-hero h1 {
        font-size: 3rem;
    }

    .modal-account-shell {
        grid-template-columns: 1fr;
    }

    .modal-account-art {
        display: none;
    }

    .modal-account-form {
        padding: 36px 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 390px;
    }

    .hero-photo-main {
        width: 82%;
        height: 340px;
    }

    .hero-photo-one {
        height: 140px;
    }

    .hero-photo-two {
        height: 165px;
    }

    .hero-floating-card {
        padding: 9px 11px;
    }

    .hero-floating-rating {
        left: -5px;
    }

    .detail-quick-facts {
        grid-template-columns: 1fr;
    }

        .detail-quick-facts > div {
            border-right: 0;
            border-bottom: 1px solid var(--line);
        }

    .detail-gallery {
        grid-template-rows: 260px 120px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-image {
        height: 190px;
    }

        .cart-item-image img {
            min-height: 0;
        }

    .checkout-summary-items article {
        grid-template-columns: 58px 1fr;
    }

    .checkout-summary-items img {
        width: 58px;
        height: 58px;
    }

    .checkout-summary-items article > strong {
        grid-column: 2;
    }
}

@media print {
    .site-announcement, .site-header, .site-footer, .payment-result-actions {
        display: none !important;
    }

    .payment-result-section {
        background: white;
        padding: 0;
    }

    .payment-result-card {
        box-shadow: none;
        border: 0;
    }
}

/* Booking-confidence fallback cards shown when the database has no published reviews. */
.confidence-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: .8rem;
}

    .confidence-card .confidence-icon {
        display: inline-grid;
        width: 3.25rem;
        height: 3.25rem;
        place-items: center;
        border-radius: 1rem;
        background: var(--orange-100);
        color: var(--orange-600);
        font-size: 1.35rem;
    }

    .confidence-card h3 {
        margin: .35rem 0 0;
        font-family: var(--font-display);
        font-size: 1.2rem;
    }

    .confidence-card p {
        margin: 0;
        color: var(--muted);
    }

/* August 2026: horizontal discovery search and sliding hero */
.hero-carousel-shell {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 7px solid #fff;
    border-radius: 32px;
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: block;
    overflow: hidden;
}

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.015);
        transition: transform 7s ease;
    }

.hero-carousel .carousel-item.active .hero-slide img {
    transform: scale(1.075);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 47, .03) 26%, rgba(7, 26, 47, .9) 100%), linear-gradient(90deg, rgba(7, 26, 47, .18), transparent 58%);
}

.hero-slide-caption {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 42px;
    left: 32px;
    color: #fff;
}

    .hero-slide-caption small,
    .hero-slide-caption strong,
    .hero-slide-caption span {
        display: block;
    }

    .hero-slide-caption small {
        margin-bottom: 7px;
        color: #dcecf8;
        font-size: .78rem;
        font-weight: 800;
        letter-spacing: .055em;
        text-transform: uppercase;
    }

    .hero-slide-caption strong {
        max-width: 430px;
        color: #fff;
        font-family: var(--font-display);
        font-size: clamp(1.75rem, 3vw, 2.65rem);
        line-height: 1.06;
        letter-spacing: -.045em;
    }

    .hero-slide-caption > span {
        margin-top: 10px;
        color: #e4edf5;
        font-size: .9rem;
        font-weight: 600;
    }

.hero-carousel-indicators {
    right: 28px;
    bottom: 18px;
    left: auto;
    z-index: 4;
    justify-content: flex-end;
    margin: 0;
}

    .hero-carousel-indicators [data-bs-target] {
        width: 24px;
        height: 4px;
        margin: 0 3px;
        border: 0;
        border-radius: 99px;
        background-color: rgba(255,255,255,.65);
    }

    .hero-carousel-indicators .active {
        width: 42px;
        background-color: var(--orange-500);
    }

.hero-carousel-control {
    z-index: 4;
    width: 72px;
    opacity: 1;
}

.hero-carousel-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7, 26, 47, .42);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: background .2s ease, transform .2s ease;
}

.hero-carousel-control:hover .hero-carousel-arrow {
    background: var(--orange-600);
    transform: scale(1.06);
}

.hero-search.hero-search-wide {
    margin-top: 38px;
    display: grid;
    grid-template-columns: minmax(205px, .82fr) minmax(245px, 1.25fr) minmax(175px, .76fr) minmax(170px, .72fr) auto;
    align-items: stretch;
    padding: 10px;
    border-radius: 24px;
}

.hero-search-kind {
    min-width: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 0;
    padding: 5px;
    border: 0;
    border-right: 1px solid var(--line);
    background: var(--blue-50);
    border-radius: 16px;
}

    .hero-search-kind label {
        min-width: 0;
        cursor: pointer;
    }

    .hero-search-kind input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .hero-search-kind span {
        height: 100%;
        min-height: 54px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        align-content: center;
        column-gap: 7px;
        padding: 7px 10px;
        color: var(--muted);
        border: 1px solid transparent;
        border-radius: 12px;
        transition: .2s ease;
    }

    .hero-search-kind i {
        grid-row: 1 / 3;
        align-self: center;
        color: var(--orange-600);
    }

    .hero-search-kind strong,
    .hero-search-kind small {
        line-height: 1.05;
    }

    .hero-search-kind strong {
        color: var(--navy-900);
        font-size: .78rem;
    }

    .hero-search-kind small {
        font-size: .67rem;
    }

    .hero-search-kind input:checked + span {
        background: #fff;
        border-color: #d9e4ee;
        box-shadow: 0 8px 18px rgba(11, 36, 66, .09);
    }

.page-search.page-search-with-kind {
    grid-template-columns: minmax(230px, .84fr) minmax(260px, 1.35fr) minmax(190px, .78fr) auto;
}

.page-search-kind {
    min-height: 66px;
    display: grid;
    grid-template-columns: .65fr 1fr 1.18fr;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 6px;
    border: 0;
    border-right: 1px solid var(--line);
    background: var(--blue-50);
    border-radius: 15px;
}

    .page-search-kind label {
        cursor: pointer;
    }

    .page-search-kind input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .page-search-kind span {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 7px 8px;
        color: var(--muted);
        border: 1px solid transparent;
        border-radius: 11px;
        font-size: .73rem;
        font-weight: 800;
        white-space: nowrap;
    }

    .page-search-kind input:checked + span {
        color: var(--navy-900);
        background: #fff;
        border-color: #d9e4ee;
        box-shadow: 0 7px 16px rgba(11, 36, 66, .09);
    }

    .page-search-kind i {
        color: var(--orange-600);
    }

@media (max-width: 1199.98px) {
    .hero-search.hero-search-wide {
        grid-template-columns: minmax(195px, .85fr) minmax(220px, 1.15fr) minmax(160px, .72fr) minmax(155px, .68fr) auto;
    }

        .hero-search.hero-search-wide .search-field {
            padding-inline: 11px;
        }

        .hero-search.hero-search-wide .search-field-icon {
            width: 31px;
            height: 31px;
        }

    .page-search.page-search-with-kind {
        grid-template-columns: minmax(210px, .82fr) 1.25fr .76fr auto;
    }
}

@media (max-width: 991.98px) {
    .hero-carousel-shell {
        position: relative;
    }

    .hero-search.hero-search-wide {
        grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr);
        gap: 0;
    }

        .hero-search.hero-search-wide .hero-search-kind,
        .hero-search.hero-search-wide .search-field:nth-of-type(2) {
            border-bottom: 1px solid var(--line);
        }

        .hero-search.hero-search-wide .search-field {
            border-right: 0;
        }

            .hero-search.hero-search-wide .search-field:nth-of-type(1),
            .hero-search.hero-search-wide .search-field:nth-of-type(3) {
                border-right: 1px solid var(--line);
            }

        .hero-search.hero-search-wide .hero-search-button {
            margin: 7px;
        }

    .page-search.page-search-with-kind {
        grid-template-columns: 1fr 1fr;
    }

        .page-search.page-search-with-kind .page-search-kind,
        .page-search.page-search-with-kind .page-search-field {
            border-bottom: 1px solid var(--line);
        }

        .page-search.page-search-with-kind .page-search-field {
            border-right: 0;
        }

        .page-search.page-search-with-kind .page-search-kind {
            border-right: 1px solid var(--line);
        }

        .page-search.page-search-with-kind .btn {
            margin: 7px;
        }
}

@media (max-width: 767.98px) {
    .hero-slide-caption {
        right: 24px;
        bottom: 36px;
        left: 24px;
    }

    .hero-carousel-control {
        width: 56px;
    }

    .hero-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-search.hero-search-wide,
    .page-search.page-search-with-kind {
        grid-template-columns: 1fr;
    }

        .hero-search.hero-search-wide .hero-search-kind,
        .hero-search.hero-search-wide .search-field,
        .page-search.page-search-with-kind .page-search-kind,
        .page-search.page-search-with-kind .page-search-field {
            border-right: 0;
            border-bottom: 1px solid var(--line);
        }

        .hero-search.hero-search-wide .hero-search-button,
        .page-search.page-search-with-kind .btn {
            width: auto;
            margin: 7px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide img {
        transition: none;
        transform: none !important;
    }
}


/* Catalogue image diagnostics: intentionally no offline image fallback. */
.catalogue-image-missing {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: 1rem;
    color: #7f1d1d;
    text-align: center;
    background: linear-gradient(135deg, rgba(254, 226, 226, .96), rgba(255, 247, 237, .96));
    border: 1px dashed rgba(185, 28, 28, .35);
}

    .catalogue-image-missing i {
        font-size: 1.8rem;
    }

    .catalogue-image-missing strong {
        font-size: .9rem;
    }

    .catalogue-image-missing small {
        max-width: 95%;
        overflow-wrap: anywhere;
        font-size: .72rem;
        line-height: 1.35;
    }

.hero-slide > .catalogue-image-missing,
.destination-detail-hero > .catalogue-image-missing {
    min-height: 100%;
}

.gallery-image,
.experience-card-media,
.destination-index-media,
.destination-mosaic-card,
.city-card,
.cart-item-image,
.mini-cart-item > a,
.checkout-summary article {
    position: relative;
}


/* Catalogue AJAX state and Grid/List views */
[data-results-error][hidden],
[data-results-loading][hidden] {
    display: none !important;
}

.catalogue-results-error {
    border-radius: 12px;
}

.catalog-view-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f6f9fc;
}

.catalog-view-button {
    width: 36px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #6c8196;
    background: transparent;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

    .catalog-view-button:hover {
        color: var(--navy-900);
        background: white;
    }

    .catalog-view-button.active {
        color: white;
        background: var(--navy-950);
        box-shadow: 0 5px 13px rgba(7,26,47,.2);
    }

.catalog-grid.catalog-list-view {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.catalog-list-view .experience-card {
    display: grid;
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    min-height: 255px;
    border-radius: 20px;
}

    .catalog-list-view .experience-card:hover {
        transform: translateY(-3px);
    }

.catalog-list-view .experience-card-media {
    height: 100%;
    min-height: 255px;
    aspect-ratio: auto;
    border-radius: 20px 0 0 20px;
}

.catalog-list-view .experience-card-body {
    display: flex;
    flex-direction: column;
    padding: 25px 28px;
}

.catalog-list-view .experience-meta {
    justify-content: flex-start;
    gap: 20px;
}

.catalog-list-view .experience-card h3 {
    min-height: 0;
    margin: 14px 0 10px;
    font-size: 1.35rem;
}

.catalog-list-view .experience-card-body > p {
    height: auto;
    max-height: 52px;
    margin-bottom: 20px;
    line-height: 1.65;
}

.catalog-list-view .experience-card-footer {
    margin-top: auto;
}

.catalog-list-view .btn-card {
    padding: .7rem 1rem;
}

@media (max-width: 991.98px) {
    .catalog-list-view .experience-card {
        grid-template-columns: 230px minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .catalog-toolbar-actions {
        flex-wrap: wrap;
    }

    .catalog-view-switch {
        order: 2;
    }

    .catalog-list-view .experience-card {
        display: block;
        min-height: 0;
    }

    .catalog-list-view .experience-card-media {
        min-height: 0;
        height: auto;
        aspect-ratio: 1.5 / 1;
        border-radius: 20px 20px 0 0;
    }

    .catalog-list-view .experience-card-body {
        padding: 19px;
    }

    .catalog-list-view .experience-card h3 {
        font-size: 1.08rem;
    }
}

/* August 2026: refined responsive authentication modal */
@media (max-width: 991.98px) {
    .account-modal-dialog {
        width: min(680px, calc(100% - 28px));
    }

    .account-modal-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .account-modal-main {
        padding: 36px 38px 28px;
    }
}

@media (max-width: 575.98px) {
    .account-modal-dialog {
        width: 100%;
        max-width: none;
        min-height: 100%;
        margin: 0;
    }

    .account-modal-content {
        min-height: 100vh;
        border-radius: 0;
    }

    .account-modal-shell {
        min-height: 100vh;
    }

    .account-modal-main {
        padding: 26px 20px 24px;
    }

    .account-modal-close {
        right: 16px;
        top: 16px;
    }

    .account-mobile-intro {
        margin-bottom: 20px;
    }

    .account-heading {
        margin: 25px 0 20px;
    }

        .account-heading h3 {
            font-size: 1.8rem;
        }

    .account-options-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .account-security-note {
        display: none;
    }

    .account-input-group .form-control {
        min-height: 50px;
    }

    .account-legal {
        margin-top: 18px;
    }
}

/* Central payment portal status */
.portal-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(8, 31, 54, .12);
}

    .portal-status-grid > div {
        display: grid;
        gap: .25rem;
    }

    .portal-status-grid small {
        color: var(--bs-secondary-color);
    }

@media (max-width: 767.98px) {
    .portal-status-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   August 2026: Top Attractions carousel
   ========================================================= */
.top-attractions-section {
    overflow: hidden;
    background: #fff;
}

.top-attractions-heading {
    margin-bottom: 30px;
}

.top-attractions-shell {
    position: relative;
}

.top-attractions-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 190px;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 18px 6px 52px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

    .top-attractions-track::-webkit-scrollbar {
        display: none;
    }

.top-attraction-card {
    position: relative;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 18px 20px;
    color: var(--navy-950);
    text-align: center;
    background: #fff;
    border: 1px solid #e1e8ee;
    border-radius: 18px;
    box-shadow: 0 7px 22px rgba(12, 36, 61, .04);
    scroll-snap-align: start;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
    z-index: 1;
}

    .top-attraction-card:hover,
    .top-attraction-card:focus-visible {
        color: var(--navy-950);
        transform: translateY(-10px) scale(1.045);
        border-color: rgba(0, 139, 139, .38);
        box-shadow: 0 22px 42px rgba(8, 41, 65, .16);
        z-index: 5;
    }

.top-attraction-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #078b88;
    background: #eefafa;
    border-radius: 18px;
    font-size: 2rem;
    transition: transform .22s ease, background .22s ease;
}

.top-attraction-card:hover .top-attraction-icon {
    transform: scale(1.08);
    background: #e3f6f5;
}

.top-attraction-card > strong {
    font-size: .94rem;
    line-height: 1.25;
}

.top-attraction-count {
    color: var(--muted);
    font-size: .72rem;
}

.top-attraction-popover {
    position: absolute;
    left: 50%;
    bottom: -20px;
    min-width: 150px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    color: #fff;
    background: var(--navy-950);
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(4, 30, 54, .18);
    font-size: .66rem;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
}

.top-attraction-card:hover .top-attraction-popover,
.top-attraction-card:focus-visible .top-attraction-popover {
    opacity: 1;
    transform: translate(-50%, 0);
}

.attraction-scroll-button {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: #078b88;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(7, 139, 136, .26);
    transform: translateY(-60%);
    z-index: 8;
}

    .attraction-scroll-button:hover {
        background: #066e6c;
    }

.attraction-scroll-prev {
    left: -18px;
}

.attraction-scroll-next {
    right: -18px;
}

/* =========================================================
   August 2026: login-only wishlist
   ========================================================= */
.experience-card {
    position: relative;
}

.wishlist-button {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--navy-950);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(218, 228, 237, .9);
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(5, 30, 55, .13);
    font-size: 1.1rem;
    z-index: 7;
    transition: transform .18s ease, color .18s ease, background .18s ease;
}

    .wishlist-button:hover {
        transform: scale(1.08);
        color: #e54755;
    }

    .wishlist-button.is-saved {
        color: #fff;
        background: #e54755;
        border-color: #e54755;
    }

    .wishlist-button:disabled {
        opacity: .65;
        cursor: wait;
    }

.detail-title-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-wishlist-button.is-saved {
    color: #fff;
    background: #e54755;
    border-color: #e54755;
}

.detail-wishlist-button i {
    margin-right: 4px;
}

/* =========================================================
   August 2026: checkout account/profile experience
   ========================================================= */
.checkout-profile-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: -2px 0 20px;
    padding: 14px 16px;
    color: #174b42;
    background: #effaf6;
    border: 1px solid #ccebdd;
    border-radius: 14px;
}

    .checkout-profile-note > i {
        margin-top: 2px;
        font-size: 1.15rem;
    }

    .checkout-profile-note strong,
    .checkout-profile-note small {
        display: block;
    }

    .checkout-profile-note small {
        margin-top: 2px;
        color: #53726b;
    }

.checkout-account-option {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.checkout-account-toggle {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: flex-start;
    gap: 13px;
    margin: 0;
    padding: 17px;
    cursor: pointer;
    background: #f7fbff;
    border: 1px solid #dbe8f2;
    border-radius: 16px;
}

    .checkout-account-toggle .form-check-input {
        margin-top: 14px;
    }

.checkout-account-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--orange-600);
    background: #fff0e8;
    border-radius: 13px;
    font-size: 1.15rem;
}

.checkout-account-toggle strong,
.checkout-account-toggle small {
    display: block;
}

.checkout-account-toggle small {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.45;
}

.checkout-account-fields {
    margin-top: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid #dfe8ef;
    border-radius: 16px;
}

    .checkout-account-fields[hidden] {
        display: none !important;
    }

.checkout-password-field {
    position: relative;
}

    .checkout-password-field .form-control {
        padding-right: 48px;
    }

    .checkout-password-field button {
        position: absolute;
        top: 50%;
        right: 10px;
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        padding: 0;
        color: var(--muted);
        background: transparent;
        border: 0;
        border-radius: 9px;
        transform: translateY(-50%);
    }

        .checkout-password-field button:hover {
            color: var(--navy-950);
            background: #f1f5f8;
        }

@media (max-width: 1199.98px) {
    .top-attractions-track {
        grid-auto-columns: 170px;
    }

    .attraction-scroll-prev {
        left: 4px;
    }

    .attraction-scroll-next {
        right: 4px;
    }
}

@media (max-width: 767.98px) {
    .top-attractions-track {
        grid-auto-columns: 150px;
        gap: 12px;
        padding-inline: 2px;
    }

    .top-attraction-card {
        min-height: 140px;
        padding: 19px 12px 17px;
    }

    .top-attraction-icon {
        width: 54px;
        height: 54px;
        font-size: 1.65rem;
    }

    .top-attraction-popover {
        display: none;
    }

    .attraction-scroll-button {
        width: 38px;
        height: 38px;
    }

    .detail-title-actions {
        width: 100%;
        margin-top: 12px;
    }

        .detail-title-actions .btn {
            flex: 1;
        }

    .checkout-account-toggle {
        grid-template-columns: auto 1fr;
    }

        .checkout-account-toggle .form-check-input {
            grid-row: 1 / span 2;
        }

    .checkout-account-icon {
        display: none;
    }
}

/* August 2026: slow continuous Top Attractions motion */
.top-attractions-track[data-auto-scroll-ready="true"] {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

    .top-attractions-track[data-auto-scroll-ready="true"] .top-attraction-card {
        flex: 0 0 auto;
    }

/* ===== Customer account pages: wishlist & purchases ===== */
.account-page-hero {
    padding: 64px 0 34px;
    background: linear-gradient(135deg, #f7fbff 0%, #fff7f1 100%);
    border-bottom: 1px solid #e7edf4;
}
.account-page-hero h1 { margin: 6px 0 10px; font-size: clamp(2rem, 4vw, 3.4rem); }
.account-page-hero p { max-width: 760px; margin: 0; color: #64748b; font-size: 1.05rem; }
.account-list-section { min-height: 56vh; }
.account-empty-state { max-width: 680px; margin: 30px auto; text-align: center; padding: 70px 28px; border: 1px solid #e6edf5; border-radius: 28px; background: #fff; }
.account-empty-state > span { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: #fff0e8; color: #ff5a14; font-size: 2rem; }
.account-empty-state h2 { margin-bottom: 8px; }
.account-empty-state p { color: #64748b; margin-bottom: 24px; }
.wishlist-page-grid { display: grid; gap: 20px; }
.wishlist-page-card { display: grid; grid-template-columns: 250px 1fr; min-height: 210px; overflow: hidden; border: 1px solid #dfe8f2; border-radius: 24px; background: #fff; box-shadow: 0 12px 35px rgba(15, 34, 58, .06); }
.wishlist-page-media { min-height: 210px; background: #f5f7fa; position: relative; overflow: hidden; }
.wishlist-page-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.wishlist-page-body { padding: 24px 26px; display: flex; flex-direction: column; }
.wishlist-page-meta { display: flex; flex-wrap: wrap; gap: 14px; color: #718096; font-size: .9rem; }
.wishlist-page-body h2 { margin: 10px 0 8px; font-size: 1.35rem; }
.wishlist-page-body h2 a { color: #071d35; text-decoration: none; }
.wishlist-page-body > p { color: #64748b; margin-bottom: 18px; }
.wishlist-page-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #edf1f6; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.wishlist-page-footer small { display: block; color: #8491a3; }
.wishlist-page-footer strong { font-size: 1.2rem; color: #071d35; }
.wishlist-page-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.confirmation-modal-content { border: 0; border-radius: 26px; box-shadow: 0 30px 80px rgba(7, 29, 53, .2); }
.confirmation-modal-content .modal-body { padding: 38px 30px; }
.confirmation-modal-icon { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; font-size: 1.7rem; }
.confirmation-modal-icon.danger { color: #b42318; background: #fee4e2; }
.confirmation-modal-content h2 { font-size: 1.6rem; }
.confirmation-modal-content p { color: #64748b; margin: 10px auto 24px; max-width: 390px; }
.mobile-account-links { display: grid; gap: 10px; }

.purchase-list { display: grid; gap: 16px; }
.purchase-card { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 22px; border: 1px solid #e1e9f2; border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(15, 34, 58, .05); }
.purchase-card-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: #eafaf1; color: #138a50; font-size: 1.45rem; }
.purchase-card-topline { display: flex; align-items: center; gap: 12px; color: #718096; font-size: .88rem; }
.purchase-paid-badge { padding: 4px 9px; border-radius: 999px; background: #eafaf1; color: #138a50; font-weight: 700; }
.purchase-card h2 { font-size: 1.15rem; margin: 7px 0; }
.purchase-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #64748b; font-size: .9rem; }
.purchase-card-actions { display: flex; gap: 9px; flex-wrap: wrap; justify-content: end; }

.receipt-page { background: #f5f8fc; }
.receipt-container { max-width: 1000px; }
.receipt-toolbar { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.receipt-sheet { background: #fff; border: 1px solid #e1e8f0; border-radius: 26px; padding: 38px; box-shadow: 0 20px 50px rgba(8, 28, 50, .08); }
.receipt-header { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding-bottom: 28px; border-bottom: 2px solid #eef2f6; }
.receipt-header h1 { margin: 7px 0 0; font-size: 1.9rem; }
.receipt-paid { color: #138a50; font-weight: 800; letter-spacing: .08em; font-size: .8rem; }
.receipt-reference-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0; }
.receipt-reference-grid > div { padding: 15px; border-radius: 14px; background: #f8fafc; }
.receipt-reference-grid small, .receipt-customer span { display: block; color: #718096; }
.receipt-reference-grid strong { display: block; margin-top: 4px; overflow-wrap: anywhere; }
.receipt-customer { margin-bottom: 28px; }
.receipt-customer h2 { font-size: 1rem; color: #718096; margin-bottom: 8px; }
.receipt-items { border: 1px solid #e7edf4; border-radius: 16px; overflow: hidden; }
.receipt-item { display: grid; grid-template-columns: minmax(0, 1fr) 70px 140px 110px; gap: 14px; align-items: center; padding: 15px 18px; border-top: 1px solid #edf1f5; }
.receipt-item:first-child { border-top: 0; }
.receipt-item-head { background: #f8fafc; color: #64748b; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.receipt-item small { display: block; color: #718096; margin-top: 4px; }
.receipt-total { margin-left: auto; max-width: 350px; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; font-size: 1.2rem; }
.receipt-total strong { font-size: 1.5rem; }
.receipt-footer { border-top: 1px solid #edf1f5; padding-top: 22px; color: #64748b; font-size: .9rem; }

/* ===== Checkout coupon ===== */
.checkout-coupon-card .checkout-card-heading { margin-bottom: 18px; }
.coupon-entry-row { display: flex; align-items: end; gap: 12px; }
.coupon-entry-row .btn { min-width: 120px; }
.coupon-feedback { margin-top: 14px; padding: 12px 14px; border-radius: 12px; display: flex; align-items: center; gap: 9px; background: #fef3f2; color: #b42318; font-weight: 600; }
.coupon-feedback.is-success { background: #ecfdf3; color: #067647; }
.coupon-feedback.is-danger { background: #fef3f2; color: #b42318; }
.coupon-feedback[hidden] { display: none !important; }

/* ===== Recommended load more ===== */
.recommended-load-actions { display: flex; justify-content: center; align-items: center; gap: 22px; padding-top: 28px; }
.recommended-load-actions [hidden] { display: none !important; }
.recommended-see-all { font-size: 1rem; }

@media (max-width: 767.98px) {
    .wishlist-page-card { grid-template-columns: 1fr; }
    .wishlist-page-media { min-height: 220px; }
    .wishlist-page-footer { align-items: stretch; flex-direction: column; }
    .wishlist-page-actions .btn { flex: 1 1 auto; }
    .purchase-card { grid-template-columns: 1fr; }
    .purchase-card-icon { display: none; }
    .purchase-card-actions { justify-content: stretch; }
    .purchase-card-actions .btn { flex: 1 1 auto; }
    .receipt-toolbar { flex-direction: column; }
    .receipt-toolbar > div { display: grid !important; grid-template-columns: 1fr; }
    .receipt-sheet { padding: 22px; border-radius: 18px; }
    .receipt-reference-grid { grid-template-columns: 1fr 1fr; }
    .receipt-item { grid-template-columns: minmax(0,1fr) 50px 100px; }
    .receipt-item > :last-child { grid-column: 1 / -1; }
    .receipt-item-head > :last-child { display: none; }
    .coupon-entry-row { align-items: stretch; flex-direction: column; }
}

@media print {
    .site-announcement, .site-header, .site-footer, .toast-container, .no-print, #cartOffcanvas, #mobileNavigation { display: none !important; }
    .receipt-page { padding: 0 !important; background: #fff; }
    .receipt-sheet { box-shadow: none; border: 0; padding: 0; }
    .receipt-item { grid-template-columns: minmax(0,1fr) 70px 140px; }
    .receipt-item > :last-child { display: none; }
}

/* ===== August 2026: purchase loading, account security & payment-return quote ===== */
.purchases-loading-state {
    display: grid;
    justify-items: center;
    gap: 10px;
}
.purchases-loading-state .spinner-border {
    width: 1.6rem;
    height: 1.6rem;
}
.account-security-section { min-height: 54vh; background: #f7f9fc; }
.account-security-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 32px;
    border: 1px solid #e1e9f2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(7, 29, 53, .07);
}
.account-security-card .password-field-wrap { position: relative; }
.account-security-card .password-field-wrap .form-control { padding-right: 48px; }
.payment-return-amounts {
    margin: 20px 0;
    padding: 18px 20px;
    border: 1px solid #e4eaf1;
    border-radius: 16px;
    background: #f8fafc;
}
.payment-return-amounts > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
    color: #526177;
}
.payment-return-amounts .discount-row { color: #0b7a45; }
.payment-return-amounts .total-row {
    margin-top: 7px;
    padding-top: 13px;
    border-top: 1px solid #dfe6ee;
    color: #071d35;
    font-size: 1.08rem;
}
.payment-return-amounts .total-row strong { font-size: 1.2rem; }
@media (max-width: 575.98px) {
    .account-security-card { padding: 22px 18px; border-radius: 18px; }
    .payment-return-amounts > div { align-items: flex-start; }
}

/* ===== Holidey security-code CAPTCHA ===== */
.security-code {
    margin-top: 4px;
}

.security-code-label {
    display: block;
    margin-bottom: 8px;
    color: #14833b;
    font-size: .82rem;
    font-weight: 800;
}

.security-code-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.security-code-display {
    min-width: 112px;
    padding: 12px 18px;
    border: 1.5px dashed #ff6a1a;
    border-radius: 12px;
    color: #f36a0a;
    background: #fffaf5;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: .42rem;
    text-align: center;
    user-select: none;
}

.security-code-refresh {
    min-height: 48px;
    padding-inline: 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy-900);
    font-weight: 700;
}

.security-code-input .input-group-text {
    min-width: 54px;
    justify-content: center;
    color: var(--navy-900);
    background: #fff;
    border-color: var(--line);
}

.security-code-input .form-control {
    border-color: var(--line);
}

.checkout-security-card .security-code {
    max-width: 520px;
}

#faq {
    scroll-margin-top: 110px;
}

.faq-answer {
    white-space: pre-line;
}

.faq-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px;
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
    color: var(--slate-600);
    background: var(--blue-50);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.faq-empty i {
    color: var(--orange-600);
    font-size: 1.6rem;
}

.support-nav-dropdown {
    min-width: 210px;
}

.mobile-nav-parent {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    color: inherit;
    font: inherit;
    font-weight: 700;
    text-align: left;
}

.mobile-nav-parent span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-submenu {
    padding-left: 28px;
}

.mobile-nav-submenu a {
    font-size: .94rem;
}

@media (max-width: 575.98px) {
    .security-code-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .security-code-display {
        width: 100%;
    }

    .security-code-refresh {
        width: 100%;
    }
}


/* ===== Support form processing indicator ===== */
.support-submit-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.support-submit-progress {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #52677f;
    font-size: 0.93rem;
    font-weight: 700;
}

.support-submit-progress[hidden] {
    display: none !important;
}

.support-submit-progress .spinner-border {
    width: 1.05rem;
    height: 1.05rem;
    border-width: 0.16em;
    color: #f45b16;
}

[data-support-submit][aria-busy="true"] {
    cursor: wait;
    opacity: 0.78;
}

/* ===== August 2026: authentication errors + desktop scroll fix ===== */
.form-alert[hidden],
.account-field-error[hidden] {
    display: none !important;
}

.account-input-group .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
    padding-right: 46px;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, .08);
}

.account-field-error {
    margin: 6px 2px 0;
    color: #b42333;
    font-size: .7rem;
    font-weight: 650;
    line-height: 1.45;
}

/* Keep the complete sign-in/register experience inside the viewport on
   desktop/tablet. The form side always owns a vertical scrollbar, so server
   validation messages cannot push the Create account button below the screen. */
@media (min-width: 576px) {
    .account-modal-dialog {
        height: min(820px, calc(100dvh - 32px));
        max-height: calc(100dvh - 32px);
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .account-modal-content {
        height: 100%;
        max-height: 100%;
    }

    .account-modal-shell {
        height: 100%;
        min-height: 0;
        max-height: 100%;
    }

    .account-modal-aside,
    .account-modal-main {
        min-height: 0;
    }

    .account-modal-aside {
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, .35) transparent;
    }

    .account-modal-main {
        overflow-x: hidden;
        overflow-y: scroll;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: rgba(8, 48, 82, .35) #eef3f7;
    }

    .account-modal-main::-webkit-scrollbar,
    .account-modal-aside::-webkit-scrollbar {
        width: 9px;
    }

    .account-modal-main::-webkit-scrollbar-track {
        background: #eef3f7;
        border-radius: 999px;
    }

    .account-modal-main::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #0b3155, #ff6517);
        border: 2px solid #eef3f7;
        border-radius: 999px;
    }

    .account-modal-aside::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, .06);
    }

    .account-modal-aside::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .28);
        border-radius: 999px;
    }
}
