/**
 * Single Product (Ficha de Experiencia) — BajoNalón
 * Diseño basado en mockup product.html
 */

/* ──────────────────────────────────────────────────────────────
   1. FONDO, RESET Y HEADER
────────────────────────────────────────────────────────────── */

body.single-product {
    background-color: #fdfdfd;
}


/* ──────────────────────────────────────────────────────────────
   2. GALERÍA (dentro de la columna izquierda del wrapper)
────────────────────────────────────────────────────────────── */

.bn-pdp-gallery-wrap {
    margin-bottom: 36px;
}

.bn-pdp-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.bn-pdp-gallery-grid.no-side {
    grid-template-columns: 1fr;
    grid-template-rows: 420px;
}

.bn-pdp-gallery-main {
    grid-row: 1 / span 2;
    overflow: hidden;
}

.bn-pdp-gallery-grid.no-side .bn-pdp-gallery-main {
    grid-row: 1;
}

.bn-pdp-gallery-thumb {
    overflow: hidden;
}

.bn-pdp-gallery-main img,
.bn-pdp-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bn-pdp-gallery-main:hover img,
.bn-pdp-gallery-thumb:hover img {
    transform: scale(1.04);
}

.bn-pdp-gallery-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1D5F87;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.bn-pdp-gallery-btn:hover {
    background: #f4f6f8;
    transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────
   3. WRAPPER PRINCIPAL (2 columnas)
────────────────────────────────────────────────────────────── */

.bn-pdp-wrapper {
    max-width: 1450px;
    margin: 32px auto 80px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 52px;
    align-items: start;
}

/* ──────────────────────────────────────────────────────────────
   4. CABECERA DEL PRODUCTO
────────────────────────────────────────────────────────────── */

.bn-pdp-header {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.bn-pdp-category {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #e86a10;
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity 0.2s ease;
}

.bn-pdp-category:hover {
    opacity: 0.75;
}

.bn-pdp-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1d5f87;
    line-height: 1.2;
    margin: 0 0 18px;
}

/* Meta: rating, duración, ubicación, nivel */
.bn-pdp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    align-items: center;
}

.bn-pdp-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bn-pdp-meta i {
    color: #2b91af;
    font-size: 0.95rem;
}

.bn-pdp-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff8e1;
    color: #f39c12;
    padding: 5px 13px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.88rem;
}

.bn-pdp-rating-badge span {
    color: #999;
    font-weight: 400;
}

.bn-pdp-low-stock {
    color: #e74c3c !important;
    font-weight: 700 !important;
}

.bn-pdp-low-stock i {
    color: #e74c3c !important;
}

/* ──────────────────────────────────────────────────────────────
   5. SECCIONES
────────────────────────────────────────────────────────────── */

.bn-pdp-section {
    margin-bottom: 44px;
    padding-bottom: 36px;
    border-bottom: 1px solid #eee;
}

.bn-pdp-description {
    line-height: 1.7;
    font-size: 0.98rem;
}

.bn-pdp-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.bn-pdp-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1D5F87;
    margin: 0 0 20px;
}

/* ──────────────────────────────────────────────────────────────
   6. DESCRIPCIÓN
────────────────────────────────────────────────────────────── */

.bn-pdp-description p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}

.bn-pdp-description p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────────────────────────
   7. GRID DE CARACTERÍSTICAS
────────────────────────────────────────────────────────────── */

.bn-pdp-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.bn-pdp-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bn-pdp-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #f4f6f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    flex-shrink: 0;
}

.bn-pdp-feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    margin: 0 0 3px;
}

.bn-pdp-feature-text p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.bn-pdp-feature-text a {
    color: #1d5f87;
    text-decoration: underline;
    transition: color 0.2s;
}

.bn-pdp-feature-text a:hover {
    color: #e86a10;
}

/* ──────────────────────────────────────────────────────────────
   8. POLÍTICA DE CANCELACIÓN
────────────────────────────────────────────────────────────── */

