/* Aerodiverti editorial shortcode [aerodiverti_product id="X"] — v1.2
 * Everything scoped under .adv-root so it cannot leak to the theme (G5 Helium)
 * or to other Elementor widgets on the page.
 * The WCCO form is mounted inside .adv-wcco-mount — intentionally unstyled
 * so the third-party plugin keeps rendering its own look & feel.
 */

.adv-root {
	--ivory: #faf6ef;
	--ivory-2: #f3ede0;
	--cream: #ece4d2;
	--ink: #1a1410;
	--ink-soft: #4a3f35;
	--ink-mute: #7a6e62;
	--line: #e6ddcc;
	--line-strong: #d4c8b1;
	--rosa: #ff2d7a;
	--rosa-deep: #d1105a;
	--rosa-soft: #ffe4ee;
	--ocre: #c8663a;
	--ocre-deep: #9a4a26;
	--ok: #2e7d4f;
	--warn: #c87a1a;
	--shadow-md: 0 4px 12px rgba(26, 20, 16, 0.08), 0 12px 32px rgba(26, 20, 16, 0.06);
	--shadow-lg: 0 10px 40px rgba(26, 20, 16, 0.12), 0 30px 80px rgba(26, 20, 16, 0.10);

	background: var(--ivory);
	color: var(--ink);
	font-family: 'Geist', Inter, system-ui, -apple-system, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	position: relative;
}

.adv-root.adv-layout-bleed {
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.adv-root *,
.adv-root *::before,
.adv-root *::after {
	box-sizing: border-box;
}

.adv-root img {
	display: block;
	max-width: 100%;
	height: auto;
}

.adv-root button {
	font: inherit;
	color: inherit;
}

.adv-root .adv-serif {
	font-family: 'Fraunces', ui-serif, Georgia, serif;
	font-optical-sizing: auto;
}

.adv-root .adv-mono {
	font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* Announcement bar */
.adv-announcement {
	background: var(--ink);
	color: #fff;
	padding: 10px 20px;
	text-align: center;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 500;
}
.adv-announcement b { color: #ffb0ce; }

/* Hero */
.adv-hero {
	position: relative;
	height: 480px;
	overflow: hidden;
	background: linear-gradient(180deg, #2d1b4e 0%, #7a3d6e 30%, #e8735c 65%, #ffc89c 90%, #ffe8d4 100%);
}
.adv-hero__gradient {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, transparent 40%, rgba(26, 20, 16, .6) 100%);
}
.adv-hero__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.adv-hero__content {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 40px; color: #fff;
}
.adv-hero__eyebrow {
	font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
	opacity: .85; margin-bottom: 12px;
}
.adv-hero__title {
	font-family: 'Fraunces', serif;
	font-size: clamp(32px, 5vw, 56px);
	line-height: .98;
	font-weight: 300;
	letter-spacing: -.03em;
	max-width: 900px;
	margin: 0;
}
.adv-hero__title em {
	font-style: italic;
	color: #ffb0ce;
	font-weight: 300;
}
.adv-hero__weather {
	position: absolute; top: 24px; right: 24px;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 10px 14px;
	border-radius: 100px;
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 12px; font-weight: 500;
	color: var(--ink);
}
.adv-hero__weather .dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--ok);
	box-shadow: 0 0 0 3px rgba(46, 125, 79, .2);
}

.adv-hero.adv-hero--clickable { cursor: zoom-in; }
.adv-hero__zoom-hint {
	position: absolute; top: 24px; left: 24px;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 8px 14px;
	border-radius: 100px;
	font-size: 11px; font-weight: 600;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--ink);
	display: inline-flex; align-items: center; gap: 6px;
	pointer-events: none;
}
.adv-gallery__item { cursor: zoom-in; transition: opacity .2s; }
.adv-gallery__item:hover { opacity: .9; }
.adv-gallery__item--more { position: relative; }
.adv-gallery__item--more::before {
	content: ""; position: absolute; inset: 0;
	background: rgba(26, 20, 16, .55);
}
.adv-gallery__item--more::after {
	content: "+ " attr(data-extra) " fotos";
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-family: 'Fraunces', serif;
	font-size: clamp(16px, 1.6vw, 22px);
	font-style: italic;
	letter-spacing: -.01em;
	text-align: center;
	padding: 0 8px;
}

