/* ==========================================================
   :ROOT — Design Tokens (modular, solo variables)
   ========================================================== */

:root {

	/* ----- Base (1rem = 10px) ----- */
	--base-font-size: 62.5%;

	/* ----- Fonts ----- */
	--ff-heading: 'Lato', sans-serif;
	--ff-body:    'Karla', sans-serif;
	--ff-icon:    'Material Icons';

	/* ----- Font weights ----- */
	--fw-light:    300;
	--fw-regular:  400;
	--fw-medium:   500;
	--fw-semibold: 600;
	--fw-bold:     700;

	/* ----- Headings (base 1rem = 10px) ----- */
	--fs-h1: 4.8rem;   /* 48px */
	--fs-h2: 3.6rem;   /* 36px */
	--fs-h3: 2.8rem;   /* 28px */
	--fs-h4: 2.2rem;   /* 22px */
	--fs-h5: 1.8rem;   /* 18px */
	--fs-h6: 1.6rem;   /* 16px */

	--fw-h1: var(--fw-semibold);  /* 600 */
	--fw-h2: var(--fw-semibold);  /* 600 */
	--fw-h3: var(--fw-semibold);  /* 600 */
	--fw-h4: var(--fw-medium);    /* 500 */
	--fw-h5: var(--fw-medium);    /* 500 */
	--fw-h6: var(--fw-medium);    /* 500 */

	--lh-heading: 1.3;
	--ls-heading: -0.02em;

	/* ----- Body text ----- */
	--fs-body:  1.6rem;  /* 16px */
	--fs-small: 1.4rem;  /* 14px */
	--fs-tiny:  1.2rem;  /* 12px — pills / badges / tags */
	--fs-large: 1.8rem;  /* 18px */

	--lh-body: 1.6;
	--fw-body: var(--fw-regular);

	/* ----- Colors — Palette ----- */
	--c-primary:   #3F4016;
	--c-secondary: #54340B;
	--c-text:      #333333;
	--c-white:     #FFFFFF;
	--c-black:     #000000;
	--c-bg:        #FBFBFB;

	/* ----- Colors — Semantic ----- */
	--c-success:  #2E7D32;
	--c-warning:  #F9A825;
	--c-error:    #C62828;
	--c-info:     #1565C0;

	/* ----- Colors — Surfaces ----- */
	--c-surface:        var(--c-white);
	--c-surface-alt:    #F5F5F0;
	--c-border:         #E0E0E0;
	--c-border-light:   #EEEEEE;

	/* ----- Colors — Hover / Active states ----- */
	--c-primary-hover:   #33340F;
	--c-secondary-hover: #3E2708;
	--c-link:            var(--c-primary);
	--c-link-hover:      var(--c-primary-hover);

	/* ----- Nav / Menu ----- */
	--menu-ff:              var(--ff-body);
	--menu-fs:              1.6rem;  /* 16px */
	--menu-fw:              var(--fw-medium);
	--menu-tt:              none;
	--menu-ls:              0.02em;
	--menu-color:           var(--c-text);
	--menu-color-hover:     var(--c-primary);
	--menu-color-active:    var(--c-primary);
	--menu-bg:              transparent;
	--menu-bg-hover:        rgba(63, 64, 22, 0.06);
	--menu-bg-active:       rgba(63, 64, 22, 0.10);
	--menu-padding-x:       1.6rem;
	--menu-padding-y:       0.8rem;
	--menu-gap:             0.4rem;
	--menu-radius:          0.4rem;
	--menu-transition:      all 0.25s ease;

	/* ----- Menu item (sub-menu / dropdown) ----- */
	--submenu-bg:           var(--c-white);
	--submenu-shadow:       0 0.4rem 1.2rem rgba(0, 0, 0, 0.10);
	--submenu-radius:       0.6rem;
	--submenu-min-width:    22rem;
	--submenu-padding:      0.6rem;
	--submenu-item-fs:      1.5rem;
	--submenu-item-padding: 0.8rem 1.4rem;
	--submenu-item-radius:  0.4rem;
	--submenu-item-color:         var(--c-text);
	--submenu-item-color-hover:   var(--c-primary);
	--submenu-item-bg-hover:      rgba(63, 64, 22, 0.06);

	/* ----- Cart (WooCommerce / mini-cart) ----- */
	--cart-icon-size:        2.4rem;
	--cart-icon-color:       var(--c-text);
	--cart-icon-color-hover: var(--c-primary);
	--cart-badge-size:       1.8rem;
	--cart-badge-fs:         1.1rem;
	--cart-badge-fw:         var(--fw-bold);
	--cart-badge-color:      var(--c-white);
	--cart-badge-bg:         var(--c-secondary);
	--cart-badge-radius:     50%;
	--cart-badge-offset-x:   -0.6rem;
	--cart-badge-offset-y:   -0.4rem;
	--cart-dropdown-bg:      var(--c-white);
	--cart-dropdown-shadow:  0 0.4rem 2rem rgba(0, 0, 0, 0.12);
	--cart-dropdown-radius:  0.8rem;
	--cart-dropdown-width:   36rem;
	--cart-dropdown-padding: 2rem;
	--cart-item-gap:         1.2rem;
	--cart-item-border:      var(--c-border-light);
	--cart-total-fs:         1.8rem;
	--cart-total-fw:         var(--fw-bold);
	--cart-total-color:      var(--c-primary);
	--cart-btn-bg:           var(--c-primary);
	--cart-btn-color:        var(--c-white);
	--cart-btn-bg-hover:     var(--c-primary-hover);
	--cart-btn-radius:       0.6rem;
	--cart-btn-padding:      1rem 2rem;
	--cart-btn-fs:           1.4rem;
	--cart-btn-fw:           var(--fw-semibold);

	/* ----- Buttons (generic) ----- */
	--btn-ff:            var(--ff-body);
	--btn-fs:            1.6rem;
	--btn-fw:            var(--fw-semibold);
	--btn-padding:       1.2rem 2.4rem;
	--btn-radius:        0.6rem;
	--btn-transition:    all 0.25s ease;
	--btn-primary-bg:    var(--c-primary);
	--btn-primary-color: var(--c-white);
	--btn-primary-bg-hover: var(--c-primary-hover);
	--btn-secondary-bg:    var(--c-secondary);
	--btn-secondary-color: var(--c-white);
	--btn-secondary-bg-hover: var(--c-secondary-hover);

	/* ----- Spacing scale ----- */
	--sp-2xs: 0.4rem;   /*  4px */
	--sp-xs:  0.8rem;   /*  8px */
	--sp-sm:  1.2rem;   /* 12px */
	--sp-md:  1.6rem;   /* 16px */
	--sp-lg:  2.4rem;   /* 24px */
	--sp-xl:  3.2rem;   /* 32px */
	--sp-2xl: 4.8rem;   /* 48px */
	--sp-3xl: 6.4rem;   /* 64px */
	--sp-4xl: 9.6rem;   /* 96px */

	/* ----- Border radius ----- */
	--radius-sm:   0.4rem;
	--radius-md:   0.8rem;
	--radius-lg:   1.2rem;
	--radius-xl:   1.6rem;
	--radius-full: 50%;

	/* ----- Shadows ----- */
	--shadow-sm:  0 0.1rem 0.3rem rgba(0, 0, 0, 0.08);
	--shadow-md:  0 0.4rem 0.8rem rgba(0, 0, 0, 0.10);
	--shadow-lg:  0 0.8rem 2.4rem rgba(0, 0, 0, 0.12);
	--shadow-xl:  0 1.2rem 4.8rem rgba(0, 0, 0, 0.16);

	/* ----- Transitions ----- */
	--ease-default:  all 0.25s ease;
	--ease-smooth:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--ease-bounce:   all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

	/* ----- Z-index layers ----- */
	--z-dropdown:  100;
	--z-sticky:    200;
	--z-overlay:   300;
	--z-modal:     400;
	--z-toast:     500;

	/* ----- Layout ----- */
	--container-max:  120rem;  /* 1200px */
	--container-pad:  3.2rem;  /* 32px */
	--header-height:  8rem;
	/* Altura de .site-top-reading__inner (min-height + padding); single product: offset del header absoluto */
	--site-top-reading-height: 4.7rem;
	--sidebar-width:  30rem;
}

/* ==========================================================
   HTML base — activates 1rem = 10px
   ========================================================== */

html {
	font-size: var(--base-font-size);
}

body {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-body);
	line-height: var(--lh-body);
	color: var(--c-text);
	background-color: var(--c-bg);
}

.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.container-fluid {
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

/* ==========================================================
   TOP READING BAR — Blog + Travel news (solid strip)
   ========================================================== */

.site-top-reading {
	--site-top-reading-pipe: rgba(255, 255, 255, 0.22);

	background: var(--c-primary);
	color: var(--c-white);
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: 500;
	line-height: 1.4;
}

.site-top-reading__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem 2rem;
	min-height: 3.6rem;
	padding-top: 0.55rem;
	padding-bottom: 0.55rem;
}

.site-top-reading__nav {
	flex: 0 0 auto;
	margin: 0 0 0 auto;
	padding: 0;
}

.site-top-reading__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-top-reading__item {
	display: flex;
	align-items: center;
}

/* Referencia: línea vertical blanca suave a la izquierda de cada ítem tras el primero */
.site-top-reading__list > .site-top-reading__item:not(:first-child) {
	border-left: 1px solid var(--site-top-reading-pipe);
	padding-left: 1.15rem;
	margin-left: 1.15rem;
}

.site-top-reading__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.site-top-reading__link .site-top-reading__icon,
.site-top-reading__contact-link .site-top-reading__icon {
	font-weight: normal;
}

.site-top-reading__link .site-top-reading__icon {
	font-size: 1.8rem;
	width: 1.8rem;
	height: 1.8rem;
	flex-shrink: 0;
	opacity: 0.9;
}

.site-top-reading__link:hover,
.site-top-reading__link:focus-visible {
	color: var(--c-white);
	border-bottom-color: rgba(255, 255, 255, 0.45);
}

.site-top-reading__contact {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	flex: 0 1 auto;
	min-width: 0;
	margin-left: 0;
	margin-right: 1.2rem;
}

/* Correo junto al teléfono; separador suave entre ambos (mismo estilo que los enlaces) */
.site-top-reading__contact .site-top-reading__contact-link + .site-top-reading__contact-link {
	border-left: 1px solid var(--site-top-reading-pipe);
	padding-left: 1.15rem;
	margin-left: 1.15rem;
}

.site-top-reading__inner--nav-only .site-top-reading__nav {
	width: 100%;
	margin-left: 0;
}

.site-top-reading__inner--nav-only .site-top-reading__list {
	justify-content: flex-end;
}

.site-top-reading__inner--contact-only .site-top-reading__contact {
	flex: 0 1 auto;
	margin-right: 0;
	width: 100%;
	justify-content: flex-start;
}

.site-top-reading__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.site-top-reading__contact-link .site-top-reading__icon {
	font-size: 1.8rem;
	width: 1.8rem;
	height: 1.8rem;
	flex-shrink: 0;
	opacity: 0.9;
}

.site-top-reading__contact-text {
	white-space: nowrap;
}

.site-top-reading__contact-link:hover,
.site-top-reading__contact-link:focus-visible {
	color: var(--c-white);
	border-bottom-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
	.site-top-reading {
		font-size: 1.15rem;
	}

	/* Solo teléfono + correo en una línea (extremos); menú oculto aquí */
	.site-top-reading__inner {
		flex-direction: row;
		align-items: center;
		justify-content: stretch;
		gap: 0;
		padding-top: 0.45rem;
		padding-bottom: 0.45rem;
		min-height: 0;
	}

	.site-top-reading__nav {
		display: none;
	}

	.site-top-reading__contact,
	.site-top-reading__inner--contact-only .site-top-reading__contact {
		margin-left: 0;
		margin-right: 0;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 0;
		width: 100%;
		max-width: 100%;
		padding-bottom: 0;
		border-bottom: none;
		border-top: none;
	}

	.site-top-reading__contact .site-top-reading__contact-link:first-child {
		flex-shrink: 0;
	}

	.site-top-reading__contact .site-top-reading__contact-link + .site-top-reading__contact-link {
		flex: 1 1 0;
		min-width: 0;
		justify-content: flex-end;
		border-top: none;
		padding-top: 0;
		margin-top: 0;
		border-left: 1px solid var(--site-top-reading-pipe);
		padding-left: 0.65rem;
		margin-left: 0.65rem;
	}

	.site-top-reading__contact-link {
		white-space: nowrap;
		max-width: none;
		align-items: center;
	}

	.site-top-reading__contact-text {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 100%;
	}

	.site-top-reading__contact-link .site-top-reading__icon {
		font-size: 1.55rem;
		width: 1.55rem;
		height: 1.55rem;
	}

	:root {
		--site-top-reading-height: 4.2rem;
	}
}

@media (max-width: 380px) {
	.site-top-reading {
		font-size: 1.05rem;
	}

	.site-top-reading__contact .site-top-reading__contact-link + .site-top-reading__contact-link {
		padding-left: 0.45rem;
		margin-left: 0.45rem;
	}

	.site-top-reading__contact-link .site-top-reading__icon {
		font-size: 1.4rem;
		width: 1.4rem;
		height: 1.4rem;
	}
}

/* ==========================================================
   SITE HEADER — White / solid background
   ========================================================== */

.site-header {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-sticky);
	height: var(--header-height);
	background: var(--c-white);
	border-bottom: 1px solid var(--c-border-light);
	transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Home: force fully opaque header background */
.home .site-header,
.home .site-header.is-scrolled {
	background-color: #ffffff !important;
	opacity: 1 !important;
	backdrop-filter: none;
}

/* Sticky on scroll */
.site-header.is-scrolled {
	position: fixed;
	background: var(--c-white);
	box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.08);
}

/* WordPress admin-bar offset (only when fixed/scrolled) */
.admin-bar .site-header.is-scrolled {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header.is-scrolled {
		top: 46px;
	}
}

/* Spacer so content doesn't hide behind fixed header */
.site-header.is-scrolled + .home,
.site-header.is-scrolled + main,
.site-header.is-scrolled ~ .mobile-menu + .home,
.site-header.is-scrolled ~ .mobile-menu + main {
	padding-top: var(--header-height);
}

/* ---------- Transparent header on Single Product ---------- */

.single-product .site-header {
	position: absolute;
	top: var(--site-top-reading-height);
	left: 0;
	right: 0;
	width: 100%;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.single-product .site-header .site-header__logo-img {
	filter: brightness(0) invert(1);
}

.single-product .site-header .site-header__logo-text {
	color: var(--c-white);
}

.single-product .site-header .site-nav__link {
	color: rgba(255, 255, 255, 0.9);
}

.single-product .site-header .site-nav__link:hover,
.single-product .site-header .site-nav__item--active > .site-nav__link {
	color: var(--c-white);
	background: rgba(255, 255, 255, 0.12);
}

.single-product .site-header .site-nav__chevron {
	color: rgba(255, 255, 255, 0.6);
}

.single-product .site-header .site-header__cta {
	color: var(--c-white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
}

.single-product .site-header .site-header__cta:hover {
	background: var(--c-white);
	border-color: var(--c-white);
	color: var(--c-text);
}

.single-product .site-header .site-header__hamburger-line {
	background: var(--c-white);
}

.single-product .site-header.is-scrolled {
	position: absolute;
	top: var(--site-top-reading-height);
	left: 0;
	right: 0;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: none;
}

/* Barra de lectura por encima del header absoluto (evita solapamiento por redondeo/subpíxeles) */
body.woocommerce.single-product .site-top-reading {
	position: relative;
	z-index: calc(var(--z-sticky) + 1);
}

/* Admin bar WP: el bloque superior empieza bajo la barra de administración */
body.admin-bar.woocommerce.single-product .site-header,
body.admin-bar.woocommerce.single-product .site-header.is-scrolled {
	top: calc(32px + var(--site-top-reading-height));
}

@media screen and (max-width: 782px) {
	body.admin-bar.woocommerce.single-product .site-header,
	body.admin-bar.woocommerce.single-product .site-header.is-scrolled {
		top: calc(46px + var(--site-top-reading-height));
	}
}

.single-product .site-header.is-scrolled + .tour-single,
.single-product .site-header.is-scrolled ~ .mobile-menu + .tour-single {
	padding-top: 0;
}

/* Header container — aligned with site content */
.site-header > .container {
	max-width: 1200px;
}

/* Inner flex layout */
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: var(--sp-lg);
}

/* ---------- Logo ---------- */

.site-header__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.site-header__logo-img {
	height: 5.5rem;
	width: auto;
	max-width: 22rem;
	display: block;
	object-fit: contain;
}

.site-header__logo-text {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-bold);
	color: var(--c-text);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* ---------- Desktop Navigation ---------- */

.site-header__nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

ul.site-nav {
	display: flex;
	align-items: center;
	gap: var(--sp-xs);
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Nav item */
.site-nav__item {
	position: relative;
}

/* Nav link */
.site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--menu-ff);
	font-size: 1.5rem;
	font-weight: var(--fw-medium);
	letter-spacing: var(--menu-ls);
	text-transform: var(--menu-tt);
	text-decoration: none;
	color: var(--c-text);
	padding: 1rem 1.4rem;
	border-radius: var(--menu-radius);
	transition: var(--menu-transition);
	white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__item--active > .site-nav__link {
	color: var(--c-primary);
	background: rgba(63, 64, 22, 0.06);
}

/* Chevron */
.site-nav__chevron {
	font-size: 1.8rem;
	transition: transform 0.3s ease;
	opacity: 0.55;
}

.site-nav__item:hover .site-nav__chevron {
	transform: rotate(180deg);
	opacity: 1;
}

/* ---------- Desktop Sub-menu (Dropdown) ---------- */

.site-nav__sub {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(0.5rem);
	min-width: var(--submenu-min-width);
	background: var(--submenu-bg);
	border-radius: var(--submenu-radius);
	box-shadow: var(--submenu-shadow);
	padding: var(--submenu-padding);
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	z-index: var(--z-dropdown);
}

.site-nav__item:hover > .site-nav__sub {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* Sub item */
.site-nav__sub-item {
	list-style: none;
}

.site-nav__sub-link {
	display: block;
	font-family: var(--ff-body);
	font-size: 1.5rem;
	font-weight: var(--fw-regular);
	color: var(--submenu-item-color);
	padding: var(--submenu-item-padding);
	border-radius: var(--submenu-item-radius);
	text-decoration: none;
	transition: var(--menu-transition);
}

.site-nav__sub-link:hover {
	color: var(--submenu-item-color-hover);
	background: var(--submenu-item-bg-hover);
}

/* ---------- CTA Button (desktop) ---------- */

.site-header__cta {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	font-family: var(--ff-body);
	font-size: 1.4rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.03em;
	text-decoration: none;
	color: var(--c-white);
	background: var(--c-secondary);
	border: 1.5px solid var(--c-secondary);
	padding: 1rem 2.4rem;
	border-radius: 50rem;
	transition: var(--ease-default);
	white-space: nowrap;
}

.site-header__cta:hover {
	background: var(--c-secondary-hover);
	border-color: var(--c-secondary-hover);
	color: var(--c-white);
}

/* ---------- Hamburger (hidden on desktop) ---------- */

.site-header__hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	width: 4.4rem;
	height: 4.4rem;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
}

.site-header__hamburger-line {
	display: block;
	width: 2.6rem;
	height: 0.2rem;
	background: var(--c-text);
	border-radius: 2px;
	transition: var(--ease-default);
}

/* ---------- Mobile Menu Panel ---------- */

.mobile-menu {
	display: block;
	position: fixed;
	inset: 0;
	z-index: var(--z-modal);
	pointer-events: none;
	visibility: hidden;
}

.mobile-menu.is-open {
	pointer-events: auto;
	visibility: visible;
}

/* Overlay */
.mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(50, 50, 50, 0.6);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
	opacity: 1;
}

