        .csp-tour-category {
            --primary: #ff6900;
            --primary-dark: #ff6900;
            --navy: #111111;
            --ink: #243044;
            --muted: #687184;
            --line: #d8d0c9;
            --line-dark: #bfb5ad;
            --soft: #fff8f2;
            --green: #206b5f;
            --white: #fff;
            --shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
            --radius: 8px;
            --container: 1320px;
        }

        .csp-tour-category * {
            box-sizing: border-box;
        }

        .csp-tour-category {
            scroll-behavior: smooth;
        }

        .csp-tour-category {
            margin: 0;
            color: var(--ink);
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.55;
            background: #fff;
        }

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

        .csp-tour-category a {
            color: inherit;
            text-decoration: none;
        }

        .csp-tour-category button,
        .csp-tour-category input,
        .csp-tour-category label {
            font: inherit;
        }

        .csp-tour-category .container {
            width: min(100% - 32px, var(--container));
            margin-inline: auto;
        }

        .csp-tour-category .section {
            padding: 76px 0;
        }

        .csp-tour-category.reveal-ready > section {
            opacity: 0;
            filter: blur(14px);
            transform: translate3d(0, 46px, 0);
            transition: opacity 0.75s ease, filter 0.85s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, filter, transform;
        }

        .csp-tour-category.reveal-ready > section.section-visible {
            opacity: 1;
            filter: blur(0);
            transform: translate3d(0, 0, 0);
        }

        .csp-tour-category .section-tight {
            padding: 48px 0;
        }

        .csp-tour-category .section-soft {
            background: #fffaf5;
        }

        .csp-tour-category .section-contrast {
            border-block: 1px solid var(--line);
            background: #f3f7f3;
        }

        .csp-tour-category .section-navy {
            color: var(--white);
            background: var(--navy);
        }

        .csp-tour-category .title-group {
            display: grid;
            gap: 8px;
            margin-bottom: 28px;
        }

        .csp-tour-category .eyebrow {
            margin: 0;
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .csp-tour-category .section-title,
        .section-title {
            max-width: 760px;
            margin: 0;
            color: var(--navy);
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.15;
        }

        .csp-tour-category .section-navy .section-title {
            color: var(--white);
        }

        .csp-tour-category h3 {
            font-size: 1.2rem !important;
        }

        .csp-tour-category .section-copy {
            max-width: 780px;
            margin: 0;
        }

        .csp-tour-category .section-navy .section-copy {
            color: rgba(255, 255, 255, 0.72);
        }

        .csp-tour-category .btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .csp-tour-category .btn {
            display: inline-flex;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            padding: 0 24px;
            border: 1px solid var(--primary);
            border-radius: var(--radius);
            font-size: 0.88rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .csp-tour-category .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .csp-tour-category .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        .csp-tour-category .btn-outline {
            color: var(--primary);
            background: transparent;
        }

        .csp-tour-category .btn-outline:hover {
            color: var(--white);
            background: var(--primary);
        }

        .csp-tour-category .btn-navy {
            color: var(--white);
            background: var(--navy);
            border-color: var(--navy);
        }

        .csp-tour-category .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
        }

        .csp-tour-category .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .csp-tour-category .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .csp-tour-category .card {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
        }

        .csp-tour-category .card-pad {
            padding: 22px;
        }

        .csp-tour-category .image {
            position: relative;
            overflow: hidden;
            background: #eee;
        }

        .csp-tour-category .ratio-4x3 {
            aspect-ratio: 4 / 3;
        }

        .csp-tour-category .ratio-wide {
            aspect-ratio: 16 / 9;
        }

        .csp-tour-category .pill {
            display: inline-flex;
            min-height: 28px;
            align-items: center;
            padding: 0 10px;
            border-radius: 999px;
            background: #fff0e8;
            color: var(--primary-dark);
            font-size: 0.72rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .csp-tour-category .hero {
            position: relative;
            min-height: 100vh;
            display: grid;
            align-items: center;
            overflow: hidden;
            padding: 0;
            color: var(--white);
            isolation: isolate;
            background: url("imagen.jpg") center / cover no-repeat;
        }

        .csp-tour-category .hero::before {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 30%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.04) 100%);
            content: "";
            pointer-events: none;
        }

        .csp-tour-category .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 26px;
            align-content: center;
        }

.csp-tour-category .hero h1 {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
}


