/* =====================================================================
   Tour Price — unified split card
   Dark left (price + options + CTA) | Light right (includes)
   ===================================================================== */

/* ── Section wrapper ─────────────────────────────────────────────── */
.tour-price {
    background: #fff;
    padding: 0 0 56px;
}

.tour-price__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Section heading ─────────────────────────────────────────────── */
.tour-price__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-top: 20px;
}

.tour-price__heading-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8620a;
    white-space: nowrap;
}

.tour-price__heading-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

/* ── Unified card ────────────────────────────────────────────────── */
.tour-price__card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 16px;
}

.tour-price__card--solo {
    grid-template-columns: 1fr;
    max-width: 560px;
}

/* ── Left: price panel ─────────────────────────────────────────── */
.tour-price__card-left {
    background: #111 url('/images/backgrounds/3.jpeg') center / cover no-repeat;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
}

.tour-price__card-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 18, 20, 0.82);
    pointer-events: none;
    z-index: 0;
}

.tour-price__card-left > * {
    position: relative;
    z-index: 1;
}

.tour-price__price-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8620a;
    margin: 0 0 18px;
}

/* ── Price display ───────────────────────────────────────────────── */
.tour-price__amount {
    margin-bottom: 36px;
}

.tour-price__value {
    display: block;
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.tour-price__unit {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ── Option groups ───────────────────────────────────────────────── */
.tour-price__group {
    margin-bottom: 20px;
}

.tour-price__group:last-of-type {
    margin-bottom: 0;
}

.tour-price__options-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #bbb;
    margin: 0 0 8px;
}

/* ── Option rows ─────────────────────────────────────────────────── */
.tour-price__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    margin-bottom: 4px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    background: #fafafa;
    transition: background 0.15s, border-color 0.15s;
}

.tour-price__row:last-child {
    margin-bottom: 0;
}

.tour-price__row:hover {
    background: #fff;
    border-color: rgba(232, 98, 10, 0.3);
}

.tour-price__row-name {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    line-height: 1.4;
    flex: 1;
}

.tour-price__row-value {
    font-size: 15px;
    font-weight: 700;
    color: #e8620a;
    white-space: nowrap;
    flex-shrink: 0;
}

.tour-price__row-value--muted {
    font-size: 12px;
    font-weight: 400;
    color: #bbb;
}

/* ── Tag ─────────────────────────────────────────────────────────── */
.tour-price__tag {
    font-style: normal;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #aaa;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    padding: 2px 5px;
}

/* ── CTA block ───────────────────────────────────────────────────── */
.tour-price__cta {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
}

.tour-price__cta-text {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0 0 12px;
}

.tour-price__cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e8620a;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.15s;
}

.tour-price__cta-btn:hover {
    background: #cf5609;
}

.tour-price__cta-btn svg {
    transition: transform 0.15s;
}

.tour-price__cta-btn:hover svg {
    transform: translateX(3px);
}

/* ── Right: includes panel ───────────────────────────────────────── */
.tour-price__card-right {
    background: #f6f6f6;
    padding: 44px 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tour-price__includes-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tour-price__includes-badge {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #27a163;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-price__includes-title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ── Includes grid ───────────────────────────────────────────────── */
.tour-price__includes-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 8px;
}

/* ── Include chip ────────────────────────────────────────────────── */
.tour-price__include-chip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.45;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.tour-price__include-chip:hover {
    border-color: #27a163;
    box-shadow: 0 2px 10px rgba(39, 161, 99, 0.08);
}

.tour-price__include-chip-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #27a163;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ── Exclude collapsible section ─────────────────────────────────── */

/* ── Exclude collapsible section ─────────────────────────────────── */
.tour-price__exclude-wrap {
    border-top: 1px solid #e8e8e8;
    margin-top: 4px;
}

.tour-price__exclude-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 2px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.15s;
}

.tour-price__exclude-toggle:hover {
    opacity: 0.7;
}

.tour-price__exclude-toggle-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

.tour-price__exclude-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fdecea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0392b;
}

.tour-price__exclude-chevron {
    color: #ccc;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.tour-price__exclude-toggle[aria-expanded="true"] .tour-price__exclude-chevron {
    transform: rotate(180deg);
}

.tour-price__exclude-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding-bottom: 0;
}

.tour-price__exclude-panel.is-open {
    max-height: 1200px;
    padding-bottom: 24px;
}

.tour-price__exclude-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 6px;
}

.tour-price__exclude-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    padding: 8px 10px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    line-height: 1.4;
}

.tour-price__exclude-item-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fdecea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    color: #c0392b;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .tour-price__card {
        grid-template-columns: 340px 1fr;
    }
}

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

    .tour-price__card-right {
        border: 1px solid #e8e8e8;
    }

    .tour-price__value {
        font-size: 48px;
    }

    .tour-price__cta {
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .tour-price__inner {
        padding: 0 20px;
    }

    .tour-price__card-left,
    .tour-price__card-right {
        padding: 32px 28px;
    }

    .tour-price__value {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .tour-price__includes-grid {
        grid-template-columns: 1fr;
    }

    .tour-price__exclude-list {
        grid-template-columns: 1fr;
    }
}