/* Sliding panel (from left) */
.mobile-menu__panel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 90%;
	max-width: 36rem;
	background: var(--c-white);
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0.4rem 0 2rem rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.mobile-menu.is-open .mobile-menu__panel {
	transform: translateX(0);
}

/* Panel header: logo + close (fixed at top) */
.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--sp-md) var(--sp-lg);
	border-bottom: 1px solid var(--c-border-light);
	flex-shrink: 0;
}

.mobile-menu__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.mobile-menu__logo-img {
	height: 4.5rem;
	width: auto;
	display: block;
}

.mobile-menu__logo-text {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-bold);
	color: var(--c-text);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Close button */
.mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--c-text);
	transition: color 0.2s ease;
	flex-shrink: 0;
}

.mobile-menu__close:hover {
	color: var(--c-error);
}

.mobile-menu__close .material-icons-round {
	font-size: 2.8rem;
}

/* Scrollable nav area */
.mobile-menu__nav {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 var(--sp-lg);
}

/* ---------- Mobile Nav List ---------- */

ul.mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav__item {
	border-bottom: 1px solid var(--c-border-light);
}

/* Link wrapper (parent items with sub-menus) */
.mobile-nav__link-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav__link-wrap .mobile-nav__link {
	flex: 1;
	min-width: 0;
}

/* Link */
.mobile-nav__link {
	display: block;
	font-family: var(--ff-body);
	font-size: 1.6rem;
	font-weight: var(--fw-medium);
	color: var(--c-text);
	text-decoration: none;
	padding: 1.4rem 0;
	transition: color 0.2s ease;
}

.mobile-nav__link:hover,
.mobile-nav__item--active > .mobile-nav__link,
.mobile-nav__item--active > .mobile-nav__link-wrap > .mobile-nav__link {
	color: var(--c-secondary);
}

/* Toggle chevron button */
.mobile-nav__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--c-text);
	transition: var(--ease-default);
	flex-shrink: 0;
}

.mobile-nav__toggle .material-icons-round {
	font-size: 2.2rem;
	transition: transform 0.3s ease;
}

.mobile-nav__item--has-children.is-open .mobile-nav__toggle .material-icons-round {
	transform: rotate(90deg);
	color: var(--c-secondary);
}

/* Sub-menu (accordion, hidden by default) */
.mobile-nav__sub {
	list-style: none;
	margin: 0;
	padding: 0 0 0 var(--sp-md);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.mobile-nav__item--has-children.is-open > .mobile-nav__sub {
	max-height: 80rem;
}

.mobile-nav__sub-item {
	list-style: none;
	border-bottom: 1px solid var(--c-border-light);
}

.mobile-nav__sub-item:last-child {
	border-bottom: none;
}

.mobile-nav__sub-link {
	display: block;
	font-family: var(--ff-body);
	font-size: 1.4rem;
	font-weight: var(--fw-regular);
	color: #666;
	text-decoration: none;
	padding: 1rem 0;
	transition: color 0.2s ease;
}

.mobile-nav__sub-link:hover {
	color: var(--c-secondary);
}

/* ---------- Mobile Social Links ---------- */

.mobile-menu__social {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	padding: var(--sp-lg);
	border-top: 1px solid var(--c-border-light);
	flex-shrink: 0;
}

.mobile-menu__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.8rem;
	height: 3.8rem;
	border-radius: var(--radius-full);
	color: var(--c-text);
	background: var(--c-surface-alt);
	transition: var(--ease-default);
	text-decoration: none;
}

.mobile-menu__social-link:hover {
	color: var(--c-white);
	background: var(--c-secondary);
}

.mobile-menu__social-link svg {
	display: block;
	width: 1.8rem;
	height: 1.8rem;
}

/* Body lock when menu is open */
body.menu-open {
	overflow: hidden;
}

/* ---------- Responsive: hide/show desktop vs mobile ---------- */

/* Desktop (≥ 1200px): show nav + CTA, hide hamburger */
@media (min-width: 1200px) {
	.site-header__hamburger {
		display: none;
	}

	.mobile-menu {
		display: none;
	}
}

/* Tablet & Mobile (< 1200px): hide nav + CTA, show hamburger */
@media (max-width: 1199.98px) {
	body:not(.single-product) .site-header,
	body:not(.single-product) .site-header.is-scrolled {
		position: sticky;
		top: 0 !important;
	}

	body:not(.single-product).admin-bar .site-header,
	body:not(.single-product).admin-bar .site-header.is-scrolled {
		top: 0 !important;
	}

	body:not(.single-product) .site-header.is-scrolled + .home,
	body:not(.single-product) .site-header.is-scrolled + main,
	body:not(.single-product) .site-header.is-scrolled ~ .mobile-menu + .home,
	body:not(.single-product) .site-header.is-scrolled ~ .mobile-menu + main {
		padding-top: 0;
	}

	.site-header__nav {
		display: none;
	}

	.site-header__cta {
		display: none;
	}

	.site-header__hamburger {
		display: flex;
	}
}

@media (max-width: 782px) {
	body:not(.single-product).admin-bar .site-header,
	body:not(.single-product).admin-bar .site-header.is-scrolled {
		top: 0 !important;
	}
}

/* ==========================================================
   SECTION — Hero
   Full-viewport, autoplay background slider, no controls.
   ========================================================== */

.section-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--c-black);
	padding: 0;
	margin: 0;
}

/* ---------- Background slide ---------- */

.section-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.section-hero__slide--static {
	z-index: 0;
}

/* ---------- <img> based hero slide (LCP optimized) ---------- */

.section-hero__slide-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 0;
}

.section-hero__slide-img--static {
	z-index: 0;
}

.section-hero__slider .carousel-item .section-hero__slide-img {
	position: relative;
	height: 100%;
}

/* Ken Burns for <img> slides too */
.section-hero__slider .carousel-item.active .section-hero__slide-img {
	animation: heroKenBurns 8s ease-in-out forwards;
}

/* ---------- Bootstrap carousel as full background ---------- */

.section-hero__slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.section-hero__slider .carousel-inner,
.section-hero__slider .carousel-item {
	height: 100%;
}

.section-hero__slider .carousel-item .section-hero__slide {
	position: relative;
	height: 100%;
}

/* Slow crossfade for cinematic feel */
.section-hero__slider .carousel-item {
	transition: opacity 1.5s ease-in-out;
}

/* Subtle Ken Burns zoom on active slide */
.section-hero__slider .carousel-item.active .section-hero__slide {
	animation: heroKenBurns 8s ease-in-out forwards;
}

@keyframes heroKenBurns {
	0%   { transform: scale(1);    }
	100% { transform: scale(1.06); }
}

/* ---------- Overlay — gradient ---------- */

.section-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.25) 0%,
		rgba(0, 0, 0, 0.35) 40%,
		rgba(0, 0, 0, 0.55) 100%
	);
}

/* ---------- Content ---------- */

.section-hero__overtitle {
	display: block;
	font-family: var(--ff-body);
	font-size: var(--fs-h3);
	font-weight: var(--fw-medium);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.section-hero__title {
	font-family: var(--ff-heading);
	font-size: 10rem;
	font-weight: var(--fw-h1);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--c-white);
	margin: 0 0 var(--sp-lg);
}

.section-hero__desc,
.section-hero__desc p {
	font-family: var(--ff-body);
	font-size: 1.8rem;
	font-weight: var(--fw-light);
	line-height: 1.7;
	color: var(--c-white);
	max-width: 58rem;
	margin-left: auto;
	margin-right: auto;
}

.section-hero__desc p:last-child {
	margin-bottom: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
	.section-hero {
		height: 85vh;
	}

	.section-hero__title {
		font-size: 6rem;
	}
}

@media (max-width: 575.98px) {
	.section-hero {
		height: 75vh;
	}

	.section-hero__title {
		font-size: 3.6rem;
	}

	.section-hero__overtitle {
		font-size: var(--fs-small);
		letter-spacing: 0.18em;
	}

	.section-hero__desc,
	.section-hero__desc p {
		font-size: var(--fs-body);
	}
}

/* ==========================================================
   CARD — Tour / Product
   ========================================================== */

.card-tour {
	display: flex;
	flex-direction: column;
	background: var(--c-surface);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--ease-smooth);
	height: 100%;
	box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.06);
}

.card-tour:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-0.3rem);
}

/* ---------- Image ---------- */

.card-tour__img-link {
	display: block;
	overflow: hidden;
}

.card-tour__img {
	margin: 0;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.card-tour__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card-tour:hover .card-tour__thumb {
	transform: scale(1.05);
}

/* ---------- Body ---------- */

.card-tour__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: var(--sp-lg);
	gap: var(--sp-sm);
}

/* ---------- Meta badges ---------- */

.card-tour__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-xs);
	justify-content: space-between;
}

.card-tour__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	font-weight: var(--fw-medium);
	color: #6d6d6d;
	letter-spacing: 0.02em;
}

.card-tour__badge .material-icons-round {
	font-size: 1.6rem;
	color: var(--c-secondary);
}

/* ---------- Title ---------- */

.card-tour__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-h4);
	line-height: var(--lh-heading);
	margin: 0;
}

.card-tour__title a {
	color: var(--c-text);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: var(--fw-semibold);
}

.card-tour__title a:hover {
	color: var(--c-primary);
}

/* ---------- Description ---------- */

.card-tour__desc,
.card-tour__desc p {
	font-family: var(--ff-body);					
	font-size: var(--fs-small);
	font-weight: var(--fw-regular);
	line-height: 1.5;
	color: #666;
	margin: 0;
}

/* ---------- Extra info ---------- */

.card-tour__extra {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-sm);
	justify-content: space-between;
	margin-top: auto;
}

.card-tour__extra-item {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: #6d6d6d;
}

.card-tour__extra-item .material-icons-round {
	font-size: 1.5rem;
}

/* ---------- Footer: price + CTA ---------- */

.card-tour__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: var(--sp-sm);
	border-top: 1px solid var(--c-border-light);
}

/* Si hay fila extra (altura/idioma), el espacio flexible va encima de esa fila, no entre extra y precio */
.card-tour__extra ~ .card-tour__footer {
	margin-top: 0;
}

.card-tour__price {
	display: flex;
	flex-direction: column;
}

.card-tour__price-label {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: #6d6d6d;
}

.card-tour__price-value,
.card-tour__price-value .woocommerce-Price-amount {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	line-height: 1.2;
}

/* ---------- CTA Button ---------- */

.card-tour__cta {
	display: inline-flex;
	align-items: center;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	padding: 1rem 2rem;
	color: var(--c-text);
	background: transparent;
	border: 1px solid var(--c-text);
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: var(--ease-default);
	white-space: nowrap;
}

.card-tour__cta:hover {
	background: var(--c-primary);
	border-color: var(--c-primary);
	color: var(--c-white);
}

.card-tour__footer--no-price .card-tour__cta {
	width: 100%;
	justify-content: center;
}

/* ==========================================================
   SECTIONS — Shared header styles
   ========================================================== */

.section-bestsellers,
.section-packages {
	padding: var(--sp-3xl) 0;
}

.section-packages__more {
	text-align: center;
	margin-top: var(--sp-2xl);
}

.section-packages__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--c-white);
	background: var(--c-secondary);
	padding: 1.4rem 3.2rem;
	border-radius: var(--radius-sm);
	transition: var(--ease-default);
}

.section-packages__btn:hover {
	background: var(--c-secondary-hover);
	color: var(--c-white);
	transform: translateX(0.3rem);
}

.section-packages__btn .material-icons-round {
	font-size: 2rem;
	transition: transform 0.3s ease;
}

.section-packages__btn:hover .material-icons-round {
	transform: translateX(0.4rem);
}

.section-header {
	margin-bottom: var(--sp-2xl);
}

.section-overtitle {
	display: block;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-secondary);
	margin-bottom: var(--sp-xs);
}

.section-title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h1);
	font-weight: var(--fw-h2);
	line-height: var(--lh-heading);
	color: var(--c-text);
	margin: 0;
}

.section-desc,
.section-desc p {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	color: #666;
}

/* ==========================================================
   SECTION — Separador (quote banner)
   ========================================================== */

.section-divider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40rem;
	margin: var(--sp-3xl) 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Dark overlay */
.section-divider__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

/* Content above overlay */
.section-divider .container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Quote block */
.section-divider__quote {
	max-width: 80rem;
	margin: 0 auto;
	padding: var(--sp-2xl) var(--sp-lg);
	text-align: center;
	border: none;
}

.section-divider__quote p {
	font-family: var(--ff-heading);
	font-size: 5rem;
	font-weight: var(--fw-light);
	font-style: italic;
	line-height: 1.2;
	color: var(--c-white);
	margin: 0;
	quotes: "\201C" "\201D";
}

.section-divider__quote p::before {
	content: open-quote;
}

.section-divider__quote p::after {
	content: close-quote;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
	.section-divider {
		min-height: 30rem;
		background-attachment: scroll;
	}

	.section-divider__quote p {
		font-size: 3rem;
	}
}

@media (max-width: 575px) {
	.section-divider {
		min-height: 25rem;
	}

	.section-divider__quote {
		padding: var(--sp-xl) var(--sp-md);
	}

	.section-divider__quote p {
		font-size: 2.4rem;
	}
}

/* ==========================================================
   SECTION HEADER — Centered variant
   ========================================================== */

.section-header--center {
	text-align: center;
}

.section-header--center .section-overtitle {
	display: block;
}

.section-header--center .section-title {
	margin-left: auto;
	margin-right: auto;
}

.section-header__line {
	display: block;
	width: 6rem;
	height: 0.3rem;
	background: var(--c-secondary);
	margin: var(--sp-sm) auto var(--sp-md);
	border-radius: 2px;
}

/* ==========================================================
   SECTION — Destinos (Destinations)
   ========================================================== */

.section-destinations {
	padding: var(--sp-3xl) 0;
}

/* ---------- Staggered grid ---------- */

@media (min-width: 576px) {
	.section-destinations__grid .col-sm-6:nth-child(even),
	.section-destinations__grid .col-lg-3:nth-child(even) {
		margin-top: var(--sp-3xl);
	}
}

/* ---------- Destination Card ---------- */

.card-destination {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-md);
	aspect-ratio: 3 / 4;
	text-decoration: none;
	background-color: var(--c-primary);
}

/* Imagen de fondo (lazy; antes background-image forzaba descarga inmediata) */
.card-destination__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s ease;
}

.card-destination:hover .card-destination__bg {
	transform: scale(1.08);
}

/* Gradient overlay (bottom) */
.card-destination__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.65) 0%,
		rgba(0, 0, 0, 0.15) 50%,
		transparent 100%
	);
	z-index: 1;
}

/* Text content — anchored to bottom */
.card-destination__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--sp-lg);
	z-index: 2;
}

.card-destination__desc {
	display: block;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-regular);
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.2rem;
}

.card-destination__name {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	margin: 0;
	line-height: 1.2;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
	.card-destination {
		aspect-ratio: 3 / 4;
	}

	.card-destination__name {
		font-size: var(--fs-h4);
	}
}

@media (max-width: 575px) {
	.card-destination__content {
		padding: var(--sp-md);
	}

	.card-destination__name {
		font-size: var(--fs-h5);
	}

	.card-destination__desc {
		font-size: var(--fs-tiny);
	}
}

/* ==========================================================
   SECTION — Por qué nosotros
   ========================================================== */

.section-why-us {
	padding: var(--sp-3xl) 0;
}

/* ---------- Content column ---------- */

.section-why-us__content {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}

.section-why-us__title {
	font-size: var(--fs-h1);
	margin-bottom: var(--sp-xs);
}

.section-why-us__desc,
.section-why-us__desc p {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* ---------- Features list (numbered) ---------- */

.section-why-us__features {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
	margin-top: var(--sp-sm);
}

.feature-item {
	display: flex;
	gap: var(--sp-md);
	align-items: flex-start;
	padding-left: var(--sp-xs);
	border-left: 1px solid var(--c-border);
}

.feature-item__number {
	flex-shrink: 0;
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-light);
	color: #7a5e3d;
	line-height: 1;
}

.feature-item__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.feature-item__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-large);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0;
	line-height: 1.3;
}

.feature-item__desc,
.feature-item__desc p {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-regular);
	line-height: 1.5;
	color: #6d6d6d;
	margin: 0;
}

/* ---------- CTA button ---------- */

.section-why-us__cta {
	display: inline-flex;
	align-items: center;
	margin-top: var(--sp-md);
	padding: 1.4rem 3rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--c-white);
	background: var(--c-secondary);
	border-radius: var(--radius-sm);
	transition: var(--ease-default);
}