/* — Lightbox modal (fullscreen image viewer) — */
.adv-lb {
	position: fixed; inset: 0;
	background: rgba(10, 7, 5, .96);
	z-index: 99999;
	display: none;
	align-items: center; justify-content: center;
	animation: advLbFade .2s ease-out;
}
.adv-lb.is-open { display: flex; }
@keyframes advLbFade { from { opacity: 0; } to { opacity: 1; } }

.adv-lb__img {
	max-width: 90vw; max-height: 90vh;
	object-fit: contain;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
	border-radius: 4px;
}

.adv-lb__close, .adv-lb__nav {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .18);
	color: #fff;
	width: 48px; height: 48px;
	border-radius: 50%;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	font-size: 20px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background .15s, border-color .15s;
	font-family: inherit;
	line-height: 1;
}
.adv-lb__close:hover, .adv-lb__nav:hover {
	background: var(--rosa);
	border-color: var(--rosa);
}
.adv-lb__close { top: 24px; right: 24px; }
.adv-lb__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.adv-lb__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

.adv-lb__counter {
	position: absolute; bottom: 24px; left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, .5);
	padding: 8px 16px;
	border-radius: 100px;
	color: #fff;
	font-size: 12px; letter-spacing: .12em;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

@media (max-width: 600px) {
	.adv-lb__close, .adv-lb__nav { width: 40px; height: 40px; }
	.adv-lb__close { top: 12px; right: 12px; }
	.adv-lb__nav--prev { left: 8px; }
	.adv-lb__nav--next { right: 8px; }
	.adv-hero__zoom-hint { top: 12px; left: 12px; padding: 6px 10px; font-size: 9px; }
}

/* Gallery strip — never escapes its container, even in contained mode.
 * Layout adaptativo según count: --1, --2, --3, --4 (modificadores en PHP).
 * Doble selector + !important para defeat overrides de temas (G5 Helium, etc.) */
.adv-root .adv-gallery {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important; /* default desktop, sobrescrito por --N */
	gap: 2px;
	background: var(--line);
	border-bottom: 1px solid var(--line);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
}
/* Grid columns por count (DESKTOP) */
.adv-root .adv-gallery.adv-gallery--1 { grid-template-columns: 1fr !important; }
.adv-root .adv-gallery.adv-gallery--2 { grid-template-columns: 1fr 1fr !important; }
.adv-root .adv-gallery.adv-gallery--3 { grid-template-columns: 1fr 1fr 1fr !important; }
.adv-root .adv-gallery.adv-gallery--4 { grid-template-columns: 1fr 1fr 1fr 1fr !important; }