.bn-pdp-cancellation {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    border-radius: 14px;
    padding: 20px 22px;
}

.bn-pdp-cancellation>i {
    color: #2b91af;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.bn-pdp-cancellation p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   9. VALORACIONES (WooCommerce reviews)
────────────────────────────────────────────────────────────── */

.bn-pdp-reviews #reviews {
    outline: none;
}

/* Ocultar título redundante de WooCommerce */
.bn-pdp-reviews .woocommerce-Reviews-title {
    display: none;
}

/* Lista de Comentarios */
.bn-pdp-reviews .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bn-pdp-reviews .comment-list li.review {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bn-pdp-reviews .comment-list li.review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bn-pdp-reviews .comment_container {
    display: flex;
    gap: 22px;
}

.bn-pdp-reviews img.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f4f6f8;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bn-pdp-reviews .comment-text {
    flex: 1;
}

.bn-pdp-reviews .comment-text .meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bn-pdp-reviews .woocommerce-review__author {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1D5F87;
    margin-bottom: 2px;
}

.bn-pdp-reviews .woocommerce-review__dash {
    display: none;
}

.bn-pdp-reviews .woocommerce-review__published-date {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
}

.bn-pdp-reviews .description p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Rating en la lista */
.bn-pdp-reviews .star-rating {
    float: none;
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #f59e0b;
    /* Ambar/Dorado */
    width: 5.4em;
}

/* Mensaje: No hay valoraciones */
.woocommerce-noreviews {
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 20px;
    color: #64748b;
    text-align: center;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Fila meta: fecha + verificado */
.bn-review-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bn-review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
}

.bn-review-verified i {
    font-size: 0.8rem;
}

/* ── Gate: no comprador / ya valorado ── */
.bn-review-gate {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 16px;
    padding: 28px 30px;
    color: #64748b;
    margin-top: 8px;
}

.bn-review-gate>i {
    font-size: 1.6rem;
    flex-shrink: 0;
    color: #94a3b8;
}

.bn-review-gate p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bn-review-gate--done>i {
    color: #10b981;
}

.bn-review-gate__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bn-review-gate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1d5f87;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease;
    width: fit-content;
}

.bn-review-gate-btn:hover {
    background: #164d6e;
    color: #fff;
}

/* ── Formulario de valoración ── */
.bn-review-form-wrap {
    padding-top: 32px;
    border-top: 1px solid #edf2f7;
}

.bn-review-form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1D5F87;
    margin: 0 0 24px;
}

.bn-review-form-title i {
    color: #1d5f87;
}

.bn-review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.bn-review-form__stars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bn-review-form__stars-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1D5F87;
}

.bn-review-form__stars-picker {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bn-star-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    font-size: 1.7rem;
    color: #d1d5db;
    transition: color .12s ease, transform .12s ease;
    line-height: 1;
}

.bn-star-btn:hover,
.bn-star-btn.active {
    color: #f59e0b;
}

.bn-star-btn:hover {
    transform: scale(1.15);
}

.bn-review-form__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bn-review-form__body label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1D5F87;
}

.bn-review-form__body textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.65;
    resize: vertical;
    min-height: 110px;
    background: #fff;
    transition: border-color .2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.bn-review-form__body textarea:focus {
    outline: none;
    border-color: #1d5f87;
}

.bn-review-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e74f08;
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
    width: fit-content;
}

.bn-review-form__submit:hover {
    background: #c8430b;
    transform: translateY(-1px);
}

.bn-review-form__submit:active {
    transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────────
   10. WIDGET DE RESERVA (columna derecha sticky)
────────────────────────────────────────────────────────────── */

.bn-pdp-booking-col {
    position: sticky;
    top: 120px;
    /* Ajustado para librar el header fijo */
    height: fit-content;
    align-self: start;
    z-index: 10;
    transition: top 0.3s ease;
}

/* Compensación para la barra de administración de WordPress */
.admin-bar .bn-pdp-booking-col {
    top: 152px;
    /* 120px + 32px de la admin bar */
}

.bn-booking-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    color: var(--color-text);
    max-width: 360px;
    width: 100%;
}