.section-why-us__cta:hover {
	background: var(--c-secondary-hover);
	color: var(--c-white);
}

/* ---------- Images column ---------- */

.section-why-us__images {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.section-why-us__img-main {
	grid-column: 1;
	grid-row: 1;
	width: 85%;
	height: auto;
	margin-left: auto;
	border-radius: var(--radius-lg);
	object-fit: cover;
	display: block;
	z-index: 1;
}

.section-why-us__img-small {
	grid-column: 1;
	grid-row: 1;
	align-self: end;
	justify-self: start;
	width: 45%;
	max-width: 24rem;
	height: auto;
	border-radius: var(--radius-md);
	object-fit: cover;
	z-index: 2;
	box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.15);
	border: 5px solid var(--c-white);
	transform: translateY(3rem);
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
	.section-why-us__images {
		margin-top: var(--sp-xl);
	}

	.section-why-us__img-main {
		width: 80%;
	}

	.section-why-us__img-small {
		width: 40%;
		max-width: 18rem;
	}

	.section-why-us__title {
		font-size: var(--fs-h2);
	}
}

@media (max-width: 575px) {
	.section-why-us__img-main {
		width: 100%;
	}

	.section-why-us__img-small {
		width: 45%;
		max-width: 16rem;
		transform: translateY(2rem);
	}

	.section-why-us__title {
		font-size: var(--fs-h3);
	}

	.feature-item {
		gap: var(--sp-sm);
	}

	.section-why-us__cta {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================
   SECTION — Testimonios
   ========================================================== */

.section-testimonials {
	padding: var(--sp-3xl) 0;
	background: var(--c-bg);
}

.section-testimonials .section-header {
	margin-bottom: var(--sp-2xl);
}

.section-testimonials__content {
	margin-top: var(--sp-lg);
}

/* ==========================================================
   SECTION — FAQ (two-column accordion)
   ========================================================== */

.section-faq {
	padding: var(--sp-3xl);
}

/* ---------- Accordion ---------- */

.section-faq__accordion {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}

.section-faq__item {
	background: var(--c-surface);
	overflow: hidden;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.section-faq__item:hover {
	border-color: var(--c-border);
	box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.05);
}

.section-faq__item .accordion-header {
	margin: 0;
}

/* ---------- Button (question) ---------- */

.section-faq__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--sp-md) var(--sp-lg);
	background: transparent;
	border: none;
	border-radius: var(--radius-md);
	box-shadow: none;
	cursor: pointer;
	transition: all 0.3s ease;
	gap: var(--sp-md);
}

.section-faq__btn:not(.collapsed) {
	background: transparent;
	box-shadow: none;
}

.section-faq__btn:focus {
	box-shadow: none;
	outline: none;
}

.section-faq__btn::after {
	display: none;
}

.section-faq__btn-text {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-regular);
	color: var(--c-text);
	text-align: left;
	flex: 1;
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.section-faq__btn:not(.collapsed) .section-faq__btn-text {
	color: var(--c-secondary);
	font-weight: var(--fw-medium);
}

/* ---------- Icon rotation ---------- */

.section-faq__btn-icon {
	font-size: 2.2rem;
	color: var(--c-text);
	opacity: 0.5;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, opacity 0.3s ease;
	flex-shrink: 0;
}

.section-faq__btn:not(.collapsed) .section-faq__btn-icon {
	transform: rotate(180deg);
	color: var(--c-secondary);
	opacity: 1;
}

/* ---------- Answer body ---------- */

.section-faq__answer {
	padding: 0 var(--sp-lg) var(--sp-md);
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.7;
	color: #666;
	animation: faqFadeIn 0.35s ease;
}

.section-faq__answer p {
	margin: 0 0 var(--sp-xs);
}

.section-faq__answer p:last-child {
	margin-bottom: 0;
}

/* ---------- Fade-in animation ---------- */

@keyframes faqFadeIn {
	from {
		opacity: 0;
		transform: translateY(-0.4rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------- Responsive ---------- */

@media (max-width: 575px) {
	.section-faq__btn {
		padding: var(--sp-sm) var(--sp-md);
	}

	.section-faq__answer {
		padding: 0 var(--sp-md) var(--sp-sm);
	}
}

/* ==========================================================
   GLOBAL RESPONSIVE — Tablet (≤991px)
   ========================================================== */

@media (max-width: 991px) {

	/* Section padding tablet */
	.section-bestsellers,
	.section-packages,
	.section-destinations,
	.section-why-us,
	.section-testimonials,
	.section-faq {
		padding: var(--sp-2xl) 0;
	}

	/* Section titles scale down */
	.section-title {
		font-size: var(--fs-h2);
	}

	/* Section header: stack on tablet */
	.section-header .row {
		flex-direction: column;
	}

	/* Card tour footer */
	.card-tour__price-value,
	.card-tour__price-value .woocommerce-Price-amount {
		font-size: var(--fs-h5);
	}
}

/* ==========================================================
   GLOBAL RESPONSIVE — Mobile (≤575px)
   ========================================================== */

@media (max-width: 575px) {

	/* Section padding mobile */
	.section-bestsellers,
	.section-packages,
	.section-destinations,
	.section-why-us,
	.section-testimonials,
	.section-faq {
		padding: var(--sp-xl) 0;
	}

	/* Section titles mobile */
	.section-title {
		font-size: var(--fs-h3);
	}

	.section-overtitle {
		font-size: var(--fs-tiny);
	}

	.section-header {
		margin-bottom: var(--sp-lg);
	}

	/* Card tour: stack price & CTA */
	.card-tour__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--sp-sm);
	}

	.card-tour__cta {
		width: 100%;
		justify-content: center;
	}

	.card-tour__body {
		padding: var(--sp-md);
	}

	.card-tour__title {
		font-size: var(--fs-h5);
	}

	.card-tour__desc,
	.card-tour__desc p {
		font-size: var(--fs-small);
	}

	/* Paquete button */
	.section-packages__btn {
		width: 100%;
		justify-content: center;
		padding: 1.2rem 2rem;
		font-size: var(--fs-small);
	}

	/* Section desc */
	.section-desc,
	.section-desc p {
		font-size: var(--fs-small);
	}
}

/* ==========================================================
   PAGE — Flat / Static pages (page.php)
   ========================================================== */

/* ---------- Page Hero ---------- */

.page-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--c-primary);
	padding: calc(var(--header-height, 80px) + var(--sp-xl)) 0 var(--sp-3xl);
}

/* Taller and cleaner hero for pages with JetFormBuilder */
.page-hero--with-form {
	min-height: 62vh;
	background-position: center center;
	padding: calc(var(--header-height, 80px) + 2.2rem) 0 3.4rem;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.20) 0%,
		rgba(0, 0, 0, 0.60) 40%,
		rgba(0, 0, 0, 0.80) 100%
	);
}

.page-hero--with-form .page-hero__overlay {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.20) 0%,
		rgba(0, 0, 0, 0.60) 40%,
		rgba(0, 0, 0, 0.80) 100%
	);
}

.page-hero__content {
	position: relative;
	z-index: 2;
}

/* Breadcrumb */
.page-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: var(--sp-md);
	flex-wrap: wrap;
	font-size: 1.5rem;
}

.page-hero__breadcrumb a {
	font-family: var(--ff-body);
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.page-hero__breadcrumb a:hover {
	color: var(--c-white);
}

.page-hero__breadcrumb-sep {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.4);
	user-select: none;
}

.page-hero__breadcrumb-current {
	font-family: var(--ff-body);
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.page-hero__breadcrumb-yoast,
.page-hero__breadcrumb-yoast > span {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.page-hero__breadcrumb-yoast,
.page-hero__breadcrumb-yoast span,
.page-hero__breadcrumb-yoast a {
	font-family: var(--ff-body);
	font-size: 1.5rem;
	line-height: 1.4;
}

.page-hero__breadcrumb-yoast span {
	color: rgba(255, 255, 255, 0.75);
}

.page-hero__breadcrumb-yoast .breadcrumb_last {
	color: #fff;
	font-weight: var(--fw-bold);
}

/* Title */
.page-hero__title {
	font-family: var(--ff-heading);
	font-size: 5.6rem;
	font-weight: var(--fw-bold);
	color: var(--c-white);
	line-height: 1.15;
	margin: 0 0 var(--sp-sm);
	max-width: 80rem;
}

/* Description (excerpt) */
.page-hero__desc,
.page-hero__desc p {
	font-family: var(--ff-body);
	font-size: var(--fs-large);
	font-weight: var(--fw-light);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 65rem;
	margin: 0;
}

/* ---------- Page Body ---------- */

.page-body {
	background: var(--c-bg);
	padding: var(--sp-3xl) 0;
}

.page-body__inner {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--c-text);
}

/* Headings inside content */
.page-body__inner h2 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h2);
	font-weight: var(--fw-h2);
	line-height: var(--lh-heading);
	color: var(--c-primary);
	margin: var(--sp-2xl) 0 var(--sp-md);
	padding-bottom: var(--sp-sm);
	border-bottom: 2px solid var(--c-border-light);
}

.page-body__inner h3 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-h3);
	line-height: var(--lh-heading);
	color: var(--c-secondary);
	margin: var(--sp-xl) 0 var(--sp-sm);
}

.page-body__inner h4 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-h4);
	line-height: var(--lh-heading);
	color: var(--c-text);
	margin: var(--sp-lg) 0 var(--sp-xs);
}

/* Paragraphs */
.page-body__inner p {
	margin-bottom: var(--sp-md);
}

/* Lists */
.page-body__inner ul,
.page-body__inner ol {
	margin: 0 0 var(--sp-md);
	padding-left: var(--sp-xl);
}

.page-body__inner li {
	margin-bottom: var(--sp-xs);
	line-height: 1.7;
}

.page-body__inner ul li::marker {
	color: var(--c-primary);
}

/* Links */
.page-body__inner a {
	color: #C62828;
	text-decoration: none;
}

.page-body__inner a:hover {
	text-decoration: underline;
}

/* Strong / Bold */
.page-body__inner strong {
	font-weight: var(--fw-semibold);
	color: var(--c-text);
}

/* Blockquote */
.page-body__inner blockquote {
	border-left: 4px solid var(--c-primary);
	margin: var(--sp-lg) 0;
	padding: var(--sp-md) var(--sp-lg);
	background: var(--c-surface-alt);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-style: italic;
	color: var(--c-text);
}

/* Tables */
.page-body__inner table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--sp-lg) 0;
}

.page-body__inner th,
.page-body__inner td {
	padding: var(--sp-sm) var(--sp-md);
	border: 1px solid var(--c-border);
	text-align: left;
}

.page-body__inner th {
	background: var(--c-primary);
	color: var(--c-white);
	font-weight: var(--fw-semibold);
}

.page-body__inner tr:nth-child(even) td {
	background: var(--c-surface-alt);
}

/* Images inside content */
.page-body__inner img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	margin: var(--sp-md) 0;
}

/* Page content — JetFormBuilder shortcode styling */
.page-body--has-jet-form .page-body__inner {
	max-width: 980px;
}

.page-body--has-jet-form .jet-form-builder {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.page-body--has-jet-form .jet-form-builder__label {
	display: block;
	margin-bottom: 8px;
	font-size: 1.2rem;
	font-weight: 400;
	color: #374151;
	line-height: 1.45;
}

.page-body--has-jet-form .jet-form-builder .jet-form-builder__label-text,
.page-body--has-jet-form .jet-form-builder .jet-form-builder__field-label {
	font-size: 1.6rem;
	font-weight: 600;
	color: #4b5563;
	line-height: 1.4;
}

/* Checkbox/Radio option labels */
.page-body--has-jet-form .jet-form-builder label,
.page-body--has-jet-form .jet-form-builder .jet-form-builder__fields-group label,
.page-body--has-jet-form .jet-form-builder .jet-form-builder__check-radio-field__label,
.page-body--has-jet-form .jet-form-builder .jet-form-builder__checkbox-label,
.page-body--has-jet-form .jet-form-builder .jet-form-builder__option-label,
.page-body--has-jet-form .jet-form-builder .checkradio-wrap label {
	font-size: 1.2rem !important;
	font-weight: 400;
	color: #374151 !important;
	line-height: 1.45;
}

.page-body--has-jet-form .jet-form-builder input[type="checkbox"],
.page-body--has-jet-form .jet-form-builder input[type="radio"] {
	margin-right: 8px;
}

.page-body--has-jet-form .jet-form-builder__field {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	font-size: 1rem;
	color: #111827;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.page-body--has-jet-form textarea.jet-form-builder__field {
	min-height: 140px;
}

.page-body--has-jet-form .jet-form-builder__field:focus {
	outline: none;
	border-color: #bfa36b;
	box-shadow: 0 0 0 4px rgba(191, 163, 107, 0.15);
}

.page-body--has-jet-form .jet-form-builder__submit,
.page-body--has-jet-form .jet-form-builder__action-button,
.page-body--has-jet-form .jet-form-builder button[type="submit"],
.page-body--has-jet-form .jet-form-builder input[type="submit"],
.page-body--has-jet-form .jet-form-builder .submit-type-reload {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 48px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: #6b4f1d !important;
	color: #fff !important;
	font-weight: 600 !important;
	font-size: 0.95rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none !important;
	transition: background .2s ease, transform .2s ease;
}

.page-body--has-jet-form .jet-form-builder__submit:hover,
.page-body--has-jet-form .jet-form-builder__action-button:hover,
.page-body--has-jet-form .jet-form-builder button[type="submit"]:hover,
.page-body--has-jet-form .jet-form-builder input[type="submit"]:hover,
.page-body--has-jet-form .jet-form-builder .submit-type-reload:hover {
	background: #583f16 !important;
	transform: translateY(-1px);
}

.page-body--has-jet-form .jet-form-builder__action-button-wrapper {
	margin-top: 8px;
}

/* ---------- Page Hero Responsive ---------- */

@media (max-width: 991px) {
	.page-hero {
		min-height: 40vh;
		padding-bottom: var(--sp-2xl);
	}

	.page-hero--with-form {
		min-height: 52vh;
		padding-bottom: 2.4rem;
	}

	.page-hero__title {
		font-size: 4rem;
	}
}

@media (max-width: 575px) {
	.page-hero {
		min-height: 35vh;
		padding-bottom: var(--sp-xl);
	}

	.page-hero--with-form {
		min-height: 45vh;
		background-position: center 42%;
	}

	.page-hero__title {
		font-size: 2.8rem;
	}

	.page-hero__desc,
	.page-hero__desc p {
		font-size: var(--fs-body);
	}

	.page-body {
		padding: var(--sp-2xl) 0;
	}

	.page-body__inner h2 {
		font-size: var(--fs-h3);
	}
}


/* ==========================================================
   ABOUT US PAGE  (page-about-us.php)
   ========================================================== */

/* ── Shared helpers ── */
.abt-over {
	display: block;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-secondary);
	margin-bottom: var(--sp-xs);
}

.abt-over--light { color: rgba(255,255,255,.65); }

.abt-heading {
	font-family: var(--ff-heading);
	font-size: var(--fs-h2);
	font-weight: var(--fw-h2);
	line-height: var(--lh-heading);
	color: var(--c-primary);
	margin: 0 0 var(--sp-md);
}

.abt-heading--light { color: var(--c-white); }

/* ─── 1. HERO ─── */
.abt-hero {
	position: relative;
	min-height: 55vh;
	display: flex;
	align-items: flex-end;
	background: var(--c-primary) center / cover no-repeat;
	padding: calc(var(--header-height, 80px) + var(--sp-xl)) 0 var(--sp-3xl);
}

.abt-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg,
		rgba(0,0,0,.12) 0%,
		rgba(0,0,0,.32) 40%,
		rgba(0,0,0,.68) 100%);
}

.abt-hero__inner { position: relative; z-index: 2; }

.abt-hero__crumb {
	display: flex; align-items: center; gap: .5rem;
	font-family: var(--ff-body); font-size: var(--fs-small);
	color: rgba(255,255,255,.65); margin-bottom: var(--sp-md);
}
.abt-hero__crumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.abt-hero__crumb a:hover { color: #fff; }

.abt-hero__over {
	display: block;
	font-family: var(--ff-body); font-size: var(--fs-small);
	font-weight: var(--fw-semibold); letter-spacing: .25em;
	text-transform: uppercase; color: rgba(255,255,255,.7);
	margin-bottom: var(--sp-xs);
}

.abt-hero__title {
	font-family: var(--ff-heading); font-size: 5.6rem;
	font-weight: var(--fw-bold); color: #fff;
	line-height: 1.12; margin: 0; max-width: 70rem;
}

/* ─── 2. INTRO ─── */
.abt-intro {
	padding: var(--sp-2xl) 0;
	background: var(--c-white);
}

.abt-intro__content {
	font-family: var(--ff-body);
	font-size: var(--fs-large);
	line-height: 1.85;
	color: var(--c-text);
}

.abt-intro__content p { margin-bottom: var(--sp-md); }

.abt-intro__logo-wrap {
	display: flex; align-items: center; justify-content: center;
	height: 100%;
}

.abt-intro__logo {
	max-width: 28rem; width: 100%; height: auto;
	opacity: .15;
}

/* ─── 3. HISTORIA ─── */
.abt-history {
	padding: var(--sp-2xl) 0;
	background: var(--c-white);
}

.abt-history__img-wrap {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.abt-history__img {
	width: 100%; height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	min-height: 36rem;
}

.abt-history__body {
	font-family: var(--ff-body); font-size: var(--fs-body);
	line-height: 1.85; color: var(--c-text);
}

.abt-history__body p { margin-bottom: var(--sp-md); }

/* ─── 4. VISION & MISION ─── */
.abt-vm {
	position: relative;
	padding: var(--sp-3xl) 0;
	background: var(--c-primary);
	overflow: hidden;
}

.abt-vm__bg {
	position: absolute; inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><rect fill="none" stroke="rgba(255,255,255,.04)" width="80" height="80"/></svg>');
}

.abt-vm__header {
	text-align: center; position: relative; z-index: 1;
	margin-bottom: var(--sp-xl);
}

.abt-vm__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: var(--sp-xl);
	position: relative; z-index: 1;
}

.abt-vm__card {
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: var(--radius-lg);
	padding: var(--sp-2xl);
	transition: transform .3s ease, background .3s ease;
}

.abt-vm__card:hover {
	transform: translateY(-6px);
	background: rgba(255,255,255,.10);
}

.abt-vm__card-icon {
	width: 5.6rem; height: 5.6rem;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,.10);
	border-radius: var(--radius-md);
	margin-bottom: var(--sp-lg);
}