.adv-root .adv-gallery__item {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 4/3;
	background-color: var(--ivory-2);
	width: 100%;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

/* Main grid */
.adv-main {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 60px;
	padding: 56px 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.adv-trust-row {
	display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
	margin-bottom: 10px;
	font-size: 12px; color: var(--ink-soft);
}
.adv-trust-row .adv-stars { color: var(--rosa); }
.adv-trust-row b { color: var(--ink); }
.adv-trust-row .dot {
	width: 4px; height: 4px; border-radius: 50%;
	background: var(--line-strong);
}

.adv-product-title {
	font-family: 'Fraunces', serif;
	font-size: clamp(26px, 3.2vw, 38px);
	line-height: 1.05;
	letter-spacing: -.02em;
	font-weight: 400;
	margin: 0 0 20px;
	color: var(--ink);
}
.adv-product-title em {
	font-style: italic;
	color: var(--rosa-deep);
	font-weight: 300;
}

.adv-summary {
	font-size: 17px;
	line-height: 1.55;
	color: var(--ink-soft);
	max-width: 560px;
	margin-bottom: 28px;
}

/* Specs */
.adv-specs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line-strong);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 36px;
}
.adv-spec {
	padding: 18px;
	background: var(--ivory);
	border-right: 1px solid var(--line-strong);
}
.adv-spec:last-child { border-right: 0; }
.adv-spec__k {
	font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
	color: var(--ink-mute); margin-bottom: 8px;
}
.adv-spec__v {
	font-family: 'Fraunces', serif;
	font-size: 26px; letter-spacing: -.02em; line-height: 1;
	color: var(--ink);
}
.adv-spec__s { font-size: 11px; color: var(--ink-mute); margin-top: 4px; }

/* Itinerary */
.adv-section-eyebrow {
	font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
	color: var(--rosa-deep); font-weight: 600; margin-bottom: 18px;
}
.adv-itinerary { border-top: 1px solid var(--line); }
.adv-itin {
	display: grid; grid-template-columns: 80px 1fr; gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}