/* Variantes semánticas */
.bn-booking-widget--simple {
    padding: 18px;
}

.bn-booking-widget--external {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-background-light) 100%);
    border-color: rgba(0, 0, 0, 0.03);
}

.bn-booking-widget--variable .bn-booking-mode-copy h3 {
    margin-top: 0;
    font-size: 1rem;
    color: var(--color-text);
}

.bn-booking-widget .single_add_to_cart_button[disabled],
.bn-booking-widget .single_add_to_cart_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Botón de reserva múltiple (variable): asegurar estilos correctos */
#bn-multi-add-btn {
    width: 100%;
    height: 52px;
    margin-top: 12px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#bn-multi-add-btn:not(:disabled):not(.disabled):hover {
    transform: translateY(-2px);
    filter: brightness(.97);
    box-shadow: 0 10px 30px rgba(231, 79, 8, 0.12);
}

#bn-multi-add-btn:disabled,
#bn-multi-add-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Precio ── */
.bn-booking-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.bn-booking-price-amount .amount {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-secondary) !important;
    line-height: 1;
}

.bn-booking-price-unit {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.bn-booking-separator {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 20px;
}

/* ── Configuración de Reserva ── */
.bn-booking-config {
    margin-bottom: 20px;
}

.bn-booking-config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bn-booking-qty-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.bn-booking-qty-label i,
.bn-booking-qty-label svg {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.bn-booking-stock-badge {
    font-size: 0.75rem;
    font-weight: 700;
    background: #f8fafc;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.bn-booking-stock-badge.is-low {
    background: #fff1f2;
    color: #be123c;
    border-color: #fecdd3;
}

/* ── Formulario y Cantidad ── */
.bn-booking-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Person types (variable products): controles para adultos/niños ── */
.bn-person-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.bn-person-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.03);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.bn-person-type__meta {
    display: flex;
    flex-direction: column;
}

.bn-person-type__label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.bn-person-type__price {
    font-size: 0.92rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.bn-person-type__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bn-person-type__controls input.bn-person-count {
    width: 68px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e6eef6;
    text-align: center;
    font-weight: 700;
    font-size: 0.98rem;
    background: transparent;
}

.bn-person-type .bn-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bn-person-type .bn-qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bn-booking-form-wrap button[type="submit"] {
    background-color: var(--color-primary) !important;
    margin-top: 10px;
    height: 40px !important;
}

.bn-booking-widget .quantity {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 4px;
    width: 100% !important;
}

.bn-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1d5f87;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.bn-qty-btn:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.bn-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bn-booking-widget .quantity input.qty {
    flex: 1;
    border: none !important;
    background: transparent !important;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    padding: 0 !important;
}

/* ── Botón Principal ── */
.bn-booking-widget .single_add_to_cart_button {
    width: 100%;
    height: 52px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bn-booking-widget .single_add_to_cart_button:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(.97);
    box-shadow: 0 10px 30px rgba(231, 79, 8, 0.12);
}

.bn-booking-widget--external .single_add_to_cart_button,
.bn-booking-widget--external .bn-booking-contact-btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.bn-booking-widget--external .bn-booking-contact-box {
    background: #f0fdfa;
    border-color: rgba(0, 109, 148, 0.08);
}

/* Forzar apariencia del CTA de contacto (correo/externo) y sus pseudoclases */
.bn-pdp-booking-col .bn-booking-widget--external a.single_add_to_cart_button.bn-booking-contact-btn,
.bn-pdp-booking-col .bn-booking-widget--external a.single_add_to_cart_button.bn-booking-contact-btn:link,
.bn-pdp-booking-col .bn-booking-widget--external a.single_add_to_cart_button.bn-booking-contact-btn:visited,
.bn-pdp-booking-col .bn-booking-widget--external a.single_add_to_cart_button.bn-booking-contact-btn:hover,
.bn-pdp-booking-col .bn-booking-widget--external a.single_add_to_cart_button.bn-booking-contact-btn:active {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bn-pdp-booking-col .bn-booking-widget--external a.single_add_to_cart_button.bn-booking-contact-btn:hover {
    filter: brightness(.96) !important;
    transform: translateY(-1px) !important;
}

/* ── Resumen de Precio ── */
.bn-booking-summary {
    background: transparent;
    border: none;
    padding: 0;
    margin: 8px 0 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.bn-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bn-summary-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-right: 12px;
}

.bn-summary-total {
    font-size: 1rem;
    font-weight: 700;
    color: #1d5f87;
}

.bn-summary-row--total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 2px solid #1d5f87;
}

.bn-summary-row--total .bn-summary-label {
    font-weight: 700;
    color: #1a120e;
}

.bn-summary-row--total .bn-summary-total {
    font-size: 1.15rem;
}

/* ── Trust Badges ── */
.bn-booking-trust {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bn-booking-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bn-trust-icon {
    font-size: 0.85rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.bn-trust-text strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

/* ── Estado Agotado ── */
.bn-booking-sold-out {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.bn-booking-sold-out i {
    color: #dc2626;
}

.bn-booking-sold-out-text strong {
    display: block;
    font-size: 0.9rem;
    color: #991b1b;
}

.bn-booking-sold-out-text span {
    font-size: 0.8rem;
    color: #b91c1c;
}

.bn-booking-btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: #f1f5f9;
    color: #1d5f87;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

/* ──────────────────────────────────────────────────────────────
   13. RESPONSIVE — tablet ≤ 1024px
────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .bn-pdp-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 24px;
    }

    .bn-pdp-booking-col {
        position: static;
        max-width: 560px;
        width: 100%;
    }

    .bn-pdp-gallery-grid {
        grid-template-rows: 220px 220px;
    }

    .bn-pdp-title {
        font-size: 2rem;
    }

    .bn-pdp-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ──────────────────────────────────────────────────────────────
   14. RESPONSIVE — móvil ≤ 768px
────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .bn-pdp-gallery-grid {
        border-radius: 14px;
        grid-template-rows: 260px;
        grid-template-columns: 1fr;
    }

    .bn-pdp-gallery-main {
        grid-row: 1;
    }

    .bn-pdp-gallery-thumb {
        display: none;
    }

    .bn-pdp-wrapper {
        padding: 0 5% 100px;
        margin-top: 20px;
    }

    .bn-pdp-title {
        font-size: 1.7rem;
    }

    .bn-pdp-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bn-pdp-section {
        margin-bottom: 32px;
        padding-bottom: 26px;
    }

    /* Ocultar botón de reserva del widget en móvil (usar la barra sticky) */
    .bn-booking-widget .single_add_to_cart_button {
        display: flex;
    }
}

/* ──────────────────────────────────────────────────────────────
   15. REDUCED MOTION
────────────────────────────────────────────────────────────── */

/* ──────────────────────────────────────────────────────────────
   16. TOAST — sistema compartido con el carrito
────────────────────────────────────────────────────────────── */

.bn-toast-container {
    position: fixed;
    top: 45px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    width: 320px;
    max-width: calc(100vw - 48px);
}

@keyframes bn-toast-in {
    from {
        transform: translateX(calc(100% + 24px));
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bn-toast-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(calc(100% + 24px));
        opacity: 0;
    }
}

@keyframes bn-toast-progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.bn-toast {
    background: #fff;
    border-radius: 14px;
    padding: 17px 19px 17px 23px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: all;
    animation: bn-toast-in 0.4s cubic-bezier(.34, 1.56, .64, 1) forwards;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #006D94;
}

.bn-toast.is-leaving {
    animation: bn-toast-out 0.3s ease forwards;
}

.bn-toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #006D94;
    border-radius: 0 3px 0 0;
    animation: bn-toast-progress 4s linear forwards;
}

.bn-toast--error {
    border-left-color: #e74c3c;
}

.bn-toast--error::after {
    background: #e74c3c;
}

.bn-toast--info {
    border-left-color: #E74F08;
}

.bn-toast--info::after {
    background: #E74F08;
}

.bn-toast__icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    color: #006D94;
    margin-top: 1px;
}

.bn-toast--error .bn-toast__icon {
    color: #e74c3c;
}

.bn-toast--info .bn-toast__icon {
    color: #E74F08;
}

.bn-toast__body {
    flex-grow: 1;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.45;
}

.bn-toast:hover::after {
    animation-play-state: paused;
}

@media (max-width: 480px) {
    .bn-toast-container {
        top: 150px;
        right: 12px;
        left: 12px;
        width: auto;
    }
}

.bn-pdp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.bn-pdp-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #475569;
}

.bn-pdp-list li::before {
    content: '';
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2b91af;
    box-shadow: 0 0 0 5px rgba(43, 145, 175, 0.12);
}

.bn-pdp-subtitle {
    margin: 0 0 14px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d5f87;
}

.bn-pdp-contact-wrap {
    margin-top: 28px;
    padding: 24px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.bn-pdp-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.bn-pdp-contact-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 0.95rem;
}

.bn-pdp-contact-label {
    font-weight: 700;
    color: #1e293b;
}

.bn-pdp-contact-value,
.bn-pdp-contact-value a {
    color: #475569;
}

.bn-pdp-contact-value a:hover {
    color: #1d5f87;
}

.bn-pdp-price-list,
.bn-pdp-note-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.bn-pdp-price-card,
.bn-pdp-note-card {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background: linear-gradient(180deg, #ffffff 0%, var(--color-background-light) 100%);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    transition: transform .18s cubic-bezier(.2, .8, .2, 1), box-shadow .18s ease;
}

.bn-pdp-price-card:hover,
.bn-pdp-note-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.bn-pdp-note-card--accent {
    background: #fff7ed;
    border-color: #fed7aa;
}

.bn-pdp-price-card h4,
.bn-pdp-note-card h3 {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--color-secondary);
}

.bn-pdp-price-card p,
.bn-pdp-note-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.4;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bn-pdp-price-card p:last-child,
.bn-pdp-note-card p:last-child {
    margin-bottom: 0;
}

.bn-pdp-price-card p strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(231, 79, 8, 0.06);
    display: inline-block;
}