.abt-vm__card-icon .material-icons-round {
	font-size: 2.8rem; color: rgba(255,255,255,.85);
}

.abt-vm__card-title {
	font-family: var(--ff-heading); font-size: var(--fs-h4);
	font-weight: var(--fw-semibold); color: #fff;
	margin: 0 0 var(--sp-sm);
}

.abt-vm__card-text,
.abt-vm__card-text p {
	font-family: var(--ff-body); font-size: var(--fs-body);
	line-height: 1.8; color: rgba(255,255,255,.72);
}

.abt-vm__card-text p:last-child { margin-bottom: 0; }

/* ─── 5. VALORES ─── */
.abt-vals {
	padding: var(--sp-2xl) 0;
	background: var(--c-white);
}

.abt-vals__header { text-align: center; margin-bottom: var(--sp-xl); }

.abt-vals__sub {
	max-width: 65rem; margin: 0 auto;
	font-family: var(--ff-body); font-size: var(--fs-body);
	line-height: 1.7; color: var(--c-text); text-align: center;
}

.abt-vals__sub p:last-child { margin-bottom: 0; }

.abt-vals__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--sp-lg);
}

.abt-vals__card {
	display: flex; align-items: flex-start; gap: var(--sp-lg);
	background: var(--c-surface);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	padding: var(--sp-xl);
	transition: box-shadow .3s ease, transform .3s ease;
}

.abt-vals__card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.06);
	transform: translateY(-3px);
}

.abt-vals__num {
	flex-shrink: 0;
	font-family: var(--ff-heading); font-size: 3.6rem;
	font-weight: var(--fw-bold); line-height: 1;
	color: var(--c-primary); opacity: .2;
}

.abt-vals__card-title {
	font-family: var(--ff-heading); font-size: var(--fs-h5);
	font-weight: var(--fw-semibold); color: var(--c-primary);
	margin: 0 0 var(--sp-xs);
}

.abt-vals__card-text,
.abt-vals__card-text p {
	font-family: var(--ff-body); font-size: var(--fs-small);
	line-height: 1.7; color: var(--c-text);
}

.abt-vals__card-text p:last-child { margin-bottom: 0; }

/* ─── 6. CERTIFICADOS ─── */
.abt-certs {
	padding: var(--sp-2xl) 0;
	background: var(--c-white);
	text-align: center;
}

.abt-certs__row {
	display: flex; flex-wrap: wrap;
	justify-content: center; align-items: center;
	gap: var(--sp-3xl); margin-top: var(--sp-xl);
}

.abt-certs__img {
	max-height: 8rem; width: auto;
	object-fit: contain;
	filter: grayscale(100%); opacity: .5;
	transition: filter .3s, opacity .3s;
}

.abt-certs__img:hover { filter: grayscale(0); opacity: 1; }

/* ─── 7. CTA ─── */
.abt-cta {
	position: relative;
	padding: var(--sp-3xl) 0;
	background: var(--c-primary) center / cover no-repeat;
	text-align: center;
}

.abt-cta__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.6);
}

.abt-cta__inner { position: relative; z-index: 2; }

.abt-cta__title { margin-bottom: var(--sp-sm); }

.abt-cta__desc {
	font-family: var(--ff-body); font-size: var(--fs-large);
	color: rgba(255,255,255,.8); margin: 0 auto var(--sp-xl);
	max-width: 55rem;
}

.abt-cta__links {
	display: flex; flex-wrap: wrap;
	justify-content: center; gap: var(--sp-md);
	margin-bottom: var(--sp-lg);
}

.abt-cta__pill {
	display: inline-flex; align-items: center; gap: .6rem;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--radius-pill);
	padding: var(--sp-sm) var(--sp-lg);
	font-family: var(--ff-body); font-size: var(--fs-body);
	font-weight: var(--fw-medium); color: #fff;
	text-decoration: none;
	transition: background .25s;
}

.abt-cta__pill:hover { background: rgba(255,255,255,.22); color: #fff; }

.abt-cta__pill .material-icons-round { font-size: 2rem; }

.abt-cta__wa {
	display: inline-flex; align-items: center; gap: .6rem;
	background: #25D366; color: #fff;
	border-radius: var(--radius-pill);
	padding: var(--sp-sm) var(--sp-2xl);
	font-family: var(--ff-body); font-size: var(--fs-body);
	font-weight: var(--fw-semibold); text-decoration: none;
	transition: background .25s;
}

.abt-cta__wa:hover { background: #1EBE57; color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
	.abt-hero__title { font-size: 4rem; }
	.abt-history__body { column-count: 1; }
	.abt-vm__cards { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
	.abt-hero { min-height: 45vh; }
	.abt-hero__title { font-size: 2.8rem; }
	.abt-heading { font-size: var(--fs-h3); }

	.abt-intro,
	.abt-history,
	.abt-vm,
	.abt-vals,
	.abt-certs,
	.abt-cta { padding: var(--sp-2xl) 0; }

	.abt-intro__content { font-size: var(--fs-body); }

	.abt-vals__grid { grid-template-columns: 1fr; }

	.abt-certs__row { gap: var(--sp-lg); }
	.abt-certs__img { max-height: 6rem; }

	.abt-cta__links { flex-direction: column; align-items: center; }
}


/* ==========================================================
   SITE FOOTER
   ========================================================== */

/* Decorative top border image */
.site-footer__border {
	line-height: 0;
	overflow: hidden;
	height: 350px;
	position: relative;
}

.site-footer__border-img {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
}

/* Main footer */
.site-footer {
	background: var(--c-primary);
	color: rgba(255, 255, 255, 0.85);
	padding: var(--sp-3xl) 0 0;
}

.site-footer .container {
	max-width: 1200px;
}

/* 4-column grid */
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
	gap: var(--sp-2xl);
}

/* ---------- Column: Brand ---------- */

.site-footer__col--brand {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
}

/* Logo */
.site-footer__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	margin-bottom: var(--sp-2xs);
}

.site-footer__logo-img {
	height: 5.5rem;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
}

.site-footer__logo-text {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-bold);
	color: var(--c-white);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Description */
.site-footer__desc {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* Social icons */
.site-footer__social {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--c-white);
	text-decoration: none;
	transition: var(--ease-default);
}

.site-footer__social-link:hover {
	background: var(--c-white);
	border-color: var(--c-white);
	color: var(--c-primary);
}

.site-footer__social-link svg {
	display: block;
}

/* Legal links */
.site-footer__legal {
	display: flex;
	gap: var(--sp-md);
}

.site-footer__legal-link {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: rgba(255, 255, 255, 0.6);
	text-decoration: underline;
	text-underline-offset: 0.2rem;
	transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
	color: var(--c-white);
}

/* Copyright in brand column */
.site-footer__copy-brand {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ---------- Column headings ---------- */

.site-footer__heading {
	display: block;
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	margin: 0 0 var(--sp-md);
}

/* ---------- Footer menus ---------- */

ul.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--sp-xs);
}

.site-footer__menu li {
	list-style: none;
}

.site-footer__menu a {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__menu a:hover {
	color: var(--c-white);
}

/* Info column links */
.site-footer__info a {
	word-break: break-all;
}

/* ---------- Bottom bar ---------- */

.site-footer__bottom {
	margin-top: var(--sp-2xl);
	padding: var(--sp-md) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
}

.site-footer__bottom-text {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

/* ---------- Footer Responsive — Tablet ---------- */

@media (max-width: 991px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--sp-xl);
	}

	.site-footer__col--brand {
		grid-column: 1 / -1;
	}
}

/* ---------- Footer Responsive — Mobile ---------- */

@media (max-width: 575px) {
	.site-footer {
		padding: var(--sp-2xl) 0 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--sp-xl);
	}

	.site-footer__col--brand {
		grid-column: auto;
	}
}

}

/* ==========================================================
   HOME BLOG SECTION
   ========================================================== */
.section-home-blog {
	padding: var(--sp-3xl) 0;
	background: var(--c-surface-alt);
}

.home-blog-swiper {
	padding: 0.2rem var(--sp-xs) var(--sp-2xl);
}

.home-blog-swiper .swiper-wrapper {
	align-items: stretch;
}

.home-blog-swiper .swiper-slide {
	display: flex;
	height: auto;
}

/* Mismo tamaño / prioridad que .tour-related-pagination (swiper-bundle) */
.section-home-blog .home-blog-pagination.swiper-pagination {
	position: static !important;
	bottom: auto !important;
	left: auto !important;
	transform: none !important;
	width: 100% !important;
	margin-top: var(--sp-lg);
	padding: var(--sp-md) 0 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	min-height: 2.1rem;
}

.section-home-blog .home-blog-pagination.swiper-pagination-horizontal .swiper-pagination-bullet,
.section-home-blog .home-blog-pagination .swiper-pagination-bullet {
	width: 0.875rem !important;
	height: 0.875rem !important;
	margin: 0 !important;
	opacity: 1 !important;
	background: var(--c-border) !important;
	border-radius: 50%;
	transition: width 0.28s ease, border-radius 0.28s ease, background 0.2s ease;
	line-height: 0;
}

.section-home-blog .home-blog-pagination.swiper-pagination-horizontal .swiper-pagination-bullet-active,
.section-home-blog .home-blog-pagination .swiper-pagination-bullet-active {
	width: 2.25rem !important;
	height: 0.875rem !important;
	border-radius: 999px;
	background: var(--c-primary) !important;
}

.card-blog {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background: var(--c-white);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-blog:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
}

.card-blog__img-link {
	display: block;
}

.card-blog__img {
	margin: 0;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #eef1f7;
}

.card-blog__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.card-blog:hover .card-blog__thumb {
	transform: scale(1.03);
}

.card-blog__thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #9ca3af;
}

.card-blog__thumb-placeholder .material-icons-round {
	font-size: 3rem;
}

.card-blog__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 1rem;
	padding: var(--sp-md);
}

.card-blog__date {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: #6b7280;
}

.card-blog__title {
	margin: 0;
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-blog__title a {
	color: var(--c-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.card-blog__title a:hover {
	color: var(--c-secondary);
}

.card-blog__excerpt {
	margin: 0;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	line-height: 1.6;
	color: #6b7280;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-blog__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-secondary);
	text-decoration: none;
}

.card-blog__cta .material-icons-round {
	font-size: 1.8rem;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error404-page__wrap {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	padding: 110px 0;
	background:
		radial-gradient(1200px 420px at 80% -10%, rgba(107, 79, 29, 0.12), transparent 60%),
		linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
}

.error404-page__wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(17, 24, 39, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 24, 39, 0.03) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: .35;
}

.error404-page__card {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	padding: 54px 34px;
	box-shadow:
		0 16px 50px rgba(15, 23, 42, 0.10),
		0 2px 8px rgba(15, 23, 42, 0.05);
	backdrop-filter: blur(2px);
}

.error404-page__code {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #6b4f1d;
	background: #f3ecdc;
	border-radius: 999px;
	padding: 7px 13px;
	margin-bottom: 10px;
}

/* Reusable breadcrumb (aligned with site style) */
.theme-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-family: var(--ff-body);
	margin-bottom: 12px;
}

.theme-breadcrumb a {
	text-decoration: none;
	transition: color .2s ease;
}

.theme-breadcrumb__sep {
	font-size: 16px;
	line-height: 1;
	opacity: .65;
}

.theme-breadcrumb--light,
.theme-breadcrumb--light a {
	color: rgba(255, 255, 255, 0.82);
}

.theme-breadcrumb--light a:hover {
	color: #fff;
}

.theme-breadcrumb--muted,
.theme-breadcrumb--muted a {
	color: #6b7280;
}

.theme-breadcrumb--muted a:hover {
	color: #1f2937;
}

.error404-page__breadcrumb {
	justify-content: center;
}

.error404-page__title {
	margin: 0;
	font-family: "Lato", sans-serif;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 700;
	line-height: 1.1;
	color: #1f2937;
}

.error404-page__desc {
	margin: 16px auto 0;
	max-width: 650px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: #4b5563;
}

.error404-page__search {
	display: flex;
	gap: 12px;
	max-width: 620px;
	margin: 30px auto 0;
}

.error404-page__search input {
	flex: 1;
	height: 54px;
	border: 1px solid #d8dde6;
	border-radius: 14px;
	padding: 0 16px;
	font-size: 1rem;
	background: #fff;
}

.error404-page__search input:focus {
	outline: none;
	border-color: #bfa36b;
	box-shadow: 0 0 0 4px rgba(191, 163, 107, 0.15);
}

.error404-page__search button {
	height: 54px;
	border: 0;
	border-radius: 14px;
	padding: 0 24px;
	background: #3f4016;
	color: #fff;
	font-weight: 600;
	transition: background .2s ease, transform .2s ease;
}

.error404-page__search button:hover {
	background: #2f310f;
	transform: translateY(-1px);
}

.error404-page__actions {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.error404-page__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	background: #6b4f1d;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-weight: 600;
	transition: background .2s ease, transform .2s ease;
}

.error404-page__btn:hover {
	background: #583f16;
	transform: translateY(-1px);
}

.error404-page__link {
	color: #4b5563;
	text-decoration: none;
	font-weight: 600;
}

.error404-page__link:hover {
	color: #1f2937;
}

@media (max-width: 767px) {
	.error404-page__wrap {
		min-height: 68vh;
		padding: 84px 0;
	}

	.error404-page__card {
		border-radius: 18px;
		padding: 36px 18px;
	}

	.error404-page__search {
		flex-direction: column;
	}

	.error404-page__search button {
		width: 100%;
	}
}

/* ---------- Sidebar Responsive ---------- */

@media (max-width: 991px) {
	.tour-sidebar {
		position: static;
	}

	.tour-section {
		scroll-margin-top: 6rem;
	}
}

@media (max-width: 575px) {
	.tour-content {
		padding: var(--sp-xl) 0;
	}

	.tour-section {
		margin-bottom: var(--sp-2xl);
	}

	.tour-section__title {
		font-size: var(--fs-h4);
	}

	.tour-sidebar__card {
		padding: var(--sp-lg);
	}

	.tour-tabs__link {
		padding: var(--sp-sm) var(--sp-md);
		font-size: var(--fs-tiny);
	}
}

/* ==========================================================
   CONTACT US PAGE  (page-contact-us.php)
   ========================================================== */

/* ─── 1. HERO ─── */
.ct-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: flex-end;
	background: var(--c-primary) center / cover no-repeat;
	padding: calc(var(--header-height, 80px) + var(--sp-xl)) 0 var(--sp-3xl);
}

.ct-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg,
		rgba(0, 0, 0, 0.12) 0%,
		rgba(0, 0, 0, 0.32) 40%,
		rgba(0, 0, 0, 0.68) 100%);
}

.ct-hero__inner {
	position: relative;
	z-index: 2;
}

.ct-hero__crumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: var(--sp-md);
}

.ct-hero__crumb a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
}

.ct-hero__crumb a:hover {
	color: #fff;
}

.ct-hero__title {
	font-family: var(--ff-heading);
	font-size: 5.6rem;
	font-weight: var(--fw-bold);
	color: #fff;
	line-height: 1.12;
	margin: 0;
	max-width: 70rem;
}

.ct-hero__desc,
.ct-hero__desc p {
	font-family: var(--ff-body);
	font-size: var(--fs-large);
	font-weight: var(--fw-light);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 65rem;
	margin: var(--sp-sm) 0 0;
}

/* ─── 2. BODY ─── */
.ct-body {
	padding: var(--sp-3xl) 0;
	background: var(--c-bg);
}

/* ─── 3. INTRO TEXT ─── */
.ct-intro {
	font-family: var(--ff-body);
	font-size: var(--fs-large);
	line-height: 1.8;
	color: var(--c-text);
	margin-bottom: var(--sp-xl);
}

.ct-intro p {
	margin-bottom: var(--sp-sm);
}

.ct-intro p:last-child {
	margin-bottom: 0;
}

/* ─── 4. CONTACT INFO CARDS ─── */
.ct-cards {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
	margin-bottom: var(--sp-xl);
}

.ct-card {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-md);
	padding: var(--sp-lg);
	background: var(--c-surface);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ct-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.ct-card__icon {
	flex-shrink: 0;
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(63, 64, 22, 0.08);
	border-radius: var(--radius-md);
	color: var(--c-primary);
}

.ct-card__icon .material-icons-round {
	font-size: 2.4rem;
}

.ct-card__icon--wa {
	background: rgba(37, 211, 102, 0.1);
	color: #25D366;
}

.ct-card__icon--wa svg {
	width: 2.4rem;
	height: 2.4rem;
}

.ct-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.ct-card__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0;
	line-height: 1.3;
}