p.herotour-desc {
    font-size: 1rem;
}
        .csp-tour-category .hero-accent {
            display: block;
            width: 88px;
            height: 6px;
            background-color: var(--primary);
        }

        .csp-tour-category .hero-copy {
            max-width: 680px;
            margin: 0;
            color: rgba(255, 255, 255, 0.84);
            font-size: clamp(1.25rem, 2vw, 1.6rem);
            line-height: 1.55;
        }

        .csp-tour-category .metric span,
        .csp-tour-category .tour-meta span {
            display: block;
        }

        .csp-tour-category .metric i,
        .csp-tour-category .trust-items i,
        .csp-tour-category .finder-option h3 i,
        .csp-tour-category .value-card h3 i,
        .csp-tour-category .story-card h3 i,
        .csp-tour-category .btn i {
            color: var(--primary);
            line-height: 1;
        }

        .csp-tour-category .metric i {
            grid-row: 1 / span 2;
            align-self: center;
            justify-self: center;
            font-size: 1.15rem;
        }

        .csp-tour-category .trust-items i,
        .csp-tour-category .finder-option h3 i,
        .csp-tour-category .value-card h3 i,
        .csp-tour-category .story-card h3 i,
        .csp-tour-category .btn i {
            margin-right: 8px;
        }

        .csp-tour-category .hero .btn-primary {
            width: fit-content;
            max-width: 100%;
            min-height: 54px;
            padding: 0 1.45rem;
            border-radius: 0;
            font-size: 0.88rem;
            gap: 0.65rem;
        }

        .csp-tour-category .hero .btn-primary i {
            margin-right: 0;
            color: #ffffff;
            font-size: 1rem;
        }

        .csp-tour-category .trust-bar {
            position: relative;
            z-index: 2;
            padding: 1.75rem 0;
            border-bottom: 1px solid #eee8e3;
            background: #fbf8f6;
        }

        .csp-tour-category .trust-items {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            color: #111111;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .csp-tour-category .trust-item {
            display: grid;
            grid-template-columns: 76px minmax(0, 1fr);
            min-height: 96px;
            align-items: center;
            gap: 1rem;
            padding: 0 1rem;
            border-right: 1px solid #e5ded8;
            letter-spacing: 0;
            line-height: 1.25;
        }

        .csp-tour-category .trust-item:nth-child(4n) {
            border-right: 0;
        }

        .csp-tour-category .trust-item strong,
        .csp-tour-category .trust-item small {
            display: block;
        }

        .csp-tour-category .trust-item small {
            margin-top: 0.25rem;
            color: #5f6674;
            font-size: 0.86rem;
            font-weight: 500;
            letter-spacing: 0;
            line-height: 1.3;
            text-transform: none;
        }

        .csp-tour-category .trust-items i {
            display: inline-flex;
            width: 72px;
            height: 72px;
            aspect-ratio: 1 / 1;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            margin-right: 0;
            border: 0;
            border-radius: 50% !important;
            background: #fff0e8;
            color: var(--primary);
            font-size: 2rem;
        }

        .csp-tour-category .intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
            gap: 42px;
            align-items: start;
        }

        .csp-tour-category .intro-side {
            display: grid;
            gap: 18px;
        }

        .csp-tour-category .intro-image {
            min-height: 320px;
            border: 1px solid var(--line-dark);
        }

        .csp-tour-category .intro-copy {
            display: grid;
            gap: 18px;
        }

        .csp-tour-category .intro-copy p {
            margin: 0;
        }

        .csp-tour-category .ta-review-container {
            width: min(100% - 32px, var(--container));
        }

        .csp-tour-category .ta-review-carousel {
            position: relative;
            overflow: visible;
            margin-top: 64px;
            padding-bottom: 42px;
            background: #ffffff;
        }

        .csp-tour-category .ta-review-head {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
            gap: clamp(2rem, 7vw, 8rem);
            align-items: start;
            margin-bottom: 42px;
        }

        .csp-tour-category .ta-review-kicker {
            display: inline-flex;
            gap: 1rem;
            align-items: center;
            margin: 0 0 1.5rem;
            color: var(--primary);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }
        
        

        .csp-tour-category .ta-review-kicker::after {
            display: none;
            content: "";
        }

        .csp-tour-category .ta-review-heading {
            max-width: 780px;
            margin: 0 0 1.2rem;
            color: #050816;
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 0;
            line-height: 1.05;
        }

        .csp-tour-category .ta-review-copy {
            max-width: 780px;
            margin: 0;
            color: #4b5563;
            line-height: 1.75;
        }

        .csp-tour-category .ta-review-summary {
            display: grid;
            gap: 1.8rem;
            justify-items: stretch;
        }

        .csp-tour-category .ta-review-summary-main {
            display: grid;
            grid-template-columns: 70px minmax(0, 1fr);
            gap: 1.25rem;
            align-items: center;
        }

        .csp-tour-category .ta-review-icon {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

        .csp-tour-category .ta-review-summary-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1rem;
            align-items: center;
        }

        .csp-tour-category .ta-review-label {
            color: #00aa6c;
            font-size: 1.3rem;
            font-weight: 500;
        }

        .csp-tour-category .ta-review-score-value {
            color: #050816;
            font-size: 1.35rem;
            font-weight: 500;
        }

        .csp-tour-category .ta-review-stars {
            display: inline-flex;
            gap: 0.34rem;
            color: var(--primary);
            font-size: 1.1rem;
            line-height: 1;
        }

        .csp-tour-category .ta-review-count {
            display: block;
            margin-top: 0.7rem;
            color: #5f6674;
            font-size: 1rem;
            font-weight: 500;
        }

        .csp-tour-category .ta-review-link {
            display: inline-flex;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 0 1.1rem;
            border: 1px solid rgba(255, 105, 0, 0.45);
            background: #ffffff;
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 500;
            text-transform: uppercase;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .csp-tour-category .ta-review-link:hover {
            border-color: var(--primary);
            background: var(--primary);
            color: #ffffff;
        }

        .csp-tour-category .ta-review-link i {
            margin-right: 0;
            color: currentColor;
            font-size: 0.95rem;
        }

        /* Swiper wrapper & slides */
        .csp-tour-category .ta-review-swiper {
            width: 100%;
            overflow: hidden;
            padding: 10px 4px 14px;
        }

        .csp-tour-category .ta-review-swiper .swiper-wrapper {
            align-items: stretch;
        }

        .csp-tour-category .ta-review-slide {
            height: auto;
            display: flex;
        }

        /* Card Design */
        .csp-tour-category .ta-review-card {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            min-height: 290px;
            padding: 1.5rem 1.4rem 1.3rem;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: var(--radius);
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.045);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            overflow: hidden;
            box-sizing: border-box;
        }

        .csp-tour-category .ta-review-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 105, 0, 0.35);
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
        }

        /* Decorative Quote */
        .csp-tour-category .ta-review-quote-icon {
            position: absolute;
            top: 1.1rem;
            right: 1.25rem;
            font-size: 1.5rem;
            color: rgba(255, 105, 0, 0.12);
            pointer-events: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .csp-tour-category .ta-review-card:hover .ta-review-quote-icon {
            color: rgba(255, 105, 0, 0.28);
            transform: scale(1.08) rotate(-4deg);
        }

        /* Card Top: Stars & Pill */
        .csp-tour-category .ta-review-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            margin-bottom: 0.65rem;
            flex-shrink: 0;
        }

        .csp-tour-category .ta-review-stars {
            display: flex;
            gap: 0.18rem;
            color: #ff6900;
            font-size: 0.88rem;
        }

        .csp-tour-category .ta-review-score-pill {
            display: inline-flex;
            align-items: center;
            padding: 0.18rem 0.55rem;
            background: #fff7ed;
            color: #c2410c;
            border: 1px solid rgba(255, 105, 0, 0.2);
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        /* Title */
        .csp-tour-category .ta-review-card-title {
            margin: 0 0 0.5rem;
            color: #111827;
            font-size: 0.98rem;
            font-weight: 600;
            line-height: 1.35;
            flex-shrink: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Text */
        .csp-tour-category .ta-review-card-text {
            flex: 1 1 auto;
            margin-bottom: 1rem;
        }

        .csp-tour-category .ta-review-card-text p {
            margin: 0;
            color: #4b5563;
            font-size: 0.88rem;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Footer: Author & Badge */
        .csp-tour-category .ta-review-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding-top: 0.85rem;
            border-top: 1px solid #f3f4f6;
            margin-top: auto;
            flex-shrink: 0;
        }

        .csp-tour-category .ta-review-author-info {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            min-width: 0;
        }

        .csp-tour-category .ta-review-avatar {
            display: inline-flex;
            width: 2.35rem;
            height: 2.35rem;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 105, 0, 0.1);
            color: #ff6900;
            font-size: 0.82rem;
            font-weight: 700;
            flex-shrink: 0;
            line-height: 1;
        }

        .csp-tour-category .ta-review-author-details {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .csp-tour-category .ta-review-author-name {
            color: #111827;
            font-size: 0.88rem;
            font-weight: 600;
            line-height: 1.25;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .csp-tour-category .ta-review-date {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            color: #6b7280;
            font-size: 0.75rem;
            line-height: 1.3;
            margin-top: 0.15rem;
            white-space: nowrap;
        }

        .csp-tour-category .ta-review-date i {
            color: #059669;
            font-size: 0.7rem;
        }

        /* Platform Badge */
        .csp-tour-category .ta-review-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            text-decoration: none !important;
            white-space: nowrap;
            flex-shrink: 0;
            transition: all 0.2s ease;
            background-color: #ecfdf5;
            color: #059669;
            border: 1px solid rgba(16, 185, 129, 0.25);
        }

        .csp-tour-category a.ta-review-badge:hover {
            background-color: #d1fae5;
            color: #047857;
        }

        .csp-tour-category .ta-review-badge.ta-badge-google {
            background-color: #eff6ff;
            color: #2563eb;
            border-color: rgba(37, 99, 235, 0.22);
        }
        .csp-tour-category a.ta-review-badge.ta-badge-google:hover {
            background-color: #dbeafe;
            color: #1d4ed8;
        }

        .csp-tour-category .ta-review-badge.ta-badge-facebook {
            background-color: #f0f9ff;
            color: #0284c7;
            border-color: rgba(2, 132, 199, 0.22);
        }

        .csp-tour-category .ta-review-badge.ta-badge-trustpilot {
            background-color: #f0fdf4;
            color: #16a34a;
            border-color: rgba(22, 163, 74, 0.22);
        }

        /* Unified Controls Bar */
        .csp-tour-category .ta-review-controls-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .csp-tour-category .ta-review-button {
            width: 2.85rem;
            height: 2.85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e5e7eb;
            background: #ffffff;
            color: #111827;
            border-radius: 50% !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.25s ease;
            cursor: pointer;
            flex-shrink: 0;
        }

        .csp-tour-category .ta-review-button:hover {
            border-color: var(--primary);
            background-color: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255, 105, 0, 0.25);
        }

        .csp-tour-category .ta-review-button:active {
            transform: translateY(0) scale(0.95);
        }

        .csp-tour-category .ta-review-button i {
            margin-right: 0;
            color: currentColor;
            font-size: 1rem;
        }

        .csp-tour-category .ta-review-pagination {
            position: static;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            width: auto;
        }

        .csp-tour-category .ta-review-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            margin: 0 !important;
            border-radius: 4px;
            background-color: #d1d5db;
            border: none;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .csp-tour-category .ta-review-pagination .swiper-pagination-bullet-active {
            width: 24px;
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .csp-tour-category .metric-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            border: 1px solid var(--line-dark);
        }

        .csp-tour-category .metric {
            display: grid;
            grid-template-columns: 26px minmax(0, 1fr);
            gap: 8px 10px;
            align-content: start;
            min-height: 112px;
            padding: 18px;
            border-right: 1px solid var(--line-dark);
            border-bottom: 1px solid var(--line-dark);
            text-align: justify;
        }

        .csp-tour-category .metric:nth-child(2n) {
            border-right: 0;
        }

        .csp-tour-category .metric:nth-last-child(-n + 2) {
            border-bottom: 0;
        }

        .csp-tour-category .metric span:first-of-type {
            align-self: center;
            color: #111111;
            font-size: 0.68rem;
            font-weight: 400;
            text-transform: uppercase;
        }

        .csp-tour-category .metric span:last-of-type {
            grid-column: 2;
            color: #111111;
            font-size: 0.9rem;
            font-weight: 400;
            line-height: 1.32;
            text-align: justify;
        }

        .csp-tour-category .finder {
            align-items: stretch;
        }

        .csp-tour-category .finder-guide,
        .csp-tour-category .finder-option {
            border: 1px solid var(--line);
            background: transparent;
        }

        .csp-tour-category .finder-guide {
            display: grid;
            gap: 18px;
            height: 100%;
            padding: 20px;
            align-content: start;
        }

        .csp-tour-category .finder-guide h3 {
            max-width: 360px;
            margin: 0;
            font-weight: 500;
            line-height: 1.12;
        }

        .csp-tour-category .finder-guide p {
            margin: 0;
        }

        .csp-tour-category .finder-guide-list {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .csp-tour-category .finder-guide-list li {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            color: var(--navy);
            font-weight: 500;
            line-height: 1.25;
        }

        .csp-tour-category .finder-guide-list i {
            color: var(--primary);
        }

        .csp-tour-category .finder-options {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            height: 100%;
        }

        .csp-tour-category .finder-option {
            display: grid;
            gap: 12px;
            align-content: start;
            padding: 18px;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .csp-tour-category .finder-option:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .csp-tour-category .finder-option h3 {
            margin: 0;
            color: var(--navy);
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.2;
        }

        .csp-tour-category .finder-option p {
            margin: 0;
        }

        .csp-tour-category .finder-recommendation {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: 0.45rem;
            margin-top: 2px;
            color: var(--primary);
            font-weight: 500;
            line-height: 1.25;
        }

        .csp-tour-category .finder-note {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            margin-top: 16px;
            padding: 13px 0 0;
            border-top: 1px solid var(--line-dark);
            background: transparent;
            color: var(--muted);
            font-size: 0.84rem;
            font-weight: 500;
        }

        .csp-tour-category .finder-note i {
            margin-top: 0.2rem;
            color: var(--primary);
        }

        .csp-tour-category .clean-list {
            display: grid;
            gap: 8px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .csp-tour-category .clean-list li {
            position: relative;
            padding-left: 18px;
            color: #465164;
            font-size: 0.92rem;
            font-weight: 500;
        }

        .csp-tour-category .clean-list li::before {
            position: absolute;
            top: 0.65em;
            left: 0;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            content: "";
        }

        .csp-tour-category .tour-card {
            display: grid;
            grid-template-rows: auto 1fr;
            box-shadow: var(--shadow);
        }

        .csp-tour-category .tour-card-body {
            display: grid;
            gap: 14px;
            padding: 18px;
        }

        .csp-tour-category .tour-card h3,
        .csp-tour-category .compact-card h3,
        .csp-tour-category .value-card h3,
        .csp-tour-category .story-card h3,
        .csp-tour-category .faq-card h3 {
            margin: 0;
        }

        .csp-tour-category .tour-meta {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
        }

        .csp-tour-category .tour-meta span {
            padding: 8px 10px;
            background: #fff;
            color: #536072;
            font-size: 0.78rem;
            font-weight: 500;
        }

        .csp-tour-category .price-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: end;
            border-top: 1px solid var(--line);
            padding-top: 12px;
        }

        .csp-tour-category .price-row small {
            display: block;
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .csp-tour-category .price-row strong {
            color: var(--primary);
            font-size: 1.35rem;
            font-weight: 500;
        }

        .csp-tour-category .sig-tour-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .csp-tour-category .sig-tour-card {
            position: relative;
            display: grid;
            min-height: 430px;
            overflow: hidden;
            border: 1px solid rgba(17, 17, 17, 0.16);
            border-radius: 0;
            background: #111;
            color: var(--white);
            isolation: isolate;
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
            transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
        }

        .csp-tour-category .sig-tour-card::before,
        .csp-tour-category .sig-tour-card::after {
            position: absolute;
            inset: 0;
            z-index: 1;
            content: "";
            pointer-events: none;
        }

        .csp-tour-category .sig-tour-card::before {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.54) 45%, rgba(0, 0, 0, 0.88));
        }

        .csp-tour-category .sig-tour-card::after {
            border: 1px solid rgba(255, 255, 255, 0.18);
            opacity: 0;
            transition: opacity 0.24s ease;
        }

        .csp-tour-category .sig-tour-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 105, 0, 0.5);
            box-shadow: 0 26px 50px rgba(0, 0, 0, 0.18);
        }

        .csp-tour-category .sig-tour-card:hover::after {
            opacity: 1;
        }

        .csp-tour-category .sig-tour-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .csp-tour-category .sig-tour-media img {
            transition: transform 0.45s ease, filter 0.45s ease;
        }

        .csp-tour-category .sig-tour-card:hover .sig-tour-media img {
            filter: saturate(1.08) contrast(1.04);
            transform: scale(1.055);
        }

        .csp-tour-category .sig-tour-content {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 14px;
            min-height: 100%;
            align-content: end;
            padding: 30px;
        }

        .csp-tour-category .sig-tour-label {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            min-height: 16px;
            padding: 0;
            border-radius: 0;
            background: transparent;
            color: var(--primary);
            font-size: 0.54rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .csp-tour-category .sig-tour-card h3 {
            max-width: 520px;
            margin: 0;
            color: var(--white);
            font-size: clamp(1.22rem, 2.45vw, 1.76rem);
            font-weight: 500;
            line-height: 1.05;
        }

        .csp-tour-category .sig-tour-reveal {
            display: grid;
            grid-template-rows: 0fr;
            overflow: hidden;
            transition: grid-template-rows 0.58s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .csp-tour-category .sig-tour-reveal-inner {
            display: grid;
            gap: 10px;
            min-height: 0;
            overflow: hidden;
            opacity: 0;
            filter: blur(3px);
            transform: translateY(10px);
            transition: opacity 0.42s ease, filter 0.5s ease, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .csp-tour-category .sig-tour-card:hover .sig-tour-reveal,
        .csp-tour-category .sig-tour-card:focus-within .sig-tour-reveal {
            grid-template-rows: 1fr;
        }

        .csp-tour-category .sig-tour-card:hover .sig-tour-reveal-inner,
        .csp-tour-category .sig-tour-card:focus-within .sig-tour-reveal-inner {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        .csp-tour-category .sig-tour-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .csp-tour-category .sig-tour-meta li {
            display: inline-flex;
            gap: 0.34rem;
            align-items: center;
            min-height: 23px;
            padding: 0 7px;
            border: 0;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.14);
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.6rem;
            font-weight: 500;
            backdrop-filter: blur(14px);
        }

        .csp-tour-category .sig-tour-meta i {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.62rem;
            line-height: 1;
        }

        .csp-tour-category .sig-tour-meta .sig-tour-effort {
            gap: 0.62rem;
            padding-right: 9px;
            background: rgba(28, 30, 30, 0.64);
            color: rgba(255, 255, 255, 0.94);
            font-size: 0.72rem;
            font-weight: 500;
        }

        .csp-tour-category .sig-tour-effort-track {
            position: relative;
            display: inline-flex;
            width: 58px;
            height: 7px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.32);
        }

        .csp-tour-category .sig-tour-effort-track span {
            width: var(--effort-level);
            background: #74ed54;
        }

        .csp-tour-category .sig-tour-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            padding: 0;
            margin: 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.68rem;
            font-weight: 500;
            list-style: none;
        }

        .csp-tour-category .sig-tour-highlights li {
            display: inline-flex;
            align-items: center;
            gap: 0.34rem;
        }

        .csp-tour-category .sig-tour-highlights i {
            color: var(--primary);
            font-size: 0.66rem;
            line-height: 1;
        }

        .csp-tour-category .sig-tour-footer {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: flex-end;
            justify-content: space-between;
            padding-top: 4px;
        }

        .csp-tour-category .sig-tour-stat {
            display: grid;
            gap: 2px;
        }

        .csp-tour-category .sig-tour-stat small,
        .csp-tour-category .sig-tour-rating small {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.66rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .csp-tour-category .sig-tour-stat strong {
            color: var(--white);
            font-size: 1.28rem;
            font-weight: 500;
            line-height: 1;
        }

        .csp-tour-category .sig-tour-stat span {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.68rem;
            font-weight: 500;
            line-height: 1.1;
        }

        .csp-tour-category .sig-tour-rating {
            display: grid;
            gap: 4px;
        }

        .csp-tour-category .sig-tour-score {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            align-items: center;
        }

        .csp-tour-category .sig-tour-score strong {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1;
        }

        .csp-tour-category .sig-tour-bubbles {
            display: inline-flex;
            gap: 2px;
            color: #00aa6c;
        }

        .csp-tour-category .sig-tour-bubbles span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }

        .csp-tour-category .sig-tour-reviews {
            color: rgba(255, 255, 255, 0.66);
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.15;
        }

        .csp-tour-category #recommended {
            background: #f4f7f2;
        }

        .csp-tour-category table {
            width: 100%;
            min-width: 720px;
            border-collapse: collapse;
            background: var(--white);
        }

        .csp-tour-category thead {
            background: #f7f7f7;
        }

        .csp-tour-category th,
        .csp-tour-category td {
            padding: 16px 18px;
            border-bottom: 1px solid #ece8e3;
            text-align: left;
            vertical-align: middle;
        }

        .csp-tour-category th {
            color: var(--navy);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .csp-tour-category td {
            color: #4b5565;
            font-size: 0.92rem;
            font-weight: 650;
            transition: color 0.22s ease, background 0.22s ease;
        }

        .csp-tour-category tbody tr {
            transition: background 0.22s ease, box-shadow 0.22s ease;
        }

        .csp-tour-category tbody tr:hover {
            background: #fff8f3;
            box-shadow: inset 3px 0 0 var(--primary);
        }

        .csp-tour-category tbody tr:hover td {
            color: var(--navy);
        }

        .csp-tour-category tr:last-child td {
            border-bottom: 0;
        }

        .csp-tour-category .compact-card {
            display: grid;
            grid-template-columns: 118px minmax(0, 1fr);
            min-height: 128px;
        }

        .csp-tour-category .compact-card .content {
            display: grid;
            gap: 6px;
            padding: 14px;
        }

        .csp-tour-category .compact-card p,
        .csp-tour-category .story-card p,
        .csp-tour-category .value-card p,
        .csp-tour-category .faq-card p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .csp-tour-category #more-tours .more-tours-explainer {
            margin-top: 28px;
        }

        .csp-tour-category #more-tours .more-tours-note {
            height: 100%;
            padding: 20px 0;
            border-top: 1px solid var(--line-dark);
            border-bottom: 1px solid var(--line-dark);
        }

        .csp-tour-category #more-tours .more-tours-note i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            margin-bottom: 12px;
            background: var(--primary);
            color: var(--white);
            font-size: 0.92rem;
        }

        .csp-tour-category #more-tours .more-tours-note h3 {
            margin: 0 0 8px;
            color: var(--navy);
            font-size: 1.05rem;
            font-weight: 500;
            line-height: 1.15;
        }

        .csp-tour-category #more-tours .more-tours-note p {
            margin: 0;
        }

        .csp-tour-category #travel-stories .story-card,
        .csp-tour-category #route-preview .place-card {
            overflow: hidden;
            border: 0;
            border-radius: 22px;
            background: var(--white);
            box-shadow: 0 24px 42px rgba(17, 17, 17, 0.12);
            transition: box-shadow 0.28s ease, transform 0.28s ease;
        }

        .csp-tour-category #travel-stories .story-card:hover,
        .csp-tour-category #route-preview .place-card:hover {
            box-shadow: 0 30px 52px rgba(17, 17, 17, 0.16);
            transform: translateY(-4px);
        }

        .csp-tour-category #travel-stories .story-card img,
        .csp-tour-category #route-preview .place-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .csp-tour-category #route-preview .place-card .image {
            overflow: hidden;
            aspect-ratio: 16 / 9;
        }

        .csp-tour-category #travel-stories .story-card .card-body,
        .csp-tour-category #route-preview .place-card .content {
            display: grid;
            gap: 16px;
            padding: 24px;
        }

        .csp-tour-category #travel-stories .story-card time {
            color: #aeb2bd;
            font-size: 1rem;
            font-weight: 500;
        }

        .csp-tour-category #travel-stories .story-card h3,
        .csp-tour-category #route-preview .place-card h3 {
            margin: 0;
            color: #050505; 
            line-height: 1.1;
        }

        .csp-tour-category #travel-stories .story-card p,
        .csp-tour-category #route-preview .place-card p {
            display: -webkit-box;
            overflow: hidden;
            margin: 0;
            color: #a5a9b5;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.4;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .csp-tour-category .route-sequence {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .csp-tour-category #route-preview .place-card {
            position: relative;
            border: 1px solid rgba(36, 48, 68, 0.1);
            border-radius: 8px;
            box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
        }

        .csp-tour-category #route-preview .place-card::after {
            position: absolute;
            right: 14px;
            bottom: 14px;
            width: 34px;
            height: 4px;
            background: var(--primary);
            content: "";
            transform: scaleX(0.42);
            transform-origin: right;
            transition: transform 0.28s ease;
        }

        .csp-tour-category #route-preview .place-card:hover {
            border-color: rgba(255, 105, 0, 0.34);
            box-shadow: 0 20px 34px rgba(17, 17, 17, 0.14);
            transform: translateY(-5px);
        }

        .csp-tour-category #route-preview .place-card:hover::after {
            transform: scaleX(1);
        }

        .csp-tour-category #route-preview .place-card .image {
            position: relative;
        }

        .csp-tour-category #route-preview .place-card .image::after {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-flex;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.62);
            background: rgba(255, 105, 0, 0.94);
            color: var(--white);
            font-family: "Font Awesome 7 Free";
            font-size: 0.95rem;
            font-weight: 900;
            line-height: 1;
            content: "\f3c5";
            box-shadow: 0 12px 24px rgba(17, 17, 17, 0.24);
            transition: background-color 0.28s ease, transform 0.28s ease;
        }

        .csp-tour-category #route-preview .place-card:hover .image::after {
            background: var(--navy);
            transform: translateY(-2px);
        }

        .csp-tour-category #route-preview .place-card img {
            transition: filter 0.32s ease, transform 0.32s ease;
        }

        .csp-tour-category #route-preview .place-card:hover img {
            filter: saturate(1.08) contrast(1.04);
            transform: scale(1.035);
        }

        .csp-tour-category #route-preview .place-card .content {
            gap: 8px;
            padding: 15px 16px 18px;
        }

        .csp-tour-category #route-preview .place-card h3 {
            margin: 0;
            color: var(--navy);
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.14;
        }

        .csp-tour-category #route-preview .place-card p {
            margin: 0;
            color: var(--muted);
            font-size: 0.84rem;
            font-weight: 500;
            line-height: 1.38;
        }

        .csp-tour-category .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-areas:
                "a a a a b b b b c c c c"
                "a a a a b b b b c c c c"
                "a a a a d d e e c c c c"
                "a a a a d d e e c c c c"
                "f f f g g g g g h h h h"
                "f f f g g g g g h h h h";
            grid-auto-rows: 76px;
            gap: 14px;
        }

        .csp-tour-category .gallery-grid a {
            position: relative;
            display: block;
            overflow: hidden;
            background: #111;
        }

        .csp-tour-category .gallery-grid a::before,
        .csp-tour-category .gallery-grid a::after {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.28s ease, transform 0.28s ease;
        }

        .csp-tour-category .gallery-grid a::before {
            inset: 0;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.42)),
                rgba(17, 17, 17, 0.18);
            content: "";
        }

        .csp-tour-category .gallery-grid a::after {
            top: 50%;
            left: 50%;
            display: inline-flex;
            width: 54px;
            height: 54px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            color: var(--primary);
            content: "\f00e";
            font-family: "Font Awesome 7 Free";
            font-size: 1.25rem;
            font-weight: 900;
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
            transform: translate(-50%, -50%) scale(0.84);
        }

        .csp-tour-category .gallery-grid img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease, filter 0.45s ease;
        }

        .csp-tour-category .gallery-grid a:nth-child(1) {
            grid-area: a;
        }

        .csp-tour-category .gallery-grid a:nth-child(2) {
            grid-area: b;
        }

        .csp-tour-category .gallery-grid a:nth-child(3) {
            grid-area: c;
        }

        .csp-tour-category .gallery-grid a:nth-child(4) {
            grid-area: d;
        }

        .csp-tour-category .gallery-grid a:nth-child(5) {
            grid-area: e;
        }

        .csp-tour-category .gallery-grid a:nth-child(6) {
            grid-area: f;
        }

        .csp-tour-category .gallery-grid a:nth-child(7) {
            grid-area: g;
        }

        .csp-tour-category .gallery-grid a:nth-child(8) {
            grid-area: h;
        }

        .csp-tour-category .gallery-grid a:hover::before,
        .csp-tour-category .gallery-grid a:focus-visible::before,
        .csp-tour-category .gallery-grid a:hover::after,
        .csp-tour-category .gallery-grid a:focus-visible::after {
            opacity: 1;
        }

        .csp-tour-category .gallery-grid a:hover::after,
        .csp-tour-category .gallery-grid a:focus-visible::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .csp-tour-category .gallery-grid a:hover img,
        .csp-tour-category .gallery-grid a:focus-visible img {
            filter: brightness(0.9) saturate(1.05);
            transform: scale(1.02);
        }

        .csp-tour-category .review-summary {
            display: grid;
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 28px;
            align-items: start;
        }

        .csp-tour-category .rating-box {
            border: 1px solid var(--line-dark);
            padding: 24px;
            background: #fff;
        }

        .csp-tour-category .rating-box strong {
            display: block;
            color: var(--navy);
            font-size: 3rem;
            font-weight: 500;
            line-height: 1;
        }

        .csp-tour-category .review-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .csp-tour-category .quote {
            display: grid;
            gap: 12px;
            padding: 20px;
            border: 1px solid var(--line);
            background: #fff;
        }

        .csp-tour-category .quote p {
            display: -webkit-box;
            overflow: hidden;
            margin: 0;
            color: #465164;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
        }

        .csp-tour-category .quote footer {
            color: var(--navy);
            font-size: 0.88rem;
            font-weight: 500;
        }

        .csp-tour-category .value-card {
            display: grid;
            gap: 12px;
            border-top: 3px solid var(--primary);
            padding: 20px;
            background: #fff;
        }

        .csp-tour-category #values .value-card {
            border: 1px solid rgba(36, 48, 68, 0.12);
        }

        .csp-tour-category #values {
            background: #f6f7f8;
        }

        .csp-tour-category .section-why-choose-us {
            background: #f6f7f8;
        }

        .csp-tour-category .why-choice-column {
            display: grid;
            gap: 16px;
            grid-template-rows: repeat(3, 1fr);
            height: 100%;
        }

        .csp-tour-category .why-choice-item {
            display: flex;
            gap: 16px;
            height: 100%;
            min-height: 150px;
            padding: 22px;
            border: 1px solid rgba(36, 48, 68, 0.1);
            background: var(--white);
            box-shadow: 0 18px 38px rgba(36, 48, 68, 0.06);
            transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
        }

        .csp-tour-category .why-choice-item:hover {
            border-color: rgba(255, 105, 0, 0.34);
            box-shadow: 0 24px 52px rgba(36, 48, 68, 0.1);
            transform: translateY(-2px);
        }

        .csp-tour-category .why-choice-icon {
            display: inline-flex;
            width: 46px;
            min-width: 46px;
            height: 46px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 105, 0, 0.18);
            background: #fff3eb;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .csp-tour-category .why-choice-item h3 {
            margin: 0 0 8px;
            color: var(--navy);
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.18;
        }

        .csp-tour-category .why-choice-item p {
            margin: 0;
        }

        .csp-tour-category .why-choice-feature {
            position: relative;
            min-height: 520px;
            overflow: hidden;
            background: #101820;
            color: var(--white);
            isolation: isolate;
        }

        .csp-tour-category .why-choice-feature img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            object-fit: cover;
            opacity: 0.78;
        }

        .csp-tour-category .why-choice-feature::after {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(16, 24, 32, 0.06), rgba(16, 24, 32, 0.86));
            content: "";
        }

        .csp-tour-category .why-choice-feature-content {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 2;
            display: grid;
            gap: 12px;
            padding: 28px;
        }

        .csp-tour-category .why-choice-kicker {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: 8px;
            padding: 8px 11px;
            background: var(--primary);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1;
            text-transform: uppercase;
        }

        .csp-tour-category .why-choice-feature h3 {
            margin: 0;
            color: var(--white);
            font-size: clamp(1.7rem, 3vw, 2.55rem);
            font-weight: 500;
            line-height: 1;
        }

        .csp-tour-category .why-choice-feature p {
            margin: 0;
        }

        .csp-tour-category #route-preview {
            background: #f6f7f8;
        }

        .csp-tour-category #reviews {
            background: var(--white);
        }

        .csp-tour-category #booking-confidence {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: var(--white);
        }

        .csp-tour-category #booking-confidence ul {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 42px;
            max-width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .csp-tour-category #booking-confidence li {
            display: grid;
            grid-template-columns: 22px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
            padding: 17px 0;
            border-bottom: 1px solid var(--line);
        }

        .csp-tour-category #booking-confidence li:last-child {
            border-bottom: 0;
        }

        .csp-tour-category #booking-confidence li i {
            margin-top: 3px;
            color: var(--primary);
            line-height: 1;
        }

        .csp-tour-category #booking-confidence li p {
            margin: 0;
        }

        .csp-tour-category #booking-confidence li strong {
            display: block;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .csp-tour-category #booking-confidence li span {
            display: block;
            color: var(--muted);
        }

        .csp-tour-category .faq-accordion {
            display: grid;
            gap: 12px;
        }

        .csp-tour-category .faq-accordion .accordion-item {
            overflow: hidden;
            border: 1px solid var(--line-dark);
            border-radius: 0;
            background: #fff;
        }

        .csp-tour-category .faq-accordion .accordion-button {
            min-height: 58px;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: var(--navy);
            font-size: 0.98rem;
            font-weight: 500;
            line-height: 1.2;
            box-shadow: none;
        }

        .csp-tour-category .faq-accordion .accordion-button:hover {
            background: transparent;
            color: var(--navy);
        }

        .csp-tour-category .faq-accordion .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--navy);
            box-shadow: inset 0 -1px 0 var(--line);
        }

        .csp-tour-category .faq-accordion .accordion-button:focus {
            border-color: transparent;
            border-width: 0;
            background: transparent;
            color: var(--navy);
            box-shadow: none;
        }

        .csp-tour-category .faq-accordion .accordion-header {
            border: 0;
        }

        .csp-tour-category .faq-accordion .accordion-body {

        }

        @media (max-width: 1100px) {
            .csp-tour-category .grid-4,
            .csp-tour-category .route-sequence {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .csp-tour-category .grid-3,
            .csp-tour-category .finder-options {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 820px) {
            .csp-tour-category .section {
                padding: 52px 0;
            }

            .csp-tour-category .grid-2,
            .csp-tour-category .grid-3,
            .csp-tour-category .grid-4,
            .csp-tour-category .intro-grid,
            .csp-tour-category .sig-tour-grid,
            .csp-tour-category .review-summary {
                grid-template-columns: 1fr;
            }

            .csp-tour-category .gallery-grid {
                grid-template-columns: repeat(6, minmax(0, 1fr));
                grid-template-areas:
                    "a a a b b b"
                    "a a a b b b"
                    "c c d d e e"
                    "c c d d e e"
                    "f f f f g g"
                    "f f f f g g"
                    "h h h h h h"
                    "h h h h h h";
                grid-auto-rows: 86px;
            }

            .csp-tour-category .hero {
                min-height: 100vh;
                background-position: 58% center;
            }

            .csp-tour-category .why-choice-feature,
            .csp-tour-category .why-choice-feature img {
                min-height: 420px;
            }

            .csp-tour-category .metric-grid,
            .csp-tour-category .route-sequence,
            .csp-tour-category .trust-items {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .csp-tour-category .metric:nth-child(2n) {
                border-right: 0;
            }

            .csp-tour-category .compact-card {
                grid-template-columns: 98px minmax(0, 1fr);
            }

            .csp-tour-category .sig-tour-card {
                min-height: 390px;
            }

            .csp-tour-category .sig-tour-content {
                padding: 24px;
            }

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

            .csp-tour-category .ta-review-head {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .csp-tour-category .ta-review-summary {
                justify-items: start;
            }

            .csp-tour-category .ta-review-summary-row {
                justify-content: flex-start;
            }

            .csp-tour-category .ta-review-controls-wrap {
                margin-top: 1.5rem;
                gap: 0.85rem;
            }

            .csp-tour-category .ta-review-button {
                width: 2.5rem;
                height: 2.5rem;
            }

            .csp-tour-category .trust-item:nth-child(4n) {
                border-right: 1px solid #e5ded8;
            }

            .csp-tour-category .trust-item:nth-child(2n) {
                border-right: 0;
            }

            .csp-tour-category .trust-item:nth-child(n + 3) {
                padding-top: 1rem;
                margin-top: 1rem;
                border-top: 1px solid #e5ded8;
            }
        }

        @media (max-width: 767.98px) {
            .csp-tour-category .hero h1 {
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .csp-tour-category .ta-review-heading,
            .ta-review-heading {
                font-size: 1.5rem;
                line-height: 1.15;
            }
        }

        @media (max-width: 560px) {
            .csp-tour-category .container {
                width: min(100% - 32px, var(--container));
            }

            .csp-tour-category .metric-grid,
            .csp-tour-category .route-sequence,
            .csp-tour-category .finder-options,
            .csp-tour-category #booking-confidence ul {
                grid-template-columns: 1fr;
            }

            .csp-tour-category .metric {
                border-right: 0;
            }

            .csp-tour-category .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-areas: none;
                grid-auto-rows: 220px;
            }

            .csp-tour-category .gallery-grid a,
            .csp-tour-category .gallery-grid a:nth-child(n) {
                grid-area: auto;
                grid-column: auto;
                grid-row: auto;
            }

            .csp-tour-category .btn {
                width: 100%;
            }

            .csp-tour-category .sig-tour-card {
                min-height: 360px;
            }

            .csp-tour-category .sig-tour-content {
                padding: 20px;
            }

            .csp-tour-category .sig-tour-footer {
                align-items: flex-start;
                flex-direction: column;
            }

            .csp-tour-category .sig-tour-reveal {
                grid-template-rows: 1fr;
            }

            .csp-tour-category .sig-tour-reveal-inner {
                opacity: 1;
                filter: none;
                transform: none;
            }

            .csp-tour-category .section-title,
            .section-title {
                font-size: 1.5rem;
            }

            .csp-tour-category .trust-items {
                grid-template-columns: 1fr;
            }

            .csp-tour-category .trust-item,
            .csp-tour-category .trust-item:nth-child(4n),
            .csp-tour-category .trust-item:nth-child(2n) {
                border-right: 0;
            }

            .csp-tour-category .trust-item {
                grid-template-columns: 58px minmax(0, 1fr);
                min-height: auto;
                gap: 0.75rem;
                padding: 0.85rem 0;
                margin-top: 0;
                border-top: 0;
                border-bottom: 1px solid #e5ded8;
            }

            .csp-tour-category .trust-item:nth-child(n + 3) {
                padding-top: 0.85rem;
                margin-top: 0;
                border-top: 0;
            }

            .csp-tour-category .trust-item:last-child {
                border-bottom: 0;
            }

            .csp-tour-category .trust-items i {
                width: 54px;
                height: 54px;
                aspect-ratio: 1 / 1;
                font-size: 1.45rem;
            }

            .csp-tour-category .ta-review-container {
                width: min(100% - 32px, var(--container));
            }

            .csp-tour-category .ta-review-carousel {
                margin-top: 42px;
            }

            .csp-tour-category .ta-review-head {
                gap: 1.5rem;
                margin-bottom: 28px;
            }

            .csp-tour-category .ta-review-heading,
            .ta-review-heading {
                font-size: 1.5rem;
            }

            .csp-tour-category .ta-review-copy {
                font-size: 1rem;
            }

            .csp-tour-category .ta-review-card {
                padding: 1.25rem 1.15rem 1.1rem;
                min-height: 260px;
            }

            .csp-tour-category .ta-review-card-title {
                font-size: 0.95rem;
            }

            .csp-tour-category .ta-review-card-text p {
                font-size: 0.85rem;
                -webkit-line-clamp: 4;
            }

            .csp-tour-category .ta-review-avatar {
                width: 2.1rem;
                height: 2.1rem;
                font-size: 0.78rem;
            }

            .csp-tour-category .ta-review-author-name {
                font-size: 0.84rem;
            }

            .csp-tour-category .ta-review-badge {
                font-size: 0.65rem;
                padding: 0.2rem 0.45rem;
            }
        }

