/* =========================================================
   SINGLE TOUR — bgt-tour-hero, highlights, booking section
   ========================================================= */

/* Hero compacto del tour */
.bgt-tour-hero {
    min-height: 60vh;
}

.bgt-tour-hero__badge {
    display: inline-block;
    background: var(--bgt-fucsia);
    color: #fff;
    font-family: var(--bgt-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.bgt-tour-hero__cta {
    margin-top: 1.5rem;
    display: inline-block;
}

/* ---- Highlights bar ---- */
.bgt-tour-highlights {
    background: var(--bgt-grafito);
    border-bottom: 3px solid var(--bgt-fucsia);
}

.bgt-tour-highlights__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}

.bgt-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 2rem;
    flex: 1;
    min-width: 160px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.bgt-highlight:last-child {
    border-right: none;
}

.bgt-highlight__icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.bgt-highlight__label {
    display: block;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 2px;
}

.bgt-highlight__value {
    display: block;
    font-family: var(--bgt-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.bgt-highlight__value--price {
    color: var(--bgt-amarillo);
}

.bgt-highlight__value--free {
    color: #00C853;
}

/* ---- Cuerpo del tour ---- */
.bgt-tour-body {
    padding: 4rem 0;
}

.bgt-tour-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.bgt-tour-content h3 { font-size: 1.3rem; margin: 1.5rem 0 .75rem; }
.bgt-tour-content p  { margin-bottom: 1.25rem; line-height: 1.8; }
.bgt-tour-content ul,
.bgt-tour-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* ---- Sección de reserva ---- */
.bgt-tour-booking-section {
    padding: 4rem 0 5rem;
}

.bgt-tour-booking-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--bgt-radius-lg);
    padding: 2.5rem;
}

/* =========================================================
   PAGE BOOK TOUR — hero + tour picker
   ========================================================= */

/* Hero compacto de la página */
.bgt-page-hero {
    background: var(--bgt-negro);
    padding: 7rem 0 3rem;
    text-align: center;
    border-bottom: 3px solid var(--bgt-fucsia);
}

.bgt-page-hero__title {
    font-family: var(--bgt-font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    text-transform: uppercase;
    margin: .5rem 0 1rem;
}

.bgt-page-hero__subtitle {
    color: rgba(245,240,235,.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ---- Tour Picker ---- */
.bgt-tour-picker {
    margin-bottom: 3rem;
}

.bgt-tour-picker__heading {
    font-family: var(--bgt-font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--bgt-negro);
    margin-bottom: 1.25rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--bgt-fucsia);
    display: inline-block;
}

.bgt-tour-picker__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

/* Tour option card */
.bgt-tour-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: var(--bgt-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    background: #fff;
    outline: none;
}

.bgt-tour-option:hover {
    border-color: var(--bgt-fucsia);
    transform: translateY(-3px);
    box-shadow: var(--bgt-shadow);
}

.bgt-tour-option--active {
    border-color: var(--bgt-fucsia);
    box-shadow: 0 0 0 3px rgba(232, 24, 90, .15);
}

.bgt-tour-option:focus-visible {
    box-shadow: 0 0 0 3px rgba(232, 24, 90, .4);
}

.bgt-tour-option__img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.bgt-tour-option__body {
    padding: 1rem 1.25rem 1.25rem;
}

.bgt-tour-option__badge {
    display: inline-block;
    background: var(--bgt-amarillo);
    color: var(--bgt-negro);
    font-family: var(--bgt-font-heading);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: .6rem;
}

.bgt-tour-option__title {
    font-family: var(--bgt-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bgt-negro);
    margin: 0 0 .5rem;
}

.bgt-tour-option__meta {
    display: flex;
    gap: 12px;
    font-size: .8rem;
    color: #888;
    margin-bottom: .6rem;
}

.bgt-tour-option__excerpt {
    font-size: .85rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* Checkmark de selección */
.bgt-tour-option__check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: var(--bgt-fucsia);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .2s ease, transform .2s ease;
}

.bgt-tour-option--active .bgt-tour-option__check {
    opacity: 1;
    transform: scale(1);
}

/* ---- Sección del formulario dinámico ---- */
.bgt-book-form-section {
    max-width: 680px;
}

/* Loading spinner */
.bgt-picker-loading {
    display: flex;
    justify-content: center;
    padding: 3rem;
}

.bgt-picker-loading span {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(232,24,90,.2);
    border-top-color: var(--bgt-fucsia);
    border-radius: 50%;
    animation: bgt-spin .7s linear infinite;
    display: block;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media ( max-width: 900px ) {
    .bgt-tour-highlights__inner {
        gap: 0;
    }
    .bgt-highlight {
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    .bgt-tour-booking-wrap {
        padding: 1.5rem 1rem;
    }
}

@media ( max-width: 640px ) {
    .bgt-tour-highlights__inner {
        flex-direction: column;
        gap: 0;
    }
    .bgt-highlight {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .bgt-tour-picker__grid {
        grid-template-columns: 1fr;
    }
    .bgt-book-form-section {
        max-width: 100%;
    }
}