.ct-card__link {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: var(--c-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ct-card__link:hover {
	color: var(--c-secondary);
	text-decoration: underline;
}

.ct-card__text {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: #666;
	line-height: 1.5;
}

/* ─── 5. WHATSAPP CTA BUTTON ─── */
.ct-wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	width: 100%;
	padding: 1.4rem 2.4rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	background: #25D366;
	border: none;
	border-radius: var(--radius-md);
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ct-wa-btn:hover {
	background: #1EBE57;
	color: var(--c-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.ct-wa-btn svg {
	flex-shrink: 0;
}

/* ─── 6. FORM WRAPPER ─── */
.ct-form-wrap {
	background: var(--c-surface);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl);
	box-shadow: var(--shadow-md);
}

.ct-form-header {
	text-align: center;
	margin-bottom: var(--sp-xl);
	padding-bottom: var(--sp-lg);
	border-bottom: 1px solid var(--c-border-light);
}

.ct-form-header__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	height: 5.6rem;
	background: rgba(63, 64, 22, 0.08);
	border-radius: var(--radius-full);
	font-size: 2.8rem;
	color: var(--c-primary);
	margin-bottom: var(--sp-md);
}

.ct-form-header__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0 0 var(--sp-xs);
}

.ct-form-header__desc {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	color: #888;
	margin: 0;
	line-height: 1.5;
}

/* ─── 7. JETFORMBUILDER FORM STYLES ─── */
.ct-form .jet-form-builder {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
}

/* Labels */
.ct-form .jet-form-builder__label {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	margin-bottom: var(--sp-2xs);
}

.ct-form .jet-form-builder__required {
	color: var(--c-error);
	margin-left: 0.2rem;
}

/* Input fields */
.ct-form .jet-form-builder__field {
	width: 100%;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	color: var(--c-text);
	background: var(--c-bg);
	border: 1.5px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 1.2rem 1.6rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.ct-form .jet-form-builder__field:focus {
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgba(63, 64, 22, 0.1);
}

.ct-form .jet-form-builder__field::placeholder {
	color: #aaa;
}

/* Textarea */
.ct-form .jet-form-builder__field[name="message"],
.ct-form textarea.jet-form-builder__field {
	min-height: 14rem;
	resize: vertical;
}

/* Select */
.ct-form select.jet-form-builder__field {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.4rem center;
	background-size: 1.2rem;
	padding-right: 3.6rem;
}

/* Submit button */
.ct-form .jet-form-builder__submit,
.ct-form .jet-form-builder-row .jet-form-builder__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100%;
	padding: 1.4rem 3.2rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.03em;
	color: var(--c-white);
	background: var(--c-secondary);
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ct-form .jet-form-builder__submit:hover {
	background: var(--c-secondary-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Row wrapper */
.ct-form .jet-form-builder-row {
	margin-bottom: 0;
}

/* Success / Error messages */
.ct-form .jet-form-builder-message--success {
	background: rgba(46, 125, 50, 0.08);
	border: 1px solid rgba(46, 125, 50, 0.2);
	border-radius: var(--radius-md);
	padding: var(--sp-md) var(--sp-lg);
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	color: var(--c-success);
	text-align: center;
}

.ct-form .jet-form-builder-message--error {
	background: rgba(198, 40, 40, 0.06);
	border: 1px solid rgba(198, 40, 40, 0.15);
	border-radius: var(--radius-md);
	padding: var(--sp-md) var(--sp-lg);
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	color: var(--c-error);
	text-align: center;
}

/* Field validation error */
.ct-form .jet-form-builder__field.field-has-error {
	border-color: var(--c-error);
	box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.08);
}

.ct-form .jet-form-builder__error {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: var(--c-error);
	margin-top: var(--sp-2xs);
}

/* ─── 8. RESPONSIVE — Tablet ─── */
@media (max-width: 991px) {
	.ct-hero {
		min-height: 40vh;
	}

	.ct-hero__title {
		font-size: 4rem;
	}

	.ct-body {
		padding: var(--sp-2xl) 0;
	}

	.ct-form-wrap {
		padding: var(--sp-xl);
	}

	.ct-form-header__title {
		font-size: var(--fs-h4);
	}
}

/* ─── 9. RESPONSIVE — Mobile ─── */
@media (max-width: 575px) {
	.ct-hero {
		min-height: 35vh;
		padding-bottom: var(--sp-xl);
	}

	.ct-hero__title {
		font-size: 2.8rem;
	}

	.ct-hero__desc,
	.ct-hero__desc p {
		font-size: var(--fs-body);
	}

	.ct-body {
		padding: var(--sp-xl) 0;
	}

	.ct-intro {
		font-size: var(--fs-body);
	}

	.ct-card {
		padding: var(--sp-md);
	}

	.ct-card__icon {
		width: 4.4rem;
		height: 4.4rem;
	}

	.ct-card__icon .material-icons-round {
		font-size: 2rem;
	}

	.ct-card__icon--wa svg {
		width: 2rem;
		height: 2rem;
	}

	.ct-form-wrap {
		padding: var(--sp-lg);
		border-radius: var(--radius-lg);
	}

	.ct-form-header__icon {
		width: 4.8rem;
		height: 4.8rem;
		font-size: 2.4rem;
	}

	.ct-form-header__title {
		font-size: var(--fs-h5);
	}

	.ct-form-header__desc {
		font-size: var(--fs-small);
	}

	.ct-form .jet-form-builder__field {
		padding: 1rem 1.4rem;
		font-size: var(--fs-small);
	}

	.ct-form .jet-form-builder__submit {
		padding: 1.2rem 2rem;
	}
}


/* ==========================================================
   TAILOR MADE PAGE  (page-tailor-made.php)
   ========================================================== */

.tailor-made-page .tm-intro {
	padding-top: var(--sp-2xl);
}

/* ── JetFormBuilder multipaso (Tailor made) ── */
.tailor-made-page .page-body__inner--tm-jfb {
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
	padding: clamp(2.4rem, 4vw, 4.8rem);
	background: var(--c-white);
	border-radius: 1.6rem;
	border: 1px solid var(--c-border-light);
	box-shadow: 0 1.2rem 4.8rem rgba(26, 26, 46, 0.08);
}

.tailor-made-page .page-body--has-jet-form .jet-form-builder {
	font-family: var(--ff-body);
	color: var(--c-text);
}

/* Barra de pasos (1–2–3) */
.tailor-made-page .jet-form-builder-progress-pages--global {
	margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
}

.tailor-made-page .jet-form-builder-progress-pages {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding-bottom: 2.4rem;
	border-bottom: 1px solid var(--c-border-light);
}

.tailor-made-page .jet-form-builder-progress-pages__item--wrapper {
	display: flex;
	align-items: center;
}

.tailor-made-page .jet-form-builder-progress-pages__item--circle {
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-heading);
	font-weight: var(--fw-bold);
	font-size: 1.8rem;
	background: #e8e8e8;
	color: #7a7a7a;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tailor-made-page .jet-form-builder-progress-pages__item--wrapper.active-page .jet-form-builder-progress-pages__item--circle,
.tailor-made-page .jet-form-builder-progress-pages__item--wrapper.passed-page .jet-form-builder-progress-pages__item--circle {
	background: var(--c-secondary);
	color: var(--c-white);
	box-shadow: 0 0.4rem 1.2rem rgba(84, 52, 11, 0.35);
}

.tailor-made-page .jet-form-builder-progress-pages__item--label {
	display: none;
}

.tailor-made-page .jet-form-builder-progress-pages__separator {
	width: clamp(2.4rem, 6vw, 4.8rem);
	height: 0.4rem;
	border-radius: 0.2rem;
	background: #e0e0e0;
	margin: 0 0.4rem;
	transition: background 0.2s ease;
}

.tailor-made-page .jet-form-builder-progress-pages__item--wrapper.passed-page .jet-form-builder-progress-pages__separator,
.tailor-made-page .jet-form-builder-progress-pages__item--wrapper.active-page .jet-form-builder-progress-pages__separator {
	background: var(--c-secondary);
}

/* Página del formulario */
.tailor-made-page .jet-form-builder-page {
	padding-top: 0.8rem;
}

/* Títulos / descripciones de bloque */
.tailor-made-page .jet-form-builder__heading {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	margin: 0 0 0.8rem;
	line-height: var(--lh-heading);
}

.tailor-made-page .jet-form-builder__heading-desc,
.tailor-made-page .jet-form-builder__desc {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	color: #5c5c5c;
	margin: 0 0 1.6rem;
	line-height: 1.55;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder-col__start .jet-form-builder__label-text,
.tailor-made-page .field-type-radio-field .jet-form-builder-col__start .jet-form-builder__label-text {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
}

/* Rejilla tipo “tarjetas” para checkbox / radio */
.tailor-made-page .field-type-checkbox-field .jet-form-builder__fields-group.checkradio-wrap,
.tailor-made-page .field-type-radio-field .jet-form-builder__fields-group.checkradio-wrap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
	margin-top: 0.4rem;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-wrap.checkboxes-wrap,
.tailor-made-page .field-type-radio-field .jet-form-builder__field-wrap.radio-wrap {
	margin: 0;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-label.for-checkbox,
.tailor-made-page .field-type-radio-field .jet-form-builder__field-label.for-radio {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 12rem;
	padding: 1.6rem 1.2rem;
	border: 1px solid var(--c-border);
	border-radius: 1.2rem;
	background: #fafaf8;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-label.for-checkbox > span,
.tailor-made-page .field-type-radio-field .jet-form-builder__field-label.for-radio > span {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	line-height: 1.35;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-label.for-checkbox > span::before,
.tailor-made-page .field-type-radio-field .jet-form-builder__field-label.for-radio > span::before {
	display: none !important;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-label.for-checkbox input,
.tailor-made-page .field-type-radio-field .jet-form-builder__field-label.for-radio input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
	margin: 0;
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-label.for-checkbox:has(input:checked),
.tailor-made-page .field-type-radio-field .jet-form-builder__field-label.for-radio:has(input:checked) {
	border-color: var(--c-secondary);
	background: rgba(84, 52, 11, 0.07);
	box-shadow: 0 0 0 1px var(--c-secondary);
}

.tailor-made-page .field-type-checkbox-field .jet-form-builder__field-label.for-checkbox:focus-within,
.tailor-made-page .field-type-radio-field .jet-form-builder__field-label.for-radio:focus-within {
	outline: 2px solid var(--c-secondary);
	outline-offset: 2px;
}

/* Campos texto, select, fecha */
.tailor-made-page .page-body--has-jet-form .jet-form-builder__field {
	border-radius: 1rem;
	border: 1px solid var(--c-border);
	background: #fafaf8;
	font-family: var(--ff-body);
}

.tailor-made-page .page-body--has-jet-form .jet-form-builder__field:focus {
	border-color: var(--c-secondary);
	box-shadow: 0 0 0 3px rgba(84, 52, 11, 0.12);
	outline: none;
}

.tailor-made-page .field-type-checkbox-field.jet-form-builder-row,
.tailor-made-page .field-type-radio-field.jet-form-builder-row {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 2.4rem;
}

.tailor-made-page .field-type-text-field.jet-form-builder-row,
.tailor-made-page .field-type-email-field.jet-form-builder-row,
.tailor-made-page .field-type-date-field.jet-form-builder-row,
.tailor-made-page .field-type-select-field.jet-form-builder-row,
.tailor-made-page .field-type-textarea-field.jet-form-builder-row {
	margin-bottom: 1.6rem;
}

/* Navegación entre pasos */
.tailor-made-page .jet-form-builder__next-page-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	margin-top: 2.4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--c-border-light);
}

.tailor-made-page .jet-form-builder__prev-page {
	order: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 4.8rem;
	padding: 0 2.4rem;
	border-radius: 1rem;
	border: 1px solid var(--c-border);
	background: var(--c-white);
	color: var(--c-text);
	font-family: var(--ff-body);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-body);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tailor-made-page .jet-form-builder__prev-page:hover {
	border-color: var(--c-secondary);
	background: rgba(84, 52, 11, 0.04);
}

.tailor-made-page .jet-form-builder__next-page {
	order: 2;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 4.8rem;
	padding: 0 2.8rem;
	border: none;
	border-radius: 1rem;
	background: var(--c-secondary);
	color: var(--c-white) !important;
	font-family: var(--ff-body);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-body);
	cursor: pointer;
	box-shadow: 0 0.4rem 1.4rem rgba(84, 52, 11, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tailor-made-page .jet-form-builder__next-page:hover {
	background: var(--c-secondary-hover);
	transform: translateY(-1px);
}

.tailor-made-page .page-body--has-jet-form .jet-form-builder__submit,
.tailor-made-page .page-body--has-jet-form .jet-form-builder__action-button,
.tailor-made-page .page-body--has-jet-form .jet-form-builder button[type="submit"] {
	border-radius: 50rem !important;
	padding: 0 3.2rem !important;
	min-height: 5.2rem !important;
	background: var(--c-secondary) !important;
	color: var(--c-white) !important;
	font-family: var(--ff-heading) !important;
	font-weight: var(--fw-bold) !important;
	font-size: 1.4rem !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 0.4rem 1.4rem rgba(84, 52, 11, 0.28) !important;
}

.tailor-made-page .page-body--has-jet-form .jet-form-builder__submit:hover,
.tailor-made-page .page-body--has-jet-form .jet-form-builder__action-button:hover,
.tailor-made-page .page-body--has-jet-form .jet-form-builder button[type="submit"]:hover {
	background: var(--c-secondary-hover) !important;
	transform: translateY(-1px);
}

.tailor-made-page .jet-form-builder-message--success {
	border-radius: 1rem;
	border: 1px solid rgba(46, 125, 50, 0.35);
	background: rgba(46, 125, 50, 0.08);
	color: var(--c-success);
}

@media (max-width: 767px) {
	.tailor-made-page .field-type-checkbox-field .jet-form-builder__fields-group.checkradio-wrap,
	.tailor-made-page .field-type-radio-field .jet-form-builder__fields-group.checkradio-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.tailor-made-page .field-type-checkbox-field .jet-form-builder__fields-group.checkradio-wrap,
	.tailor-made-page .field-type-radio-field .jet-form-builder__fields-group.checkradio-wrap {
		grid-template-columns: 1fr;
	}

	.tailor-made-page .jet-form-builder__next-page-wrap {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.tailor-made-page .jet-form-builder__next-page {
		margin-left: 0;
		width: 100%;
	}
}

/* ── Wizard nativo Tailor made (sin JetForm) ── */
.tailor-made-page .tm-intro--wizard {
	padding-top: var(--sp-2xl);
}

.tailor-made-page .page-body__inner--tm-wizard {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: clamp(2.4rem, 4vw, 4.8rem);
	background: var(--c-white);
	border-radius: 1.6rem;
	border: 1px solid var(--c-border-light);
	box-shadow: 0 1.2rem 4.8rem rgba(26, 26, 46, 0.08);
}

.tailor-made-page .qosqo-tm-wizard-intro {
	margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
	padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
	border-bottom: 1px solid var(--c-border-light);
}

/* Hereda tipografía de .page-body__inner h2; solo ajuste de margen superior dentro de la tarjeta */
.tailor-made-page .qosqo-tm-wizard-intro > h2:first-of-type {
	margin-top: 0;
}

.tailor-made-page .qosqo-tm-wizard-intro__desc {
	font-size: var(--fs-body);
	color: #5c5c5c;
	line-height: 1.65;
	max-width: 56rem;
}

.tailor-made-page .qosqo-tm-wizard-intro__desc p {
	margin: 0 0 0.75rem;
}

.tailor-made-page .qosqo-tm-wizard-intro__desc p:last-child {
	margin-bottom: 0;
}

.tailor-made-page .qosqo-tm-wizard__page-content {
	margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
	font-size: var(--fs-body);
	color: var(--c-text);
	line-height: 1.65;
}

.tailor-made-page .page-body__inner--tm-wizard > .qosqo-tm-wizard {
	margin-top: clamp(2rem, 3vw, 3.2rem);
}

.qosqo-tm-wizard {
	font-family: var(--ff-body);
	color: var(--c-text);
}

.qosqo-tm-wizard__progress {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
	padding-bottom: 2.4rem;
	border-bottom: 1px solid var(--c-border-light);
}

.qosqo-tm-wizard__progress-item {
	display: flex;
	align-items: center;
}

.qosqo-tm-wizard__progress-circle {
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-heading);
	font-weight: var(--fw-bold);
	font-size: 1.8rem;
	background: #e8e8e8;
	color: #7a7a7a;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.qosqo-tm-wizard__progress-item.is-active .qosqo-tm-wizard__progress-circle,
.qosqo-tm-wizard__progress-item.is-done .qosqo-tm-wizard__progress-circle {
	background: var(--c-secondary);
	color: var(--c-white);
	box-shadow: 0 0.4rem 1.2rem rgba(84, 52, 11, 0.35);
}

.qosqo-tm-wizard__progress-line {
	width: clamp(2.4rem, 6vw, 4.8rem);
	height: 0.4rem;
	border-radius: 0.2rem;
	background: #e0e0e0;
	margin: 0 0.4rem;
	transition: background 0.2s ease;
}

.qosqo-tm-wizard__progress-item.is-done .qosqo-tm-wizard__progress-line,
.qosqo-tm-wizard__progress-item.is-active .qosqo-tm-wizard__progress-line {
	background: var(--c-secondary);
}

.qosqo-tm-wizard__step[hidden] {
	display: none !important;
}

.qosqo-tm-wizard__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	margin: 0 0 0.8rem;
	line-height: var(--lh-heading);
}

.qosqo-tm-wizard__hint {
	font-size: var(--fs-body);
	color: #5c5c5c;
	margin: 0 0 1.6rem;
	line-height: 1.55;
}

.qosqo-tm-wizard__tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.qosqo-tm-wizard__tiles--mb {
	margin-bottom: 2.8rem;
}

.qosqo-tm-wizard__tiles--acc {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qosqo-tm-wizard__tile {
	position: relative;
	margin: 0;
	cursor: pointer;
}

.qosqo-tm-wizard__tile input {
	position: absolute;
	opacity: 0;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
	z-index: 2;
}

.qosqo-tm-wizard__tile-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 12rem;
	padding: 1.6rem 1.2rem;
	border: 1px solid var(--c-border);
	border-radius: 1.2rem;
	background: #fafaf8;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.qosqo-tm-wizard__tile--has-img {
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
}

.qosqo-tm-wizard__tile--has-img .qosqo-tm-wizard__tile-body {
	padding: 0;
	min-height: 0;
	overflow: hidden;
	align-items: stretch;
	justify-content: flex-start;
	flex: 1 1 auto;
	width: 100%;
}

.qosqo-tm-wizard__tile-media {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 1.1rem 1.1rem 0 0;
	margin-bottom: 0.8rem;
	background: rgba(63, 64, 22, 0.08);
	display: flex;
	align-items: stretch;
	line-height: 0;
}

.qosqo-tm-wizard__tile--has-img .qosqo-tm-wizard__tile-media {
	margin-bottom: 0;
	border-radius: 0;
	flex-shrink: 0;
}

.qosqo-tm-wizard__tile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 0;
	flex: 1 1 auto;
}

.qosqo-tm-wizard__tile--has-img .qosqo-tm-wizard__tile-label {
	width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 0.65rem;
	background: #fff;
}

.qosqo-tm-wizard__tile-icon {
	font-size: 2.8rem;
	line-height: 1;
	margin-bottom: 0.8rem;
}

.qosqo-tm-wizard__tile-icon.qosqo-tm-wizard__tile-icon--stars {
	display: block;
	text-align: center;
	max-width: 100%;
	font-size: clamp(0.95rem, 2.5vw, 1.55rem);
	line-height: 1.2;
	margin-bottom: 0.55rem;
	letter-spacing: 0.14em;
	word-break: keep-all;
}

.qosqo-tm-wizard__tile:has(input:checked) .qosqo-tm-wizard__tile-icon--stars {
	filter: drop-shadow(0 0 0.4rem rgba(139, 90, 20, 0.4));
}

.qosqo-tm-wizard__mat-icon {
	font-size: 3.2rem;
	line-height: 1;
	margin-bottom: 0.8rem;
	color: var(--c-secondary);
	opacity: 0.92;
}

.qosqo-tm-wizard__tile:has(input:checked) .qosqo-tm-wizard__mat-icon {
	opacity: 1;
	color: var(--c-secondary-hover);
}

.qosqo-tm-wizard__tile-label {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	line-height: 1.35;
}

.qosqo-tm-wizard__tile:has(input:checked) .qosqo-tm-wizard__tile-body,
.qosqo-tm-wizard__tile:has(input:focus-visible) .qosqo-tm-wizard__tile-body {
	border-color: var(--c-secondary);
	background: rgba(84, 52, 11, 0.07);
	box-shadow: 0 0 0 1px var(--c-secondary);
}

.qosqo-tm-wizard__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.qosqo-tm-wizard__field-label {
	display: block;
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin-bottom: 0.6rem;
}

.qosqo-tm-wizard__req {
	color: var(--c-error);
}

.qosqo-tm-wizard__input,
.qosqo-tm-wizard__textarea {
	width: 100%;
	border-radius: 1rem;
	border: 1px solid var(--c-border);
	background: #fafaf8;
	padding: 1.2rem 1.4rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qosqo-tm-wizard__input:focus,
.qosqo-tm-wizard__textarea:focus {
	border-color: var(--c-secondary);
	box-shadow: 0 0 0 3px rgba(84, 52, 11, 0.12);
	outline: none;
}

.qosqo-tm-wizard__textarea {
	min-height: 12rem;
	resize: vertical;
}

.qosqo-tm-wizard__fields {
	margin-top: 1.2rem;
}

.qosqo-tm-wizard__alert {
	margin: 1.6rem 0 0;
	padding: 1.2rem 1.4rem;
	border-radius: 1rem;
	background: rgba(198, 40, 40, 0.08);
	border: 1px solid rgba(198, 40, 40, 0.25);
	color: var(--c-error);
	font-size: var(--fs-body);
}

.qosqo-tm-wizard.is-sent .qosqo-tm-wizard__alert {
	background: rgba(46, 125, 50, 0.08);
	border-color: rgba(46, 125, 50, 0.3);
	color: var(--c-success);
}

.qosqo-tm-wizard__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	margin-top: 2.4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--c-border-light);
}

.qosqo-tm-wizard__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 4.8rem;
	padding: 0 2.4rem;
	border-radius: 1rem;
	font-family: var(--ff-body);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-body);
	cursor: pointer;
	border: none;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.qosqo-tm-wizard__btn--ghost {
	border: 1px solid var(--c-border);
	background: var(--c-white);
	color: var(--c-text);
}

.qosqo-tm-wizard__btn--ghost:hover {
	border-color: var(--c-secondary);
	background: rgba(84, 52, 11, 0.04);
}

.qosqo-tm-wizard__btn--primary {
	background: var(--c-secondary);
	color: var(--c-white);
	box-shadow: 0 0.4rem 1.4rem rgba(84, 52, 11, 0.28);
	margin-left: auto;
}

.qosqo-tm-wizard__btn--primary:hover {
	background: var(--c-secondary-hover);
	transform: translateY(-1px);
}

.qosqo-tm-wizard__btn--submit {
	border-radius: 50rem;
	padding: 0 3.2rem;
	min-height: 5.2rem;
	background: var(--c-secondary);
	color: var(--c-white);
	font-family: var(--ff-heading);
	font-weight: var(--fw-bold);
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 0.4rem 1.4rem rgba(84, 52, 11, 0.28);
	margin-left: auto;
}

.qosqo-tm-wizard__btn--submit:hover:not(:disabled) {
	background: var(--c-secondary-hover);
	transform: translateY(-1px);
}

.qosqo-tm-wizard__btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

@media (max-width: 767px) {
	.qosqo-tm-wizard__tiles,
	.qosqo-tm-wizard__tiles--acc {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.qosqo-tm-wizard__tiles,
	.qosqo-tm-wizard__tiles--acc {
		grid-template-columns: 1fr;
	}

	.qosqo-tm-wizard__nav {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.qosqo-tm-wizard__btn--primary,
	.qosqo-tm-wizard__btn--submit {
		margin-left: 0;
		width: 100%;
	}
}


/* ==========================================================
   BLOG ARCHIVE
   ========================================================== */

/* ---------- Blog Hero ---------- */

.blog-hero {
	position: relative;
	padding: var(--sp-3xl) 0 var(--sp-3xl);
	background: var(--c-primary);
	background-image: var(--blog-hero-img, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--c-white);
	text-align: center;
	overflow: hidden;
}

.blog-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
	background-size: 60px 60px;
}

.blog-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.35) 40%,
		rgba(0, 0, 0, 0.68) 100%
	);
}

.blog-hero .container {
	position: relative;
	z-index: 2;
}

.blog-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: var(--sp-lg);
}

.blog-hero__breadcrumb a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-hero__breadcrumb a:hover {
	color: var(--c-white);
}

.blog-hero__breadcrumb-sep {
	font-size: 1.6rem;
	opacity: 0.5;
}

.blog-hero__breadcrumb-yoast,
.blog-hero__breadcrumb-yoast > span {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.blog-hero__breadcrumb-yoast,
.blog-hero__breadcrumb-yoast a,
.blog-hero__breadcrumb-yoast span {
	font-size: var(--fs-small);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

.blog-hero__breadcrumb-yoast .breadcrumb_last {
	color: #fff;
	font-weight: var(--fw-bold);
}

.blog-hero__overtitle {
	display: inline-block;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: var(--sp-xs);
}

.blog-hero__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h1);
	font-weight: var(--fw-bold);
	line-height: var(--lh-heading);
	color: var(--c-white);
	margin: 0 0 var(--sp-sm);
}

.blog-hero__desc {
	font-size: var(--fs-large);
	color: rgba(255, 255, 255, 0.8);
	max-width: 60rem;
	margin: 0 auto;
	line-height: 1.6;
}

/* ---------- Blog Grid ---------- */

.blog-grid {
	padding: var(--sp-3xl) 0;
}

.blog-grid__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-lg);
}

