/* Txapela Brava — tokens vía personalizador (--txb-*) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--txb-font-body, "Space Grotesk", system-ui, sans-serif);
	background: var(--txb-color-background, #131411);
	color: var(--txb-color-on-surface, #e5e2dd);
	min-height: 100vh;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
}
.txb-grain {
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	opacity: var(--txb-grain-opacity, 0.07);
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.txb-skip-link {
	position: absolute;
	left: -999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.txb-skip-link:focus {
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	padding: 8px 12px;
	background: var(--txb-color-inverse, #e5e2dd);
	color: var(--txb-color-on-inverse, #131411);
	z-index: 100000;
}
.txb-topbar {
	background: var(--txb-color-topbar-bg, #ffb4a8);
	color: var(--txb-color-topbar-text, #131411);
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.08em;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 2px solid var(--txb-color-primary, #cc0000);
}
.txb-topbar__inner {
	margin: 0;
	padding: 8px 16px;
}
.txb-header {
	border-bottom: 2px solid var(--txb-color-border, #fff);
	background: var(--txb-color-background, #131411);
	position: sticky;
	top: 0;
	z-index: 50;
}
.txb-header__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 16px 24px;
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 16px;
}
.txb-logo {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-style: italic;
	font-size: clamp(18px, 2.4vw, 26px);
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: -0.02em;
}
.txb-nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	color: var(--txb-color-primary-container, #cc0000);
	padding: 8px;
	min-width: 46px;
	min-height: 46px;
	font-family: inherit;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.txb-nav-toggle:hover,
.txb-nav-toggle:focus-visible {
	background: rgba(204, 0, 0, 0.14);
	color: #fff;
	outline: none;
	transform: translateY(-1px);
}
.txb-nav-toggle__bar {
	display: block;
	width: 28px;
	height: 3px;
	background: currentColor;
	margin: 3px 0;
	box-shadow: 3px 3px 0 #000;
}
.txb-nav .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: center;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.06em;
}
.txb-nav .menu a {
	text-decoration: none;
	padding: 10px 14px;
	display: inline-block;
	border: 2px solid transparent;
	text-transform: uppercase;
	transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.txb-nav .menu .current-menu-item > a,
.txb-nav .menu .current_page_item > a {
	background: var(--txb-color-inverse, #e5e2dd);
	color: var(--txb-color-on-inverse, #131411);
	border-color: var(--txb-color-inverse, #e5e2dd);
}
.txb-nav .menu a:hover,
.txb-nav .menu a:focus-visible {
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
	border-color: var(--txb-color-primary, #cc0000);
	outline: none;
	transform: translate(-2px, -2px);
}
.txb-header__tools {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: flex-end;
}
.txb-icon-link {
	position: relative;
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	color: var(--txb-color-primary-container, #cc0000);
	text-decoration: none;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.txb-icon-link:hover,
.txb-icon-link:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	border-color: #000;
	outline: none;
	transform: rotate(-2deg) translateY(-2px);
}
.txb-tool-icon {
	display: inline-block;
	width: 28px;
	height: 28px;
	background: currentColor;
	-webkit-mask: var(--txb-tool-mask) center / contain no-repeat;
	mask: var(--txb-tool-mask) center / contain no-repeat;
}
.txb-tool-icon--account {
	--txb-tool-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6c14.36 0 26 11.64 26 26S46.36 58 32 58 6 46.36 6 32 17.64 6 32 6Zm0 6C20.95 12 12 20.95 12 32c0 4.55 1.52 8.74 4.09 12.1 2.8-6.03 8.91-10.22 15.91-10.22s13.11 4.19 15.91 10.22A19.9 19.9 0 0 0 52 32c0-11.05-8.95-20-20-20Zm0 27.88c-5.4 0-10.08 3.08-12.38 7.57A19.9 19.9 0 0 0 32 52c4.64 0 8.9-1.58 12.29-4.23-2.25-4.66-7.02-7.89-12.29-7.89Zm0-23.2c5.06 0 9.16 4.1 9.16 9.16S37.06 35 32 35s-9.16-4.1-9.16-9.16 4.1-9.16 9.16-9.16Zm0 6a3.16 3.16 0 1 0 0 6.32 3.16 3.16 0 0 0 0-6.32Z'/%3E%3C/svg%3E");
}
.txb-tool-icon--cart {
	--txb-tool-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.3 15.5h38.1L51.5 40H23L18.3 15.5Zm7.65 18.5h20.62l2.51-12.5H23.54L25.95 34ZM12 8h8.8l2.05 10.7-5.89 1.13L15.9 14H12V8Zm13.2 39.6a5.4 5.4 0 1 1 10.8 0 5.4 5.4 0 0 1-10.8 0Zm19.8 0a5.4 5.4 0 1 1 10.8 0 5.4 5.4 0 0 1-10.8 0ZM22 42h31v6H22v-6Z'/%3E%3C/svg%3E");
}
.txb-cart-count {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
	font-size: 11px;
	min-width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	border: 2px solid var(--txb-color-background, #131411);
}
.txb-ui-lock {
	overflow: hidden;
}
.txb-ui-scrim {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(0, 0, 0, 0.72);
	opacity: 0;
	transition: opacity 0.24s ease;
}
.txb-ui-scrim.is-open {
	opacity: 1;
}
.txb-menu-overlay[hidden],
.txb-cart-drawer[hidden],
.txb-ui-scrim[hidden] {
	display: none;
}
.txb-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	padding: 24px clamp(18px, 4vw, 48px) 28px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
		var(--txb-color-surface-container, #20201d);
	color: var(--txb-color-on-background, #e5e2dd);
	opacity: 0;
	transform: translateY(-12px) scale(0.985);
	transition: opacity 0.24s ease, transform 0.24s ease;
	overflow-y: auto;
}
.txb-menu-overlay.is-open {
	opacity: 1;
	transform: none;
}
.txb-menu-overlay__bar,
.txb-menu-overlay__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.txb-menu-overlay__brand {
	color: var(--txb-color-primary-container, #cc0000);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-style: italic;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}
.txb-overlay-close {
	position: relative;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 2px solid var(--txb-color-primary-container, #cc0000);
	background: transparent;
	color: var(--txb-color-primary-container, #cc0000);
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.txb-overlay-close:hover,
.txb-overlay-close:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	outline: none;
	transform: rotate(3deg);
}
.txb-overlay-close span::before,
.txb-overlay-close span::after {
	content: "";
	position: absolute;
	left: 14px;
	top: 25px;
	width: 24px;
	height: 3px;
	background: currentColor;
}
.txb-overlay-close span::before {
	transform: rotate(45deg);
}
.txb-overlay-close span::after {
	transform: rotate(-45deg);
}
.txb-menu-overlay__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1fr);
	align-items: center;
	gap: clamp(28px, 6vw, 80px);
	flex: 1;
	padding: 36px 0;
}
.txb-menu-overlay__visual {
	position: relative;
	min-height: min(58vh, 620px);
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 52%),
		var(--txb-menu-image, var(--txb-home-hero-image, none)) center / cover,
		linear-gradient(160deg, #161613, #0b0b09);
	filter: grayscale(1) contrast(1.18);
	overflow: hidden;
	box-shadow: -6px 6px 0 var(--txb-color-primary-container, #cc0000);
}
.txb-menu-overlay__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.22);
	mix-blend-mode: multiply;
}
.txb-menu-overlay__visual-label {
	position: absolute;
	left: 28px;
	bottom: 28px;
	z-index: 1;
	padding: 10px 20px;
	background: #cc0000;
	color: #000;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	font-weight: 900;
	text-transform: uppercase;
	transform: rotate(-2deg);
}
.txb-menu-overlay__nav .menu,
.txb-overlay-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.txb-menu-overlay__nav .menu li {
	margin: 0;
}
.txb-menu-overlay__nav .menu a {
	position: relative;
	display: block;
	width: fit-content;
	padding: 4px 18px 8px 0;
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(3.1rem, 8vw, 7.5rem);
	font-weight: 900;
	line-height: 0.95;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 3px 3px 0 #000;
	transition: color 0.16s ease, transform 0.16s ease, background 0.16s ease, padding-left 0.16s ease;
}
.txb-menu-overlay__nav .menu a::before {
	content: "";
	position: absolute;
	left: -34px;
	top: 50%;
	width: 22px;
	height: 22px;
	background: var(--txb-color-secondary, #f2bc86);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	opacity: 0;
	transform: translateY(-50%) translateX(-8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}
.txb-menu-overlay__nav .menu .current-menu-item > a,
.txb-menu-overlay__nav .menu .current_page_item > a,
.txb-menu-overlay__nav .menu .is-active > a,
.txb-menu-overlay__nav .menu a:hover,
.txb-menu-overlay__nav .menu a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: var(--txb-color-primary-container, #cc0000);
	outline: none;
	padding-left: 18px;
	transform: translateX(8px);
}
.txb-menu-overlay__nav .menu a:hover::before,
.txb-menu-overlay__nav .menu a:focus-visible::before {
	opacity: 1;
	transform: translateY(-50%);
}
.txb-menu-overlay__nav .menu .is-active > a {
	background: #cc0000;
	color: #000;
	padding-left: 18px;
	text-shadow: none;
	box-shadow: -5px 5px 0 var(--txb-color-secondary, #f2bc86);
}
.txb-menu-overlay__nav .menu .is-active > a::before {
	opacity: 1;
	background: #000;
	transform: translateY(-50%);
}
.txb-menu-overlay__foot {
	padding-top: 24px;
	border-top: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
}
.txb-menu-overlay__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 26px;
}
.txb-menu-overlay__actions a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}
.txb-menu-overlay__actions a:hover,
.txb-menu-overlay__actions a:focus-visible {
	color: var(--txb-color-secondary, #f2bc86);
	outline: none;
}
.txb-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 1001;
	pointer-events: none;
}
.txb-cart-drawer__panel {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: min(460px, 100vw);
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 28px;
	background: #0e0e0c;
	color: #fff;
	border-left: 4px solid var(--txb-color-primary-container, #cc0000);
	box-shadow: -16px 0 60px rgba(0, 0, 0, 0.5);
	pointer-events: auto;
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
	overflow-y: auto;
}
.txb-cart-drawer.is-open .txb-cart-drawer__panel {
	transform: translateX(0);
}
.txb-cart-drawer__close {
	align-self: flex-end;
}
.txb-cart-drawer__head span {
	display: inline-block;
	padding: 6px 10px;
	background: var(--txb-color-secondary, #f2bc86);
	color: #2c1700;
	border: 2px solid #5e3f3a;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transform: rotate(-2deg);
}
.txb-cart-drawer__head h2 {
	margin: 14px 0 0;
	color: var(--txb-color-primary-container, #cc0000);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(2.6rem, 8vw, 4.6rem);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}
.txb-cart-drawer__body {
	flex: 1;
}
.txb-cart-drawer .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}
.txb-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--txb-color-outline-variant, #5e3f3a);
}
.txb-cart-drawer .woocommerce-mini-cart-item img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border: 2px solid #fff;
}
.txb-cart-drawer .woocommerce-mini-cart-item a {
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}
.txb-cart-drawer .remove_from_cart_button {
	position: absolute;
	top: 14px;
	right: 0;
	color: var(--txb-color-primary-container, #cc0000);
	font-size: 1.5rem;
	line-height: 1;
}
.txb-cart-drawer .quantity,
.txb-cart-drawer .woocommerce-mini-cart__total {
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 0.95rem;
	font-weight: 700;
}
.txb-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	margin: 24px 0 0;
	padding-top: 18px;
	border-top: 2px solid #fff;
}
.txb-cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
}
.txb-cart-drawer .button,
.txb-cart-drawer__checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 16px;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	border: 2px solid #fff;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.txb-cart-drawer .button:hover,
.txb-cart-drawer .button:focus-visible,
.txb-cart-drawer__checkout:hover,
.txb-cart-drawer__checkout:focus-visible {
	background: #fff;
	color: #000;
	outline: none;
	transform: translate(-2px, -2px);
}
.txb-cart-drawer .woocommerce-mini-cart__empty-message {
	padding: 24px;
	background: var(--txb-color-surface-container, #20201d);
	border-left: 4px solid var(--txb-color-secondary, #f2bc86);
	color: var(--txb-color-on-surface-variant, #e8bdb6);
}
.txb-main {
	min-height: 40vh;
}
/* Tour: contenido a ancho completo (la plantilla no usa .txb-container) */
body.txb-page-tour #primary.txb-main,
body.txb-page-tour .txb-main,
body.txb-layout-musica #primary.txb-main,
body.txb-layout-musica .txb-main,
body.txb-page-wide #primary.txb-main,
body.txb-page-wide .txb-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}
.txb-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}
.txb-heading {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(28px, 4vw, 44px);
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}
.txb-heading--accent {
	color: var(--txb-color-primary-soft, #ffb4a8);
}
.txb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 22px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.txb-btn:hover {
	transform: translate(2px, 2px);
}
.txb-btn--primary {
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
}
.txb-btn--inverse {
	background: var(--txb-color-inverse, #e5e2dd);
	color: var(--txb-color-on-inverse, #131411);
	border-color: var(--txb-color-inverse, #e5e2dd);
}
.txb-btn--outline {
	background: transparent;
	color: var(--txb-color-on-surface, #e5e2dd);
	border-color: var(--txb-color-primary-soft, #ffb4a8);
}
.txb-btn--ghost {
	background: #000;
	color: #fff;
	border-color: var(--txb-color-on-surface, #e5e2dd);
}
.txb-btn--disabled {
	opacity: 0.45;
	pointer-events: none;
}
.txb-btn--sm {
	padding: 8px 14px;
	font-size: 11px;
}
.txb-hero {
	position: relative;
	min-height: clamp(360px, 55vh, 640px);
	display: grid;
	align-items: end;
	padding: 48px 24px 64px;
	background-color: #0a0a09;
	background-image: var(--txb-home-hero-image, none);
	background-size: cover;
	background-position: center;
	border-bottom: 2px solid var(--txb-color-border, #fff);
}
.txb-hero--home {
	background-image: none;
	padding: 0;
	min-height: 0;
	display: block;
	border-bottom: none;
}
.txb-hero-slider__viewport {
	position: relative;
	min-height: clamp(440px, var(--txb-home-hero-height, 72vh), 900px);
	overflow: hidden;
	border-bottom: 2px solid var(--txb-color-border, #fff);
	background: #0a0a09;
}
.txb-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	z-index: 1;
	display: grid;
	align-items: end;
}
.txb-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
.txb-hero-slide__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #0a0a09;
}
.txb-hero-slide__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.txb-hero-slide__img--mobile {
	display: none;
}
@media (max-width: 767px) {
	.txb-hero-slider__viewport {
		min-height: clamp(520px, var(--txb-home-hero-height, 72vh), 760px);
	}
	.txb-hero-slider__ui {
		bottom: 14px;
		padding: 7px 9px;
	}
	.txb-hero-slider__btn {
		width: 26px;
		height: 26px;
	}
	.txb-hero-slide--dual .txb-hero-slide__img--desktop {
		display: none;
	}
	.txb-hero-slide--dual .txb-hero-slide__img--mobile {
		display: block;
	}
}
.txb-hero-slide__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82));
	pointer-events: none;
}
.txb-hero-slide__content.txb-hero__content {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
	width: 100%;
	padding: 48px 24px 64px;
	pointer-events: none;
}
.txb-hero-slide__content .txb-btn {
	pointer-events: auto;
}
.txb-hero--has-slider {
	position: relative;
	padding-bottom: 0;
}
.txb-hero-slider__ui {
	position: absolute;
	left: 50%;
	bottom: clamp(14px, 3vw, 28px);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 10px;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.22);
	transform: translateX(-50%);
	backdrop-filter: blur(2px);
}
.txb-hero-slider__btn {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	background: rgba(0, 0, 0, 0.32);
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, transform 0.1s ease;
}
.txb-hero-slider__btn:hover,
.txb-hero-slider__btn:focus-visible {
	background: rgba(204, 0, 0, 0.88);
	color: #fff;
	outline: none;
}
.txb-hero-slider__btn--next .txb-hero-slider__chev {
	transform: rotate(180deg);
}
.txb-hero-slider__chev {
	display: block;
	width: 10px;
	height: 10px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 4px;
}
.txb-hero-slider__btn--prev .txb-hero-slider__chev {
	margin-left: 0;
	margin-right: 4px;
	transform: rotate(135deg);
}
.txb-hero-slider__dots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 28px;
}
.txb-hero-slider__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.txb-hero-slider__dot.is-active,
.txb-hero-slider__dot[aria-selected="true"] {
	width: 18px;
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.92);
	transform: none;
}
.txb-hero-slider__dot:hover,
.txb-hero-slider__dot:focus-visible {
	background: #fff;
	color: #000;
	outline: none;
}
.txb-hero--shop,
.txb-hero--compact {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85)),
		var(--txb-home-hero-image, linear-gradient(135deg, #1a1a18, #0a0a09));
}
.txb-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82));
	pointer-events: none;
}
.txb-hero__content {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}
.txb-hero__content--center {
	align-items: center;
	text-align: center;
}
.txb-hero__box {
	border: 3px solid #000;
	padding: 16px 24px;
	max-width: min(720px, 100%);
}
.txb-hero__box--inverse {
	background: var(--txb-color-inverse, #e5e2dd);
	color: var(--txb-color-on-inverse, #131411);
}
.txb-hero__box--outline {
	background: #000;
	color: #fff;
	border-color: #fff;
}
.txb-hero__box--inline {
	max-width: 520px;
}
.txb-hero__title {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-style: italic;
	font-size: clamp(32px, 6vw, 72px);
	text-transform: uppercase;
	margin: 0;
	line-height: 0.95;
}
.txb-hero__title--xl {
	color: #fff;
	text-shadow: 0 0 0 2px #000, 0 0 0 6px var(--txb-color-primary, #cc0000);
}
.txb-hero__giant {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-size: clamp(40px, 8vw, 96px);
	text-transform: uppercase;
	margin: 0;
	color: var(--txb-color-primary, #cc0000);
	-webkit-text-stroke: 2px #fff;
	paint-order: stroke fill;
}
.txb-hero__sub {
	margin: 0;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.txb-hero__lede {
	max-width: 560px;
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	color: #f2f2ec;
}
.txb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}
.txb-section {
	padding: 56px 24px 72px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.txb-section__inner {
	max-width: 1240px;
	margin: 0 auto;
}
.txb-section__head {
	max-width: 1240px;
	margin: 0 auto 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.txb-split {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 40px;
	align-items: start;
}
.txb-lede {
	font-size: 18px;
	line-height: 1.55;
	max-width: 420px;
}
.txb-concert-card-home {
	position: relative;
	display: grid;
	grid-template-columns: 96px 1fr auto;
	gap: 0;
	border: 2px solid rgba(255, 255, 255, 0.35);
	margin-bottom: -2px;
	background: rgba(0, 0, 0, 0.35);
}
.txb-concert-card-home__permalink,
.txb-concert-row__permalink,
.txb-u-card__permalink,
.txb-u-past__permalink {
	position: absolute;
	inset: 0;
	z-index: 20;
	text-indent: -9999px;
	overflow: hidden;
	cursor: pointer;
}
.txb-concert-card-home__permalink:focus-visible,
.txb-concert-row__permalink:focus-visible,
.txb-u-card__permalink:focus-visible,
.txb-u-past__permalink:focus-visible {
	outline: 3px solid var(--txb-color-primary-container, #cc0000);
	outline-offset: -7px;
}
.txb-concert-card-home__date,
.txb-concert-card-home__body,
.txb-concert-card-home__action,
.txb-concert-row__date,
.txb-concert-row__mid,
.txb-concert-row__cta,
.txb-u-card__date,
.txb-u-card__body,
.txb-u-card__foot,
.txb-u-past__row,
.txb-u-past__venue,
.txb-u-past__city {
	position: relative;
	z-index: 2;
}
.txb-concert-card-home__action a,
.txb-concert-row__cta a,
.txb-u-card__foot a {
	position: relative;
	z-index: 21;
	pointer-events: none;
}
.txb-concert-card-home.is-soldout {
	opacity: 0.55;
}
.txb-concert-card-home__date {
	background: var(--txb-color-primary-soft, #ffb4a8);
	color: #1a0505;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	padding: 12px;
	border-right: 2px solid rgba(0, 0, 0, 0.35);
}
.txb-concert-card-home__day {
	font-size: 32px;
	line-height: 1;
}
.txb-concert-card-home__mon {
	font-size: 13px;
	letter-spacing: 0.08em;
}
.txb-concert-card-home__body {
	padding: 16px 20px;
}
.txb-concert-card-home__city {
	margin: 0 0 4px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 20px;
}
.txb-concert-card-home__venue {
	margin: 0;
	color: var(--txb-color-on-surface-muted, #ae8882);
	font-size: 14px;
}
.txb-concert-card-home__action {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-left: 2px solid rgba(255, 255, 255, 0.2);
}
.txb-product-grid {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
.txb-note {
	opacity: 0.85;
	font-size: 15px;
}
body.txb-blog #primary.txb-main,
body.txb-blog .txb-main,
body.home.blog #primary.txb-main,
body.home.blog .txb-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.txb-footer {
	border-top: 4px solid var(--txb-color-border, #fff);
	padding: 32px clamp(16px, 4vw, 40px) 48px;
	margin-top: 0;
	background: var(--txb-color-background, #131411);
}
.txb-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr minmax(0, 2fr) 1fr;
	gap: clamp(16px, 3vw, 32px);
	align-items: center;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 800;
}
.txb-footer__brand {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-style: italic;
	font-size: clamp(14px, 1.8vw, 18px);
}
.txb-footer__tag {
	text-align: center;
	color: var(--txb-color-primary, #cc0000);
	font-weight: 800;
	line-height: 1.35;
}
.txb-footer__nav .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.txb-footer__nav a {
	text-decoration: none;
}
.txb-footer__nav a:hover {
	color: var(--txb-color-primary-soft, #ffb4a8);
}
.txb-chip {
	display: inline-block;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 2px solid transparent;
}
.txb-chip--accent {
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
}
.txb-chip--brown {
	background: var(--txb-color-secondary-container, #633f13);
	color: var(--txb-color-on-secondary-container, #dfab76);
	border-color: #000;
}
.txb-chip--muted {
	background: #2a2a27;
	color: #bbb;
	border-color: #444;
}
.txb-tour-page .txb-concert-row,
.txb-concerts-list .txb-concert-row {
	position: relative;
	display: grid;
	grid-template-columns: 120px 1fr 160px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	margin-bottom: -2px;
	background: rgba(0, 0, 0, 0.35);
	position: relative;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.txb-tour-universe--rows .txb-concert-row {
	margin-bottom: 0;
	border: 2px solid rgba(255, 255, 255, 0.35);
}
.txb-concerts-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.txb-concerts-list .txb-concert-row {
	margin-bottom: 0;
}
.txb-tour-rows__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.txb-tour-universe--rows .txb-tour-rows__list .txb-concert-row {
	margin-bottom: 0;
}
.txb-tour-page .txb-concert-row:hover,
.txb-tour-page .txb-concert-row:focus-within,
.txb-concerts-list .txb-concert-row:hover,
.txb-concerts-list .txb-concert-row:focus-within {
	transform: translateX(8px) scale(1.01);
	box-shadow: -10px 0 0 0 var(--txb-color-primary-container, #cc0000), 0 16px 40px rgba(0, 0, 0, 0.5);
	border-color: rgba(204, 0, 0, 0.75);
	z-index: 1;
}
.txb-concert-row__time {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	line-height: 1.1;
}
.txb-concert-row__wday {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.85;
	max-width: 100px;
	text-align: center;
	line-height: 1.2;
}
.txb-concert-row__year {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.04em;
}
.txb-concert-row__fulldate {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--txb-color-on-surface-muted, #ae8882);
}
.txb-concert-row__nodate {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--txb-color-on-surface-muted, #ae8882);
	text-align: center;
	padding: 8px 4px;
}
.txb-concert-row__date {
	background: var(--txb-color-inverse, #e5e2dd);
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	border-right: 2px solid #000;
	padding: 12px;
}
.txb-concert-row__day {
	font-size: 34px;
	line-height: 1;
}
.txb-concert-row__mon {
	font-size: 13px;
	letter-spacing: 0.08em;
}
.txb-concert-row__mid {
	padding: 16px 20px;
}
.txb-concert-row__venue {
	margin: 0 0 6px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 22px;
}
.txb-concert-row__city {
	margin: 0 0 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--txb-color-on-surface-muted, #ae8882);
	font-size: 14px;
}
.txb-pin {
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}
.txb-concert-row__meta {
	margin: 0;
	font-size: 13px;
	letter-spacing: 0.04em;
}
.txb-concert-row__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border-left: 2px solid rgba(255, 255, 255, 0.2);
}

/* Tour (lista): bloques blanco / negro / rojo como referencia de diseño */
body.txb-page-tour .txb-concert-row {
	grid-template-columns: minmax(96px, 120px) 1fr minmax(132px, 188px);
	border: 3px solid #fff;
	background: #000;
	margin-bottom: 14px;
	box-shadow: none;
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row {
	margin-bottom: 14px;
	border: 3px solid #fff;
}
body.txb-page-tour .txb-concert-row__date {
	background: #fff;
	color: #000;
	border-right: 3px solid #fff;
}
body.txb-page-tour .txb-concert-row__mid {
	background: #000;
	color: #fff;
	border-left: 0;
	border-right: 0;
}
body.txb-page-tour .txb-concert-row__venue {
	color: #fff;
}
body.txb-page-tour .txb-concert-row__city {
	color: #e5e2dd;
}
body.txb-page-tour .txb-concert-row__fulldate {
	color: #ae8882;
}
body.txb-page-tour .txb-concert-row__meta {
	color: #ae8882;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 11px;
	font-weight: 700;
}
body.txb-page-tour .txb-concert-row__cta {
	background: #0a0a09;
	border-left: 3px solid #fff;
	flex-direction: column;
	gap: 10px;
	padding: 14px 12px;
}
body.txb-page-tour .txb-concert-row .txb-btn--primary {
	background: var(--txb-tour-red, var(--txb-color-primary, #cc0000));
	color: #fff;
	border: 2px solid #fff;
}
body.txb-page-tour .txb-concert-row .txb-btn--primary:hover,
body.txb-page-tour .txb-concert-row .txb-btn--primary:focus-visible {
	background: #fff;
	color: var(--txb-tour-red, #cc0000);
	border-color: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-concert-row .txb-btn--inverse {
	background: #2a2a27;
	color: #fff;
	border: 2px solid #fff;
}
body.txb-page-tour .txb-concert-row .txb-btn--disabled {
	opacity: 1;
	background: #b0b0b0;
	color: #000;
	border: 2px solid #000;
	pointer-events: none;
}
body.txb-page-tour .txb-concert-row:hover,
body.txb-page-tour .txb-concert-row:focus-within {
	transform: translateX(6px);
	box-shadow: -10px 0 0 0 var(--txb-tour-red, #cc0000);
	border-color: #fff;
}

.txb-tour-banner {
	margin-top: 24px;
	padding: 16px 20px;
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
	border: 2px solid #000;
}
.txb-tour-block {
	margin-bottom: 56px;
}
.txb-tour-block__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(22px, 3vw, 32px);
	margin: 0 0 20px;
}
.txb-tour-block__title.is-muted {
	color: #888;
}
.txb-tour-block__bar {
	width: 6px;
	height: 1.1em;
	background: var(--txb-color-primary, #cc0000);
	border: 2px solid #000;
}
.txb-past-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 768px) {
	.txb-past-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}
.txb-musica:not(.txb-musica--page) {
	display: grid;
	grid-template-columns: 240px 1fr;
	min-height: 60vh;
}
.txb-musica__aside {
	border-right: 2px solid rgba(255, 255, 255, 0.2);
	padding: 24px 16px;
	background: #0e0e0c;
	font-size: 13px;
}
.txb-musica__main {
	padding: 32px 24px 80px;
}
.txb-musica__title {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(28px, 4vw, 48px);
	margin: 0 0 8px;
}
.txb-musica__title-accent {
	color: var(--txb-color-primary, #cc0000);
}
.txb-rule {
	border: 0;
	border-top: 2px solid var(--txb-color-primary, #cc0000);
	margin: 0 0 32px;
}
.txb-rule--accent {
	max-width: 520px;
}
.txb-media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 32px;
}
.txb-media-featured {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 0;
	border: 2px solid rgba(255, 255, 255, 0.35);
	background: #10100e;
}
.txb-media-featured__visual {
	position: relative;
	min-height: 280px;
	background: #000;
}
.txb-media-featured__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.txb-media-featured__link {
	display: block;
	position: relative;
	height: 100%;
}
.txb-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72px;
	height: 72px;
	border: 4px solid #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.45);
}
.txb-play::after {
	content: "";
	position: absolute;
	left: 54%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 14px 0 14px 22px;
	border-color: transparent transparent transparent #fff;
}
.txb-media-featured__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}
.txb-media-featured__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(22px, 3vw, 34px);
}
.txb-media-featured__meta {
	margin: 0;
	color: #cfcfcf;
	font-size: 14px;
}
.txb-media-card {
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: #121211;
	display: flex;
	flex-direction: column;
}
.txb-media-card__img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.txb-media-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
	flex: 1;
}
.txb-media-card__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 20px;
}
.txb-media-card__year {
	margin: 0;
	color: #aaa;
	font-size: 14px;
}
.txb-embed {
	margin: 24px 0;
	border: 2px solid rgba(255, 255, 255, 0.25);
}
.txb-embed iframe {
	width: 100%;
	display: block;
}
.txb-news-hero {
	max-width: 1240px;
	margin: 0 auto;
	padding: 48px 24px 0;
}
.txb-news-hero__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
}
.txb-news-hero__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(40px, 8vw, 96px);
	line-height: 0.95;
}
.txb-news-hero__pre {
	color: #fff;
}
.txb-news-hero__acc {
	color: var(--txb-color-primary, #cc0000);
	font-style: italic;
}
.txb-news-hero__meta {
	text-align: right;
}
.txb-news-hero__updated {
	margin: 8px 0 0;
	font-size: 12px;
	letter-spacing: 0.08em;
	font-weight: 700;
	text-transform: uppercase;
}
.txb-news-grid {
	max-width: 1240px;
	margin: 0 auto;
	padding: 24px 24px 80px;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}
.txb-news-card {
	grid-column: span 4;
	border: 2px solid rgba(255, 255, 255, 0.28);
	background: #10100e;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.txb-news-card.txb-card--feature {
	grid-column: span 12;
	flex-direction: row;
	flex-wrap: wrap;
}
.txb-news-card.txb-card--feature .txb-news-card__media {
	flex: 1 1 45%;
}
.txb-news-card.txb-card--feature .txb-news-card__body {
	flex: 1 1 45%;
	padding: 28px;
}
.txb-news-card__media img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}
.txb-news-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.txb-news-card__date {
	font-size: 12px;
	letter-spacing: 0.08em;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--txb-color-primary-soft, #ffb4a8);
}
.txb-news-card__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 20px;
}
.txb-news-card__title a {
	text-decoration: none;
}
.txb-shop-subnav {
	background: var(--txb-color-surface-high, #2a2a27);
	border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.txb-shop-subnav .menu {
	list-style: none;
	margin: 0;
	padding: 12px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: center;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.06em;
}
.txb-shop-subnav a {
	text-decoration: none;
	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
}
.txb-shop-subnav .current-menu-item a,
.txb-shop-subnav a:hover {
	border-bottom-color: #fff;
}
.txb-shop-archive .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.txb-product-card {
	list-style: none;
}
.txb-product-card__inner {
	border: 2px solid rgba(255, 255, 255, 0.28);
	background: #121211;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.txb-product-card__media {
	position: relative;
	display: block;
	background: #fff;
	border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}
.txb-product-card__media img {
	width: 100%;
	height: 280px;
	object-fit: contain;
}
.txb-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 6px 8px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 2px solid #000;
}
.txb-badge--new {
	background: #fff;
	color: #000;
}
.txb-badge--oos {
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
}
.txb-product-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.txb-product-card__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 16px;
}
.txb-product-card__title a {
	text-decoration: none;
}
.txb-product-card__cat {
	margin: 0;
	color: #9a9a9a;
	font-size: 13px;
	text-transform: uppercase;
}
.txb-product-card__price {
	margin: 0;
	font-weight: 800;
}
.txb-product-card .button {
	width: 100%;
	text-align: center;
	background: #000;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	text-transform: uppercase;
	padding: 12px;
}
.txb-product-card .button:hover {
	background: var(--txb-color-primary, #cc0000);
	border-color: var(--txb-color-primary, #cc0000);
	color: #fff;
}

/* ------------------------------------------------------------------
   Tienda — archivo Stitch (campaña + categorías + grid)
   ------------------------------------------------------------------ */
body.woocommerce-shop,
body.tax-product_cat,
body.post-type-archive-product {
	background: #131411;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.woocommerce-shop .txb-topbar,
body.tax-product_cat .txb-topbar,
body.post-type-archive-product .txb-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 0;
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
body.woocommerce-shop .txb-topbar__inner,
body.tax-product_cat .txb-topbar__inner,
body.post-type-archive-product .txb-topbar__inner {
	padding: 0 16px;
}
body.woocommerce-shop .txb-header,
body.tax-product_cat .txb-header,
body.post-type-archive-product .txb-header {
	position: fixed;
	top: 40px;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 2px solid #fff;
	background: rgba(0, 0, 0, 0.95);
	color: #fff;
}
body.woocommerce-shop .txb-header__inner,
body.tax-product_cat .txb-header__inner,
body.post-type-archive-product .txb-header__inner {
	max-width: none;
	padding: 16px 32px;
}
body.woocommerce-shop .txb-logo,
body.tax-product_cat .txb-logo,
body.post-type-archive-product .txb-logo {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: #fff;
	letter-spacing: -0.06em;
}
body.woocommerce-shop .txb-nav .menu,
body.tax-product_cat .txb-nav .menu,
body.post-type-archive-product .txb-nav .menu {
	gap: 8px 24px;
	font-size: 18px;
	letter-spacing: -0.03em;
}
body.woocommerce-shop .txb-nav .menu a,
body.tax-product_cat .txb-nav .menu a,
body.post-type-archive-product .txb-nav .menu a {
	padding: 4px 8px;
	border: 0;
	color: #fff;
}
body.woocommerce-shop .txb-nav .menu .current-menu-item > a,
body.woocommerce-shop .txb-nav .menu .current_page_item > a,
body.woocommerce-shop .txb-nav .menu .current_page_parent > a,
body.woocommerce-shop .txb-nav .menu a[aria-current="page"],
body.tax-product_cat .txb-nav .menu .current-menu-item > a,
body.tax-product_cat .txb-nav .menu .current_page_item > a,
body.tax-product_cat .txb-nav .menu .current_page_parent > a,
body.tax-product_cat .txb-nav .menu a[aria-current="page"],
body.post-type-archive-product .txb-nav .menu .current-menu-item > a,
body.post-type-archive-product .txb-nav .menu .current_page_item > a,
body.post-type-archive-product .txb-nav .menu .current_page_parent > a,
body.post-type-archive-product .txb-nav .menu a[aria-current="page"] {
	background: #fff;
	color: #000;
	transform: rotate(-2deg);
}
body.woocommerce-shop .txb-nav .menu a:hover,
body.woocommerce-shop .txb-nav .menu a:focus-visible,
body.tax-product_cat .txb-nav .menu a:hover,
body.tax-product_cat .txb-nav .menu a:focus-visible,
body.post-type-archive-product .txb-nav .menu a:hover,
body.post-type-archive-product .txb-nav .menu a:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	transform: scale(0.96);
}
body.woocommerce-shop .txb-header__tools .txb-icon-link,
body.tax-product_cat .txb-header__tools .txb-icon-link,
body.post-type-archive-product .txb-header__tools .txb-icon-link {
	border: 0;
	color: var(--txb-color-primary-container, #cc0000);
}
body.woocommerce-shop .txb-shop-subnav,
body.tax-product_cat .txb-shop-subnav,
body.post-type-archive-product .txb-shop-subnav {
	margin-top: 120px;
	padding: 8px 32px;
	border-bottom: 2px solid var(--txb-color-surface-variant, #353532);
	background: var(--txb-color-surface-container, #20201d);
	overflow-x: auto;
}
body.woocommerce-shop .txb-shop-subnav .menu,
body.tax-product_cat .txb-shop-subnav .menu,
body.post-type-archive-product .txb-shop-subnav .menu {
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 24px;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
body.woocommerce-shop .txb-shop-subnav a,
body.tax-product_cat .txb-shop-subnav a,
body.post-type-archive-product .txb-shop-subnav a {
	display: block;
	padding: 8px 0;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	border-bottom: 2px solid transparent;
}
body.woocommerce-shop .txb-shop-subnav .current-menu-item a,
body.woocommerce-shop .txb-shop-subnav a:hover,
body.woocommerce-shop .txb-shop-subnav a:focus-visible,
body.tax-product_cat .txb-shop-subnav .current-menu-item a,
body.tax-product_cat .txb-shop-subnav a:hover,
body.tax-product_cat .txb-shop-subnav a:focus-visible,
body.post-type-archive-product .txb-shop-subnav .current-menu-item a,
body.post-type-archive-product .txb-shop-subnav a:hover,
body.post-type-archive-product .txb-shop-subnav a:focus-visible {
	color: var(--txb-color-primary-soft, #ffb4a8);
	border-bottom-color: var(--txb-color-primary-container, #cc0000);
	outline: none;
}
body.woocommerce-shop .txb-shop-archive,
body.tax-product_cat .txb-shop-archive,
body.post-type-archive-product .txb-shop-archive {
	max-width: 1600px;
	margin: 0 auto;
	padding: 48px 32px 88px;
}
.txb-shop-campaign {
	position: relative;
	min-height: clamp(420px, 46vw, 614px);
	margin-bottom: 48px;
	border: 2px solid #fff;
	background: var(--txb-color-surface-container-high, #2a2a27);
	overflow: hidden;
}
.txb-shop-campaign__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.5);
	transition: transform 0.7s ease;
}
.txb-shop-campaign__img--fallback {
	background-image: var(--txb-shop-hero-image, none), linear-gradient(135deg, #2a2a27 0%, #0e0e0c 46%, #180404 100%);
	background-size: cover;
	background-position: center;
}
.txb-shop-campaign:hover .txb-shop-campaign__img {
	transform: scale(1.05);
}
.txb-shop-campaign__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 28%, rgba(0, 0, 0, 0.34) 65%),
		rgba(0, 0, 0, 0.28);
	mix-blend-mode: multiply;
	pointer-events: none;
}
.txb-shop-campaign__content {
	position: absolute;
	left: clamp(20px, 4vw, 32px);
	right: clamp(20px, 4vw, 32px);
	bottom: clamp(20px, 4vw, 32px);
	z-index: 2;
	max-width: 920px;
}
.txb-shop-campaign__badge {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 8px;
	border: 1px solid #fff;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.txb-shop-campaign__title {
	max-width: 900px;
	margin: 0 0 8px;
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(4rem, 9vw, 6rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: 0;
	text-transform: uppercase;
}
.txb-shop-campaign__text {
	max-width: 620px;
	margin: 0 0 24px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 18px;
	line-height: 1.5;
}
.txb-shop-campaign__button {
	padding: 16px 32px;
	border: 2px solid transparent;
	background: #fff;
	color: #000;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease, transform 0.1s ease;
}
.txb-shop-campaign__button:hover,
.txb-shop-campaign__button:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	border-color: #fff;
	outline: none;
}
.txb-shop-campaign__button:active {
	transform: translateY(1px);
}
body.woocommerce-shop .txb-shop-archive__head,
body.tax-product_cat .txb-shop-archive__head,
body.post-type-archive-product .txb-shop-archive__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 24px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--txb-color-surface-variant, #353532);
}
body.woocommerce-shop .txb-shop-archive__head .txb-heading,
body.tax-product_cat .txb-shop-archive__head .txb-heading,
body.post-type-archive-product .txb-shop-archive__head .txb-heading {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2rem);
	line-height: 1.1;
}
.txb-shop-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.txb-shop-filter-chip__icon {
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h10v2H3V6Zm14 0h4v2h-4V6Zm-4-3h4v8h-4V3ZM3 16h4v2H3v-2Zm8 0h10v2H11v-2Zm-4-3h4v8H7v-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h10v2H3V6Zm14 0h4v2h-4V6Zm-4-3h4v8h-4V3ZM3 16h4v2H3v-2Zm8 0h10v2H11v-2Zm-4-3h4v8H7v-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
body.woocommerce-shop .txb-shop-archive ul.products,
body.tax-product_cat .txb-shop-archive ul.products,
body.post-type-archive-product .txb-shop-archive ul.products,
body.woocommerce-shop .txb-shop-archive .woocommerce ul.products,
body.tax-product_cat .txb-shop-archive .woocommerce ul.products,
body.post-type-archive-product .txb-shop-archive .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
body.woocommerce-shop .txb-shop-archive ul.products li.product,
body.tax-product_cat .txb-shop-archive ul.products li.product,
body.post-type-archive-product .txb-shop-archive ul.products li.product {
	width: auto !important;
	margin: 0 !important;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__inner,
body.tax-product_cat .txb-shop-archive .txb-product-card__inner,
body.post-type-archive-product .txb-shop-archive .txb-product-card__inner {
	border: 2px solid var(--txb-color-surface-variant, #353532);
	background: var(--txb-color-surface-container, #20201d);
	transition: border-color 0.16s ease;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__inner:hover,
body.tax-product_cat .txb-shop-archive .txb-product-card__inner:hover,
body.post-type-archive-product .txb-shop-archive .txb-product-card__inner:hover {
	border-color: #fff;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__media,
body.tax-product_cat .txb-shop-archive .txb-product-card__media,
body.post-type-archive-product .txb-shop-archive .txb-product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	border-bottom: 2px solid var(--txb-color-surface-variant, #353532);
	background: var(--txb-color-surface-container-lowest, #0e0e0c);
	overflow: hidden;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__media img,
body.tax-product_cat .txb-shop-archive .txb-product-card__media img,
body.post-type-archive-product .txb-shop-archive .txb-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1);
	transition: filter 0.28s ease, transform 0.28s ease;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__inner:hover .txb-product-card__media img,
body.tax-product_cat .txb-shop-archive .txb-product-card__inner:hover .txb-product-card__media img,
body.post-type-archive-product .txb-shop-archive .txb-product-card__inner:hover .txb-product-card__media img {
	filter: grayscale(0);
	transform: scale(1.02);
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__body,
body.tax-product_cat .txb-shop-archive .txb-product-card__body,
body.post-type-archive-product .txb-shop-archive .txb-product-card__body {
	padding: 24px;
	gap: 16px;
	justify-content: space-between;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__title,
body.tax-product_cat .txb-shop-archive .txb-product-card__title,
body.post-type-archive-product .txb-shop-archive .txb-product-card__title {
	font-size: 20px;
	line-height: 1.1;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__cat,
body.tax-product_cat .txb-shop-archive .txb-product-card__cat,
body.post-type-archive-product .txb-shop-archive .txb-product-card__cat {
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 14px;
	letter-spacing: 0.14em;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card__price,
body.tax-product_cat .txb-shop-archive .txb-product-card__price,
body.post-type-archive-product .txb-shop-archive .txb-product-card__price {
	color: var(--txb-color-primary-soft, #ffb4a8);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 24px;
	font-weight: 800;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card .button,
body.tax-product_cat .txb-shop-archive .txb-product-card .button,
body.post-type-archive-product .txb-shop-archive .txb-product-card .button {
	width: 100%;
	padding: 14px 12px;
	border: 2px solid #fff;
	background: transparent;
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.14s ease, color 0.14s ease, transform 0.1s ease;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card .button:hover,
body.woocommerce-shop .txb-shop-archive .txb-product-card .button:focus-visible,
body.tax-product_cat .txb-shop-archive .txb-product-card .button:hover,
body.tax-product_cat .txb-shop-archive .txb-product-card .button:focus-visible,
body.post-type-archive-product .txb-shop-archive .txb-product-card .button:hover,
body.post-type-archive-product .txb-shop-archive .txb-product-card .button:focus-visible {
	background: #fff;
	color: #000;
	outline: none;
	transform: scale(0.98);
}
body.woocommerce-shop .txb-shop-archive .txb-product-card.outofstock,
body.tax-product_cat .txb-shop-archive .txb-product-card.outofstock,
body.post-type-archive-product .txb-shop-archive .txb-product-card.outofstock {
	opacity: 0.68;
}
body.woocommerce-shop .txb-shop-archive .txb-product-card.outofstock .button,
body.tax-product_cat .txb-shop-archive .txb-product-card.outofstock .button,
body.post-type-archive-product .txb-shop-archive .txb-product-card.outofstock .button {
	border-color: var(--txb-color-surface-variant, #353532);
	background: var(--txb-color-surface-variant, #353532);
	color: var(--txb-color-on-surface-variant, #e8bdb6);
}
body.woocommerce-shop .txb-footer,
body.tax-product_cat .txb-footer,
body.post-type-archive-product .txb-footer {
	background: #000;
	color: var(--txb-color-primary-container, #cc0000);
}
.txb-product-wrap {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	align-items: flex-start;
	padding-top: 32px;
}
.txb-product-summary .product_title {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(24px, 3vw, 36px);
}
.txb-product-summary .price {
	color: var(--txb-color-primary, #cc0000);
	font-weight: 900;
	font-size: 22px;
}
.txb-product-summary .single_add_to_cart_button {
	background: var(--txb-color-primary, #cc0000);
	color: #fff;
	border: 0;
	border-radius: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	padding: 16px 24px;
	width: 100%;
}
.woocommerce-breadcrumb {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
	color: #bbb;
}

/* ------------------------------------------------------------------
   Producto — ficha Stitch (galería + compra + relacionados)
   ------------------------------------------------------------------ */
body.single-product {
	background: #131411;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.single-product .txb-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 0;
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
body.single-product .txb-topbar__inner {
	padding: 0 16px;
}
body.single-product .txb-header {
	position: fixed;
	top: 40px;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 2px solid #fff;
	background: rgba(0, 0, 0, 0.95);
	color: #fff;
}
body.single-product .txb-header__inner {
	max-width: none;
	padding: 16px 32px;
}
body.single-product .txb-logo {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: #fff;
	letter-spacing: -0.06em;
}
body.single-product .txb-nav .menu {
	gap: 8px 24px;
	font-size: 18px;
	letter-spacing: -0.03em;
}
body.single-product .txb-nav .menu a {
	padding: 4px 8px;
	border: 0;
	color: #fff;
}
body.single-product .txb-nav .menu .current-menu-item > a,
body.single-product .txb-nav .menu .current_page_item > a,
body.single-product .txb-nav .menu .current_page_parent > a,
body.single-product .txb-nav .menu a[aria-current="page"] {
	background: #fff;
	color: #000;
	transform: rotate(-2deg);
}
body.single-product .txb-nav .menu a:hover,
body.single-product .txb-nav .menu a:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	transform: scale(0.96);
}
body.single-product .txb-header__tools .txb-icon-link {
	border: 0;
	color: #fff;
}
body.single-product .txb-single-product {
	max-width: 1440px;
	padding: 128px 16px 0;
}
body.single-product .woocommerce-breadcrumb {
	margin: 0 0 24px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
body.single-product .woocommerce-breadcrumb a {
	color: inherit;
	text-decoration: none;
}
body.single-product .woocommerce-breadcrumb a:hover,
body.single-product .woocommerce-breadcrumb a:focus-visible {
	color: var(--txb-color-primary-container, #cc0000);
}
body.single-product .woocommerce-notices-wrapper {
	margin-bottom: 20px;
}
body.single-product .txb-product-wrap {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(500px, 5fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
	padding: 0;
}
body.single-product .txb-product-gallery-shell {
	min-width: 0;
}
body.single-product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}
body.single-product .woocommerce-product-gallery__wrapper {
	margin: 0 !important;
}
body.single-product .woocommerce-product-gallery__image {
	border: 2px solid #fff;
	background: var(--txb-color-surface-container, #20201d);
	overflow: hidden;
}
body.single-product .woocommerce-product-gallery__image:first-child {
	aspect-ratio: 1 / 1;
}
body.single-product .woocommerce-product-gallery__image a {
	display: block;
	height: 100%;
}
body.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: contrast(1.22) grayscale(0.18);
}
body.single-product .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 16px 0 0 !important;
	padding: 0 !important;
	list-style: none;
}
body.single-product .flex-control-thumbs li {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: var(--txb-color-surface-container, #20201d);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
body.single-product .flex-control-thumbs li:hover,
body.single-product .flex-control-thumbs li:focus-within,
body.single-product .flex-control-thumbs li:has(.flex-active) {
	border-color: var(--txb-color-primary-container, #cc0000);
}
body.single-product .flex-control-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
	filter: contrast(1.22) grayscale(0.18);
}
body.single-product .flex-control-thumbs img.flex-active,
body.single-product .flex-control-thumbs img:hover {
	opacity: 1;
}
body.single-product .txb-product-summary {
	position: relative;
	min-width: 0;
	width: 100%;
	max-width: 680px;
	padding-top: clamp(18px, 3vw, 44px);
}
body.single-product .txb-product-summary .product_title {
	margin: 0 0 8px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-size: clamp(2.75rem, 5vw, 4rem);
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.single-product .txb-product-summary .price {
	margin: 0 0 24px;
	color: var(--txb-color-primary-container, #cc0000);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.75rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.1;
}
body.single-product .txb-product-summary .price del {
	opacity: 0.55;
}
body.single-product .txb-product-summary .woocommerce-product-rating {
	margin: 0 0 16px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
body.single-product .txb-product-summary form.cart {
	margin: 0 0 24px;
	display: grid;
	grid-template-columns: minmax(112px, 136px) minmax(260px, 1fr);
	gap: 12px;
	align-items: stretch;
}
body.single-product .txb-product-summary form.cart.variations_form {
	display: block;
}
body.single-product .txb-product-summary .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: minmax(112px, 136px) minmax(260px, 1fr);
	gap: 12px;
	align-items: stretch;
}
body.single-product .txb-product-summary table.variations {
	width: 100%;
	margin: 0 0 16px;
	border-collapse: collapse;
}
body.single-product .txb-product-summary table.variations tr {
	display: block;
	margin-bottom: 18px;
}
body.single-product .txb-product-summary table.variations th,
body.single-product .txb-product-summary table.variations td {
	display: block;
	padding: 0;
	text-align: left;
}
body.single-product .txb-product-summary table.variations label {
	display: block;
	margin: 0 0 8px;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.single-product .txb-product-summary table.variations select {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
body.single-product .txb-product-summary .reset_variations {
	display: inline-block;
	margin-top: 8px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
body.single-product .txb-variation-buttons {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}
body.single-product .txb-variation-button {
	min-height: 42px;
	padding: 10px 12px;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: transparent;
	color: var(--txb-color-on-surface, #e5e2dd);
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
}
body.single-product .txb-variation-button:hover,
body.single-product .txb-variation-button:focus-visible,
body.single-product .txb-variation-button.is-selected {
	background: #fff;
	color: #000;
	border-color: #fff;
	outline: none;
}
body.single-product .txb-variation-button.is-selected {
	transform: translateY(-2px);
	box-shadow: 2px 2px 0 var(--txb-color-primary-container, #cc0000);
}
body.single-product .txb-variation-buttons[class*="color"],
body.single-product .txb-variation-buttons[class*="colour"],
body.single-product .txb-variation-buttons[class*="pa_color"],
body.single-product .txb-variation-buttons[class*="pa_colour"] {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
body.single-product .txb-variation-buttons[class*="color"] .txb-variation-button,
body.single-product .txb-variation-buttons[class*="colour"] .txb-variation-button,
body.single-product .txb-variation-buttons[class*="pa_color"] .txb-variation-button,
body.single-product .txb-variation-buttons[class*="pa_colour"] .txb-variation-button {
	width: 48px;
	min-width: 48px;
	height: 48px;
	min-height: 48px;
	padding: 0;
	font-size: 0;
	background: #111;
}
body.single-product .txb-variation-buttons[class*="color"] .txb-variation-button[data-value*="rojo"],
body.single-product .txb-variation-buttons[class*="color"] .txb-variation-button[data-value*="red"],
body.single-product .txb-variation-buttons[class*="colour"] .txb-variation-button[data-value*="rojo"],
body.single-product .txb-variation-buttons[class*="colour"] .txb-variation-button[data-value*="red"] {
	background: #3a0000;
}
body.single-product .txb-product-summary .quantity {
	display: flex;
	margin: 0;
}
body.single-product .txb-product-summary .quantity .qty {
	width: 100%;
	min-height: 64px;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: transparent;
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	appearance: textfield;
	transition: border-color 0.14s ease, background 0.14s ease;
}
body.single-product .txb-product-summary .quantity .qty:focus {
	border-color: #fff;
	background: #0e0e0c;
	outline: none;
}
body.single-product .txb-product-summary .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	min-height: 64px;
	padding: 16px 20px;
	border: 2px solid transparent;
	border-radius: 0;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.25rem, 2.2vw, 1.8rem);
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
body.single-product .txb-product-summary .single_add_to_cart_button::before {
	content: "";
	width: 28px;
	height: 28px;
	display: inline-block;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2ZM1 2v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21 5H5.21l-.94-2H1Zm16 16c-1.1 0-1.99.9-1.99 2S15.9 22 17 22s2-.9 2-2-.9-2-2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2ZM1 2v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21 5H5.21l-.94-2H1Zm16 16c-1.1 0-1.99.9-1.99 2S15.9 22 17 22s2-.9 2-2-.9-2-2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
body.single-product .txb-product-summary .single_add_to_cart_button:hover,
body.single-product .txb-product-summary .single_add_to_cart_button:focus-visible {
	background: #fff;
	color: #000;
	border-color: #fff;
	outline: none;
}
body.single-product .txb-product-summary .woocommerce-variation {
	margin: 0 0 14px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
}
body.single-product .txb-product-summary .woocommerce-product-details__short-description {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 18px;
	line-height: 1.5;
	max-width: none;
}
body.single-product .txb-product-summary .woocommerce-product-details__short-description p {
	margin: 0 0 16px;
}
body.single-product .txb-product-summary .woocommerce-product-details__short-description ul {
	margin: 0;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.5;
}
body.single-product .txb-product-summary .woocommerce-product-details__short-description li {
	margin-bottom: 8px;
}
body.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 32px;
	border-top: 4px solid #fff;
	padding-top: 32px;
}
body.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}
body.single-product .woocommerce-tabs ul.tabs li {
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: transparent;
	padding: 0;
}
body.single-product .woocommerce-tabs ul.tabs li.active {
	background: #fff;
	color: #000;
	border-color: #fff;
}
body.single-product .woocommerce-tabs ul.tabs a {
	display: block;
	padding: 12px 16px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.06em;
}
body.single-product .woocommerce-tabs .panel {
	max-width: 980px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	line-height: 1.65;
}
body.single-product .related.products,
body.single-product .up-sells.products {
	grid-column: 1 / -1;
	margin-top: 32px;
	padding-top: 48px;
	border-top: 4px solid #fff;
}
body.single-product .related.products > h2,
body.single-product .up-sells.products > h2 {
	margin: 0 0 32px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(4rem, 9vw, 6rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.single-product .related.products ul.products,
body.single-product .up-sells.products ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
body.single-product .related.products ul.products li.product,
body.single-product .up-sells.products ul.products li.product {
	width: auto !important;
	margin: 0 !important;
}
body.single-product .related.products ul.products li.product:first-child,
body.single-product .up-sells.products ul.products li.product:first-child {
	grid-column: span 1;
}
body.single-product .related.products .txb-product-card__inner,
body.single-product .up-sells.products .txb-product-card__inner {
	height: 100%;
	border-color: var(--txb-color-outline-variant, #5e3f3a);
	overflow: hidden;
	background: var(--txb-color-surface-container, #20201d);
	display: flex;
	flex-direction: column;
	transition: border-color 0.16s ease, transform 0.16s ease;
}
body.single-product .related.products .txb-product-card__inner:hover,
body.single-product .up-sells.products .txb-product-card__inner:hover {
	border-color: #fff;
	transform: translateY(-3px);
}
body.single-product .related.products .txb-product-card__media,
body.single-product .up-sells.products .txb-product-card__media {
	position: relative;
	inset: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
	border: 0;
	border-bottom: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: #161615;
}
body.single-product .related.products .txb-product-card__media img,
body.single-product .up-sells.products .txb-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.9;
	filter: contrast(1.18) grayscale(0.35);
	transition: transform 0.45s ease, opacity 0.45s ease;
}
body.single-product .related.products .txb-product-card__inner:hover .txb-product-card__media img,
body.single-product .up-sells.products .txb-product-card__inner:hover .txb-product-card__media img {
	transform: scale(1.05);
	opacity: 0.86;
}
body.single-product .related.products .txb-product-card__body,
body.single-product .up-sells.products .txb-product-card__body {
	position: relative;
	z-index: 2;
	margin: 0;
	padding: 16px;
	background: #0e0e0c;
	color: var(--txb-color-on-surface, #e5e2dd);
	text-align: left;
	display: flex;
	gap: 10px;
	flex: 1;
	border-top: 4px solid var(--txb-color-primary-container, #cc0000);
}
body.single-product .related.products .txb-product-card__title,
body.single-product .up-sells.products .txb-product-card__title {
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.15;
}
body.single-product .related.products .txb-product-card__cat,
body.single-product .up-sells.products .txb-product-card__cat {
	display: none;
}
body.single-product .related.products .txb-product-card__price,
body.single-product .up-sells.products .txb-product-card__price {
	margin: 0;
	color: var(--txb-color-primary-soft, #ffb4a8);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 20px;
	font-weight: 800;
}
body.single-product .related.products .txb-product-card .button,
body.single-product .up-sells.products .txb-product-card .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 12px 10px;
	border: 2px solid #fff;
	background: transparent;
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
}
body.single-product .related.products .txb-product-card .button:hover,
body.single-product .up-sells.products .txb-product-card .button:hover,
body.single-product .related.products .txb-product-card .button:focus-visible,
body.single-product .up-sells.products .txb-product-card .button:focus-visible {
	background: #fff;
	color: #000;
	outline: none;
}
body.single-product .txb-footer {
	background: #000;
	color: var(--txb-color-primary-container, #cc0000);
}
@media (min-width: 1180px) {
	body.single-product .txb-single-product {
		max-width: 1500px;
		padding-left: clamp(24px, 3vw, 48px);
		padding-right: clamp(24px, 3vw, 48px);
	}
	body.single-product .txb-product-summary .product_title {
		font-size: clamp(3.45rem, 4.4vw, 5.35rem);
	}
	body.single-product .txb-product-summary .summary,
	body.single-product .txb-product-summary .woocommerce-product-details__short-description {
		max-width: none;
	}
	body.single-product .txb-product-summary .single_add_to_cart_button {
		font-size: clamp(1.55rem, 1.8vw, 2rem);
		white-space: normal;
	}
}
@media (min-width: 1500px) {
	body.single-product .txb-single-product {
		max-width: 1560px;
	}
	body.single-product .txb-product-wrap {
		grid-template-columns: minmax(0, 1.08fr) minmax(620px, 0.92fr);
	}
}
@media (max-width: 1024px) {
	.txb-split,
	.txb-media-featured,
	.txb-musica:not(.txb-musica--page),
	.txb-product-wrap {
		grid-template-columns: 1fr;
	}
	.txb-musica__shell--aside {
		grid-template-columns: 1fr;
	}
	.txb-musica--page .txb-musica__aside {
		border-right: 0;
		border-bottom: 3px solid var(--txb-color-border, #fff);
	}
	.txb-product-grid,
	.txb-shop-archive .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.woocommerce-shop .txb-shop-archive ul.products,
	body.tax-product_cat .txb-shop-archive ul.products,
	body.post-type-archive-product .txb-shop-archive ul.products,
	body.woocommerce-shop .txb-shop-archive .woocommerce ul.products,
	body.tax-product_cat .txb-shop-archive .woocommerce ul.products,
	body.post-type-archive-product .txb-shop-archive .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.single-product .txb-product-wrap {
		grid-template-columns: 1fr;
	}
	body.single-product .txb-product-summary {
		position: static;
		padding-top: 24px;
	}
	body.single-product .related.products ul.products,
	body.single-product .up-sells.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.single-product .related.products ul.products li.product:first-child,
	body.single-product .up-sells.products ul.products li.product:first-child {
		grid-column: span 1;
	}
}
@media (max-width: 720px) {
	.txb-header__inner {
		grid-template-columns: auto 1fr auto;
		padding: 14px 16px;
		gap: 10px;
	}
	.txb-logo {
		order: 2;
		justify-self: center;
		font-size: 1.3rem;
		text-align: center;
	}
	.txb-nav-toggle {
		order: 1;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.txb-nav-toggle__label {
		font-size: 0.62rem;
		letter-spacing: 0.1em;
	}
	.txb-nav {
		display: none;
	}
	.txb-header__tools {
		order: 3;
		gap: 4px;
	}
	.txb-icon-link--account {
		display: none;
	}
	.txb-icon-link {
		width: 40px;
		height: 40px;
	}
	.txb-tool-icon {
		width: 25px;
		height: 25px;
	}
	.txb-menu-overlay {
		padding: 18px 16px 22px;
		background:
			linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%),
			repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 5px),
			#1b1c19;
	}
	.txb-menu-overlay__bar {
		align-items: center;
		padding-bottom: 16px;
		border-bottom: 2px solid rgba(204, 0, 0, 0.75);
	}
	.txb-menu-overlay__brand {
		font-size: clamp(1.65rem, 8vw, 2.65rem);
		letter-spacing: 0.03em;
	}
	.txb-overlay-close {
		width: 48px;
		height: 48px;
	}
	.txb-menu-overlay__grid {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 28px 0;
	}
	.txb-menu-overlay__visual {
		min-height: min(44vh, 360px);
		order: 1;
		border-color: rgba(204, 0, 0, 0.75);
		box-shadow: -5px 5px 0 var(--txb-color-secondary, #f2bc86);
	}
	.txb-menu-overlay__nav {
		order: 2;
	}
	.txb-menu-overlay__nav .menu a {
		width: 100%;
		font-size: clamp(3rem, 17vw, 5.4rem);
		line-height: 0.9;
		text-shadow: 2px 2px 0 #000;
	}
	.txb-menu-overlay__nav .menu .current-menu-item > a,
	.txb-menu-overlay__nav .menu .current_page_item > a,
	.txb-menu-overlay__nav .menu .is-active > a,
	.txb-menu-overlay__nav .menu a:hover,
	.txb-menu-overlay__nav .menu a:focus-visible {
		padding-left: 12px;
	}
	.txb-menu-overlay__foot {
		align-items: flex-start;
		flex-direction: column;
	}
	.txb-menu-overlay__actions {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.txb-menu-overlay__actions a {
		width: 100%;
		padding: 12px 0;
		font-size: 1rem;
	}
	.txb-cart-drawer__panel {
		width: min(420px, 94vw);
		padding: 20px;
	}
	.txb-concert-card-home,
	.txb-tour-page .txb-concert-row,
	body.txb-page-tour .txb-concert-row,
	.txb-concerts-list .txb-concert-row {
		grid-template-columns: 1fr;
	}
	.txb-concert-card-home__action,
	.txb-concert-row__cta {
		border-left: 0;
		border-top: 2px solid rgba(255, 255, 255, 0.2);
		justify-content: flex-start;
	}
	body.txb-page-tour .txb-concert-row__cta {
		border-top: 3px solid #fff;
		border-left: 0;
	}
	.txb-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.txb-footer__nav .menu {
		justify-content: center;
	}
	.txb-product-grid,
	.txb-shop-archive .woocommerce ul.products {
		grid-template-columns: 1fr;
	}
	body.woocommerce-shop .txb-header__inner,
	body.tax-product_cat .txb-header__inner,
	body.post-type-archive-product .txb-header__inner {
		padding: 14px 16px;
	}
	body.woocommerce-shop .txb-nav-toggle,
	body.tax-product_cat .txb-nav-toggle,
	body.post-type-archive-product .txb-nav-toggle {
		border-color: #fff;
		color: #fff;
	}
	body.woocommerce-shop .txb-shop-subnav,
	body.tax-product_cat .txb-shop-subnav,
	body.post-type-archive-product .txb-shop-subnav {
		margin-top: 112px;
		padding: 8px 16px;
	}
	body.woocommerce-shop .txb-shop-archive,
	body.tax-product_cat .txb-shop-archive,
	body.post-type-archive-product .txb-shop-archive {
		padding: 32px 16px 72px;
	}
	.txb-shop-campaign {
		min-height: 420px;
		margin-bottom: 40px;
	}
	.txb-shop-campaign__title {
		font-size: clamp(3.6rem, 16vw, 5.4rem);
	}
	.txb-shop-campaign__text {
		font-size: 16px;
	}
	body.woocommerce-shop .txb-shop-archive ul.products,
	body.tax-product_cat .txb-shop-archive ul.products,
	body.post-type-archive-product .txb-shop-archive ul.products,
	body.woocommerce-shop .txb-shop-archive .woocommerce ul.products,
	body.tax-product_cat .txb-shop-archive .woocommerce ul.products,
	body.post-type-archive-product .txb-shop-archive .woocommerce ul.products {
		grid-template-columns: 1fr;
	}
	body.single-product .txb-header__inner {
		padding: 14px 16px;
	}
	body.single-product .txb-nav-toggle {
		border-color: #fff;
		color: #fff;
	}
	body.single-product .txb-single-product {
		padding: 118px 16px 0;
	}
	body.single-product .woocommerce-breadcrumb {
		font-size: 10px;
		overflow-wrap: anywhere;
	}
	body.single-product .flex-control-thumbs {
		gap: 8px;
	}
	body.single-product .txb-product-summary .product_title {
		font-size: clamp(2.5rem, 13vw, 4rem);
	}
	body.single-product .txb-variation-buttons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.single-product .txb-product-summary form.cart,
	body.single-product .txb-product-summary .woocommerce-variation-add-to-cart {
		grid-template-columns: 1fr;
	}
	body.single-product .txb-product-summary .single_add_to_cart_button {
		font-size: clamp(1.2rem, 7vw, 1.7rem);
	}
	body.single-product .related.products > h2,
	body.single-product .up-sells.products > h2 {
		font-size: clamp(3.4rem, 16vw, 5rem);
	}
	body.single-product .related.products ul.products,
	body.single-product .up-sells.products ul.products {
		grid-template-columns: 1fr;
	}
	body.single-product .related.products ul.products li.product:first-child,
	body.single-product .up-sells.products ul.products li.product:first-child {
		grid-column: span 1;
	}
	body.single-product .related.products li.product:first-child .txb-product-card__body,
	body.single-product .up-sells.products li.product:first-child .txb-product-card__body {
		margin: 0;
		max-width: none;
	}
	.txb-news-card {
		grid-column: span 12;
	}
}

/* ------------------------------------------------------------------
   Tour / Gira — Stitch «Digital Universe» (hero + rejilla + pasados)
   ------------------------------------------------------------------ */
.txb-tour-universe {
	position: relative;
	width: 100%;
}
.txb-tour-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(280px, 52vw, 420px);
	padding: 40px 16px 36px;
	border-bottom: 4px solid var(--txb-color-on-surface, #e5e2dd);
	overflow: hidden;
	text-align: center;
}
.txb-tour-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.38;
	filter: grayscale(1) contrast(1.08);
	mix-blend-mode: luminosity;
	pointer-events: none;
}
.txb-tour-hero picture {
	position: absolute;
	inset: 0;
	display: block;
}
.txb-tour-hero picture .txb-tour-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.txb-tour-hero__bg--fallback {
	background-image: var(--txb-tour-hero-fallback, none), linear-gradient(160deg, #1a1a18 0%, #0a0a09 55%, #1c0a0a 100%);
	background-size: cover, auto;
	background-position: center, center;
}
@media (max-width: 767px) {
	.txb-tour-hero__bg--fallback {
		background-image: var(--txb-tour-hero-mobile, var(--txb-tour-hero-fallback, none)), linear-gradient(160deg, #1a1a18 0%, #0a0a09 55%, #1c0a0a 100%);
	}
}
.txb-tour-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.78) 100%);
	pointer-events: none;
}
.txb-tour-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.txb-tour-hero__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-size: clamp(2.5rem, 10vw, 6rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--txb-tour-red, var(--txb-color-primary, #cc0000));
	-webkit-text-fill-color: var(--txb-tour-red, var(--txb-color-primary, #cc0000));
	-webkit-text-stroke: 1.5px #fff;
	paint-order: stroke fill;
	text-shadow:
		2px 0 0 #fff,
		-2px 0 0 #fff,
		0 2px 0 #fff,
		0 -2px 0 #fff,
		2px 2px 0 #fff,
		-2px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px 2px 0 #fff;
}
.txb-tour-hero__kicker {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(1rem, 2.8vw, 1.75rem);
	line-height: 1.15;
	text-transform: uppercase;
	color: #fff;
	background: #000;
	border: 3px solid var(--txb-tour-red, var(--txb-color-primary, #cc0000));
	padding: 10px 18px;
	transform: rotate(1deg);
}

/* Gira: acento rojo explícito (Customizer / bloques del editor) */
body.txb-page-tour .txb-tour-hero__title {
	color: var(--txb-tour-red, #cc0000);
	-webkit-text-fill-color: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-tour-universe__h2 {
	border-left-color: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-tour-universe__banner {
	background: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-u-card__fill {
	background: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-u-card__btn--cta {
	background: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-u-card:hover .txb-u-card__btn--time,
body.txb-page-tour .txb-u-card:focus-within .txb-u-card__btn--time {
	background: var(--txb-tour-red, #cc0000);
}
body.txb-page-tour .txb-u-card__body {
	color: #fff;
}
.txb-tour-universe__main {
	max-width: 1440px;
	margin: 0 auto;
	padding: 40px 16px 72px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
@media (min-width: 768px) {
	.txb-tour-universe__main {
		padding: 48px 32px 88px;
		gap: 48px;
	}
}
.txb-tour-universe__section {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.txb-tour-universe__h2 {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(1.75rem, 4.5vw, 4rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #fff;
	border-left: 8px solid var(--txb-color-primary-container, #cc0000);
	padding-left: 16px;
}
.txb-tour-universe__h2--past {
	color: #9a9a9a;
	border-left-color: var(--txb-color-surface-variant, #353532);
}
.txb-u-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	width: 100%;
}
@media (min-width: 640px) {
	.txb-u-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.txb-u-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}
}
.txb-u-grid > .txb-tour-universe__empty {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 1rem;
	opacity: 0.85;
	padding: 24px 12px;
}
.txb-u-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 4px solid #fff;
	background: var(--txb-color-surface-container, #20201d);
	overflow: hidden;
	min-height: 100%;
	transition: border-color 0.25s ease, background-color 0.25s ease;
}
/* Brutalismo: acento duro, sin sombras suaves (design.md) */
.txb-u-card:hover,
.txb-u-card:focus-within {
	border-color: var(--txb-color-primary-container, #cc0000);
	background: var(--txb-color-surface-container-low, #1c1c19);
}
.txb-u-card__fill {
	position: absolute;
	inset: 0;
	background: var(--txb-color-primary-container, #cc0000);
	transform: translateY(100%);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}
.txb-u-card:hover .txb-u-card__fill,
.txb-u-card:focus-within .txb-u-card__fill {
	transform: translateY(0);
}
.txb-u-card__date {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 12px 16px;
	background: #fff;
	color: #000;
	border-bottom: 4px solid #fff;
}
.txb-u-card__time {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 100%;
}
.txb-u-card__wday {
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.88;
}
.txb-u-card__daymon {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}
.txb-u-card__day {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1;
}
.txb-u-card__mon {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(1.15rem, 2.5vw, 1.5rem);
	text-transform: uppercase;
}
.txb-u-card__year {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(1rem, 2vw, 1.25rem);
	letter-spacing: 0.06em;
}
.txb-u-card__fulldate {
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.9;
	text-align: center;
	line-height: 1.35;
	max-width: 100%;
}
.txb-u-card__nodate {
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-align: center;
	color: #555;
}
.txb-u-card__body {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	padding: 22px 16px;
	transition: color 0.2s ease;
}
.txb-u-card:hover .txb-u-card__body,
.txb-u-card:focus-within .txb-u-card__body {
	color: #000;
}
.txb-u-card__venue {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	line-height: 1.2;
	text-transform: uppercase;
}
.txb-u-card__city {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: clamp(0.95rem, 2vw, 1.125rem);
	line-height: 1.35;
	text-transform: uppercase;
	font-weight: 500;
}
.txb-u-card__pin {
	flex-shrink: 0;
	opacity: 0.95;
}
.txb-u-card__times {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.45;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--txb-color-on-surface-muted, #ae8882);
	font-weight: 600;
}
.txb-u-card__foot {
	position: relative;
	z-index: 2;
	padding: 20px 16px 22px;
	border-top: 4px solid #fff;
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: color 0.2s ease, border-color 0.25s ease;
}
.txb-u-card:hover .txb-u-card__foot,
.txb-u-card:focus-within .txb-u-card__foot {
	color: #000;
}
.txb-u-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 16px 14px;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.txb-u-card__btn--cta {
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
}
.txb-u-card__btn--cta:hover,
.txb-u-card__btn--cta:focus-visible {
	transform: translate(-2px, -2px);
	box-shadow: -4px 4px 0 #fff;
	background: #000;
	color: #fff;
	border-color: #000;
}
.txb-u-card:hover .txb-u-card__btn--cta,
.txb-u-card:focus-within .txb-u-card__btn--cta {
	border-color: #000;
}
.txb-u-card__btn--sold {
	background: #e8e8e8;
	color: #000;
	border-color: #000;
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}
.txb-u-card__btn--tba {
	background: #2a2a27;
	color: #e5e2dd;
	border-color: rgba(255, 255, 255, 0.35);
	opacity: 0.85;
	cursor: default;
}
.txb-u-card__btn--time,
.txb-u-card__btn--free {
	background: #fff;
	color: #000;
	border: 2px solid #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	font-size: clamp(0.95rem, 2.2vw, 1.25rem);
	letter-spacing: 0.02em;
}
.txb-u-card:hover .txb-u-card__btn--time,
.txb-u-card:focus-within .txb-u-card__btn--time,
.txb-u-card:hover .txb-u-card__btn--free,
.txb-u-card:focus-within .txb-u-card__btn--free {
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	border-color: #000;
}
.txb-tour-universe__banner {
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	padding: clamp(20px, 4vw, 36px) clamp(16px, 3vw, 40px);
	border: 4px solid #fff;
	transform: rotate(-1deg);
	margin: 8px 0 16px;
	box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.35);
}
.txb-tour-universe__banner-text {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(0.85rem, 2.2vw, 1.35rem);
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.txb-tour-universe__past {
	opacity: 0.72;
}
.txb-u-past-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: 100%;
}
@media (min-width: 768px) {
	.txb-u-past-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}
.txb-u-past {
	position: relative;
	padding: 22px 20px;
	border: 2px solid var(--txb-color-surface-variant, #353532);
	background: var(--txb-color-surface-container-low, #1c1c19);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.txb-u-past__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}
.txb-u-past__date {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 800;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	text-transform: uppercase;
	text-decoration: line-through;
	text-decoration-color: var(--txb-color-primary-container, #cc0000);
	text-decoration-thickness: 4px;
	color: #e5e2dd;
}
.txb-u-past__badge {
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--txb-color-surface-variant, #353532);
	color: #e5e2dd;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}
.txb-u-past__venue {
	margin: 0;
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	font-weight: 700;
	text-transform: uppercase;
}
.txb-u-past__city {
	margin: 0;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	opacity: 0.9;
}
.txb-tour-universe__extra {
	max-width: 800px;
	margin: 0 auto;
	padding-top: 8px;
}

/* Tour — ajuste de fidelidad sobre la referencia Stitch entregada */
body.txb-page-tour {
	background: #131411;
}
body.txb-page-tour .txb-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 0;
	background: var(--txb-color-primary-soft, #ffb4a8);
	color: var(--txb-color-on-primary, #690000);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
body.txb-page-tour .txb-topbar__inner {
	padding: 0 16px;
}
body.txb-page-tour .txb-header {
	position: fixed;
	top: 40px;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 2px solid #fff;
	background: rgba(0, 0, 0, 0.95);
	color: #fff;
}
body.txb-page-tour .txb-header__inner {
	max-width: none;
	padding: 16px 32px;
}
body.txb-page-tour .txb-logo {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: #fff;
	letter-spacing: -0.06em;
}
body.txb-page-tour .txb-nav .menu {
	gap: 8px 24px;
	font-size: 18px;
	letter-spacing: -0.03em;
}
body.txb-page-tour .txb-nav .menu a {
	padding: 4px 8px;
	border: 0;
	color: #fff;
}
body.txb-page-tour .txb-nav .menu .current-menu-item > a,
body.txb-page-tour .txb-nav .menu .current_page_item > a,
body.txb-page-tour .txb-nav .menu a[aria-current="page"] {
	background: #fff;
	color: #000;
	transform: rotate(-2deg);
}
body.txb-page-tour .txb-nav .menu a:hover,
body.txb-page-tour .txb-nav .menu a:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	transform: scale(0.96);
}
body.txb-page-tour .txb-header__tools .txb-icon-link {
	border: 0;
	color: #fff;
}
body.txb-page-tour .txb-tour-universe {
	max-width: 1440px;
	margin: 0 auto;
	padding: 128px 16px 48px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
body.txb-page-tour .txb-tour-universe__main {
	max-width: none;
	padding: 0;
	gap: 48px;
}
body.txb-page-tour .txb-tour-hero {
	min-height: 409px;
	padding: 48px 16px 24px;
	border-bottom: 4px solid var(--txb-color-on-surface, #e5e2dd);
}
body.txb-page-tour .txb-tour-hero__bg {
	opacity: 0.3;
	filter: grayscale(1) contrast(1);
}
body.txb-page-tour .txb-tour-hero__veil {
	background: rgba(0, 0, 0, 0.12);
}
body.txb-page-tour .txb-tour-hero__title {
	font-size: clamp(3.5rem, 11vw, 6rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
	-webkit-text-stroke: 0;
	text-shadow: 4px 4px 0 #fff;
}
body.txb-page-tour .txb-tour-hero__kicker {
	margin-top: 0;
	padding: 8px 16px;
	border: 2px solid var(--txb-color-primary-container, #cc0000);
	font-size: clamp(1.25rem, 3.2vw, 2rem);
	line-height: 1.1;
}
body.txb-page-tour .txb-tour-universe__section {
	gap: 24px;
}
body.txb-page-tour .txb-tour-universe__h2 {
	font-size: clamp(2.5rem, 5.8vw, 4rem);
	line-height: 0.95;
}
body.txb-page-tour .txb-u-grid {
	gap: 16px;
}
body.txb-page-tour .txb-u-card {
	background: var(--txb-color-surface, #131411);
	border-color: #fff;
}
body.txb-page-tour .txb-u-card:hover,
body.txb-page-tour .txb-u-card:focus-within {
	border-color: #fff;
	background: var(--txb-color-surface-variant, #353532);
}
body.txb-page-tour .txb-u-card__date {
	padding: 16px;
	border-bottom-color: #fff;
}
body.txb-page-tour .txb-u-card__time,
body.txb-page-tour .txb-u-card__daymon {
	gap: 0;
}
body.txb-page-tour .txb-u-card__daymon {
	flex-direction: column;
	align-items: center;
}
body.txb-page-tour .txb-u-card__day {
	font-size: clamp(3.75rem, 7vw, 4rem);
	line-height: 0.92;
}
body.txb-page-tour .txb-u-card__mon {
	font-size: clamp(1.65rem, 3.2vw, 2rem);
	line-height: 1.1;
}
body.txb-page-tour .txb-u-card__body {
	padding: 24px;
	gap: 8px;
}
body.txb-page-tour .txb-u-card__venue {
	font-size: clamp(1.55rem, 3vw, 2rem);
	line-height: 1.1;
}
body.txb-page-tour .txb-u-card__city {
	font-size: clamp(1rem, 2vw, 1.125rem);
}
body.txb-page-tour .txb-u-card__times {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.txb-page-tour .txb-u-card:hover .txb-u-card__times,
body.txb-page-tour .txb-u-card:focus-within .txb-u-card__times {
	color: #000;
}
body.txb-page-tour .txb-u-card__foot {
	padding: 24px;
	background: transparent;
	border-top-color: #fff;
}
body.txb-page-tour .txb-u-card__btn {
	min-height: 52px;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
}
body.txb-page-tour .txb-u-card__btn--sold {
	background: #fff;
	color: #000;
	border-color: #000;
}
body.txb-page-tour .txb-tour-universe__banner {
	margin: 8px 0 16px;
	padding: 32px;
	border: 4px solid #fff;
	box-shadow: none;
}
body.txb-page-tour .txb-tour-universe__banner-text {
	font-size: clamp(1.15rem, 2.4vw, 2rem);
	line-height: 1.1;
	letter-spacing: 0.08em;
}
body.txb-page-tour .txb-tour-universe__past {
	opacity: 0.7;
}
body.txb-page-tour .txb-u-past-grid {
	gap: 4px;
}
body.txb-page-tour .txb-u-past {
	padding: 24px;
	gap: 8px;
}
body.txb-page-tour .txb-u-past__date {
	font-size: clamp(1.5rem, 3vw, 2rem);
}
body.txb-page-tour .txb-u-past__venue {
	font-size: 18px;
	line-height: 1.5;
}
body.txb-page-tour .txb-u-past__city {
	font-size: 14px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
}
body.txb-page-tour .txb-footer {
	background: #000;
	color: var(--txb-color-primary-container, #cc0000);
}

/* ------------------------------------------------------------------
   Home — Spotify embebido
   ------------------------------------------------------------------ */
.txb-section--spotify {
	background: #0e0e0c;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
}
.txb-spotify-block {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: 24px;
	align-items: center;
}
.txb-spotify-block__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.txb-spotify-block__eyebrow {
	display: inline-block;
	padding: 7px 10px;
	background: var(--txb-color-secondary, #f2bc86);
	color: #201000;
	border: 2px solid #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transform: rotate(-2deg);
}
.txb-spotify-block__player {
	border: 4px solid var(--txb-color-primary-container, #cc0000);
	background: #000;
	padding: 10px;
	transform: rotate(1deg);
	box-shadow: 10px 10px 0 #000;
}
.txb-spotify-block__player iframe {
	display: block;
	border: 0;
	background: #000;
}

/* ------------------------------------------------------------------
   Concierto — crónica, fotos, descargas
   ------------------------------------------------------------------ */
body.single-txb_concert .txb-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}
.txb-concert-single {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 24px 96px;
	overflow: hidden;
}
.txb-concert-single::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.04), transparent 32%),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 2px, transparent 2px 5px);
	opacity: 0.72;
}
.txb-concert-single__head {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 28px;
	border-bottom: 4px solid var(--txb-color-outline-variant, #5e3f3a);
}
.txb-concert-single__eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	padding: 6px 12px;
	background: var(--txb-color-secondary, #f2bc86);
	color: #201000;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transform: rotate(-2deg);
}
.txb-concert-single__title {
	margin: 0;
	color: var(--txb-color-primary-container, #cc0000);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 7rem;
	font-weight: 900;
	line-height: 0.88;
	text-transform: uppercase;
}
.txb-concert-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	margin-top: 10px;
}
.txb-concert-single__date {
	display: inline-flex;
	align-items: center;
	min-height: 68px;
	padding: 0 18px;
	background: var(--txb-color-surface-container-high, #2a2a27);
	border: 2px solid var(--txb-color-surface-variant, #353532);
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 3.6rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.txb-concert-single__place {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}
.txb-concert-single__place strong {
	color: var(--txb-color-secondary, #f2bc86);
}
.txb-concert-scrapbook {
	position: relative;
	min-height: 620px;
	margin: 72px 0 60px;
	display: grid;
	place-items: center;
}
.txb-concert-scrapbook__photo {
	position: absolute;
	margin: 0;
	padding: 14px;
	background: #151512;
	border: 4px solid #000;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
	transition: transform 0.24s ease, filter 0.24s ease;
}
.txb-concert-scrapbook__photo:hover,
.txb-concert-scrapbook__photo:focus-within {
	filter: brightness(1.08);
	transform: translateY(-8px) rotate(0deg);
	z-index: 5;
}
.txb-concert-scrapbook__photo button,
.txb-concert-gallery__item button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}
.txb-concert-scrapbook__photo img,
.txb-concert-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.txb-concert-scrapbook__photo--1 {
	width: min(310px, 34vw);
	left: 20%;
	top: 18%;
	transform: rotate(-7deg);
	opacity: 0.52;
}
.txb-concert-scrapbook__photo--1 img {
	aspect-ratio: 3 / 4;
	filter: grayscale(1) contrast(1.2);
}
.txb-concert-scrapbook__photo--2 {
	width: min(360px, 36vw);
	right: 16%;
	top: 30%;
	border-color: var(--txb-color-secondary, #f2bc86);
	transform: rotate(4deg);
}
.txb-concert-scrapbook__photo--2 img {
	aspect-ratio: 4 / 3;
	filter: contrast(1.24) saturate(0.72);
}
.txb-concert-scrapbook__photo--3 {
	position: relative;
	width: min(440px, 54vw);
	border-color: var(--txb-color-primary-container, #cc0000);
	transform: rotate(-1deg);
	z-index: 3;
}
.txb-concert-scrapbook__photo--3 img {
	aspect-ratio: 3 / 4;
	filter: contrast(1.12);
}
.txb-concert-scrapbook__photo figcaption {
	position: absolute;
	right: -28px;
	bottom: -18px;
	padding: 10px 18px;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	border: 2px solid #000;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transform: rotate(4deg);
}
.txb-concert-single__quote {
	max-width: 760px;
	margin: 0 auto 28px;
	padding: 20px 26px;
	background: rgba(32, 32, 29, 0.94);
	border-left: 4px solid var(--txb-color-secondary, #f2bc86);
	text-align: center;
}
.txb-concert-single__quote p {
	margin: 0;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: 1.3rem;
	line-height: 1.45;
}
.txb-concert-single__actions {
	display: flex;
	justify-content: center;
	margin: 0 0 56px;
}
.txb-concert-single__instagram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 72px;
	padding: 16px 40px;
	background: var(--txb-color-primary-fixed, #ffdad4);
	color: #690000;
	border: 4px solid #930000;
	box-shadow: 10px 10px 0 #0b2924;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 2rem;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.16s ease;
}
.txb-concert-single__instagram:hover,
.txb-concert-single__instagram:focus-visible {
	background: #fff;
	transform: translate(4px, 4px);
	box-shadow: 4px 4px 0 #0b2924;
	outline: none;
}
.txb-concert-single__play {
	width: 36px;
	height: 36px;
	border: 4px solid currentColor;
	border-radius: 50%;
	position: relative;
	flex: 0 0 auto;
}
.txb-concert-single__play::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 8px;
	border-left: 12px solid currentColor;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}
.txb-concert-processing {
	position: relative;
	max-width: 1040px;
	margin: 64px auto 44px;
	padding: clamp(32px, 5vw, 64px);
	border: 3px solid rgba(255, 255, 255, 0.72);
	background:
		radial-gradient(circle at 84% 24%, rgba(204, 0, 0, 0.18), transparent 28%),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 2px, transparent 2px 7px),
		linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.16)),
		#151512;
	box-shadow:
		10px 10px 0 rgba(204, 0, 0, 0.72),
		inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transform: rotate(-0.6deg);
}
.txb-concert-processing::before {
	content: "";
	position: absolute;
	inset: -30%;
	z-index: 0;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px),
		linear-gradient(90deg, transparent, rgba(204, 0, 0, 0.12), transparent);
	opacity: 0.34;
	pointer-events: none;
}
.txb-concert-processing::after {
	content: "";
	position: absolute;
	right: clamp(16px, 3vw, 34px);
	bottom: clamp(16px, 3vw, 34px);
	width: clamp(74px, 10vw, 128px);
	aspect-ratio: 1;
	border: 8px solid rgba(204, 0, 0, 0.34);
	border-radius: 50%;
	transform: rotate(-14deg);
	pointer-events: none;
}
.txb-concert-processing--video {
	max-width: 860px;
	margin-top: 34px;
	border-color: rgba(242, 188, 134, 0.72);
	box-shadow:
		8px 8px 0 rgba(242, 188, 134, 0.28),
		inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	transform: rotate(0.7deg);
}
.txb-concert-processing__stamp,
.txb-concert-processing h2,
.txb-concert-processing p {
	position: relative;
	z-index: 1;
}
.txb-concert-processing__stamp {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 9px 14px;
	border: 2px solid #000;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	box-shadow: 4px 4px 0 #000;
	transform: rotate(-2.5deg);
}
.txb-concert-processing--video .txb-concert-processing__stamp {
	background: var(--txb-color-secondary, #f2bc86);
	color: #201000;
}
.txb-concert-processing h2 {
	max-width: 860px;
	margin: 0;
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(2.6rem, 6vw, 5.6rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	text-shadow: 4px 4px 0 #000;
}
.txb-concert-processing p {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--txb-color-primary-fixed, #ffdad4);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 800;
	line-height: 1.35;
}
.txb-concert-processing--video h2 {
	font-size: clamp(2rem, 4.2vw, 4rem);
}
.txb-concert-processing--video p {
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.txb-concert-processing-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
	gap: clamp(18px, 2vw, 28px);
	align-items: stretch;
	margin: 64px 0 48px;
}
.txb-concert-processing-grid .txb-concert-processing,
.txb-concert-single > .txb-concert-processing {
	margin: 0;
}
.txb-concert-processing-grid .txb-concert-processing--photos,
.txb-concert-single > .txb-concert-processing--photos {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: clamp(300px, 34vw, 430px);
	padding: clamp(28px, 4vw, 52px);
	border: 4px solid rgba(94, 63, 58, 0.95);
	background:
		repeating-linear-gradient(45deg, transparent 0 12px, rgba(53, 53, 50, 0.35) 12px 24px),
		#151712;
	box-shadow: none;
	text-align: center;
	transform: none;
}
.txb-concert-processing-grid .txb-concert-processing--photos::before,
.txb-concert-single > .txb-concert-processing--photos::before {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.075) 0 2px, transparent 2px 12px);
	opacity: 0.28;
}
.txb-concert-processing-grid .txb-concert-processing--photos::after,
.txb-concert-single > .txb-concert-processing--photos::after {
	content: none;
}
.txb-concert-processing__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-bottom: 26px;
	color: rgba(229, 226, 221, 0.18);
	font-size: clamp(58px, 8vw, 92px);
	font-variation-settings: "FILL" 1;
	transition: color 0.18s ease, transform 0.18s ease;
}
.txb-concert-processing:hover .txb-concert-processing__icon {
	color: rgba(204, 0, 0, 0.86);
	transform: translateY(-3px) rotate(-2deg);
}
.txb-concert-processing-grid .txb-concert-processing--photos .txb-concert-processing__stamp,
.txb-concert-single > .txb-concert-processing--photos .txb-concert-processing__stamp {
	margin: 0 0 22px;
	padding: 12px 24px;
	border: 2px solid #1a1a17;
	background: var(--txb-color-inverse-surface, #e5e2dd);
	color: #11110f;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.45rem, 3.1vw, 2.35rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 0.95;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.42);
	transform: rotate(-3deg);
}
.txb-concert-processing-grid .txb-concert-processing--photos p,
.txb-concert-single > .txb-concert-processing--photos p {
	width: min(100%, 620px);
	margin: 0;
	padding: 18px 22px;
	border: 1px solid rgba(94, 63, 58, 0.95);
	background: rgba(32, 32, 29, 0.82);
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-size: clamp(1rem, 1.6vw, 1.32rem);
	font-weight: 500;
	line-height: 1.45;
}
.txb-concert-processing-grid .txb-concert-processing--video,
.txb-concert-single > .txb-concert-processing--video {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: clamp(300px, 34vw, 430px);
	padding: clamp(30px, 4vw, 52px);
	border: 4px solid var(--txb-color-on-primary-container, #ffdad4);
	background: var(--txb-color-primary-container, #cc0000);
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.76);
	text-align: left;
	transform: none;
}
.txb-concert-processing-grid .txb-concert-processing--video::before,
.txb-concert-single > .txb-concert-processing--video::before {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
		radial-gradient(circle at 84% 84%, rgba(0, 0, 0, 0.2), transparent 34%);
	opacity: 0.52;
}
.txb-concert-processing-grid .txb-concert-processing--video::after,
.txb-concert-single > .txb-concert-processing--video::after {
	content: none;
}
.txb-concert-processing-grid .txb-concert-processing--video .txb-concert-processing__icon,
.txb-concert-single > .txb-concert-processing--video .txb-concert-processing__icon {
	margin-bottom: 22px;
	color: var(--txb-color-on-primary-container, #ffdad4);
	font-size: clamp(52px, 6vw, 74px);
}
.txb-concert-processing-grid .txb-concert-processing--video h2,
.txb-concert-single > .txb-concert-processing--video h2 {
	width: 100%;
	max-width: none;
	margin: 0 0 22px;
	padding-bottom: 16px;
	border-bottom: 4px solid var(--txb-color-on-primary-container, #ffdad4);
	color: var(--txb-color-on-primary-container, #ffdad4);
	font-size: clamp(2.1rem, 4.2vw, 3.55rem);
	letter-spacing: -0.035em;
	text-shadow: none;
}
.txb-concert-processing-grid .txb-concert-processing--video p,
.txb-concert-single > .txb-concert-processing--video p {
	max-width: 520px;
	margin: 0;
	color: var(--txb-color-on-primary-container, #ffdad4);
	font-size: clamp(1rem, 1.55vw, 1.28rem);
	font-weight: 900;
	line-height: 1.48;
}
.txb-concert-processing__rec {
	position: absolute;
	right: 22px;
	bottom: 18px;
	z-index: 1;
	color: rgba(0, 0, 0, 0.22);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.5rem, 3.6vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	pointer-events: none;
}
.txb-concert-gallery {
	margin-top: 56px;
}
.txb-concert-gallery h2 {
	margin: 0 0 24px;
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 3.2rem;
	font-weight: 900;
	text-transform: uppercase;
}
.txb-concert-gallery__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}
.txb-concert-gallery__item {
	position: relative;
	grid-column: span 4;
	margin: 0;
	background: #0e0e0c;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	overflow: hidden;
	transition: border-color 0.18s ease, transform 0.18s ease;
}
.txb-concert-gallery__item.is-portrait {
	grid-row: span 2;
}
.txb-concert-gallery__item:hover,
.txb-concert-gallery__item:focus-within {
	border-color: #fff;
	transform: translateY(-5px);
}
.txb-concert-gallery__item img {
	aspect-ratio: 4 / 3;
	filter: grayscale(0.22) contrast(1.1);
	transition: transform 0.35s ease, filter 0.35s ease;
}
.txb-concert-gallery__item.is-portrait img {
	aspect-ratio: 3 / 4;
}
.txb-concert-gallery__item:hover img {
	transform: scale(1.04);
	filter: grayscale(0) contrast(1.15);
}
.txb-concert-gallery__download {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 8px 10px;
	background: #fff;
	color: #000;
	border: 2px solid #000;
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}
.txb-concert-gallery__item:hover .txb-concert-gallery__download,
.txb-concert-gallery__item:focus-within .txb-concert-gallery__download {
	opacity: 1;
	transform: translateY(0);
}
.txb-lightbox[hidden] {
	display: none;
}
.txb-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 72px 24px 40px;
	background: rgba(0, 0, 0, 0.9);
}
.txb-lightbox__img {
	max-width: min(1120px, 94vw);
	max-height: 78vh;
	object-fit: contain;
	border: 4px solid #fff;
	background: #000;
}
.txb-lightbox__close {
	position: fixed;
	top: 18px;
	right: 18px;
	width: 52px;
	height: 52px;
	border: 2px solid #fff;
	background: #000;
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}
.txb-lightbox__caption {
	margin: 14px 0 0;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
}
.txb-lightbox__download {
	margin-top: 12px;
	padding: 12px 16px;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	border: 2px solid #fff;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}
.txb-lightbox-open {
	overflow: hidden;
}
@media (max-width: 860px) {
	.txb-spotify-block {
		grid-template-columns: 1fr;
	}
	.txb-concert-single {
		padding: 42px 16px 80px;
	}
	.txb-concert-single__title {
		font-size: 4.4rem;
	}
	.txb-concert-single__date {
		font-size: 2.5rem;
	}
	.txb-concert-scrapbook {
		min-height: 520px;
	}
	.txb-concert-scrapbook__photo--1 {
		left: 2%;
		width: 42vw;
	}
	.txb-concert-scrapbook__photo--2 {
		right: 2%;
		width: 44vw;
	}
	.txb-concert-scrapbook__photo--3 {
		width: min(78vw, 390px);
	}
	.txb-concert-single__instagram {
		width: 100%;
		font-size: 1.35rem;
	}
	.txb-concert-processing-grid {
		grid-template-columns: 1fr;
		margin: 44px 0 36px;
	}
	.txb-concert-processing {
		margin: 44px auto 34px;
		transform: none;
	}
	.txb-concert-processing-grid .txb-concert-processing,
	.txb-concert-single > .txb-concert-processing {
		min-height: 300px;
	}
	.txb-concert-gallery__item {
		grid-column: span 6;
	}
}
@media (max-width: 600px) {
	.txb-concert-single__title {
		font-size: 3.3rem;
	}
	.txb-concert-single__meta {
		align-items: flex-start;
		flex-direction: column;
	}
	.txb-concert-scrapbook {
		min-height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		gap: 14px;
		margin: 40px -16px 44px;
		padding: 12px 16px 28px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding: 16px;
		-webkit-overflow-scrolling: touch;
	}
	.txb-concert-scrapbook::-webkit-scrollbar {
		height: 8px;
	}
	.txb-concert-scrapbook::-webkit-scrollbar-track {
		background: #0e0e0c;
	}
	.txb-concert-scrapbook::-webkit-scrollbar-thumb {
		background: var(--txb-color-primary-container, #cc0000);
	}
	.txb-concert-scrapbook__photo {
		flex: 0 0 min(82vw, 340px);
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		max-width: none;
		transform: none;
		opacity: 1;
		scroll-snap-align: center;
	}
	.txb-concert-scrapbook__photo--1,
	.txb-concert-scrapbook__photo--2,
	.txb-concert-scrapbook__photo--3 {
		width: auto;
	}
	.txb-concert-scrapbook__photo:hover,
	.txb-concert-scrapbook__photo:focus-within {
		transform: translateY(-4px);
	}
	.txb-concert-scrapbook__photo--1 img,
	.txb-concert-scrapbook__photo--2 img,
	.txb-concert-scrapbook__photo--3 img {
		aspect-ratio: 4 / 5;
	}
	.txb-concert-gallery__grid {
		grid-template-columns: 1fr;
	}
	.txb-concert-gallery__item {
		grid-column: span 1;
	}
	.txb-concert-gallery__download {
		opacity: 1;
		transform: none;
	}
}
@media (min-width: 768px) {
	body.txb-page-tour .txb-tour-universe {
		padding: 160px 32px 48px;
	}
}
@media (max-width: 767px) {
	body.txb-page-tour .txb-header__inner {
		padding: 14px 16px;
	}
	body.txb-page-tour .txb-nav-toggle {
		border-color: #fff;
		color: #fff;
	}
	body.txb-page-tour .txb-nav .menu {
		font-size: 16px;
	}
	body.txb-page-tour .txb-tour-hero__title {
		text-shadow: 3px 3px 0 #fff;
	}
}
@media (prefers-reduced-motion: reduce) {
	.txb-u-card__fill {
		transition: none;
	}
	.txb-u-card:hover .txb-u-card__fill,
	.txb-u-card:focus-within .txb-u-card__fill {
		transform: none;
	}
	.txb-u-card:hover .txb-u-card__body,
	.txb-u-card:focus-within .txb-u-card__body,
	.txb-u-card:hover .txb-u-card__foot,
	.txb-u-card:focus-within .txb-u-card__foot {
		color: inherit;
	}
	.txb-u-card__btn--cta:hover,
	.txb-u-card__btn--cta:focus-visible {
		transform: none;
		box-shadow: none;
	}
	.txb-u-card,
	.txb-tour-page .txb-concert-row,
	body.txb-page-tour .txb-concert-row,
	.txb-concerts-list .txb-concert-row {
		transition: none;
	}
	.txb-u-card:hover,
	.txb-u-card:focus-within,
	.txb-tour-page .txb-concert-row:hover,
	.txb-tour-page .txb-concert-row:focus-within,
	body.txb-page-tour .txb-concert-row:hover,
	body.txb-page-tour .txb-concert-row:focus-within,
	.txb-concerts-list .txb-concert-row:hover,
	.txb-concerts-list .txb-concert-row:focus-within {
		transform: none;
		box-shadow: none;
		border-color: #fff;
	}
}

/* ------------------------------------------------------------------
   WooCommerce — carrito y checkout editorial
   ------------------------------------------------------------------ */
body.woocommerce-cart,
body.woocommerce-checkout {
	background: #131411;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.woocommerce-cart .txb-page,
body.woocommerce-checkout .txb-page {
	max-width: 1600px;
	padding: clamp(40px, 6vw, 72px) clamp(16px, 3vw, 40px) clamp(72px, 8vw, 120px);
}
body.woocommerce-cart .txb-heading,
body.woocommerce-checkout .txb-heading {
	margin: 0 0 clamp(28px, 4vw, 48px);
	padding-bottom: 18px;
	border-bottom: 4px solid var(--txb-color-outline-variant, #5e3f3a);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(3.25rem, 8vw, 6.5rem);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.woocommerce-cart .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}
body.woocommerce-cart table.shop_table {
	border: 0;
	border-collapse: separate;
	border-spacing: 0 20px;
	background: transparent;
}
body.woocommerce-cart table.shop_table thead {
	display: none;
}
body.woocommerce-cart table.shop_table.cart tbody,
body.woocommerce-cart table.shop_table.cart tr,
body.woocommerce-cart table.shop_table.cart td {
	display: block;
}
body.woocommerce-cart table.shop_table.cart tr.cart_item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(120px, 190px) minmax(0, 1fr) minmax(130px, auto);
	grid-template-areas:
		"thumb name remove"
		"thumb price subtotal"
		"thumb qty subtotal";
	gap: 8px clamp(18px, 3vw, 32px);
	align-items: center;
	margin-bottom: 20px;
	padding: clamp(14px, 2vw, 20px);
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: #1a1a18;
	overflow: hidden;
}
body.woocommerce-cart table.shop_table.cart tr.cart_item:hover,
body.woocommerce-cart table.shop_table.cart tr.cart_item:focus-within {
	border-color: var(--txb-color-primary-container, #cc0000);
}
body.woocommerce-cart td.product-thumbnail {
	grid-area: thumb;
	width: 100%;
	max-width: 190px;
}
body.woocommerce-cart td.product-thumbnail a {
	display: block;
	aspect-ratio: 1 / 1;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: #0e0e0c;
	overflow: hidden;
}
body.woocommerce-cart td.product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: contrast(1.1) grayscale(0.35);
	opacity: 0.86;
}
body.woocommerce-cart td.product-name {
	grid-area: name;
	padding-right: 44px;
}
body.woocommerce-cart td.product-name a {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.7rem, 3vw, 2.65rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.woocommerce-cart td.product-price {
	grid-area: price;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-weight: 700;
}
body.woocommerce-cart td.product-quantity {
	grid-area: qty;
}
body.woocommerce-cart td.product-subtotal {
	grid-area: subtotal;
	justify-self: end;
	color: var(--txb-color-primary-soft, #ffb4a8);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.9rem, 3vw, 2.75rem);
	font-weight: 900;
}
body.woocommerce-cart td.product-remove {
	grid-area: remove;
	justify-self: end;
	align-self: start;
}
body.woocommerce-cart td.product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 2px solid transparent;
	color: var(--txb-color-on-surface-variant, #e8bdb6) !important;
	font-size: 0;
	text-decoration: none;
}
body.woocommerce-cart td.product-remove a.remove::before {
	content: "×";
	font-size: 42px;
	font-weight: 400;
	line-height: 1;
}
body.woocommerce-cart td.product-remove a.remove:hover,
body.woocommerce-cart td.product-remove a.remove:focus-visible {
	border-color: var(--txb-color-primary-container, #cc0000);
	background: transparent;
	color: var(--txb-color-primary-container, #cc0000) !important;
}
body.woocommerce-cart .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: #11110f;
}
body.woocommerce-cart .quantity .qty,
body.woocommerce-checkout .quantity .qty {
	width: 96px;
	min-height: 48px;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 18px;
	font-weight: 800;
	text-align: center;
}
body.woocommerce-cart table.shop_table.cart tr:not(.cart_item) {
	display: block;
	margin-top: 8px;
}
body.woocommerce-cart table.shop_table.cart td.actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	padding: 0;
}
body.woocommerce-cart .coupon {
	display: flex;
	gap: 10px;
	min-width: 0;
}
body.woocommerce-cart .coupon label {
	display: none;
}
body.woocommerce-cart .coupon .input-text,
body.woocommerce-cart .woocommerce-cart-form input.input-text,
body.woocommerce-checkout form.checkout input.input-text,
body.woocommerce-checkout form.checkout textarea,
body.woocommerce-checkout form.checkout select {
	width: 100%;
	min-height: 54px;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	border-radius: 0;
	background: #f4f1ec;
	color: #161615;
	padding: 12px 14px;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 16px;
}
body.woocommerce-cart .button,
body.woocommerce-cart a.button,
body.woocommerce-checkout .button,
body.woocommerce-checkout a.button {
	border: 2px solid var(--txb-color-primary-container, #cc0000);
	border-radius: 0;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0;
	transition: transform 0.14s ease, background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
body.woocommerce-cart .button:hover,
body.woocommerce-cart .button:focus-visible,
body.woocommerce-checkout .button:hover,
body.woocommerce-checkout .button:focus-visible {
	background: #fff;
	color: #000;
	border-color: #fff;
	transform: translate(2px, 2px);
	outline: none;
}
body.woocommerce-cart .cart-collaterals {
	position: sticky;
	top: 136px;
}
body.woocommerce-cart .cart-collaterals .cart_totals {
	position: relative;
	float: none;
	width: 100%;
	padding: clamp(22px, 3vw, 32px);
	border: 4px solid var(--txb-color-outline-variant, #5e3f3a);
	background: var(--txb-color-inverse-surface, #e5e2dd);
	color: var(--txb-color-inverse-on-surface, #31302d);
	box-shadow: 5px 5px 0 var(--txb-color-primary-container, #cc0000);
}
body.woocommerce-cart .cart-collaterals .cart_totals::before,
body.woocommerce-cart .cart-collaterals .cart_totals::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 28px;
	height: 44px;
	border: 4px solid var(--txb-color-outline-variant, #5e3f3a);
	background: #131411;
	transform: translateY(-50%);
}
body.woocommerce-cart .cart-collaterals .cart_totals::before {
	left: -18px;
	border-left: 0;
	border-radius: 0 44px 44px 0;
}
body.woocommerce-cart .cart-collaterals .cart_totals::after {
	right: -18px;
	border-right: 0;
	border-radius: 44px 0 0 44px;
}
body.woocommerce-cart .cart_totals h2 {
	margin: 0 0 26px;
	padding-bottom: 18px;
	border-bottom: 4px solid var(--txb-color-inverse-on-surface, #31302d);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(2rem, 3vw, 2.65rem);
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}
body.woocommerce-cart .cart_totals table.shop_table {
	margin: 0;
	border-spacing: 0;
}
body.woocommerce-cart .cart_totals table tr {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 0;
	border: 0;
}
body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 18px;
	text-align: right;
}
body.woocommerce-cart .cart_totals .order-total {
	margin-top: 18px;
	padding-top: 22px !important;
	border-top: 4px solid var(--txb-color-inverse-on-surface, #31302d) !important;
}
body.woocommerce-cart .cart_totals .order-total th {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 2.15rem;
	font-weight: 900;
	text-transform: uppercase;
}
body.woocommerce-cart .cart_totals .order-total td {
	color: var(--txb-color-primary-container, #cc0000);
	font-size: 3rem;
	font-weight: 900;
}
body.woocommerce-cart .wc-proceed-to-checkout {
	padding: 24px 0 0;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
	margin: 0;
	border: 4px solid #000;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-size: clamp(1.35rem, 2.2vw, 2rem);
}
body.woocommerce-checkout .entry-content > .woocommerce form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
	position: relative;
	margin-bottom: 36px;
	padding: clamp(18px, 3vw, 30px);
	border: 2px solid var(--txb-color-tertiary, #d0c79c);
	background: rgba(28, 28, 25, 0.76);
}
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
	margin: 0 0 22px;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.woocommerce-checkout form.checkout .form-row {
	margin: 0 0 18px;
	padding: 0;
}
body.woocommerce-checkout form.checkout label {
	display: block;
	margin: 0 0 6px;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
body.woocommerce-checkout form.checkout input.input-text:focus,
body.woocommerce-checkout form.checkout textarea:focus,
body.woocommerce-checkout form.checkout select:focus,
body.woocommerce-cart .coupon .input-text:focus {
	border-color: var(--txb-color-primary-container, #cc0000);
	box-shadow: 4px 4px 0 var(--txb-color-primary-container, #cc0000);
	outline: none;
}
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
	grid-column: 2;
}
body.woocommerce-checkout #order_review_heading {
	margin-bottom: -38px;
	padding: 30px 30px 0;
	border: 2px solid var(--txb-color-primary-container, #cc0000);
	border-bottom: 0;
	background: rgba(28, 28, 25, 0.88);
	color: var(--txb-color-primary-container, #cc0000);
}
body.woocommerce-checkout #order_review {
	position: sticky;
	top: 136px;
	padding: 86px 30px 30px;
	border: 2px solid var(--txb-color-primary-container, #cc0000);
	background: rgba(28, 28, 25, 0.88);
}
body.woocommerce-checkout #order_review table.shop_table {
	margin: 0 0 24px;
	border: 0;
	border-collapse: collapse;
	color: var(--txb-color-on-surface, #e5e2dd);
}
body.woocommerce-checkout #order_review table.shop_table th,
body.woocommerce-checkout #order_review table.shop_table td {
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid rgba(208, 199, 156, 0.35);
	background: transparent;
	color: inherit;
	text-align: left;
}
body.woocommerce-checkout #order_review table.shop_table td {
	text-align: right;
}
body.woocommerce-checkout #order_review table.shop_table .order-total th,
body.woocommerce-checkout #order_review table.shop_table .order-total td {
	padding-top: 18px;
	border-top: 3px solid var(--txb-color-tertiary, #d0c79c);
	border-bottom: 0;
	color: var(--txb-color-primary-container, #cc0000);
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.85rem, 3vw, 2.4rem);
	font-weight: 900;
	text-transform: uppercase;
}
body.woocommerce-checkout #payment {
	border: 0;
	border-radius: 0;
	background: transparent;
}
body.woocommerce-checkout #payment ul.payment_methods {
	padding: 0 0 18px;
	border-bottom: 2px solid var(--txb-color-tertiary, #d0c79c);
}
body.woocommerce-checkout #payment div.payment_box {
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	border-radius: 0;
	background: #131411;
	color: var(--txb-color-on-surface-variant, #e8bdb6);
}
body.woocommerce-checkout #payment div.form-row {
	padding: 18px 0 0;
}
body.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 76px;
	float: none;
	margin-top: 12px;
	background: var(--txb-color-primary-container, #cc0000);
	color: #000;
	font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}
@media (max-width: 980px) {
	body.woocommerce-cart .entry-content > .woocommerce,
	body.woocommerce-checkout .entry-content > .woocommerce form.checkout {
		grid-template-columns: 1fr;
	}
	body.woocommerce-cart .cart-collaterals,
	body.woocommerce-checkout #order_review {
		position: static;
	}
	body.woocommerce-checkout #order_review_heading,
	body.woocommerce-checkout #order_review {
		grid-column: auto;
	}
}
@media (max-width: 680px) {
	body.woocommerce-cart .txb-heading,
	body.woocommerce-checkout .txb-heading {
		font-size: clamp(3rem, 16vw, 4.5rem);
	}
	body.woocommerce-cart table.shop_table.cart tr.cart_item {
		grid-template-columns: 110px 1fr;
		grid-template-areas:
			"thumb remove"
			"thumb name"
			"thumb price"
			"qty subtotal";
	}
	body.woocommerce-cart td.product-thumbnail {
		max-width: 110px;
	}
	body.woocommerce-cart td.product-subtotal {
		font-size: 1.8rem;
	}
	body.woocommerce-cart table.shop_table.cart td.actions,
	body.woocommerce-cart .coupon {
		display: grid;
		grid-template-columns: 1fr;
	}
	body.woocommerce-cart .cart-collaterals .cart_totals,
	body.woocommerce-checkout #order_review,
	body.woocommerce-checkout #order_review_heading {
		padding-left: 18px;
		padding-right: 18px;
	}
	body.woocommerce-checkout #order_review {
		padding-top: 78px;
	}
}

/* ------------------------------------------------------------------
   Página — ancho completo (plantilla)
   ------------------------------------------------------------------ */
.txb-page-wide {
	max-width: 960px;
	margin: 0 auto;
	padding: 48px 20px 80px;
}
.txb-page-wide__title {
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	margin: 0 0 24px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	border-left: 6px solid var(--txb-color-primary-container, #cc0000);
	padding-left: 16px;
}
.txb-page-wide__content {
	font-size: 1.05rem;
	line-height: 1.65;
}

/* ------------------------------------------------------------------
   Música — plantilla página (hero + shell, brutalismo)
   ------------------------------------------------------------------ */
.txb-musica--page {
	display: flex;
	flex-direction: column;
	min-height: 55vh;
}
.txb-musica-hero {
	position: relative;
	padding: clamp(48px, 12vw, 120px) clamp(16px, 4vw, 48px) clamp(40px, 8vw, 72px);
	border-bottom: 4px solid var(--txb-color-border, #fff);
	overflow: hidden;
	text-align: left;
}
.txb-musica-hero--has-bg {
	background: var(--txb-color-surface-container-lowest, #0e0e0c);
}
.txb-musica-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
	filter: grayscale(1) contrast(1.05);
	pointer-events: none;
}
.txb-musica-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.2) 100%);
	pointer-events: none;
}
.txb-musica-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
}
.txb-musica-hero__title {
	margin: 0;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(2.25rem, 9vw, 5.5rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: #fff;
	text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
}
.txb-musica-hero__title-main {
	display: inline-block;
	margin-right: 0.15em;
}
.txb-musica-hero__title-accent {
	color: var(--txb-color-primary-container, #cc0000);
	font-style: italic;
}
.txb-musica-hero__intro {
	margin: 20px 0 0;
	max-width: 42rem;
	font-size: clamp(0.95rem, 2vw, 1.125rem);
	line-height: 1.55;
	color: var(--txb-color-on-surface, #e5e2dd);
}
.txb-musica-hero__intro p {
	margin: 0 0 0.75em;
}
.txb-musica-hero__rule {
	margin-top: 28px;
	margin-bottom: 0;
}
.txb-musica__shell {
	display: grid;
	grid-template-columns: 1fr;
	flex: 1 1 auto;
	background: var(--txb-color-background, #131411);
}
@media (min-width: 960px) {
	.txb-musica__shell--aside {
		grid-template-columns: minmax(200px, 260px) 1fr;
	}
}
.txb-musica--page .txb-musica__aside {
	border-right: 3px solid var(--txb-color-border, #fff);
	border-bottom: 0;
	background: var(--txb-color-surface-container-lowest, #0e0e0c);
}
.txb-musica--page .txb-musica__main {
	padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 40px) 88px;
}
.txb-musica__featured-wrap {
	margin-bottom: 8px;
}
.txb-media-grid--page {
	margin-top: 0;
}

/* Tarjetas medios — hover duro */
.txb-media-featured {
	transition: border-color 0.2s ease, background-color 0.2s ease;
}
.txb-media-featured:hover,
.txb-media-featured:focus-within {
	border-color: var(--txb-color-primary-container, #cc0000);
	background: #0a0a09;
}
.txb-media-card {
	transition: border-color 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}
.txb-media-card:hover,
.txb-media-card:focus-within {
	border-color: var(--txb-color-primary-container, #cc0000);
	background: #0e0e0c;
	transform: translateY(-4px);
}
.txb-media-card:focus-within {
	outline: 3px solid var(--txb-color-primary-container, #cc0000);
	outline-offset: 2px;
}

/* Entrada al scroll (JS añade .is-inview) */
@media (prefers-reduced-motion: no-preference) {
	[data-txb-reveal]:not(.txb-tour-hero) {
		opacity: 0;
		transform: translateY(18px);
		transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	}
	[data-txb-reveal]:not(.txb-tour-hero).is-inview {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (prefers-reduced-motion: reduce) {
	[data-txb-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* Noticias — hero ancho completo */
body.txb-blog .txb-news-hero,
body.home.blog .txb-news-hero {
	max-width: none;
	margin: 0;
	padding: clamp(40px, 8vw, 72px) clamp(16px, 4vw, 40px) 0;
	border-bottom: 3px solid var(--txb-color-surface-variant, #353532);
}
body.txb-blog .txb-news-grid,
body.home.blog .txb-news-grid {
	max-width: 1440px;
	padding-left: clamp(16px, 4vw, 40px);
	padding-right: clamp(16px, 4vw, 40px);
}
body.txb-blog .txb-news-card,
body.home.blog .txb-news-card {
	border-width: 3px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}
body.txb-blog .txb-news-card:hover,
body.home.blog .txb-news-card:hover {
	border-color: var(--txb-color-primary-container, #cc0000);
	background: #0c0c0b;
}
@media (prefers-reduced-motion: reduce) {
	.txb-media-card:hover,
	.txb-media-card:focus-within {
		transform: none;
	}
	.txb-nav .menu a:hover,
	.txb-nav .menu a:focus-visible {
		transform: none;
	}
}

/* ------------------------------------------------------------------
   Hotfix 1.0.13 — tour clickable, slider, producto y Woo real
   ------------------------------------------------------------------ */
.txb-concert-card-home,
.txb-concert-row,
.txb-u-card,
.txb-u-past {
	cursor: pointer;
}
.txb-concert-card-home__permalink,
.txb-concert-row__permalink,
.txb-u-card__permalink,
.txb-u-past__permalink {
	position: absolute !important;
	inset: 0 !important;
	z-index: 40 !important;
	display: block !important;
	width: auto !important;
	height: auto !important;
	background: transparent !important;
	text-decoration: none !important;
}
.txb-concert-card-home__date,
.txb-concert-card-home__body,
.txb-concert-card-home__action,
.txb-concert-row__date,
.txb-concert-row__mid,
.txb-concert-row__cta,
.txb-u-card__date,
.txb-u-card__body,
.txb-u-card__foot,
.txb-u-past__row,
.txb-u-past__venue,
.txb-u-past__city {
	pointer-events: none;
}
.txb-concert-card-home__action a,
.txb-concert-row__cta a,
.txb-u-card__foot a {
	pointer-events: none !important;
}

body.txb-page-tour .txb-tour-universe--rows .txb-concert-row,
.txb-tour-universe--rows .txb-concert-row {
	display: grid !important;
	grid-template-columns: minmax(140px, 170px) minmax(0, 1fr) minmax(190px, 240px) !important;
	grid-template-areas: "date mid cta" !important;
	min-height: 172px;
	border: 3px solid #fff;
	background: #000;
	overflow: hidden;
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__date,
.txb-tour-universe--rows .txb-concert-row__date {
	grid-area: date;
	min-height: 100%;
	background: #fff !important;
	color: #000 !important;
	border: 0 !important;
	border-right: 3px solid #fff !important;
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__mid,
.txb-tour-universe--rows .txb-concert-row__mid {
	grid-area: mid;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(22px, 3vw, 34px);
	background: #050505 !important;
	color: #fff;
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__cta,
.txb-tour-universe--rows .txb-concert-row__cta {
	grid-area: cta;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #11110f !important;
	border-left: 3px solid #fff !important;
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__venue,
.txb-tour-universe--rows .txb-concert-row__venue {
	font-size: clamp(2rem, 3.3vw, 3.1rem);
	line-height: 0.95;
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__day,
.txb-tour-universe--rows .txb-concert-row__day {
	font-size: clamp(3.8rem, 6vw, 5.25rem);
}
body.txb-page-tour .txb-tour-universe--rows .txb-concert-row .txb-btn,
.txb-tour-universe--rows .txb-concert-row .txb-btn {
	min-width: 136px;
	white-space: normal;
	text-align: center;
}
@media (max-width: 720px) {
	body.txb-page-tour .txb-tour-universe--rows .txb-concert-row,
	.txb-tour-universe--rows .txb-concert-row {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"date"
			"mid"
			"cta" !important;
		min-height: 0;
	}
	body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__date,
	.txb-tour-universe--rows .txb-concert-row__date {
		border-right: 0 !important;
		border-bottom: 3px solid #fff !important;
	}
	body.txb-page-tour .txb-tour-universe--rows .txb-concert-row__cta,
	.txb-tour-universe--rows .txb-concert-row__cta {
		border-left: 0 !important;
		border-top: 3px solid #fff !important;
		justify-content: flex-start;
	}
}

.txb-hero-slider__chev {
	width: 9px;
	height: 9px;
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	margin: 0;
}
.txb-hero-slider__btn--prev .txb-hero-slider__chev {
	transform: rotate(135deg);
	margin-left: 3px;
}
.txb-hero-slider__btn--next .txb-hero-slider__chev {
	transform: rotate(-45deg);
	margin-right: 3px;
}

@media (min-width: 1180px) {
	body.single-product .txb-single-product {
		max-width: min(1760px, calc(100vw - 64px));
	}
	body.single-product .txb-product-wrap {
		grid-template-columns: minmax(560px, 0.92fr) minmax(680px, 0.88fr);
		gap: clamp(32px, 4vw, 64px);
	}
	body.single-product .txb-product-summary {
		max-width: 780px;
	}
	body.single-product .txb-product-summary form.cart,
	body.single-product .txb-product-summary .woocommerce-variation-add-to-cart {
		grid-template-columns: 174px minmax(390px, 1fr);
		gap: 16px;
	}
	body.single-product .txb-product-summary .single_add_to_cart_button {
		min-width: 0;
		padding-left: 20px;
		padding-right: 20px;
		font-size: clamp(1.45rem, 1.55vw, 1.85rem);
		white-space: nowrap;
	}
}
body.single-product .txb-product-summary .quantity.txb-qty-ready,
body.woocommerce-cart .quantity.txb-qty-ready {
	display: grid;
	grid-template-columns: 46px minmax(56px, 1fr) 46px;
	border: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	background: #11110f;
}
body.single-product .txb-product-summary .quantity.txb-qty-ready .qty,
body.woocommerce-cart .quantity.txb-qty-ready .qty {
	min-height: 64px;
	border-left: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	border-right: 2px solid var(--txb-color-outline-variant, #5e3f3a);
	border-top: 0;
	border-bottom: 0;
}
.txb-qty-step {
	border: 0;
	background: transparent;
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: 24px;
	font-weight: 900;
	cursor: pointer;
}
.txb-qty-step:hover,
.txb-qty-step:focus-visible {
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	outline: none;
}

.txb-wc-cart .txb-page,
.txb-wc-checkout .txb-page,
.txb-page:has(.woocommerce-cart-form),
.txb-page:has(form.checkout) {
	max-width: 1600px;
	padding: clamp(40px, 6vw, 72px) clamp(16px, 3vw, 40px) clamp(72px, 8vw, 120px);
}
.txb-wc-cart .entry-content > .woocommerce,
.txb-page:has(.woocommerce-cart-form) .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}
.txb-wc-checkout .entry-content > .woocommerce form.checkout,
.txb-page:has(form.checkout) .entry-content > .woocommerce form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}
@media (max-width: 980px) {
	.txb-wc-cart .entry-content > .woocommerce,
	.txb-page:has(.woocommerce-cart-form) .entry-content > .woocommerce,
	.txb-wc-checkout .entry-content > .woocommerce form.checkout,
	.txb-page:has(form.checkout) .entry-content > .woocommerce form.checkout {
		grid-template-columns: 1fr;
	}
}

/* Tour 1.0.14 — archivo de pasados en lista con CTA de fotos */
body.txb-page-tour .txb-tour-universe__past {
	opacity: 1;
}
body.txb-page-tour .txb-tour-universe__past .txb-u-past-grid,
.txb-tour-universe__past .txb-u-past-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
body.txb-page-tour .txb-u-past {
	display: grid;
	grid-template-columns: minmax(140px, 190px) minmax(0, 1fr) auto;
	grid-template-areas:
		"date venue cta"
		"date city cta";
	align-items: center;
	gap: 8px clamp(18px, 3vw, 34px);
	padding: clamp(18px, 2.4vw, 26px);
	border: 2px solid rgba(255, 255, 255, 0.24);
	background: rgba(28, 28, 25, 0.92);
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
body.txb-page-tour .txb-u-past:hover,
body.txb-page-tour .txb-u-past:focus-within {
	border-color: #fff;
	background: #0f0f0d;
	box-shadow: -8px 0 0 var(--txb-color-primary-container, #cc0000);
	transform: translateX(4px);
}
body.txb-page-tour .txb-u-past__row {
	grid-area: date;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
body.txb-page-tour .txb-u-past__date {
	font-size: clamp(1.9rem, 3.5vw, 3rem);
	line-height: 0.9;
}
body.txb-page-tour .txb-u-past__badge {
	background: #353532;
	color: #e5e2dd;
}
body.txb-page-tour .txb-u-past__venue {
	grid-area: venue;
	margin: 0;
	color: #fff;
	font-family: var(--txb-font-display, Epilogue, sans-serif);
	font-size: clamp(1.35rem, 2.5vw, 2.15rem);
	font-weight: 900;
	line-height: 1;
}
body.txb-page-tour .txb-u-past__city {
	grid-area: city;
	font-size: 14px;
	letter-spacing: 0.1em;
}
.txb-u-past__photos-cta {
	grid-area: cta;
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 184px;
	min-height: 48px;
	padding: 12px 16px;
	border: 2px solid #fff;
	background: var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	box-shadow: 4px 4px 0 #000;
	pointer-events: none;
}
.txb-u-past__photos-cta::before {
	content: "";
	width: 18px;
	height: 18px;
	margin-right: 8px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 20h14v-2H5v2ZM19 9h-4V3H9v6H5l7 7 7-7Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 20h14v-2H5v2ZM19 9h-4V3H9v6H5l7 7 7-7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
body.txb-page-tour .txb-u-past:hover .txb-u-past__photos-cta,
body.txb-page-tour .txb-u-past:focus-within .txb-u-past__photos-cta {
	background: #fff;
	color: #000;
}
@media (max-width: 720px) {
	body.txb-page-tour .txb-u-past {
		grid-template-columns: 1fr;
		grid-template-areas:
			"date"
			"venue"
			"city"
			"cta";
		align-items: stretch;
	}
	.txb-u-past__photos-cta {
		width: 100%;
	}
}

/* Tour 1.0.15 — CTA fotos tipo sello diagonal */
body.txb-page-tour .txb-tour-universe__past .txb-u-past-grid,
.txb-tour-universe__past .txb-u-past-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
}
body.txb-page-tour .txb-u-past {
	position: relative;
	display: block;
	min-height: clamp(230px, 20vw, 310px);
	padding: clamp(28px, 3vw, 42px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.055), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 42%),
		#151513;
	overflow: hidden;
	transform: none;
	transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}
body.txb-page-tour .txb-u-past::after {
	content: "";
	position: absolute;
	inset: -20%;
	z-index: 0;
	background:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 7px),
		radial-gradient(circle at 72% 76%, rgba(204, 0, 0, 0.16), transparent 24%);
	opacity: 0.7;
	pointer-events: none;
	transition: opacity 0.28s ease;
}
body.txb-page-tour .txb-u-past:hover,
body.txb-page-tour .txb-u-past:focus-within {
	border-color: rgba(255, 255, 255, 0.46);
	box-shadow: none;
	transform: none;
}
body.txb-page-tour .txb-u-past:hover::after,
body.txb-page-tour .txb-u-past:focus-within::after {
	opacity: 1;
}
body.txb-page-tour .txb-u-past__row,
body.txb-page-tour .txb-u-past__venue,
body.txb-page-tour .txb-u-past__city,
body.txb-page-tour .txb-u-past__photos-cta {
	position: relative;
	z-index: 2;
}
body.txb-page-tour .txb-u-past__row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}
body.txb-page-tour .txb-u-past__date {
	display: inline-block;
	font-size: clamp(2.35rem, 4.1vw, 4.5rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: rgba(229, 226, 221, 0.66);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.92);
	text-decoration-color: var(--txb-color-primary-container, #cc0000);
	text-decoration-thickness: 6px;
}
body.txb-page-tour .txb-u-past__badge {
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(229, 226, 221, 0.72);
	font-size: 12px;
	letter-spacing: 0.24em;
}
body.txb-page-tour .txb-u-past__venue {
	margin-top: clamp(28px, 3vw, 48px);
	max-width: 58%;
	color: rgba(229, 226, 221, 0.72);
	font-size: clamp(1.35rem, 2.2vw, 2.2rem);
	letter-spacing: 0.02em;
}
body.txb-page-tour .txb-u-past__city {
	max-width: 58%;
	margin-top: 14px;
	color: rgba(232, 189, 182, 0.72);
	font-size: clamp(1rem, 1.6vw, 1.45rem);
	font-weight: 800;
	letter-spacing: 0.08em;
}
.txb-u-past__photos-cta {
	position: absolute !important;
	right: clamp(24px, 3vw, 50px);
	bottom: clamp(30px, 4vw, 54px);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(72%, 430px);
	min-height: 72px;
	padding: 20px 34px;
	border: 2px solid #ff1616;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 34%, rgba(0, 0, 0, 0.08)),
		var(--txb-color-primary-container, #cc0000);
	color: #fff;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif);
	font-size: clamp(1rem, 1.45vw, 1.55rem);
	font-weight: 900;
	letter-spacing: 0.22em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	box-shadow:
		0 0 0 1px rgba(204, 0, 0, 0.45),
		8px 8px 0 rgba(0, 0, 0, 0.75);
	transform: rotate(-2.5deg);
	transition: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
	pointer-events: none;
}
.txb-u-past__photos-cta::after {
	content: "";
	position: absolute;
	inset: -12px;
	z-index: -1;
	background:
		radial-gradient(circle, rgba(204, 0, 0, 0.55) 0 1px, transparent 1px 5px),
		linear-gradient(90deg, rgba(204, 0, 0, 0.18), transparent);
	opacity: 0.75;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 86%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 16%, #000 86%, transparent);
	pointer-events: none;
	transition: opacity 0.28s ease;
}
.txb-u-past__photos-cta::before {
	content: none;
}
.txb-u-past__photos-cta span::after {
	content: " →";
	font-size: 1.35em;
	line-height: 0;
	vertical-align: -0.05em;
}
body.txb-page-tour .txb-u-past:hover .txb-u-past__photos-cta,
body.txb-page-tour .txb-u-past:focus-within .txb-u-past__photos-cta {
	background:
		linear-gradient(90deg, rgba(204, 0, 0, 0.08), transparent 36%, rgba(0, 0, 0, 0.04)),
		#fff;
	border-color: #fff;
	color: var(--txb-color-primary-container, #cc0000);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.55),
		8px 8px 0 rgba(204, 0, 0, 0.65);
	transform: rotate(-2.5deg) translateY(-3px);
}
body.txb-page-tour .txb-u-past:hover .txb-u-past__photos-cta::after,
body.txb-page-tour .txb-u-past:focus-within .txb-u-past__photos-cta::after {
	opacity: 0.25;
}
@media (max-width: 900px) {
	body.txb-page-tour .txb-tour-universe__past .txb-u-past-grid,
	.txb-tour-universe__past .txb-u-past-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 620px) {
	body.txb-page-tour .txb-u-past {
		min-height: 300px;
	}
	body.txb-page-tour .txb-u-past__venue,
	body.txb-page-tour .txb-u-past__city {
		max-width: none;
	}
	.txb-u-past__photos-cta {
		right: 18px;
		left: 18px;
		bottom: 26px;
		min-width: 0;
		padding: 18px 20px;
		font-size: clamp(0.85rem, 4vw, 1rem);
		letter-spacing: 0.14em;
	}
}

/* Tour 1.0.16 — sello de descarga definitivo, aplicado sobre el wrapper real */
.txb-tour-page .txb-tour-universe__past .txb-u-past-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(20px, 2.4vw, 34px) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past {
	position: relative !important;
	display: block !important;
	min-height: clamp(280px, 20vw, 340px) !important;
	padding: clamp(34px, 3vw, 50px) !important;
	border: 2px solid rgba(229, 226, 221, 0.2) !important;
	background:
		radial-gradient(circle at 84% 72%, rgba(204, 0, 0, 0.12), transparent 28%),
		radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.045), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 42%),
		#141412 !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
	overflow: hidden !important;
	transform: none !important;
	transition:
		border-color 0.28s ease,
		box-shadow 0.28s ease,
		background-color 0.28s ease !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past::before {
	content: "" !important;
	position: absolute !important;
	inset: -22% !important;
	z-index: 0 !important;
	background:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 7px),
		radial-gradient(circle at 78% 78%, rgba(204, 0, 0, 0.16), transparent 24%) !important;
	opacity: 0.75 !important;
	pointer-events: none !important;
	transition: opacity 0.28s ease !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 44%, rgba(0, 0, 0, 0.16)) !important;
	pointer-events: none !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past:hover,
.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within {
	border-color: rgba(229, 226, 221, 0.48) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 50px rgba(0, 0, 0, 0.2) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past:hover::before,
.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within::before {
	opacity: 1 !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__row,
.txb-tour-page .txb-tour-universe__past .txb-u-past__venue,
.txb-tour-page .txb-tour-universe__past .txb-u-past__city,
.txb-tour-page .txb-tour-universe__past .txb-u-past__photos-cta {
	position: relative !important;
	z-index: 2 !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__row {
	display: flex !important;
	flex-direction: row !important;
	justify-content: space-between !important;
	align-items: flex-start !important;
	gap: 18px !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__date {
	display: inline-block !important;
	color: rgba(229, 226, 221, 0.62) !important;
	font-family: var(--txb-font-display, Epilogue, sans-serif) !important;
	font-size: clamp(3.2rem, 5vw, 5.2rem) !important;
	font-weight: 900 !important;
	line-height: 0.82 !important;
	letter-spacing: -0.045em !important;
	text-decoration-line: line-through !important;
	text-decoration-color: var(--txb-color-primary-container, #cc0000) !important;
	text-decoration-thickness: clamp(5px, 0.45vw, 8px) !important;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__badge {
	flex: 0 0 auto !important;
	margin-top: 2px !important;
	padding: 12px 18px !important;
	border: 1px solid rgba(229, 226, 221, 0.14) !important;
	background: rgba(255, 255, 255, 0.105) !important;
	color: rgba(229, 226, 221, 0.76) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	letter-spacing: 0.24em !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__venue {
	max-width: 52% !important;
	margin: clamp(42px, 4vw, 64px) 0 0 !important;
	color: rgba(229, 226, 221, 0.72) !important;
	font-family: var(--txb-font-display, Epilogue, sans-serif) !important;
	font-size: clamp(1.35rem, 2.1vw, 2.3rem) !important;
	font-weight: 900 !important;
	line-height: 1.04 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
	max-width: 52% !important;
	margin-top: 16px !important;
	color: rgba(232, 189, 182, 0.68) !important;
	font-size: clamp(1rem, 1.45vw, 1.35rem) !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta {
	position: absolute !important;
	right: clamp(30px, 3.2vw, 58px) !important;
	bottom: clamp(34px, 4.2vw, 60px) !important;
	left: auto !important;
	z-index: 5 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: min(56%, 430px) !important;
	min-width: 300px !important;
	min-height: 74px !important;
	padding: 20px 34px !important;
	border: 2px solid #ff1717 !important;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 36%, rgba(0, 0, 0, 0.1)),
		var(--txb-color-primary-container, #cc0000) !important;
	color: #fff !important;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif) !important;
	font-size: clamp(1rem, 1.22vw, 1.35rem) !important;
	font-weight: 900 !important;
	letter-spacing: 0.22em !important;
	line-height: 1 !important;
	text-align: center !important;
	text-transform: uppercase !important;
	white-space: normal !important;
	text-wrap: balance !important;
	box-shadow:
		0 0 0 1px rgba(204, 0, 0, 0.52),
		8px 8px 0 rgba(0, 0, 0, 0.78) !important;
	transform: rotate(-2.8deg) !important;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease !important;
	pointer-events: none !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta::before {
	content: "" !important;
	position: absolute !important;
	inset: -14px !important;
	z-index: -1 !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	background:
		radial-gradient(circle, rgba(204, 0, 0, 0.58) 0 1px, transparent 1px 5px),
		linear-gradient(90deg, rgba(204, 0, 0, 0.2), transparent) !important;
	-webkit-mask: none !important;
	mask: none !important;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 86%, transparent) !important;
	mask-image: linear-gradient(90deg, transparent, #000 16%, #000 86%, transparent) !important;
	opacity: 0.8 !important;
	pointer-events: none !important;
	transition: opacity 0.28s ease !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta::after {
	content: "" !important;
	position: absolute !important;
	inset: 7px !important;
	z-index: -1 !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	pointer-events: none !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta > span {
	position: relative !important;
	z-index: 1 !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 18px !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta > span::after {
	content: "→" !important;
	display: inline-block !important;
	font-size: 1.55em !important;
	line-height: 0.6 !important;
	transform: translateY(-1px) !important;
	transition: transform 0.28s ease !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past:hover .txb-u-past__photos-cta,
.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within .txb-u-past__photos-cta {
	border-color: #fff !important;
	background:
		linear-gradient(90deg, rgba(204, 0, 0, 0.08), transparent 38%, rgba(0, 0, 0, 0.04)),
		#fff !important;
	color: #11110f !important;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.65),
		8px 8px 0 rgba(204, 0, 0, 0.72) !important;
	transform: rotate(-2.8deg) translateY(-4px) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past:hover .txb-u-past__photos-cta::before,
.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within .txb-u-past__photos-cta::before {
	opacity: 0.26 !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past:hover .txb-u-past__photos-cta > span::after,
.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within .txb-u-past__photos-cta > span::after {
	transform: translate(6px, -1px) !important;
}

@media (max-width: 980px) {
	.txb-tour-page .txb-tour-universe__past .txb-u-past-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 640px) {
	.txb-tour-page .txb-tour-universe__past .txb-u-past {
		min-height: 335px !important;
		padding: 30px 24px !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past__date {
		font-size: clamp(3rem, 18vw, 4.5rem) !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past__badge {
		padding: 10px 12px !important;
		font-size: 10px !important;
		letter-spacing: 0.18em !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past__venue,
	.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
		max-width: 100% !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta {
		right: 22px !important;
		left: 22px !important;
		bottom: 28px !important;
		width: auto !important;
		min-width: 0 !important;
		min-height: 66px !important;
		padding: 18px 18px !important;
		font-size: clamp(0.86rem, 3.8vw, 1rem) !important;
		letter-spacing: 0.14em !important;
	}
}

/* Tour 1.0.17 — CTA configurable y sin solapar la información */
.txb-tour-page .txb-tour-universe__past .txb-u-past {
	min-height: max(300px, calc(var(--txb-tour-past-cta-min-height, 74px) + 220px)) !important;
	padding-bottom: calc(var(--txb-tour-past-cta-min-height, 74px) + clamp(82px, 6.5vw, 116px)) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__venue,
.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
	max-width: max(260px, calc(100% - var(--txb-tour-past-cta-width, 430px) - clamp(96px, 7vw, 138px))) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta {
	width: min(58%, var(--txb-tour-past-cta-width, 430px)) !important;
	min-width: min(var(--txb-tour-past-cta-min-width, 300px), 52%) !important;
	min-height: var(--txb-tour-past-cta-min-height, 74px) !important;
	padding:
		var(--txb-tour-past-cta-pad-y, 20px)
		var(--txb-tour-past-cta-pad-x, 34px) !important;
	font-size: var(--txb-tour-past-cta-font, 18px) !important;
}

@media (max-width: 980px) {
	.txb-tour-page .txb-tour-universe__past .txb-u-past__venue,
	.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
		max-width: max(260px, calc(100% - var(--txb-tour-past-cta-width, 430px) - 120px)) !important;
	}
}

@media (max-width: 640px) {
	.txb-tour-page .txb-tour-universe__past .txb-u-past {
		min-height: max(335px, calc(var(--txb-tour-past-cta-mobile-min-height, 66px) + 250px)) !important;
		padding-bottom: calc(var(--txb-tour-past-cta-mobile-min-height, 66px) + 92px) !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past__venue,
	.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
		max-width: 100% !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta {
		min-height: var(--txb-tour-past-cta-mobile-min-height, 66px) !important;
		padding:
			var(--txb-tour-past-cta-mobile-pad-y, 18px)
			var(--txb-tour-past-cta-mobile-pad-x, 18px) !important;
		font-size: var(--txb-tour-past-cta-mobile-font, 14px) !important;
	}
}

/* Tour 1.0.18 — CTA de pasados más compacto, lateral y móvil limpio */
.txb-tour-page .txb-tour-universe__past .txb-u-past {
	min-height: clamp(210px, 15vw, 255px) !important;
	padding: clamp(28px, 2.4vw, 40px) !important;
	padding-right: calc(min(46%, var(--txb-tour-past-cta-width, 344px)) + clamp(54px, 5vw, 88px)) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__venue {
	max-width: 100% !important;
	margin-top: clamp(26px, 2.8vw, 40px) !important;
	font-size: clamp(1.18rem, 1.65vw, 1.8rem) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
	max-width: 100% !important;
	margin-top: 10px !important;
	font-size: clamp(0.9rem, 1.1vw, 1.08rem) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__date {
	font-size: clamp(2.45rem, 3.7vw, 4.15rem) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past__badge {
	padding: 9px 13px !important;
	font-size: 10px !important;
	letter-spacing: 0.18em !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta {
	top: 58% !important;
	right: clamp(24px, 2.6vw, 44px) !important;
	bottom: auto !important;
	width: min(42%, var(--txb-tour-past-cta-width, 344px)) !important;
	min-width: min(var(--txb-tour-past-cta-min-width, 240px), 40%) !important;
	min-height: var(--txb-tour-past-cta-min-height, 59px) !important;
	padding:
		var(--txb-tour-past-cta-pad-y, 16px)
		var(--txb-tour-past-cta-pad-x, 27px) !important;
	font-size: var(--txb-tour-past-cta-font, 14.4px) !important;
	letter-spacing: 0.16em !important;
	transform: translateY(-50%) rotate(-2.4deg) !important;
	box-shadow:
		0 0 0 1px rgba(204, 0, 0, 0.48),
		5px 5px 0 rgba(0, 0, 0, 0.78) !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta > span {
	gap: 12px !important;
}

.txb-tour-page .txb-tour-universe__past .txb-u-past:hover .txb-u-past__photos-cta,
.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within .txb-u-past__photos-cta {
	transform: translateY(calc(-50% - 3px)) rotate(-2.4deg) !important;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.62),
		5px 5px 0 rgba(204, 0, 0, 0.72) !important;
}

@media (max-width: 780px) {
	.txb-tour-page .txb-tour-universe__past .txb-u-past {
		display: flex !important;
		flex-direction: column !important;
		min-height: 0 !important;
		padding: 24px !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past__venue {
		margin-top: 24px !important;
		font-size: clamp(1.15rem, 5vw, 1.55rem) !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past__city {
		font-size: 0.95rem !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past .txb-u-past__photos-cta {
		position: relative !important;
		inset: auto !important;
		align-self: flex-end !important;
		width: auto !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-height: var(--txb-tour-past-cta-mobile-min-height, 50px) !important;
		margin-top: 18px !important;
		padding:
			var(--txb-tour-past-cta-mobile-pad-y, 14px)
			var(--txb-tour-past-cta-mobile-pad-x, 14px) !important;
		font-size: var(--txb-tour-past-cta-mobile-font, 10.5px) !important;
		letter-spacing: 0.12em !important;
		transform: rotate(-1.8deg) !important;
	}

	.txb-tour-page .txb-tour-universe__past .txb-u-past:hover .txb-u-past__photos-cta,
	.txb-tour-page .txb-tour-universe__past .txb-u-past:focus-within .txb-u-past__photos-cta {
		transform: rotate(-1.8deg) translateY(-2px) !important;
	}
}

/* Concierto 1.0.21 - estados de fotos/video blindados */
body.single-txb_concert .txb-concert-processing-grid {
	display: grid !important;
	grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr) !important;
	gap: clamp(18px, 2vw, 28px) !important;
	align-items: stretch !important;
	margin: clamp(42px, 6vw, 72px) 0 clamp(36px, 5vw, 58px) !important;
}

body.single-txb_concert .txb-concert-processing {
	position: relative !important;
	z-index: 1 !important;
	margin: 0 !important;
	overflow: hidden !important;
	isolation: isolate !important;
}

body.single-txb_concert .txb-concert-processing--photos {
	display: flex !important;
	min-height: clamp(320px, 35vw, 430px) !important;
	padding: clamp(28px, 4vw, 54px) !important;
	align-items: center !important;
	justify-content: center !important;
	flex-direction: column !important;
	text-align: center !important;
	border: 4px solid rgba(94, 63, 58, 0.95) !important;
	background:
		repeating-linear-gradient(45deg, transparent 0 12px, rgba(53, 53, 50, 0.42) 12px 24px),
		radial-gradient(circle at center, rgba(229, 226, 221, 0.05) 0 2px, transparent 2px 11px),
		#151712 !important;
	box-shadow: none !important;
	transform: none !important;
}

body.single-txb_concert .txb-concert-processing--video {
	display: flex !important;
	min-height: clamp(320px, 35vw, 430px) !important;
	padding: clamp(30px, 4vw, 54px) !important;
	align-items: flex-start !important;
	justify-content: center !important;
	flex-direction: column !important;
	text-align: left !important;
	border: 4px solid var(--txb-color-on-primary-container, #ffdad4) !important;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
		radial-gradient(circle at 84% 84%, rgba(0, 0, 0, 0.22), transparent 34%),
		var(--txb-color-primary-container, #cc0000) !important;
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.76) !important;
	transform: none !important;
}

body.single-txb_concert .txb-concert-processing::before {
	content: "" !important;
	position: absolute !important;
	inset: -24% !important;
	z-index: -1 !important;
	pointer-events: none !important;
}

body.single-txb_concert .txb-concert-processing--photos::before {
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px) !important;
	opacity: 0.28 !important;
}

body.single-txb_concert .txb-concert-processing--video::before {
	background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 9px) !important;
	opacity: 0.35 !important;
}

body.single-txb_concert .txb-concert-processing::after {
	content: none !important;
}

body.single-txb_concert .txb-concert-processing__icon {
	position: relative !important;
	z-index: 1 !important;
	display: block !important;
	width: clamp(58px, 8vw, 92px) !important;
	height: clamp(58px, 8vw, 92px) !important;
	margin: 0 0 26px !important;
	color: rgba(229, 226, 221, 0.22) !important;
	font-size: 0 !important;
	line-height: 0 !important;
	overflow: hidden !important;
}

body.single-txb_concert .txb-concert-processing__icon::before {
	content: "" !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	background: currentColor !important;
	-webkit-mask-position: center !important;
	mask-position: center !important;
	-webkit-mask-repeat: no-repeat !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-size: contain !important;
	mask-size: contain !important;
}

body.single-txb_concert .txb-concert-processing--photos .txb-concert-processing__icon::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 3 7.2 5H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-3.2L15 3H9Zm3 5.2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") !important;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 3 7.2 5H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-3.2L15 3H9Zm3 5.2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") !important;
}

body.single-txb_concert .txb-concert-processing--video .txb-concert-processing__icon {
	width: clamp(52px, 6vw, 74px) !important;
	height: clamp(52px, 6vw, 74px) !important;
	color: var(--txb-color-on-primary-container, #ffdad4) !important;
}

body.single-txb_concert .txb-concert-processing--video .txb-concert-processing__icon::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-1.8l4 2.6V7.2l-4 2.6V8a2 2 0 0 0-2-2H4Zm0 2h11v8H4V8Z'/%3E%3C/svg%3E") !important;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-1.8l4 2.6V7.2l-4 2.6V8a2 2 0 0 0-2-2H4Zm0 2h11v8H4V8Z'/%3E%3C/svg%3E") !important;
}

body.single-txb_concert .txb-concert-processing--photos .txb-concert-processing__stamp {
	display: inline-flex !important;
	margin: 0 0 22px !important;
	padding: 12px 24px !important;
	border: 2px solid #1a1a17 !important;
	background: var(--txb-color-inverse-surface, #e5e2dd) !important;
	color: #11110f !important;
	font-family: var(--txb-font-display, Epilogue, sans-serif) !important;
	font-size: clamp(1.45rem, 3.1vw, 2.35rem) !important;
	font-weight: 900 !important;
	letter-spacing: -0.02em !important;
	line-height: 0.95 !important;
	text-transform: uppercase !important;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.42) !important;
	transform: rotate(-3deg) !important;
}

body.single-txb_concert .txb-concert-processing--photos p {
	width: min(100%, 620px) !important;
	margin: 0 !important;
	padding: 18px 22px !important;
	border: 1px solid rgba(94, 63, 58, 0.95) !important;
	background: rgba(32, 32, 29, 0.82) !important;
	color: var(--txb-color-on-surface-variant, #e8bdb6) !important;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif) !important;
	font-size: clamp(1rem, 1.6vw, 1.32rem) !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
}

body.single-txb_concert .txb-concert-processing--video h2 {
	width: 100% !important;
	margin: 0 0 22px !important;
	padding-bottom: 16px !important;
	border-bottom: 4px solid var(--txb-color-on-primary-container, #ffdad4) !important;
	color: var(--txb-color-on-primary-container, #ffdad4) !important;
	font-family: var(--txb-font-display, Epilogue, sans-serif) !important;
	font-size: clamp(2.1rem, 4.2vw, 3.55rem) !important;
	font-weight: 900 !important;
	letter-spacing: -0.035em !important;
	line-height: 0.95 !important;
	text-transform: uppercase !important;
	text-shadow: none !important;
}

body.single-txb_concert .txb-concert-processing--video p {
	max-width: 520px !important;
	margin: 0 !important;
	color: var(--txb-color-on-primary-container, #ffdad4) !important;
	font-family: var(--txb-font-body, "Space Grotesk", sans-serif) !important;
	font-size: clamp(1rem, 1.55vw, 1.28rem) !important;
	font-weight: 900 !important;
	line-height: 1.48 !important;
}

body.single-txb_concert .txb-concert-processing__rec {
	position: absolute !important;
	right: 22px !important;
	bottom: 18px !important;
	z-index: 1 !important;
	color: rgba(0, 0, 0, 0.22) !important;
	font-family: var(--txb-font-display, Epilogue, sans-serif) !important;
	font-size: clamp(1.5rem, 3.6vw, 3rem) !important;
	font-weight: 900 !important;
	letter-spacing: -0.05em !important;
	pointer-events: none !important;
}

@media (max-width: 860px) {
	body.single-txb_concert .txb-concert-processing-grid {
		grid-template-columns: 1fr !important;
		margin: 44px 0 36px !important;
	}
}