.adv-itin__t {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px; color: var(--rosa-deep);
	font-weight: 600; padding-top: 2px;
}
.adv-itin__h {
	font-family: 'Fraunces', serif;
	font-size: 19px; margin-bottom: 4px; letter-spacing: -.01em;
	color: var(--ink);
}
.adv-itin__d { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* Included / Not included */
.adv-include-grid {
	margin-top: 44px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.adv-include__title {
	font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
	color: var(--ink-soft); margin-bottom: 14px; font-weight: 600;
}
.adv-include ul {
	list-style: none; padding: 0; margin: 0;
	font-size: 13px; color: var(--ink-soft); line-height: 2;
}
.adv-include--no ul { color: var(--ink-mute); }

/* Booking card */
.adv-booking-wrap { position: relative; }
.adv-booking {
	position: sticky; top: 20px;
	background: #fff;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	padding: 26px;
	box-shadow: var(--shadow-md);
}

.adv-booking__price-row {
	display: flex; justify-content: space-between; align-items: baseline;
	margin-bottom: 4px;
}
.adv-booking__price-label {
	font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
	color: var(--ink-mute);
}
.adv-booking__price-wrap { margin-top: 2px; }
.adv-booking__price {
	font-family: 'Fraunces', serif;
	font-size: 36px; letter-spacing: -.02em; line-height: 1;
	color: var(--ink);
}
.adv-booking__price .woocommerce-Price-amount {
	font-family: inherit;
	font-size: inherit;
}
.adv-booking__msi {
	font-size: 11px; color: var(--ok);
	margin-top: 4px; font-weight: 500;
}
.adv-booking__divider {
	height: 1px; background: var(--line); margin: 20px 0;
}

/* WCCO mount — we delegate to WC's [product_page] shortcode, which renders
 * the FULL single product (gallery + title + price + summary + form + tabs + related).
 * v1.2.3: nuclear reset to contain everything inside the booking card.
 *
 * All overrides scoped to .adv-wcco-mount so they NEVER leak to the rest
 * of the site (cart, checkout, normal product pages, etc.)
 */

/* — Universal reset: every direct or nested child returns to a sane baseline — */
.adv-wcco-mount,
.adv-wcco-mount * {
	box-sizing: border-box !important;
	max-width: 100% !important;
	float: none !important;
	position: static !important;
}

/* — Container chain: force single-column block flow at every level — */
.adv-wcco-mount,
.adv-wcco-mount > .woocommerce,
.adv-wcco-mount .single-product,
.adv-wcco-mount .product,
.adv-wcco-mount .summary,
.adv-wcco-mount .summary.entry-summary,
.adv-wcco-mount .woocommerce-notices-wrapper {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	clear: both !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

/* — Hide WC bits we already render above or don't want in a booking card.
 *   Aggressive list: includes containers WCCO/themes sometimes wrap things in.  — */
.adv-wcco-mount .woocommerce-product-gallery,
.adv-wcco-mount .images,
.adv-wcco-mount div.images,
.adv-wcco-mount .flex-viewport,
.adv-wcco-mount .flex-control-thumbs,
.adv-wcco-mount .woocommerce-breadcrumb,
.adv-wcco-mount .product_title,
.adv-wcco-mount .entry-title,
.adv-wcco-mount h1.entry-title,
.adv-wcco-mount .woocommerce-product-details__short-description,
.adv-wcco-mount .product_meta,
.adv-wcco-mount .related,
.adv-wcco-mount .upsells,
.adv-wcco-mount .woocommerce-tabs,
.adv-wcco-mount .wc-tabs-wrapper,
.adv-wcco-mount #tab-description,
.adv-wcco-mount #tab-additional_information,
.adv-wcco-mount #tab-reviews,
.adv-wcco-mount .woocommerce-Reviews,
.adv-wcco-mount .woocommerce-product-rating,
.adv-wcco-mount .woocommerce-product-attributes,
.adv-wcco-mount .stock {
	display: none !important;
}

/* — Belt-and-suspenders: kill any white box wrapper from WCCO/WC that
 *   visually breaks the booking card into "two cards". — */
.adv-wcco-mount .summary,
.adv-wcco-mount .summary > div:not(.woocommerce-notices-wrapper),
.adv-wcco-mount form.cart {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* — Hide WC's $0.00 (the editorial card already shows price via $msi_label and
 *   WCCO calculates the real total at the bottom) — */
.adv-wcco-mount .summary > p.price,
.adv-wcco-mount p.price {
	display: none !important;
}

/* — Make the form natural inside our card — */
.adv-wcco-mount form.cart {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	display: block !important;
	width: 100% !important;
}

/* — Pretty up WCCO's option blocks to feel like our editorial card — */
.adv-wcco-mount .phoen_uuyrre,
.adv-wcco-mount .phoen_main_accordian {
	background: transparent !important;
	border: 0 !important;
	margin: 0 0 16px !important;
}
.adv-wcco-mount .phoen_uuyrre .phoen_normal_yyt,
.adv-wcco-mount .product-option-div h3 {
	font-size: 11px !important;
	letter-spacing: .18em !important;
	text-transform: uppercase !important;
	color: var(--ink-mute) !important;
	font-weight: 600 !important;
	margin: 0 0 8px !important;
	font-family: 'Geist', sans-serif !important;
}
.adv-wcco-mount .product-option-div {
	margin-bottom: 14px;
}
.adv-wcco-mount .product-option-div .form-row {
	margin: 0 !important;
	padding: 0 !important;
}
.adv-wcco-mount select.custom-options,
.adv-wcco-mount input.custom-options[type="text"],
.adv-wcco-mount input.date_time_picker {
	width: 100% !important;
	padding: 10px 12px !important;
	border: 1px solid var(--line-strong) !important;
	border-radius: 4px !important;
	font-size: 13px !important;
	background: #fff !important;
	color: var(--ink) !important;
	box-sizing: border-box !important;
}
.adv-wcco-mount .phoen_main_accordian h3.ui-accordion-header {
	background: var(--ivory-2) !important;
	border: 1px solid var(--line) !important;
	border-radius: 4px !important;
	padding: 10px 12px !important;
	font-size: 12px !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: var(--ink) !important;
	font-weight: 600 !important;
	cursor: pointer;
}
.adv-wcco-mount .phoen_main_accordian h3.ui-accordion-header.ui-state-active {
	background: var(--rosa-soft) !important;
	border-color: var(--rosa) !important;
	color: var(--rosa-deep) !important;
}
.adv-wcco-mount input[type="checkbox"] {
	accent-color: var(--rosa);
}
.adv-wcco-mount #product-options-total {
	background: var(--ivory-2) !important;
	padding: 14px !important;
	border-radius: 4px !important;
	margin: 16px 0 !important;
	font-size: 12px !important;
}
.adv-wcco-mount #product-options-total dl {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 6px !important;
	margin: 0 !important;
}
.adv-wcco-mount #product-options-total dt {
	font-size: 11px !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: var(--ink-mute) !important;
	margin: 0 !important;
	flex: 0 1 auto !important;
}
.adv-wcco-mount #product-options-total dd {
	font-family: 'Fraunces', serif !important;
	font-size: 22px !important;
	color: var(--ink) !important;
	margin: 0 !important;
}
.adv-wcco-mount #product-options-total .phoen_belo_head dt:first-child {
	flex: 1 0 100%;
}