.blog-grid__empty {
	text-align: center;
	padding: var(--sp-4xl) var(--sp-lg);
}

.blog-grid__empty-icon {
	font-size: 6.4rem;
	color: var(--c-border);
	margin-bottom: var(--sp-md);
	display: block;
}

.blog-grid__empty h2 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	margin: 0 0 var(--sp-sm);
}

.blog-grid__empty p {
	color: #6b7280;
	margin-bottom: var(--sp-lg);
}

/* ---------- Blog Card ---------- */

.card-blog {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.card-blog:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.card-blog__img-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.card-blog__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card-blog:hover .card-blog__img {
	transform: scale(1.05);
}

.card-blog__img--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-surface-alt);
	color: var(--c-border);
}

.card-blog__img--placeholder .material-icons-round {
	font-size: 4.8rem;
}

.card-blog__body {
	padding: var(--sp-lg);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.card-blog__meta {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	margin-bottom: var(--sp-sm);
}

.card-blog__cat {
	display: inline-block;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--c-white);
	background: var(--c-primary);
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: background 0.2s ease;
}

.card-blog__cat:hover {
	background: var(--c-primary-hover);
	color: var(--c-white);
}

.card-blog__date {
	font-size: var(--fs-tiny);
	color: #6b7280;
}

.card-blog__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	line-height: var(--lh-heading);
	margin: 0 0 var(--sp-xs);
}

.card-blog__title a {
	color: var(--c-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.card-blog__title a:hover {
	color: var(--c-primary);
}

.card-blog__excerpt {
	font-size: var(--fs-small);
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 var(--sp-md);
	flex: 1;
}

.card-blog__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	text-decoration: none;
	transition: gap 0.25s ease, color 0.2s ease;
}

.card-blog__cta:hover {
	gap: 0.8rem;
	color: var(--c-primary-hover);
}

.card-blog__cta .material-icons-round {
	font-size: 1.6rem;
}

/* ---------- Blog Pagination ---------- */

.blog-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin-top: var(--sp-2xl);
}

.blog-pagination a.page-numbers,
.blog-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.2rem;
	height: 4.2rem;
	padding: 0 1rem;
	border-radius: var(--radius-md);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	text-decoration: none;
	background: var(--c-white);
	border: 1px solid var(--c-border-light);
	transition: var(--ease-default);
}

.blog-pagination a.page-numbers:hover {
	background: var(--c-surface-alt);
	border-color: var(--c-border);
	color: var(--c-primary);
}

.blog-pagination span.current {
	background: var(--c-primary);
	color: var(--c-white);
	border-color: var(--c-primary);
}

.blog-pagination span.dots {
	border: none;
	background: none;
	color: #9ca3af;
	min-width: auto;
	padding: 0 0.4rem;
}

.blog-pagination .material-icons-round {
	font-size: 2rem;
}

/* ---------- Blog Archive Responsive ---------- */

@media (max-width: 991px) {
	.blog-grid__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-hero__title {
		font-size: var(--fs-h2);
	}
}

@media (max-width: 575px) {
	.blog-hero {
		padding: var(--sp-2xl) 0 var(--sp-2xl);
	}

	.blog-grid__list {
		grid-template-columns: 1fr;
	}

	.blog-hero__title {
		font-size: var(--fs-h3);
	}

	.blog-grid {
		padding: var(--sp-2xl) 0;
	}
}


/* ==========================================================
   SINGLE BLOG POST
   ========================================================== */

/* ---------- Post Hero ---------- */

.post-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: flex-end;
	padding: var(--sp-3xl) 0 var(--sp-3xl);
	background-color: var(--c-primary);
	overflow: hidden;
}

.post-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.post-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.post-hero__content {
	position: relative;
	z-index: 2;
	max-width: 80rem;
}

.post-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: var(--sp-md);
}

.post-hero__breadcrumb a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.post-hero__breadcrumb a:hover {
	color: var(--c-white);
}

.post-hero__breadcrumb-sep {
	font-size: 1.6rem;
	opacity: 0.5;
}

.post-hero__breadcrumb-yoast,
.post-hero__breadcrumb-yoast > span {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.post-hero__breadcrumb-yoast,
.post-hero__breadcrumb-yoast a,
.post-hero__breadcrumb-yoast span {
	font-size: var(--fs-small);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

.post-hero__breadcrumb-yoast .breadcrumb_last {
	color: #fff;
	font-weight: var(--fw-bold);
}

.post-hero__cat {
	display: inline-block;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	color: var(--c-white);
	padding: 0.4rem 1.2rem;
	border-radius: 50rem;
	text-decoration: none;
	margin-bottom: var(--sp-sm);
	transition: background 0.2s ease;
}

.post-hero__cat:hover {
	background: rgba(255, 255, 255, 0.25);
	color: var(--c-white);
}

.post-hero__title {
	font-family: var(--ff-heading);
	font-size: clamp(2.8rem, 4vw, var(--fs-h1));
	font-weight: var(--fw-bold);
	line-height: 1.2;
	color: var(--c-white);
	margin: 0 0 var(--sp-md);
}

.post-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-sm);
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.8);
}

.post-hero__avatar {
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.post-hero__author {
	font-weight: var(--fw-semibold);
}

.post-hero__meta-dot {
	opacity: 0.5;
}

.post-hero__date,
.post-hero__reading {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.post-hero__date .material-icons-round,
.post-hero__reading .material-icons-round {
	font-size: 1.5rem;
	opacity: 0.7;
}

/* ---------- Post Body Layout ---------- */

.post-body {
	padding: var(--sp-3xl) 0;
}

.post-body__grid {
	display: grid;
	grid-template-columns: 1fr 32rem;
	gap: var(--sp-2xl);
}

.post-body__main {
	min-width: 0;
}

/* ---------- Table of Contents ---------- */

.post-toc {
	background: var(--c-surface-alt);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	padding: var(--sp-lg);
	margin-bottom: var(--sp-2xl);
}

.post-toc__header {
	display: flex;
	align-items: center;
	gap: var(--sp-xs);
}

.post-toc__icon {
	font-size: 2.2rem;
	color: var(--c-primary);
}

.post-toc__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0;
	flex: 1;
}

.post-toc__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	background: none;
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-sm);
	cursor: pointer;
	color: var(--c-text);
	transition: var(--ease-default);
}

.post-toc__toggle:hover {
	background: var(--c-white);
	border-color: var(--c-border);
}

.post-toc__body {
	margin-top: var(--sp-md);
	transition: max-height 0.35s ease, opacity 0.3s ease;
	overflow: hidden;
}

.post-toc__body.is-collapsed {
	max-height: 0 !important;
	opacity: 0;
	margin-top: 0;
}

.post-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc-counter;
}

.post-toc__item {
	counter-increment: toc-counter;
}

.post-toc__link {
	display: flex;
	align-items: baseline;
	gap: var(--sp-xs);
	font-size: var(--fs-small);
	color: var(--c-text);
	text-decoration: none;
	padding: 0.6rem 0;
	padding-left: var(--sp-md);
	border-left: 2px solid transparent;
	transition: var(--ease-default);
}

.post-toc__link::before {
	content: counter(toc-counter) ".";
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	min-width: 2rem;
}

.post-toc__link:hover {
	color: var(--c-primary);
	border-left-color: var(--c-border);
}

.post-toc__link.is-active {
	color: var(--c-primary);
	font-weight: var(--fw-semibold);
	border-left-color: var(--c-primary);
	background: rgba(63, 64, 22, 0.04);
}

/* ---------- Post Prose (content) ---------- */

.post-prose {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.8;
	color: var(--c-text);
}

.post-prose h2 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h2);
	font-weight: var(--fw-h2);
	line-height: var(--lh-heading);
	color: var(--c-primary);
	margin: var(--sp-2xl) 0 var(--sp-md);
	padding-top: var(--sp-md);
	scroll-margin-top: 10rem;
}

.post-prose h3 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-h3);
	line-height: var(--lh-heading);
	color: var(--c-secondary);
	margin: var(--sp-xl) 0 var(--sp-sm);
}

.post-prose h4 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-h4);
	line-height: var(--lh-heading);
	color: var(--c-text);
	margin: var(--sp-lg) 0 var(--sp-xs);
}

.post-prose p {
	margin: 0 0 var(--sp-md);
}

.post-prose ul,
.post-prose ol {
	margin: 0 0 var(--sp-md);
	padding-left: var(--sp-xl);
}

.post-prose li {
	margin-bottom: var(--sp-xs);
	line-height: 1.7;
}

.post-prose ul li::marker {
	color: var(--c-primary);
}

.post-prose a {
	color: var(--c-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s ease;
}

.post-prose a:hover {
	color: var(--c-primary-hover);
}

.post-prose strong {
	font-weight: var(--fw-semibold);
}

.post-prose blockquote {
	border-left: 4px solid var(--c-primary);
	margin: var(--sp-lg) 0;
	padding: var(--sp-md) var(--sp-lg);
	background: var(--c-surface-alt);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-style: italic;
	color: #4b5563;
}

.post-prose img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	margin: var(--sp-lg) 0;
}

.post-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--sp-lg) 0;
}

.post-prose th,
.post-prose td {
	padding: var(--sp-sm) var(--sp-md);
	border: 1px solid var(--c-border);
	text-align: left;
}

.post-prose th {
	background: var(--c-primary);
	color: var(--c-white);
	font-weight: var(--fw-semibold);
}

.post-prose tr:nth-child(even) td {
	background: var(--c-surface-alt);
}

.post-prose figure {
	margin: var(--sp-lg) 0;
}

.post-prose figcaption {
	font-size: var(--fs-small);
	color: #9ca3af;
	text-align: center;
	margin-top: var(--sp-xs);
}

/* ---------- Post Tags ---------- */

.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-sm);
	padding: var(--sp-lg) 0;
	border-top: 1px solid var(--c-border-light);
	margin-top: var(--sp-2xl);
}

.post-tags__label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
}

.post-tags__label .material-icons-round {
	font-size: 1.8rem;
}

.post-tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.post-tags__link {
	display: inline-block;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	background: var(--c-surface-alt);
	padding: 0.4rem 1.2rem;
	border-radius: 50rem;
	text-decoration: none;
	border: 1px solid var(--c-border-light);
	transition: var(--ease-default);
}

.post-tags__link:hover {
	background: var(--c-primary);
	color: var(--c-white);
	border-color: var(--c-primary);
}

/* ---------- Post Share ---------- */

.post-share {
	display: flex;
	align-items: center;
	gap: var(--sp-md);
	padding: var(--sp-lg) 0;
	border-top: 1px solid var(--c-border-light);
}

.post-share__label {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	white-space: nowrap;
}

.post-share__list {
	display: flex;
	gap: 0.6rem;
}

.post-share__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.8rem;
	height: 3.8rem;
	border-radius: var(--radius-md);
	color: var(--c-white);
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.post-share__link:hover {
	transform: scale(1.1);
	opacity: 0.9;
}