.bn-booking-price-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-secondary) !important;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.bn-booking-config-header {
    align-items: flex-start;
}

.bn-booking-mode-copy h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 800;
    color: #1d5f87;
}

.bn-booking-mode-copy p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

.bn-booking-form-wrap form.cart,
.bn-booking-form-wrap .variations_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bn-booking-form-wrap table.variations {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 0;
}

.bn-booking-form-wrap table.variations td,
.bn-booking-form-wrap table.variations th {
    padding: 0;
    text-align: left;
}

.bn-booking-form-wrap table.variations label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
}

.bn-booking-form-wrap table.variations select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: #fff;
    color: #1e293b;
    font-family: inherit;
    font-size: 0.95rem;
}

.bn-booking-form-wrap .reset_variations {
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1d5f87;
    text-decoration: underline;
}

.bn-booking-form-wrap .woocommerce-variation-price .price {
    font-size: 1rem;
    font-weight: 700;
    color: #1d5f87;
}

.bn-booking-form-wrap .woocommerce-variation-description p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
}

.bn-booking-note {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.bn-booking-note i {
    color: #2b91af;
    margin-top: 2px;
}

.bn-booking-note p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #475569;
}

.bn-booking-contact-box {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.bn-booking-contact-box__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bn-booking-contact-box__body strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #1e3a8a;
}

.bn-booking-contact-box__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #334155;
}

.bn-booking-contact-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bn-booking-widget--external .bn-booking-price-amount {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .bn-pdp-contact-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .bn-pdp-gallery-main img,
    .bn-pdp-gallery-thumb img,
    .bn-booking-widget .single_add_to_cart_button {
        transition: none;
    }
}