/* — The CTA button: make it our pink primary regardless of theme defaults — */
.adv-wcco-mount .single_add_to_cart_button,
.adv-wcco-mount button.single_add_to_cart_button {
	width: 100% !important;
	background: var(--rosa) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 14px 0 !important;
	border-radius: 4px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: .02em !important;
	cursor: pointer !important;
	margin-top: 4px !important;
	box-shadow: 0 8px 20px rgba(255, 45, 122, .25) !important;
	transition: background .15s !important;
	text-transform: none !important;
	line-height: 1.2 !important;
}
.adv-wcco-mount .single_add_to_cart_button:hover,
.adv-wcco-mount button.single_add_to_cart_button:hover {
	background: var(--rosa-deep) !important;
}
.adv-wcco-mount .single_add_to_cart_button:disabled,
.adv-wcco-mount button.single_add_to_cart_button:disabled {
	opacity: .5 !important;
	cursor: not-allowed !important;
}

/* — Trust row: prevent awkward "Cert. DGAC" on its own line on narrow widths — */
.adv-trust-row { line-height: 1.6; }
.adv-trust-row > span { white-space: nowrap; }
@media (max-width: 900px) {
	.adv-trust-row > span { white-space: normal; }
}

/* Fallback box if [product_page] returns empty / something crashes */
.adv-fallback {
	background: #fff3ee;
	border: 1px solid #ffd4b8;
	border-radius: 4px;
	padding: 14px;
	font-size: 13px;
	color: var(--ocre-deep);
	text-align: center;
}
.adv-fallback p { margin: 0 0 6px; }
.adv-fallback p:last-child { margin: 0; }
.adv-fallback-link {
	color: var(--rosa-deep);
	font-weight: 600;
	text-decoration: underline;
}
.adv-wcco-mount .single_add_to_cart_button,
.adv-wcco-mount button.single_add_to_cart_button {
	width: 100%;
	background: var(--rosa);
	color: #fff;
	border: 0;
	padding: 14px 0;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	cursor: pointer;
	margin-top: 10px;
	box-shadow: 0 8px 20px rgba(255, 45, 122, .25);
	transition: background .15s;
}
.adv-wcco-mount .single_add_to_cart_button:hover,
.adv-wcco-mount button.single_add_to_cart_button:hover {
	background: var(--rosa-deep);
}
.adv-wcco-mount #product-options-total {
	background: var(--ivory-2);
	padding: 10px 12px;
	border-radius: 4px;
	margin: 10px 0 0;
	font-size: 12px;
}
.adv-wcco-mount #product-options-total dl {
	display: flex; justify-content: space-between; align-items: center;
	flex-wrap: wrap; gap: 4px; margin: 0;
}
.adv-wcco-mount #product-options-total dt {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--ink-mute); margin: 0; flex: 1 0 50%;
}
.adv-wcco-mount #product-options-total dd {
	font-family: 'Fraunces', serif;
	font-size: 18px; color: var(--ink);
	margin: 0;
}