.post-share__link--fb  { background: #1877F2; }
.post-share__link--tw  { background: #1a1a2e; }
.post-share__link--wa  { background: #25D366; }
.post-share__link--li  { background: #0A66C2; }
.post-share__link--copy {
	background: var(--c-surface-alt);
	color: var(--c-text);
	border: 1px solid var(--c-border-light);
}

.post-share__link--copy:hover {
	background: var(--c-primary);
	color: var(--c-white);
	border-color: var(--c-primary);
}

/* ---------- Post Author Box ---------- */

.post-author-box {
	display: flex;
	gap: var(--sp-lg);
	padding: var(--sp-lg);
	background: var(--c-surface-alt);
	border-radius: var(--radius-lg);
	margin-top: var(--sp-lg);
}

.post-author-box__avatar {
	border-radius: 50%;
	flex-shrink: 0;
	object-fit: cover;
}

.post-author-box__label {
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
}

.post-author-box__name {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0.2rem 0 0.4rem;
}

.post-author-box__bio {
	font-size: var(--fs-small);
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* ---------- Post Navigation ---------- */

.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-md);
	padding: var(--sp-lg) 0;
	border-top: 1px solid var(--c-border-light);
	margin-top: var(--sp-lg);
}

.post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: var(--sp-md);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: var(--ease-default);
}

.post-nav__link:hover {
	border-color: var(--c-primary);
	background: rgba(63, 64, 22, 0.02);
}

.post-nav__link--next {
	text-align: right;
	grid-column: 2;
}

.post-nav__direction {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--c-primary);
}

.post-nav__direction .material-icons-round {
	font-size: 1.6rem;
}

.post-nav__title {
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ---------- Post Comments ---------- */

.post-comments {
	margin-top: var(--sp-2xl);
	padding-top: var(--sp-2xl);
	border-top: 1px solid var(--c-border-light);
}

.post-comments__title {
	display: flex;
	align-items: center;
	gap: var(--sp-xs);
	font-family: var(--ff-heading);
	font-size: var(--fs-h3);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0 0 var(--sp-lg);
}

.post-comments__title .material-icons-round {
	font-size: 2.8rem;
	color: var(--c-primary);
}

/* Comments list */
.post-comments__item {
	margin-bottom: var(--sp-lg);
}

.post-comments__item-inner {
	display: flex;
	gap: var(--sp-md);
	padding: var(--sp-md);
	background: var(--c-surface-alt);
	border-radius: var(--radius-md);
}

.post-comments__item-avatar-img {
	border-radius: 50%;
}

.post-comments__item-header {
	display: flex;
	align-items: baseline;
	gap: var(--sp-sm);
	margin-bottom: 0.4rem;
}

.post-comments__item-author {
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
}

.post-comments__item-date {
	font-size: var(--fs-tiny);
	color: #9ca3af;
}

.post-comments__item-text {
	font-size: var(--fs-small);
	line-height: 1.7;
	color: #4b5563;
}

.post-comments__item-text p {
	margin: 0 0 0.6rem;
}

.post-comments__reply a {
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	text-decoration: none;
}

/* Comment form — stepped design */
.post-comments__form-wrap {
	margin-top: var(--sp-xl);
}

.post-comments__step {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	margin-bottom: var(--sp-md);
	margin-top: var(--sp-lg);
}

.post-comments__step:first-child {
	margin-top: 0;
}

.post-comments__step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: var(--fs-small);
	font-weight: var(--fw-bold);
	flex-shrink: 0;
}

.post-comments__step-label {
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
}

.post-comments__field {
	margin-bottom: var(--sp-md);
}

.post-comments__field--full {
	width: 100%;
}

.post-comments__field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-md);
}

.post-comments__label {
	display: block;
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	margin-bottom: 0.4rem;
}

.post-comments__input {
	width: 100%;
	padding: 1rem 1.4rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	color: var(--c-text);
	background: var(--c-white);
	border: 1.5px solid var(--c-border);
	border-radius: var(--radius-md);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
}

.post-comments__input:focus {
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgba(63, 64, 22, 0.1);
}

.post-comments__textarea {
	resize: vertical;
	min-height: 12rem;
}

.post-comments__submit {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1.2rem 2.8rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	background: var(--c-primary);
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: var(--ease-default);
}

.post-comments__submit:hover {
	background: var(--c-primary-hover);
}

.post-comments__submit .material-icons-round {
	font-size: 1.8rem;
}

.post-comments__form p.form-submit {
	margin: 0;
}

/* Form wrap & title */
.post-comments__form-wrap {
	background: var(--c-surface-alt);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	padding: var(--sp-xl);
	margin-top: var(--sp-xl);
}

.post-comments__form-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0 0 var(--sp-lg);
}

.post-comments__cancel {
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-error);
}

.post-comments__logged-in {
	font-size: var(--fs-small);
	color: #6b7280;
	margin-bottom: var(--sp-md);
}

.post-comments__logged-in a {
	color: var(--c-primary);
	text-decoration: none;
}

.post-comments__recaptcha-notice {
	font-size: var(--fs-tiny);
	color: #9ca3af;
	margin-bottom: var(--sp-md);
}

.post-comments__recaptcha-notice a {
	color: #6b7280;
	text-decoration: underline;
}

.post-comments__closed {
	font-size: var(--fs-small);
	color: #9ca3af;
	font-style: italic;
	margin-top: var(--sp-lg);
}

.post-comments__item-pending {
	font-size: var(--fs-small);
	color: var(--c-warning);
	margin: 0 0 0.4rem;
}

.post-comments__item-reply a {
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	text-decoration: none;
}

.post-comments__item-reply a:hover {
	text-decoration: underline;
}

/* Hide reCAPTCHA badge (disclosure text in form instead) */
.grecaptcha-badge {
	visibility: hidden !important;
}


/* ==========================================================
   POST SIDEBAR
   ========================================================== */

.post-sidebar__sticky {
	position: sticky;
	top: calc(var(--header-height) + var(--sp-md));
	display: flex;
	flex-direction: column;
	gap: var(--sp-lg);
}

.post-sidebar__widget {
	background: var(--c-white);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	padding: var(--sp-lg);
}

.post-sidebar__widget-title {
	display: flex;
	align-items: center;
	gap: var(--sp-xs);
	font-family: var(--ff-heading);
	font-size: var(--fs-h6);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0 0 var(--sp-md);
	padding-bottom: var(--sp-sm);
	border-bottom: 2px solid var(--c-primary);
}

.post-sidebar__widget-title .material-icons-round {
	font-size: 2rem;
	color: var(--c-primary);
}

/* Sidebar Search */
.sidebar-search {
	display: flex;
	border: 1.5px solid var(--c-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.sidebar-search:focus-within {
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgba(63, 64, 22, 0.1);
}

.sidebar-search__input {
	flex: 1;
	padding: 1rem 1.2rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: var(--c-text);
	border: none;
	outline: none;
	background: transparent;
}

.sidebar-search__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.2rem;
	background: var(--c-primary);
	color: var(--c-white);
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.sidebar-search__btn:hover {
	background: var(--c-primary-hover);
}

.sidebar-search__btn .material-icons-round {
	font-size: 2rem;
}

/* Sidebar Posts */
.sidebar-posts {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
}

.sidebar-posts__item {
	display: flex;
	gap: var(--sp-sm);
	text-decoration: none;
	transition: var(--ease-default);
}

.sidebar-posts__item:hover .sidebar-posts__title {
	color: var(--c-primary);
}

.sidebar-posts__img {
	width: 7rem;
	height: 7rem;
	border-radius: var(--radius-md);
	object-fit: cover;
	flex-shrink: 0;
}

.sidebar-posts__img--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-surface-alt);
	color: var(--c-border);
}

.sidebar-posts__img--placeholder .material-icons-round {
	font-size: 2.4rem;
}

.sidebar-posts__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.sidebar-posts__title {
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	line-height: 1.4;
	margin: 0 0 0.2rem;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sidebar-posts__date {
	font-size: var(--fs-tiny);
	color: #9ca3af;
}

/* Sidebar Categories */
.sidebar-cats {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-cats__item {
	border-bottom: 1px solid var(--c-border-light);
}

.sidebar-cats__item:last-child {
	border-bottom: none;
}

.sidebar-cats__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.8rem 0;
	font-size: var(--fs-small);
	color: var(--c-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.sidebar-cats__link:hover {
	color: var(--c-primary);
}

.sidebar-cats__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.6rem;
	height: 2.2rem;
	padding: 0 0.6rem;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
	background: rgba(63, 64, 22, 0.08);
	border-radius: 50rem;
}

/* Sidebar Tags */
.sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.sidebar-tags__link {
	display: inline-block;
	font-size: var(--fs-tiny);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	background: var(--c-surface-alt);
	padding: 0.4rem 1rem;
	border-radius: 50rem;
	text-decoration: none;
	border: 1px solid var(--c-border-light);
	transition: var(--ease-default);
}

.sidebar-tags__link:hover {
	background: var(--c-primary);
	color: var(--c-white);
	border-color: var(--c-primary);
}

/* Sidebar JetFormBuilder (blog single) */
.post-sidebar__widget--form {
	background: linear-gradient(180deg, #fff 0%, #fcfcf8 100%);
}

.post-sidebar__form .jet-form-builder {
	display: grid;
	gap: 1rem;
	width: 100%;
}

.post-sidebar__form .jet-form-builder-row {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.post-sidebar__form .jet-form-builder__label,
.post-sidebar__form .jet-form-builder__field-wrap,
.post-sidebar__form .jet-form-builder__fields-group {
	display: block !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	margin: 0 !important;
}

.post-sidebar__form .jet-form-builder__label-text,
.post-sidebar__form .jet-form-builder__field-label {
	display: block;
	margin-bottom: 0.4rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
}

.post-sidebar__form .jet-form-builder__field {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	min-height: 4.2rem;
	padding: 0.9rem 1.1rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: var(--c-text);
	background: #fff;
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.post-sidebar__form textarea.jet-form-builder__field {
	min-height: 11rem;
	resize: vertical;
}

.post-sidebar__form .jet-form-builder__field:focus {
	outline: none;
	border-color: var(--c-secondary);
	box-shadow: 0 0 0 0.2rem rgba(140, 152, 58, 0.15);
}

.post-sidebar__form .jet-form-builder__submit,
.post-sidebar__form .jet-form-builder__action-button,
.post-sidebar__form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 4.4rem;
	padding: 0.9rem 1.8rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	background: var(--c-secondary);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: var(--ease-default);
}

.post-sidebar__form .jet-form-builder__submit:hover,
.post-sidebar__form .jet-form-builder__action-button:hover,
.post-sidebar__form button[type="submit"]:hover {
	background: var(--c-secondary-hover);
	transform: translateY(-1px);
}

.post-sidebar__form .jet-form-builder__field-label.for-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
}


/* ---------- Single Blog Responsive ---------- */

@media (max-width: 991px) {
	.post-body__grid {
		grid-template-columns: 1fr;
	}

	.post-sidebar__sticky {
		position: static;
	}

	.post-hero__title {
		font-size: var(--fs-h2);
	}

	.post-nav {
		grid-template-columns: 1fr;
	}

	.post-nav__link--next {
		grid-column: auto;
		text-align: left;
	}
}

@media (max-width: 575px) {
	.post-hero {
		min-height: 40vh;
		padding-top: var(--sp-2xl);
		padding-bottom: var(--sp-2xl);
	}

	.post-hero__title {
		font-size: var(--fs-h3);
	}

	.post-hero__meta {
		font-size: var(--fs-tiny);
	}

	.post-body {
		padding: var(--sp-2xl) 0;
	}

	.post-prose h2 {
		font-size: var(--fs-h3);
	}

	.post-author-box {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.post-share {
		flex-direction: column;
		align-items: flex-start;
	}

	.post-comments__field-row {
		grid-template-columns: 1fr;
	}
}

/* ---------- Generic Button ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: var(--btn-padding);
	font-family: var(--btn-ff);
	font-size: var(--btn-fs);
	font-weight: var(--btn-fw);
	border-radius: var(--btn-radius);
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: var(--btn-transition);
}

.btn--primary {
	background: var(--btn-primary-bg);
	color: var(--btn-primary-color);
}

.btn--primary:hover {
	background: var(--btn-primary-bg-hover);
	color: var(--btn-primary-color);
}

/* ==========================================================
   WooCommerce — Ficha de producto (single product)
   Los estilos base vienen del plugin (woocommerce-general, etc.);
   aquí alineamos tipografía, colores y espaciado con el tema.
   ========================================================== */

body.woocommerce.single-product {
	background: var(--c-bg);
}

.woocommerce.single-product #primary,
.woocommerce.single-product .site-main {
	max-width: 132rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
}

.woocommerce div.product {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--c-text);
}

.woocommerce div.product .product_title {
	font-family: var(--ff-heading);
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	font-weight: var(--fw-h2);
	line-height: var(--lh-heading);
	letter-spacing: var(--ls-heading);
	color: var(--c-text);
	margin: 0 0 1.2rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-primary);
}

.woocommerce div.product p.price del {
	opacity: 0.65;
	font-size: 0.85em;
}

.woocommerce .woocommerce-breadcrumb {
	font-size: var(--fs-small);
	color: var(--c-text);
	margin: 0 0 2rem;
	padding: 0;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--c-link);
	text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
	color: var(--c-link-hover);
}

/* Galería + resumen */
.woocommerce div.product div.images {
	margin-bottom: 2.4rem;
}

.woocommerce div.product div.summary {
	margin-bottom: 2.4rem;
}

/* Botones Woo (añadir al carrito, etc.) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce #respond input#submit {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	background: var(--c-primary);
	color: var(--c-white) !important;
	border: none;
	border-radius: var(--btn-radius);
	padding: 1.2rem 2.4rem;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button:hover {
	background: var(--c-primary-hover);
	color: var(--c-white) !important;
}

/* Pestañas descripción / información / reseñas */
.woocommerce div.product .woocommerce-tabs {
	margin-top: 3.2rem;
	padding-top: 2.4rem;
	border-top: 1px solid var(--c-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.6rem;
	border-bottom: 1px solid var(--c-border-light);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 1rem 0;
	font-weight: var(--fw-medium);
	color: var(--c-text);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--c-primary);
	border-bottom-color: var(--c-primary);
}

.woocommerce-Tabs-panel h2 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	margin: 0 0 1.2rem;
}

/* Tablas (información adicional) */
.woocommerce table.shop_attributes {
	border: 1px solid var(--c-border);
	border-radius: var(--btn-radius);
	overflow: hidden;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
	border-bottom: 1px solid var(--c-border-light);
	padding: 1rem 1.2rem;
}

/* Mensajes (stock, avisos) */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	border-radius: var(--btn-radius);
	font-size: var(--fs-small);
}




/* ==========================================================
   SINGLE PRODUCT — Tour Detail Page
   ========================================================== */

/* ---------- Hero ---------- */

.tour-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: flex-end;
	background-color: var(--c-black);
	padding: calc(var(--header-height) + var(--sp-xl)) 0 var(--sp-2xl);
	overflow: hidden;
}

/* <img> based hero for fast LCP discovery */
.tour-hero > .tour-hero__img {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.tour-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.35) 40%,
		rgba(0, 0, 0, 0.7) 100%
	);
	z-index: 1;
}

/* Breadcrumbs */
.tour-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: var(--sp-md);
	flex-wrap: wrap;
	font-size: 1.5rem;
}

.tour-hero__breadcrumb a {
	font-family: var(--ff-body);
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.tour-hero__breadcrumb a:hover {
	color: var(--c-white);
}

.tour-hero__breadcrumb-sep {
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.4);
}

.tour-hero__breadcrumb-current {
	font-family: var(--ff-body);
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.tour-hero__breadcrumb-yoast,
.tour-hero__breadcrumb-yoast > span {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.tour-hero__breadcrumb-yoast,
.tour-hero__breadcrumb-yoast span,
.tour-hero__breadcrumb-yoast a {
	font-family: var(--ff-body);
	font-size: 1.5rem;
	line-height: 1.4;
}

.tour-hero__breadcrumb-yoast span {
	color: rgba(255, 255, 255, 0.75);
}

.tour-hero__breadcrumb-yoast .breadcrumb_last {
	color: #fff;
	font-weight: var(--fw-bold);
}

.tour-hero__breadcrumb-yoast a {
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.35);
	text-underline-offset: 0.22em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.tour-hero__breadcrumb-yoast a:hover {
	text-decoration-color: rgba(255, 255, 255, 0.75);
}

/* Title */
.tour-hero__title {
	font-family: var(--ff-heading);
	font-size: 5.6rem;
	font-weight: var(--fw-bold);
	color: var(--c-white);
	line-height: 1.15;
	margin: 0 0 var(--sp-md);
	max-width: 80rem;
}

/* Short description */
.tour-hero__desc,
.tour-hero__desc p {
	font-family: var(--ff-body);
	font-size: var(--fs-large);
	font-weight: var(--fw-light);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 70rem;
	margin: 0 0 var(--sp-lg);
}

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

/* Hero badges */
.tour-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-lg);
	margin-top: var(--sp-lg);
}

.tour-hero__badge {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-md);
	padding: var(--sp-sm) var(--sp-md);
}

.tour-hero__badge .material-icons-round {
	font-size: 2.8rem;
	color: var(--c-white);
	opacity: 0.8;
}

.tour-hero__badge-text {
	display: flex;
	flex-direction: column;
}

.tour-hero__badge-value {
	font-family: var(--ff-heading);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	line-height: 1.2;
}

.tour-hero__badge-label {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: rgba(255, 255, 255, 0.6);
}

/* Hero responsive */
@media (max-width: 991px) {
	.tour-hero {
		min-height: 80vh;
	}

	.tour-hero__title {
		font-size: 3rem;
	}

	.tour-hero__badges {
		gap: var(--sp-sm);
	}
}

@media (max-width: 575px) {
	.tour-hero {
		min-height: 100vh;
		min-height: 100svh;       /* safe viewport — respeta barra de dirección */
		padding-bottom: var(--sp-lg);
	}

	.tour-hero__img {
		object-fit: cover;
		object-position: center;
	}

	.tour-hero__title {
		font-size: 2.2rem;
	}

	.tour-hero__desc,
	.tour-hero__desc p {
		font-size: var(--fs-body);
	}

	.tour-hero__badges {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--sp-xs);
		width: 100%;
	}

	.tour-hero__badge {
		padding: var(--sp-sm) var(--sp-md);
		border-radius: var(--radius-md);
	}

	.tour-hero__badge .material-icons-round {
		font-size: 1.4rem;
	}

	.tour-hero__badge-value {
		font-size: var(--fs-small);
		font-weight: 600;
	}

	.tour-hero__badge-label {
		font-size: 0.7rem;
	}
}

/* ---------- Sticky Tabs ---------- */

