﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

.mte-container,
.mte-premium-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    color: var(--mte-secondary);
}

.mte-container h1,
.mte-container h2,
.mte-container h3,
.mte-container h4,
.mte-container h5,
.mte-container h6,
.mte-premium-wrapper h1,
.mte-premium-wrapper h2,
.mte-premium-wrapper h3,
.mte-premium-wrapper h4,
.mte-premium-wrapper h5,
.mte-premium-wrapper h6 {
    font-family: var(--mte-font-heading), system-ui, -apple-system, sans-serif !important;
    letter-spacing: -0.02em;
}

.mte-container p,
.mte-container span,
.mte-container a,
.mte-container li,
.mte-container div,
.mte-container button,
.mte-premium-wrapper p,
.mte-premium-wrapper span,
.mte-premium-wrapper a,
.mte-premium-wrapper li,
.mte-premium-wrapper div,
.mte-premium-wrapper button {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.mte-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.mte-col-md-3,
.mte-col-md-4,
.mte-col-md-6,
.mte-col-md-8,
.mte-col-md-9 {
    padding: 15px;
    box-sizing: border-box;
}

.mte-col-md-3 {
    width: 25%;
}

.mte-col-md-4 {
    width: 33.3333%;
}

.mte-col-md-6 {
    width: 50%;
}

.mte-col-md-8 {
    width: 66.6667%;
}

.mte-col-md-9 {
    width: 75%;
}

@media (max-width: 768px) {

    .mte-col-md-3,
    .mte-col-md-4,
    .mte-col-md-6,
    .mte-col-md-8,
    .mte-col-md-9 {
        width: 100%;
    }
}

.mte-mt-2 {
    margin-top: 1rem !important;
}

.mte-mt-4 {
    margin-top: 1.5rem !important;
}

.mte-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.mte-tours-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mte-tours-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.mte-tours-grid-inner.mte-layout-list {
    grid-template-columns: 1fr;
}

.mte-layout-list .mte-tour-card {
    flex-direction: row;
}

.mte-layout-list .mte-tour-image {
    width: 320px;
    height: 100%;
}

.mte-premium-card {
    background: #fff;
    border-radius: var(--mte-radius);
    box-shadow: var(--mte-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid #f0f0f0;
}

.mte-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mte-tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.mte-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mte-premium-card:hover .mte-tour-image img {
    transform: scale(1.05);
}

.mte-card-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.mte-tour-badges-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.mte-badge-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--mte-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mte-badge-custom {
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mte-tour-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mte-tour-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.mte-tour-title a {
    color: var(--mte-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mte-tour-title a:hover {
    color: var(--mte-primary);
}

.mte-tour-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
    flex-grow: 1;
}

.mte-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    color: #555;
    font-size: 14px;
}

.mte-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.mte-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.mte-price strong {
    color: var(--mte-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

.mte-widget {
    background: #fff;
    padding: 30px;
    border-radius: var(--mte-radius);
    border: 1px solid #eaeaea;
    box-shadow: var(--mte-shadow);
}

/* Booking Form Elements */
.mte-form-group {
    margin-bottom: 20px;
}

.mte-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mte-secondary, #333);
    font-size: 14px;
}

.mte-form-group input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.mte-form-group select,
.mte-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--mte-border, #ddd);
    border-radius: var(--mte-radius);
    background: var(--mte-surface, #fff);
    color: var(--mte-text-body, #333);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mte-form-group input:focus,
.mte-form-group select:focus,
.mte-form-group textarea:focus {
    border-color: var(--mte-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    /* Avoid specific color shadows, use neutral alpha */
    outline: none;
}

/* Custom Date Wrapper - Airbnb Style */
.mte-date-wrapper {
    position: relative;
    width: 100%;
    border: 1px solid var(--mte-border, #ddd);
    border-radius: var(--mte-radius);
    background: var(--mte-surface, #fff);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.mte-date-wrapper:hover {
    border-color: var(--mte-border-hover, #aaa);
}

.mte-date-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mte-primary);
    font-size: 20px;
    pointer-events: none;
    z-index: 2;
}

.mte-date-display {
    padding: 12px 15px 12px 45px;
    color: var(--mte-text-body, #444);
    font-size: 15px;
    font-weight: 500;
    pointer-events: none;
}

/* Payment Method Radio Cards */
.mte-pm-card {
    background: var(--mte-surface, #fff);
}

.mte-pm-card:hover {
    border-color: var(--mte-primary) !important;
    background: #fdfdfd;
}

.mte-pm-card.active {
    border-color: var(--mte-primary) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #fffafa;
    /* Extremely subtle accent tint */
}

.mte-native-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Fully hidden but clickable */
    cursor: pointer;
    z-index: 3;
}

.mte-native-date::-webkit-calendar-picker-indicator {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

.mte-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--mte-primary);
    color: #fff;
    border: none;
    border-radius: var(--mte-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.mte-submit-btn:hover {
    background: var(--mte-primary-hover, var(--mte-primary));
    /* Fallback safely */
    transform: translateY(-1px);
}

.mte-form-group input,
.mte-form-group select,
.mte-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--mte-border, #e0e0e0);
    border-radius: var(--mte-radius);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
    background: var(--mte-surface, #fff);
    color: var(--mte-text-body, #333);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mte-form-group input:focus,
.mte-form-group select:focus,
.mte-form-group textarea:focus {
    outline: none;
    border-color: var(--mte-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.mte-btn {
    padding: 14px 28px;
    background: var(--mte-cta, var(--mte-primary));
    color: #fff;
    border: none;
    border-radius: var(--mte-radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mte-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05);
}

.mte-btn:active {
    transform: translateY(0);
}

/* Legacy Hero Container (Hidden for GYG layout) */
.mte-tour-hero {
    display: none;
}

.mte-btn-video {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.mte-btn-video:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mte-tour-section {
    background: #fff;
    padding: 40px;
    border-radius: var(--mte-radius);
    box-shadow: var(--mte-shadow);
    margin-bottom: 30px;
}

.mte-tour-section h2,
.mte-tour-section h3 {
    margin-top: 0;
    border-bottom: 3px solid var(--mte-primary);
    padding-bottom: 12px;
    display: inline-block;
    color: var(--mte-secondary);
    margin-bottom: 25px;
}

/* Modern Checklists (.mte-svg-checklist) */
.mte-svg-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mte-svg-checklist.mte-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .mte-svg-checklist.mte-checklist-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mte-svg-checklist li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--mte-text-body, #444);
    line-height: 1.5;
}

.mte-chk-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

/* data-style="none" hides icons entirely */
.mte-svg-checklist[data-style="none"] .mte-chk-icon {
    display: none;
}

/* Base Default Toggle = Checkmark */
.mte-svg-checklist[data-style="check"] .mte-chk-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232ecc71" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
}

/* Toggle = Dot */
.mte-svg-checklist[data-style="dot"] .mte-chk-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23444"><circle cx="12" cy="12" r="6" /></svg>');
    width: 14px;
    margin-top: 5px;
}

/* Distinct red X for excludes (Ignores Global Check/Dot settings) */
.mte-svg-checklist li.mte-exc-item .mte-chk-icon.mte-icon-no {
    width: 20px;
    margin-top: 2px;
    display: block;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e74c3c" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
}

/* Specific Checkmarks for Includes Override */
.mte-svg-checklist li.mte-inc-item .mte-chk-icon.mte-icon-yes {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232ecc71" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
}

.mte-text-muted {
    color: var(--mte-text-muted, #999) !important;
    text-decoration: line-through;
}

/* Legacy simple accordions (hidden) */
.mte-accordion-item {
    display: none;
}

.mte-booking-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.mte-price-box {
    background: var(--mte-primary);
    color: #fff;
    padding: 25px;
    text-align: center;
}

.mte-price-amount {
    margin: 5px 0 0;
    font-size: 28px;
}

/* Desktop Layout Overrides */
.mte-desktop-only {
    display: none;
}

/* Custom Desktop Sidebar */
.mte-desktop-sidebar-custom {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mte-desktop-sidebar-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Custom scrollbar for sidebar */
.mte-desktop-sidebar-custom::-webkit-scrollbar {
    width: 6px;
}

.mte-desktop-sidebar-custom::-webkit-scrollbar-track {
    background: transparent;
}

.mte-desktop-sidebar-custom::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.mte-desktop-sidebar-custom::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.mte-mobile-only {
    display: block;
}

/* Booking sidebar always visible since it's the only form instance */
.mte-layout-sidebar {
    display: block;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

/* Ensure no overlay can block booking widget clicks */
.mte-booking-widget,
.mte-booking-widget * {
    pointer-events: auto;
}

@media (min-width: 1024px) {
    .mte-desktop-only {
        display: block;
    }

    .mte-mobile-only {
        display: none;
    }

    .mte-layout-2col {
        display: flex;
        gap: 50px;
        align-items: flex-start;
    }

    .mte-layout-content {
        flex: 1 1 0;
        min-width: 0;
    }

    .mte-layout-sidebar {
        width: 360px;
        flex-shrink: 0;
        position: sticky;
        top: 90px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        border-radius: 8px;
        margin-top: 0;
        z-index: 100;
    }

    /* Hide scrollbar for the sticky sidebar to maintain premium look */
    .mte-layout-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .mte-layout-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .mte-layout-sidebar::-webkit-scrollbar-thumb {
        background: #eee;
        border-radius: 4px;
    }
}

/* Tablet Layout (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .mte-desktop-only {
        display: block;
        /* Ensure sidebar shows */
    }

    .mte-tablet-only {
        display: block;
    }

    .mte-mobile-only {
        display: none;
    }

    .mte-layout-2col {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .mte-layout-content {
        flex: 0 0 58%;
        min-width: 0;
    }

    .mte-layout-sidebar {
        flex: 1;
        position: sticky;
        top: 90px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        border-radius: 8px;
    }

    /* Force tablet side widget spacing */
    .mte-booking-form-wrapper {
        padding: 15px;
    }
}

/* Desktop Gallery */
.mte-desktop-gallery {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
}

.mte-dg-main {
    flex: 2;
    cursor: pointer;
    overflow: hidden;
}

.mte-dg-main img,
.mte-dg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mte-dg-main:hover img,
.mte-dg-item:hover img {
    transform: scale(1.03);
}

.mte-dg-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.mte-dg-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.mte-dg-empty {
    background: #f5f5f5;
}

.mte-dg-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
    transition: background 0.2s;
}

.mte-dg-item:hover .mte-dg-more {
    background: rgba(0, 0, 0, 0.4);
}

/* Jump Nav */
.mte-jump-nav-wrapper {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
    padding: 15px 0 0;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.mte-jump-nav {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.mte-jump-nav::-webkit-scrollbar {
    display: none;
}

.mte-jump-nav a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    padding-bottom: 15px;
    margin-bottom: -1px;
    /* overlap border */
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.mte-jump-nav a:hover,
.mte-jump-nav a.active {
    color: var(--mte-primary);
    border-bottom-color: var(--mte-primary);
}

.mte-section-target {
    scroll-margin-top: 80px;
    margin-bottom: 40px;
}

.mte-booking-form-wrapper {
    padding: 20px;
}

.mte-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.mte-alert-success {
    background: #dff0d8;
    color: #3c763d;
}

.mte-alert-danger {
    background: #f2dede;
    color: #a94442;
}

.mte-alert-info {
    background: #d9edf7;
    color: #31708f;
}

/* ==================================================
   GETYOURGUIDE STYLE OVERRIDES (SINGLE TOUR)
================================================== */

.mte-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.mte-dot.active {
    background: #fff;
    width: 8px;
    height: 8px;
    transform: translateY(-1px);
}

.mte-tour-meta-gyg {
    margin-bottom: 25px;
}

.mte-tour-title-gyg {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    color: var(--mte-secondary);
}

@media (max-width: 768px) {
    .mte-tour-title-gyg {
        font-size: 22px;
    }
}

.mte-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.mte-stars {
    color: #fca311;
    font-size: 16px;
}

.mte-review-link {
    color: var(--mte-primary);
    text-decoration: underline;
    cursor: pointer;
}

.mte-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.mte-pill-top {
    background: #ffebd2;
    color: #bf6600;
}

.mte-pill-success {
    background: #e3f2fd;
    color: #0d47a1;
}

/* Feature Grid */
.mte-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.mte-feature-icon-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mte-feature-icon-row i {
    font-size: 22px;
    color: var(--mte-secondary);
    margin-top: 2px;
}

.mte-feature-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--mte-secondary);
}

.mte-feature-text span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Accordions GYG */
.mte-accordion-group {
    border-top: 1px solid #eaeaea;
    margin-top: 25px;
}

.mte-accordion-gyg {
    border-bottom: 1px solid #eaeaea;
}

.mte-accordion-gyg-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--mte-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mte-accordion-gyg-btn i {
    transition: transform 0.3s ease;
    font-size: 20px;
    color: #666;
}

.mte-accordion-gyg-btn.open i {
    transform: rotate(180deg);
}

.mte-accordion-gyg-content {
    display: none;
    padding-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.mte-list-dots {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mte-list-dots li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.mte-list-dots li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
    font-size: 18px;
}

/* Itinerary Timeline */
.mte-timeline {
    position: relative;
    padding-left: 15px;
}

.mte-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 20px;
    left: 4px;
    width: 2px;
    background: #eaeaea;
}

.mte-timeline-day {
    position: relative;
    margin-bottom: 25px;
}

.mte-timeline-dot {
    position: absolute;
    left: -16px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mte-primary);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--mte-primary);
}

.mte-timeline-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.mte-timeline-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--mte-secondary);
}

.mte-timeline-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: var(--mte-radius);
    margin-top: 10px;
}

/* Reviews Summary */
.mte-review-summary-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: var(--mte-radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mte-review-score-big {
    font-size: 36px;
    font-weight: 800;
    color: var(--mte-secondary);
    line-height: 1;
}

.mte-review-bars {
    flex-grow: 1;
    min-width: 200px;
}

.mte-bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.mte-bar-label {
    width: 120px;
}

.mte-bar-track {
    flex-grow: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 0 10px;
    overflow: hidden;
}

.mte-bar-fill {
    height: 100%;
    background: var(--mte-primary);
    border-radius: 3px;
}

.mte-review-card {
    border: 1px solid #eaeaea;
    padding: 20px;
    border-radius: var(--mte-radius);
    margin-bottom: 15px;
}

.mte-reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mte-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

/* Horizontal Scroll (Related) */
.mte-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scrollbar-width: none;
    /* Firefox */
    margin: 0 -15px;
    padding: 0 15px 20px;
}

.mte-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.mte-horizontal-scroll .mte-premium-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

/* Sticky Bottom Bar */
.mte-sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

@media (min-width: 769px) {
    .mte-sticky-bottom-bar {
        display: none;
    }
}

.mte-sticky-price-col {
    display: flex;
    flex-direction: column;
}

.mte-sticky-price-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
}

.mte-sticky-price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--mte-secondary);
}

.mte-sticky-price-value span {
    font-size: 13px;
    font-weight: normal;
    color: #666;
}

.mte-sticky-btn {
    background: var(--mte-primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

/* Fullscreen Gallery overrides */
.mte-gallery-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    overflow-y: auto;
    display: none;
    padding-bottom: 50px;
}

.mte-gallery-fs-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    z-index: 2;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.mte-gallery-fs-close {
    font-size: 24px;
    color: var(--mte-secondary);
    cursor: pointer;
    font-weight: bold;
}

.mte-gallery-fs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.mte-gallery-fs-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    cursor: pointer;
}

/* Premium Accordion Card Styles */
.mte-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.mte-accordion-card {
    background: #fff;
    border-radius: var(--mte-radius, 16px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.mte-accordion-card-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.mte-ac-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mte-ac-title-group h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--mte-secondary);
}

.mte-ac-subtitle {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.mte-ac-chevron i {
    font-size: 20px;
    color: #999;
    transition: transform 0.3s ease;
}

.mte-accordion-card-btn[aria-expanded="true"] .mte-ac-chevron i {
    transform: rotate(180deg);
}

.mte-accordion-card-content {
    border-top: 1px solid #f0f0f0;
}

.mte-ac-inner {
    padding: 20px;
}

.mte-text-content {
    max-width: 70ch;
    line-height: 1.6;
    color: #333;
}

/* Lists inside accordion */
.mte-spacious-list li {
    margin-bottom: 12px;
}

.mte-spacious-list li:last-child {
    margin-bottom: 0;
}

/* 2-Column Includes Grid */
.mte-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mte-inc-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mte-inc-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.mte-green i {
    color: #2b8a3e;
}

.mte-red i {
    color: #e03131;
}

@media (max-width: 768px) {
    .mte-includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Premium Itinerary Day Cards (GetYourGuide Style) */
.mte-itinerary-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mte-day-card {
    background: #fff;
    border-radius: var(--mte-radius, 16px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.mte-day-card-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.mte-dc-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mte-dc-pill {
    background: #f5f5f5;
    color: var(--mte-secondary, #333);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.mte-dc-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--mte-secondary, #333);
}

.mte-dc-chevron svg {
    color: #999;
    transition: transform 0.3s ease;
}

.mte-day-card-btn[aria-expanded="true"] .mte-dc-chevron svg {
    transform: rotate(180deg);
}

.mte-dc-inner {
    padding: 0 24px 24px 24px;
}

.mte-dc-split {
    display: flex;
    gap: 40px;
}

/* Timeline (Left Column) */
.mte-dc-timeline {
    position: relative;
    flex: 1;
    min-width: 0;
}

.mte-tl-line {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 7px;
    width: 2px;
    background: #eaeaea;
    z-index: 1;
}

.mte-tl-step {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    z-index: 2;
}

.mte-tl-step.end-step {
    margin-bottom: 0;
}

.mte-tl-icon {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.mte-tl-icon.active svg {
    color: var(--mte-primary, #0071c2);
    fill: #fff;
}

.mte-tl-icon.end-node {
    width: 12px;
    height: 12px;
    background: var(--mte-secondary, #333);
    margin-left: 2px;
    margin-top: 6px;
}

.mte-tl-content {
    flex-grow: 1;
}

.mte-tl-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Media & Info (Right Column Placeholder) */
.mte-dc-media {
    width: 320px;
    flex-shrink: 0;
}

.mte-dc-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
    cursor: pointer;
}

.mte-dc-media-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
}

.mte-dc-media-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mte-dc-media-arrow svg {
    color: #333;
}

.mte-dc-media-caption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 20px;
}

.mte-day-info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mte-di-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mte-di-icon {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    flex-shrink: 0;
}

.mte-di-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mte-di-text strong {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.mte-di-text span {
    font-size: 13px;
    color: #777;
}

/* Responsive Stacking */
@media (max-width: 900px) {
    .mte-dc-split {
        flex-direction: column;
        gap: 30px;
    }

    .mte-dc-media {
        width: 100%;
    }

    .mte-day-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .mte-day-card-btn {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .mte-dc-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mte-dc-chevron {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .mte-dc-inner {
        padding: 0 20px 20px 20px;
    }

    .mte-day-info-grid {
        flex-direction: column;
        gap: 16px;
    }
}

/* =========================================================
   PHASE 18: PREMIUM SAAS REDESIGN â€” FULL REWRITE
   Mobile-first, overflow-safe, CSS-variable driven
   ========================================================= */

.mte-premium-wrapper *,
.mte-premium-wrapper *::before,
.mte-premium-wrapper *::after {
    box-sizing: border-box;
}

.mte-premium-wrapper {
    max-width: 1200px;
    margin: 32px auto 80px;
    padding: 0 24px;
    font-family: var(--mte-font, 'Inter', sans-serif);
    color: var(--mte-text-body, #4b5563);
    overflow-x: hidden;
}

.mte-premium-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}

/* â”€â”€â”€ Section Title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-section-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: var(--mte-text-heading, #111827);
    margin: 0 0 24px 0;
    line-height: 1.3;
}

/* â”€â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-header {
    margin-bottom: 20px;
}

.mte-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mte-premium-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--mte-text-heading, #111827);
    line-height: 1.2;
    margin: 0 0 12px 0;
    word-break: break-word;
}

.mte-premium-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 14px;
}

.mte-premium-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mte-rating-score {
    font-weight: 700;
    color: var(--mte-text-heading, #111827);
}

.mte-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
}

.mte-meta-divider {
    color: #d1d5db;
}

.mte-premium-location {
    color: var(--mte-text-muted, #6b7280);
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
}

.mte-review-link {
    color: var(--mte-text-muted, #6b7280);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* â”€â”€â”€ Visibility Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 769px) {
    .mte-mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mte-desktop-only {
        display: none !important;
    }
}

/* ─── Hero Gallery Grid (Desktop) ─── */
.mte-premium-gallery-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 8px;
    border-radius: var(--mte-radius, 16px);
    overflow: hidden;
    margin-bottom: 36px;
    width: 100%;
    height: 460px;
}

.mte-pgg-main {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
    cursor: pointer;
}

.mte-pgg-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.mte-pgg-main:hover img {
    transform: scale(1.03);
}

.mte-pgg-thumbnails {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    overflow: hidden;
    height: 100%;
}

.mte-pgg-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f3f4f6;
}

.mte-pgg-empty {
    background: #f3f4f6;
}

.mte-pgg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mte-pgg-item:hover img {
    transform: scale(1.06);
}

.mte-pgg-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

/* â”€â”€â”€ Mobile Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-hero-mobile {
    width: 100%;
    margin: 0 -24px;
    width: calc(100% + 48px);
    height: 300px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.mte-phm-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mte-phm-controls {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mte-phm-btn {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.mte-phm-btn i {
    font-size: 18px;
}

.mte-phm-actions {
    display: flex;
    gap: 8px;
}

/* ─── 2-Column Layout ─── */
.mte-premium-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.mte-premium-main {
    min-width: 0;
    width: 100%;
    overflow: visible;
}

/* â”€â”€â”€ Sticky Jump Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-jump-nav-wrapper {
    position: sticky;
    top: 0;
    background: var(--mte-bg, #fff);
    z-index: 90;
    margin-bottom: 32px;
    border-bottom: 2px solid #e5e7eb;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mte-premium-jump-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.mte-premium-jump-nav {
    display: flex;
    gap: 0;
    min-width: max-content;
}

.mte-jump-nav-link {
    padding: 14px 20px;
    color: var(--mte-text-muted, #6b7280);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.mte-jump-nav-link:hover {
    color: var(--mte-primary, #e53e3e);
}

.mte-jump-nav-link.active {
    color: var(--mte-primary, #e53e3e);
    border-bottom-color: var(--mte-primary, #e53e3e);
}

/* â”€â”€â”€ Features Ribbon â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-features-ribbon {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px 16px;
    margin-bottom: 16px;
}

.mte-pfr-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.mte-pfr-item>i {
    font-size: 22px;
    color: var(--mte-text-heading, #111827);
    flex-shrink: 0;
    margin-top: 2px;
}

.mte-pfr-content {
    min-width: 0;
}

.mte-pfr-content strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--mte-text-heading, #111827);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mte-pfr-content span {
    font-size: 13px;
    color: var(--mte-text-muted, #6b7280);
    line-height: 1.4;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* â”€â”€â”€ Sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-section {
    padding: 8px 0;
    overflow: hidden;
}

.mte-text-content {
    color: var(--mte-text-body, #4b5563);
    line-height: 1.7;
    font-size: 15px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    overflow-wrap: break-word;
    word-break: break-word;
}

.mte-text-content p {
    margin-top: 0;
}

/* ─── Highlights ─── */
.mte-premium-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.mte-premium-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    min-width: 0;
}

.mte-premium-highlights-list i {
    color: var(--mte-accent, #16a34a);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mte-premium-highlights-list span {
    min-width: 0;
    word-break: break-word;
}

/* â”€â”€â”€ Includes / Excludes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.mte-premium-includes-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mte-included-list li,
.mte-excluded-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    min-width: 0;
}

.mte-included-list i {
    color: #16a34a;
    flex-shrink: 0;
}

.mte-excluded-list i {
    color: #dc2626;
    flex-shrink: 0;
}

.mte-excluded-list {
    color: var(--mte-text-muted, #6b7280);
}

/* â”€â”€â”€ Vertical Timeline Itinerary â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-itinerary-timeline {
    padding-top: 8px;
}

.mte-pit-item {
    display: flex;
    position: relative;
    padding-bottom: 36px;
    min-width: 0;
}

.mte-pit-end {
    padding-bottom: 0;
}

.mte-pit-node {
    position: relative;
    width: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.mte-pit-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mte-primary, #e53e3e);
    z-index: 2;
    margin-top: 6px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--mte-primary, #e53e3e);
}

.mte-pit-dot-hollow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
}

.mte-pit-line {
    position: absolute;
    top: 22px;
    bottom: -8px;
    left: 16px;
    transform: translateX(-50%);
    width: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.mte-pit-content {
    flex-grow: 1;
    min-width: 0;
}

.mte-pit-end-text {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
    padding-top: 4px;
}

.mte-pit-day-pill {
    display: inline-block;
    background: var(--mte-primary, #e53e3e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.mte-pit-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--mte-text-heading, #111827);
    margin: 0 0 10px 0;
    word-break: break-word;
}

.mte-pit-desc {
    color: var(--mte-text-body, #4b5563);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    overflow-wrap: break-word;
}

.mte-pit-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mte-pit-img-box {
    width: 110px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.mte-pit-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* â”€â”€â”€ Reviews Summary â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-reviews-card {
    display: grid;
    grid-template-columns: 160px 1fr 260px;
    gap: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--mte-radius, 14px);
    padding: 28px;
    margin-bottom: 28px;
    overflow: hidden;
}

.mte-prco-score {
    font-size: 52px;
    font-weight: 900;
    color: var(--mte-text-heading, #111827);
    line-height: 1;
    white-space: nowrap;
}

.mte-prco-score span {
    font-size: 22px;
    color: #9ca3af;
    font-weight: 600;
}

.mte-prco-label {
    font-weight: 700;
    color: var(--mte-text-heading, #111827);
    font-size: 16px;
    margin-top: 8px;
}

.mte-prco-count {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 6px;
}

.mte-prc-split-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.mte-prc-split-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mte-dist-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    font-size: 13px;
}

.mte-dist-stars {
    min-width: 28px;
    color: #6b7280;
    white-space: nowrap;
}

.mte-dist-track {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 99px;
    overflow: hidden;
    min-width: 0;
}

.mte-dist-fill {
    height: 100%;
    background: var(--mte-primary, #e53e3e);
    border-radius: 99px;
    transition: width 0.6s ease;
}

.mte-dist-count {
    min-width: 22px;
    text-align: right;
    color: #9ca3af;
    font-weight: 600;
}

.mte-reviews-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.mte-rt-count {
    font-weight: 700;
    font-size: 15px;
    color: var(--mte-text-heading, #111827);
}

.mte-rt-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.mte-premium-select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: var(--mte-text-heading, #111827);
    cursor: pointer;
}

/* â”€â”€â”€ Sidebar & Booking Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    z-index: 50;
    width: 100%;
    min-width: 0;
    max-width: 340px;
}

.mte-premium-booking-widget {
    width: 100%;
    border-radius: var(--mte-radius, 14px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    background: var(--mte-surface, #fff);
    overflow: hidden;
}

.mte-pbw-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
}

.mte-pbw-price {
    display: flex;
    flex-direction: column;
}

.mte-pbw-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

.mte-pbw-amount {
    font-size: 26px;
    font-weight: 900;
    color: var(--mte-text-heading, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mte-pbw-person {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 2px;
}

.mte-pbw-body {
    padding: 20px 24px;
    overflow: hidden;
}

/* Constrain the form inside the card */
.mte-pbw-body .mte-booking-form,
.mte-pbw-body .mte-booking-progress,
.mte-pbw-body .mte-booking-step {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.mte-pbw-trust {
    background: #f9fafb;
    padding: 14px 24px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mte-pbw-trust-item {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mte-pbw-trust-item i {
    color: #16a34a;
    font-size: 16px;
}

/* â”€â”€â”€ Global Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--mte-btn-bg, var(--mte-primary, #e53e3e));
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: var(--mte-radius, 10px);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.1s;
    white-space: nowrap;
    width: auto;
    text-decoration: none;
}

.mte-btn:hover {
    background: var(--mte-btn-bg-hover, #c53030);
    transform: translateY(-1px);
}

.mte-btn-secondary {
    background: #f3f4f6;
    color: var(--mte-text-heading, #111827);
    border: 1px solid #e5e7eb;
}

.mte-btn-secondary:hover {
    background: #e5e7eb;
    transform: none;
}

.mte-btn-block {
    width: 100%;
}

.mte-btn-text-only {
    background: none;
    border: none;
    color: var(--mte-primary, #e53e3e);
    font-weight: 700;
    font-size: 14px;
    padding: 4px 0;
    cursor: pointer;
    text-decoration: underline;
}

/* â”€â”€â”€ Mobile CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mte-premium-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 14px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mte-pmc-price {
    display: flex;
    flex-direction: column;
}

.mte-pmc-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.mte-pmc-amount {
    font-size: 20px;
    font-weight: 900;
    color: var(--mte-text-heading, #111827);
}

.mte-pmc-btn {
    padding: 11px 24px;
    font-size: 15px;
    flex-shrink: 0;
}

/* â”€â”€â”€ Related Tours (Horizontal scroll on mobile) â”€ */
.mte-related-tours .mte-horizontal-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* â”€â”€â”€ Responsive Breakpoints â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
    .mte-premium-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mte-premium-sidebar {
        display: block;
        position: static;
        width: 100%;
    }

    .mte-premium-reviews-card {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .mte-premium-reviews-card .mte-prc-distribution {
        grid-column: 1 / -1;
    }

    .mte-related-tours .mte-horizontal-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mte-premium-wrapper {
        padding: 0;
        margin: 0 0 80px 0;
        overflow-x: hidden;
    }

    .mte-premium-header {
        padding: 16px 20px 0;
    }

    .mte-premium-layout {
        padding: 0 20px;
    }

    .mte-premium-jump-nav-wrapper {
        padding: 0 20px;
    }

    .mte-premium-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
        border-radius: 0;
        gap: 4px;
    }

    .mte-pgg-main {
        grid-column: 1;
        grid-row: 1;
    }

    .mte-pgg-thumbnails {
        grid-column: 2;
        grid-row: 1;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .mte-premium-reviews-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .mte-premium-includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mte-premium-highlights-list {
        grid-template-columns: 1fr;
    }

    .mte-related-tours .mte-horizontal-scroll {
        grid-template-columns: 1fr;
    }

    .mte-premium-features-ribbon {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .mte-section-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mte-premium-gallery-grid {
        display: none;
    }

    .mte-premium-features-ribbon {
        grid-template-columns: 1fr;
    }

    .mte-premium-meta-row {
        font-size: 13px;
    }
}

/* =======================================================
   PHASE 18 ADDENDUM: Read More, Modal, Carousel, Includes
   ======================================================= */

/* ── Font unification via CSS var ── */
.mte-premium-wrapper,
.mte-premium-wrapper h1,
.mte-premium-wrapper h2,
.mte-premium-wrapper h3,
.mte-premium-wrapper button,
.mte-premium-wrapper input,
.mte-premium-wrapper select,
.mte-premium-wrapper textarea {
    font-family: var(--mte-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* ── Gallery: uniform aspect-ratio via grid rows ── */
.mte-pgg-main img,
.mte-pgg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mte-pgg-main,
.mte-pgg-item {
    background: #f3f4f6;
}

/* ── Includes column label ── */
.mte-inc-col-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--mte-text-muted, #6b7280);
    margin-bottom: 14px;
}

/* ── Read More Toggle ── */
.mte-readmore-body {
    max-height: 160px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mte-readmore-body.mte-expanded {
    max-height: 4000px;
}

.mte-readmore-body:not(.mte-expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(transparent, var(--mte-bg, #fff));
    pointer-events: none;
}

.mte-readmore-toggle {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: var(--mte-primary, #e53e3e);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Write a Review trigger ── */
.mte-write-review-trigger {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #f3f4f6;
}

/* ── Reviews loading state ── */
.mte-reviews-loading {
    text-align: center;
    padding: 40px 0;
    color: var(--mte-text-muted, #6b7280);
    font-size: 15px;
}

/* ── Review Modal ── */
.mte-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.mte-modal[hidden] {
    display: none !important;
}

.mte-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
}

.mte-modal-box {
    position: relative;
    background: #fff;
    border-radius: var(--mte-radius, 14px);
    width: 100%;
    max-width: 600px;
    max-height: 90dvh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: mteModalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes mteModalIn {
    from {
        opacity: 0;
        transform: scale(0.93) translateY(16px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.mte-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.mte-modal-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--mte-text-heading, #111827);
}

.mte-modal-close {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.mte-modal-close:hover {
    background: #e5e7eb;
}

.mte-modal-close i {
    font-size: 18px;
    color: #374151;
    margin: 0;
}

.mte-modal-body {
    padding: 20px 24px 28px;
}

/* Override inline styles in review-form inside modal */
.mte-modal-body .mte-review-form-wrapper {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.mte-modal-body label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--mte-text-heading, #111827);
}

.mte-modal-body input[type="text"],
.mte-modal-body input[type="email"],
.mte-modal-body select,
.mte-modal-body textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--mte-text-body, #4b5563);
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.mte-modal-body input:focus,
.mte-modal-body textarea:focus {
    outline: none;
    border-color: var(--mte-primary, #e53e3e);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
}

.mte-modal-body div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

@media (max-width: 480px) {
    .mte-modal-body div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .mte-modal-box {
        max-height: 95dvh;
    }
}

/* ── Related Tours Carousel ── */
.mte-carousel {
    position: relative;
    overflow: hidden;
}

.mte-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.mte-carousel-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: auto;
}

.mte-carousel-slide>* {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mte-carousel-slide .mte-tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mte-carousel-slide .mte-tour-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mte-carousel-slide .mte-card-footer {
    margin-top: auto;
}

.mte-carousel-btn {
    position: absolute;
    top: calc(50% - 32px);
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.2s;
}

.mte-carousel-btn:hover {
    background: var(--mte-primary, #e53e3e);
    border-color: var(--mte-primary, #e53e3e);
}

.mte-carousel-btn:hover i {
    color: #fff;
}

.mte-carousel-btn i {
    font-size: 20px;
    color: #374151;
    margin: 0;
}

.mte-carousel-prev {
    left: -16px;
}

.mte-carousel-next {
    right: -16px;
}

.mte-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.mte-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.mte-carousel-dot.active {
    background: var(--mte-primary, #e53e3e);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .mte-carousel-slide {
        flex: 0 0 calc(100% - 0px);
    }

    .mte-carousel-prev {
        left: 6px;
    }

    .mte-carousel-next {
        right: 6px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mte-carousel-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* ── Mobile Gallery: counter badge ── */
.mte-phm-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    pointer-events: none;
    white-space: nowrap;
}

/* ====================================================
   Review Submission: Interactive Star Rating
   ==================================================== */
.mte-interactive-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.mte-interactive-stars input {
    display: none;
}

.mte-interactive-stars label {
    font-size: 32px;
    color: #e4e6eb;
    cursor: pointer;
    transition: color 0.2s ease-in-out, transform 0.2s;
    line-height: 1;
}

/* Base Hover: the hovered star and all stars before it (to its right because of row-reverse) turn mostly yellow */
.mte-interactive-stars label:hover,
.mte-interactive-stars label:hover~label {
    color: #ffc107;
    transform: scale(1.15);
}

/* Selected State: the checked input and all inputs after it (to its right) turn yellow */
.mte-interactive-stars input:checked~label {
    color: #ffb400;
}

/* Selected Hover Mix: override colors if hovering over early stars when a later star is already checked */
.mte-interactive-stars input:checked~label:hover,
.mte-interactive-stars input:checked~label:hover~label {
    color: #ffc107 !important;
}

/* =====================================================
   HIDE PRICE FEATURE - Extended for new elements
   ===================================================== */

/* When hide-price class is present on body or container, hide these elements */
.mte-hide-price .mte-msc-price,
.mte-hide-price .mte-ty-card-payment,
.mte-hide-price .mte-ty-total,
.mte-hide-price-active .mte-msc-price,
.mte-hide-price-active .mte-ty-card-payment,
.mte-hide-price-active .mte-ty-total {
    display: none !important;
}

/* Alternative: data attribute approach for booking form elements */
[data-hide-price="1"] .mte-msc-price,
[data-hide-price="1"] .mte-ty-card-payment,
[data-hide-price="1"] .mte-ty-total {
    display: none !important;
}