/* Trust bar under CTA */
.adv-trust-bar {
	display: flex; justify-content: center; gap: 14px;
	margin-top: 16px;
	font-size: 10px; color: var(--ink-mute);
	letter-spacing: .08em; text-transform: uppercase;
	flex-wrap: wrap;
}

.adv-urgency {
	margin-top: 16px;
	padding: 10px 12px;
	background: #fff3ee;
	border: 1px solid #ffd4b8;
	border-radius: 4px;
	font-size: 12px;
	color: var(--ocre-deep);
	display: flex; align-items: center; gap: 8px;
}
.adv-urgency .dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--ocre);
	animation: adv-pulse 1.5s infinite;
	flex-shrink: 0;
}
@keyframes adv-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .4; }
}

/* Social proof band */
.adv-social {
	background: var(--ink);
	color: #fff;
	padding: 56px 40px;
}
.adv-social__inner {
	max-width: 1400px; margin: 0 auto;
	display: grid; grid-template-columns: 1fr 2fr;
	gap: 60px; align-items: center;
}
.adv-social__eyebrow {
	font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
	color: #ffb0ce; margin-bottom: 12px; font-weight: 600;
}
.adv-social__title {
	font-family: 'Fraunces', serif;
	font-size: 40px; line-height: 1.05;
	font-weight: 300; letter-spacing: -.02em;
	margin: 0; color: #fff;
}
.adv-social__title em {
	font-style: italic; color: #ffb0ce; font-weight: 300;
}
.adv-testimonials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
/* If only 1 testimonial → take full width single column (no awkward half) */
.adv-testimonials.adv-testimonials--1 {
	grid-template-columns: 1fr;
	max-width: 720px;
}
/* 3 or 4 testimonials → 2 columns still, wraps to 2 rows */
.adv-testimonials.adv-testimonials--3,
.adv-testimonials.adv-testimonials--4 {
	grid-template-columns: 1fr 1fr;
}
.adv-testimonial {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 24px;
	border-radius: 4px;
}
.adv-testimonial .stars { color: #ffb0ce; margin-bottom: 10px; font-size: 13px; }
.adv-testimonial blockquote {
	font-family: 'Fraunces', serif;
	font-size: 17px; line-height: 1.45;
	font-style: italic;
	margin: 0 0 14px;
	font-weight: 300;
	color: #fff;
}
.adv-testimonial cite {
	font-size: 12px; color: #ffb0ce; letter-spacing: .08em;
	font-style: normal;
}
.adv-testimonial cite .date {
	color: rgba(255, 255, 255, .4);
	margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════════
 *  RESPONSIVE  — 3 niveles claros
 *    DESKTOP   ≥ 1100px  (default rules above this block)
 *    TABLET    768-1099px
 *    MOBILE    < 768px
 *  Ya no hay "dead zone" entre 600 y 1100 donde el specs queda
 *  apretado en 4 columnas.
 * ═══════════════════════════════════════════════════════════ */

/* —— TABLET + MOBILE shared adjustments (apply ≤1099px) —— */
@media (max-width: 1099px) {
	/* Stack main grid: narrative en arriba, booking card abajo */
	.adv-main {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px 20px;
	}
	.adv-booking { position: static; }
	.adv-booking__price { font-size: 32px; }

	/* Hero más compacto */
	.adv-hero { height: 380px; }
	.adv-hero__content { padding: 24px 20px; }
	.adv-hero__title { font-size: clamp(28px, 5.5vw, 48px); }

	/* Gallery 2x2 en tablet/mobile, alturas iguales 4/3.
	 * Doble selector + !important para vencer overrides de tema.
	 * 1 thumb → full width.  2 thumbs → 2 columnas.  3 ó 4 thumbs → 2x2. */
	.adv-root .adv-gallery { grid-template-columns: 1fr 1fr !important; }
	.adv-root .adv-gallery.adv-gallery--1 { grid-template-columns: 1fr !important; }
	.adv-root .adv-gallery.adv-gallery--2 { grid-template-columns: 1fr 1fr !important; }
	.adv-root .adv-gallery.adv-gallery--3,
	.adv-root .adv-gallery.adv-gallery--4 { grid-template-columns: 1fr 1fr !important; }
	.adv-root .adv-gallery__item { aspect-ratio: 4/3; }

	/* Social band stacked */
	.adv-social { padding: 48px 0; margin-top: 48px; }
	.adv-social__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
	.adv-social__title { font-size: clamp(28px, 4vw, 36px); }
	.adv-testimonials { grid-template-columns: 1fr; }
	.adv-testimonials.adv-testimonials--1 { max-width: 100%; }

	/* Trust row chips no más nowrap (causa overflow horizontal en tablet) */
	.adv-trust-row > span { white-space: normal; }

	/* Include-grid 2 columnas a 32→24px gap */
	.adv-include-grid { gap: 24px; }
}

/* —— TABLET only (768-1099) —— */
@media (min-width: 768px) and (max-width: 1099px) {
	/* Specs sigue en 4 columnas (caben bien en tablet) */
	.adv-specs { grid-template-columns: repeat(4, 1fr); }
	/* Include sigue en 2 columnas (1fr 1fr) */
	.adv-include-grid { grid-template-columns: 1fr 1fr; }
}

/* —— MOBILE only (< 768px) —— */
@media (max-width: 767px) {
	/* Specs colapsa a 2x2 con borders limpios */
	.adv-specs { grid-template-columns: repeat(2, 1fr); }
	.adv-spec:nth-child(2) { border-right: 0; }
	.adv-spec:nth-child(1),
	.adv-spec:nth-child(2) { border-bottom: 1px solid var(--line-strong); }

	/* Include 1 columna — incluido y no incluido apilados */
	.adv-include-grid { grid-template-columns: 1fr; }

	/* Announcement compacta */
	.adv-announcement { font-size: 10px; padding: 8px 12px; letter-spacing: .12em; }

	/* Hero todavía más compacto */
	.adv-hero { height: 320px; }
	.adv-hero__content { padding: 20px 16px; }
	.adv-hero__title { font-size: clamp(22px, 7vw, 34px); line-height: 1; }
	.adv-hero__eyebrow { font-size: 10px; margin-bottom: 8px; letter-spacing: .18em; }
	.adv-hero__weather { top: 10px; right: 10px; padding: 5px 9px; font-size: 10px; gap: 6px; }
	.adv-hero__zoom-hint { top: 10px; left: 10px; padding: 5px 9px; font-size: 9px; }

	/* Mobile: thumbs cuadrados */
	.adv-root .adv-gallery__item { aspect-ratio: 1/1; }

	/* Narrativa más pequeña pero legible */
	.adv-product-title { font-size: clamp(22px, 6.5vw, 28px); margin-bottom: 14px; }
	.adv-summary { font-size: 15px; margin-bottom: 22px; max-width: 100%; }
	.adv-trust-row { font-size: 11px; gap: 8px 12px; }

	/* Itinerario más compacto */
	.adv-itin { grid-template-columns: 56px 1fr; gap: 12px; padding: 14px 0; }
	.adv-itin__t { font-size: 12px; padding-top: 1px; }
	.adv-itin__h { font-size: 16px; }
	.adv-itin__d { font-size: 12px; }

	/* Booking card padding reducido */
	.adv-booking { padding: 18px; }
	.adv-booking__price { font-size: 28px; }
	.adv-booking__price-label { font-size: 10px; letter-spacing: .15em; }

	/* Social band */
	.adv-social { padding: 36px 0; margin-top: 32px; }
	.adv-social__inner { padding: 0 16px; gap: 24px; }
	.adv-testimonial { padding: 20px; }
	.adv-testimonial blockquote { font-size: 15px; }
	.adv-testimonial cite { font-size: 11px; }
}