.tour-tabs {
	position: sticky;
	top: 0;
	z-index: var(--z-sticky);
	background: var(--c-white);
	border-bottom: 2px solid var(--c-border-light);
	margin-bottom: var(--sp-xl);
}

.admin-bar .tour-tabs {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .tour-tabs {
		top: 46px;
	}
}

.tour-tabs__list {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.tour-tabs__list::-webkit-scrollbar {
	display: none;
}

.tour-tabs__item {
	flex-shrink: 0;
}

.tour-tabs__link {
	display: block;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	text-decoration: none;
	padding: var(--sp-md) var(--sp-lg);
	border-bottom: 3px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.tour-tabs__link:hover {
	color: var(--c-primary);
}

.tour-tabs__link.is-active {
	color: var(--c-secondary);
	border-bottom-color: var(--c-secondary);
	font-weight: var(--fw-semibold);
}

/* ---------- Content Area ---------- */

.tour-content {
	padding: var(--sp-xl) 0 var(--sp-3xl);
}

/* ---------- Sections ---------- */

.tour-section {
	margin-bottom: var(--sp-2xl);
	scroll-margin-top: 6rem;
}

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

.tour-section__title-row {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	margin: 0 0 var(--sp-md);
	padding-bottom: var(--sp-xs);
	border-bottom: 2px solid var(--c-border-light);
}

.tour-section__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0;
	padding: 0;
}

.tour-section__title-icon {
	font-size: 2.4rem;
	color: var(--c-secondary);
	flex-shrink: 0;
}

/* Prose — rich text content */
.tour-prose {
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.8;
	color: #555;
}

.tour-prose p {
	margin: 0 0 var(--sp-md);
}

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

.tour-prose ul,
.tour-prose ol {
	padding-left: var(--sp-lg);
	margin: 0 0 var(--sp-md);
}

.tour-prose li {
	margin-bottom: var(--sp-xs);
}

.tour-prose h3,
.tour-prose h4 {
	font-family: var(--ff-heading);
	color: var(--c-text);
	margin: var(--sp-lg) 0 var(--sp-sm);
}

.tour-prose img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
}

/* Single product — enlaces en texto (hero oscuro + cuerpo) */
.tour-single .tour-hero__desc a {
	color: #f4ead0;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.4);
	text-underline-offset: 0.25em;
	font-weight: var(--fw-medium);
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.tour-single .tour-hero__desc a:hover {
	color: var(--c-white);
	text-decoration-color: rgba(255, 255, 255, 0.85);
}

.tour-single .tour-hero__desc a:focus-visible {
	outline: 2px solid var(--c-white);
	outline-offset: 3px;
	border-radius: 2px;
}

.tour-single .tour-prose a,
.tour-single .section-faq__answer a {
	color: var(--c-secondary);
	text-decoration: underline;
	text-decoration-color: rgba(84, 52, 11, 0.35);
	text-underline-offset: 0.22em;
	font-weight: var(--fw-medium);
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.tour-single .tour-prose a:hover,
.tour-single .section-faq__answer a:hover {
	color: var(--c-primary);
	text-decoration-color: rgba(63, 64, 22, 0.5);
}

.tour-single .tour-prose a:focus-visible,
.tour-single .section-faq__answer a:focus-visible {
	outline: 2px solid var(--c-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

.tour-single .tour-sidebar__price-value a {
	color: var(--c-secondary);
	text-decoration: none;
	font-weight: var(--fw-semibold);
	border-bottom: 1px solid rgba(84, 52, 11, 0.25);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.tour-single .tour-sidebar__price-value a:hover {
	color: var(--c-primary);
	border-bottom-color: rgba(63, 64, 22, 0.45);
}

/* ---------- Product FAQ ---------- */

.tour-faq {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}

/* ---------- Gallery ---------- */

.tour-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-sm);
}

.tour-gallery__item {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-sm);
	aspect-ratio: 4 / 3;
}

.tour-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tour-gallery__item:hover img {
	transform: scale(1.05);
}

@media (max-width: 767px) {
	.tour-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Itinerary Timeline ---------- */

.tour-timeline {
	position: relative;
	padding-left: 0;
}

.tour-timeline__item {
	display: flex;
	gap: var(--sp-lg);
	position: relative;
	padding-bottom: var(--sp-xl);
}

.tour-timeline__item:last-child {
	padding-bottom: 0;
}

/* Vertical line connecting items (on the item, not the marker) */
.tour-timeline__item::before {
	content: '';
	position: absolute;
	left: 3.2rem;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--c-border-light);
	transform: translateX(-50%);
}

/* First item — line starts below the calendar badge */
.tour-timeline__item:first-child::before {
	top: 4.5rem;
}

/* Last item — no line below the badge */
.tour-timeline__item:last-child::before {
	bottom: auto;
	height: 0.5rem;
}

/* Day marker — clean text style */
.tour-timeline__marker {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	padding-top: 0.2rem;
}

.tour-timeline__calendar {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 6.4rem;
}

.tour-timeline__calendar-label {
	display: block;
	font-family: var(--ff-heading);
	font-size: var(--fs-tiny);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--c-secondary);
	line-height: 1;
}

.tour-timeline__calendar-num {
	display: block;
	font-family: var(--ff-heading);
	font-size: 3.2rem;
	font-weight: var(--fw-bold);
	color: var(--c-secondary);
	line-height: 1;
	margin-top: 0.2rem;
}

/* Content column */
.tour-timeline__content {
	flex: 1;
	min-width: 0;
}

.tour-timeline__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h4);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin: 0 0 var(--sp-sm);
	line-height: 1.3;
}

.tour-timeline__body {
	padding: 0;
}

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

/* ── Responsive (small screens) ── */

@media (max-width: 575px) {
	.tour-timeline__item {
		gap: var(--sp-md);
	}

	.tour-timeline__item::before {
		left: 2rem;
	}

	.tour-timeline__calendar {
		width: 4rem;
	}

	.tour-timeline__calendar-label {
		font-size: 1rem;
	}

	.tour-timeline__calendar-num {
		font-size: 2.4rem;
	}

	.tour-timeline__title {
		font-size: var(--fs-large);
	}
}

/* ---------- Includes / Not Includes ---------- */

.tour-includes {
	padding: var(--sp-lg);
	border-radius: var(--radius-md);
	height: 100%;
}

.tour-includes--yes {
	background: rgba(46, 125, 50, 0.05);
	border: 1px solid rgba(46, 125, 50, 0.15);
}

.tour-includes--no {
	background: rgba(198, 40, 40, 0.05);
	border: 1px solid rgba(198, 40, 40, 0.15);
}

.tour-includes__heading {
	display: flex;
	align-items: center;
	gap: var(--sp-xs);
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	margin-bottom: var(--sp-md);
}

.tour-includes--yes .tour-includes__heading {
	color: var(--c-success);
}

.tour-includes--no .tour-includes__heading {
	color: var(--c-error);
}

.tour-includes__heading .material-icons-round {
	font-size: 2.4rem;
}

.tour-includes__list {
	font-size: var(--fs-small);
	line-height: 1.7;
	color: #555;
}

.tour-includes__list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tour-includes__list li {
	position: relative;
	padding-left: 2.4rem;
	margin-bottom: var(--sp-xs);
}

.tour-includes__list li::before {
	position: absolute;
	left: 0;
	font-family: 'Material Icons Round';
	font-size: 1.6rem;
	line-height: 1.5;
}

.tour-includes--yes .tour-includes__list li::before {
	content: 'check';
	color: var(--c-success);
}

.tour-includes--no .tour-includes__list li::before {
	content: 'close';
	color: var(--c-error);
}

/* ---------- Sidebar ---------- */

.tour-sidebar {
	position: sticky;
	top: var(--sp-xl);
	display: flex;
	flex-direction: column;
	gap: var(--sp-lg);
}

.tour-sidebar__card {
	background: var(--c-surface);
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-lg);
	padding: var(--sp-xl);
	box-shadow: var(--shadow-sm);
}

/* Sidebar title */
.tour-sidebar__title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	line-height: 1.3;
	margin: 0 0 var(--sp-md);
	padding-bottom: var(--sp-md);
	border-bottom: 1px solid var(--c-border-light);
	text-align: center;
}

/* Price */
.tour-sidebar__price {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: var(--sp-lg);
	padding-bottom: var(--sp-lg);
	border-bottom: 1px solid var(--c-border-light);
}

.tour-sidebar__price-label {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: #888;
	margin-bottom: var(--sp-2xs);
}

.tour-sidebar__price-value,
.tour-sidebar__price-value .woocommerce-Price-amount {
	font-family: var(--ff-heading);
	font-size: var(--fs-h2);
	font-weight: var(--fw-bold);
	color: var(--c-secondary);
	line-height: 1.2;
}

.tour-sidebar__price-value del {
	font-size: var(--fs-body);
	color: #aaa;
	font-weight: var(--fw-regular);
}

.tour-sidebar__price-note {
	font-family: var(--ff-body);
	font-size: var(--fs-tiny);
	color: #888;
	margin-top: var(--sp-2xs);
}

/* Tour details list */
.tour-sidebar__details {
	list-style: none;
	margin: 0 0 var(--sp-lg);
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tour-sidebar__detail {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	padding: var(--sp-sm) 0;
	border-bottom: 1px solid var(--c-border-light);
}

.tour-sidebar__detail:last-child {
	border-bottom: none;
}

.tour-sidebar__detail .material-icons-round {
	font-size: 2rem;
	color: var(--c-secondary);
	flex-shrink: 0;
}

.tour-sidebar__detail-label {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: #888;
	flex: 1;
}

.tour-sidebar__detail-value {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	text-align: right;
}

/* CTA Button */
.tour-sidebar__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-xs);
	width: 100%;
	padding: 1.6rem 2.4rem;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	background: var(--c-secondary);
	border: none;
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: var(--ease-default);
	cursor: pointer;
}

.tour-sidebar__cta:hover {
	background: var(--c-secondary-hover);
	color: var(--c-white);
	transform: translateY(-0.2rem);
	box-shadow: var(--shadow-md);
}

.tour-sidebar__cta .material-icons-round {
	font-size: 2.2rem;
}

/* Booking modal (JetFormBuilder) */
#tour-booking-modal .modal-content {
	border: none;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

#tour-booking-modal .modal-header {
	padding: 1.6rem 2rem;
	border-bottom: 1px solid var(--c-border-light);
	background: #fff;
}

#tour-booking-modal .modal-title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
}

#tour-booking-modal .modal-body {
	padding: 2rem;
	background: #fff;
}

#tour-booking-modal .modal-body {
	max-height: min(78vh, 760px);
	overflow-y: auto;
}

#tour-booking-modal .modal-body form {
	display: block;
}

/* Force JetFormBuilder fields to stack nicely inside modal */
#tour-booking-modal form.jet-form-builder.layout-column .jet-form-builder-row {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 0.5rem;
	margin: 0 0 1.2rem !important;
}

#tour-booking-modal form.jet-form-builder.layout-column .jet-form-builder__label,
#tour-booking-modal form.jet-form-builder.layout-column .jet-form-builder__field-wrap,
#tour-booking-modal form.jet-form-builder.layout-column .jet-form-builder__fields-group,
#tour-booking-modal form.jet-form-builder.layout-column .checkradio-wrap {
	display: block !important;
	position: static !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	margin: 0 !important;
}

#tour-booking-modal .modal-body label,
#tour-booking-modal .modal-body .jet-form-builder__label-text,
#tour-booking-modal .modal-body .jet-form-builder__field-label {
	display: block;
	margin-bottom: 0.4rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
}

#tour-booking-modal .modal-body :where(input:not([type="checkbox"]), select, textarea) {
	width: 100%;
	max-width: 100%;
	min-height: 4.4rem;
	padding: 1rem 1.2rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: var(--c-text);
	background: #fff;
	border: 1px solid var(--c-border-light);
	border-radius: var(--radius-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#tour-booking-modal .modal-body textarea {
	min-height: 11rem;
	resize: vertical;
}

#tour-booking-modal form.jet-form-builder.layout-column .jet-form-builder-row.field-type-date-field > .jet-form-builder__field {
	display: block;
	width: 100%;
}

#tour-booking-modal .jet-form-builder-row.field-type-checkbox-field .jet-form-builder__field-label {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
}

#tour-booking-modal .jet-form-builder-row.field-type-checkbox-field input[type="checkbox"] {
	margin-top: 0.2rem;
}

#tour-booking-modal .modal-body :where(input:not([type="checkbox"]), select, textarea):focus {
	border-color: var(--c-secondary);
	box-shadow: 0 0 0 0.2rem rgba(140, 152, 58, 0.15);
	outline: none;
}

#tour-booking-modal .modal-body .jet-form-builder__action-button-wrapper {
	margin-top: 0.8rem;
}

#tour-booking-modal .modal-body :where(button[type="submit"], .jet-form-builder__submit) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 4.4rem;
	padding: 0.9rem 2rem;
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	background: var(--c-secondary);
	border: none;
	border-radius: var(--radius-sm);
	transition: var(--ease-default);
	cursor: pointer;
}

#tour-booking-modal .modal-body :where(button[type="submit"], .jet-form-builder__submit):hover {
	background: var(--c-secondary-hover);
	transform: translateY(-0.1rem);
}

/* Help card */
.tour-sidebar__card--help {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--c-surface-alt);
}

.tour-sidebar__help-icon {
	font-size: 4rem;
	color: var(--c-secondary);
	margin-bottom: var(--sp-sm);
}

.tour-sidebar__help-title {
	font-family: var(--ff-heading);
	font-size: var(--fs-h5);
	font-weight: var(--fw-semibold);
	color: var(--c-text);
	margin-bottom: var(--sp-xs);
}

.tour-sidebar__help-text {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	line-height: 1.6;
	color: #888;
	margin: 0 0 var(--sp-md);
}

.tour-sidebar__help-link {
	display: flex;
	align-items: center;
	gap: var(--sp-xs);
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
	color: var(--c-text);
	text-decoration: none;
	margin-bottom: var(--sp-xs);
	transition: color 0.2s ease;
}

.tour-sidebar__help-link:hover {
	color: var(--c-secondary);
}

.tour-sidebar__help-link .material-icons-round {
	font-size: 2rem;
	color: var(--c-secondary);
}

/* WhatsApp button */
.tour-sidebar__whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-xs);
	width: 100%;
	padding: 1.2rem 2rem;
	margin-top: var(--sp-md);
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	color: var(--c-white);
	background: #25D366;
	border: none;
	border-radius: var(--radius-md);
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-sidebar__whatsapp:hover {
	background: #1EBE57;
	color: var(--c-white);
	transform: translateY(-0.2rem);
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.tour-sidebar__whatsapp svg {
	flex-shrink: 0;
}

/* ---------- Reviews ---------- */

.tour-reviews__summary {
	display: flex;
	align-items: center;
	gap: var(--sp-lg);
	margin-bottom: var(--sp-xl);
	padding: var(--sp-lg);
	background: var(--c-surface-alt);
	border-radius: var(--radius-md);
}

.tour-reviews__rating-number {
	font-family: var(--ff-heading);
	font-size: var(--fs-h1);
	font-weight: var(--fw-bold);
	color: var(--c-secondary);
	line-height: 1;
}

.tour-reviews__rating-label {
	font-family: var(--ff-body);
	font-size: var(--fs-small);
	color: #888;
	display: block;
}

.tour-reviews__list .star-rating {
	color: #F9A825;
}

/* ---------- Related Tours (Slider) ---------- */

.tour-related {
	padding: var(--sp-3xl) 0;
	background: var(--c-surface-alt);
}

.tour-related-swiper {
	padding-inline: var(--sp-xs);
	padding-bottom: var(--sp-2xl);
}

/* Igualar altura de las tarjetas en la fila (Swiper + flex; mismo patrón que .home-blog-swiper) */
.tour-related-swiper .swiper-wrapper {
	align-items: stretch;
}

.tour-related-swiper .swiper-slide {
	display: flex;
	height: auto;
}

.tour-related-swiper .card-tour {
	width: 100%;
	height: 100%;
}

/*
 * Paginación Related Tours — mismo nodo que Swiper genera:
 * .swiper-pagination.tour-related-pagination.swiper-pagination-horizontal …
 * Especificidad + !important en tamaño: swiper-bundle.min.css trae reglas fuertes.
 */
.tour-related .tour-related-pagination.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	left: auto !important;
	transform: none !important;
	width: 100% !important;
	margin-top: var(--sp-lg);
	padding: var(--sp-md) 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	min-height: 2.1rem;
}

.tour-related .tour-related-pagination.swiper-pagination-horizontal .swiper-pagination-bullet,
.tour-related .tour-related-pagination .swiper-pagination-bullet {
	width: 0.875rem !important;
	height: 0.875rem !important;
	margin: 0 !important;
	opacity: 1 !important;
	background: var(--c-border) !important;
	border-radius: 50%;
	transition: width 0.28s ease, border-radius 0.28s ease, background 0.2s ease;
	line-height: 0;
}

.tour-related .tour-related-pagination.swiper-pagination-horizontal .swiper-pagination-bullet-active,
.tour-related .tour-related-pagination .swiper-pagination-bullet-active {
	width: 2.25rem !important;
	height: 0.875rem !important;
	border-radius: 999px;
	background: var(--c-primary) !important;
}

/* Joinchat (WhatsApp flotante) — palpitación */
@keyframes qosqo-joinchat-palpitar {
	0%,
	100% {
		transform: scale(1);
		box-shadow:
			1px 6px 24px 0 rgba(7, 94, 84, 0.24),
			0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	45% {
		transform: scale(1.07);
		box-shadow:
			1px 8px 28px 0 rgba(7, 94, 84, 0.35),
			0 0 0 12px rgba(37, 211, 102, 0);
	}
}

.joinchat.joinchat--show:not(.joinchat--noanim) .joinchat__button {
	animation: qosqo-joinchat-palpitar 2.1s ease-in-out infinite;
}

.joinchat .joinchat__button:hover,
.joinchat .joinchat__button:active,
.joinchat .joinchat__button:focus-visible {
	animation: none;
	box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, 0.24);
}

@media (prefers-reduced-motion: reduce) {
	.joinchat.joinchat--show .joinchat__button {
		animation: none;
	}
}
