/* ==========================================================================
   GYMBO HUB — Grunge  ·  Industrial Grunge Brutalista
   Paleta: Carbón #111 · Morado berenjena #3B1F3E · Concreto #E6E6E6
   Tipografías: Barlow Condensed (display) + Barlow (cuerpo)
   ========================================================================== */
:root {
	--carbon: #111111;
	--carbon-2: #0d0d0d;
	--carbon-3: #0a0a0a;
	--card: #1a1a1a;
	--plum: #3B1F3E;
	--plum-hi: #4e2a52;
	--concrete: #E6E6E6;
	--lavender: #BCB0C4;
	--slate: #2F3641;
	--muted: #888888;
	--muted-2: #666666;
	--muted-3: #555555;
	--line: rgba(255,255,255,0.06);
	--line-2: rgba(255,255,255,0.10);
	--plum-line: rgba(59,31,62,0.4);
	--sale: #c0392b;
	--wa: #25D366;
	--ok: #4ade80;
	--ease: cubic-bezier(0.23, 1, 0.32, 1);
	--maxw: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
* { min-width: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background-color: var(--carbon);
	color: var(--concrete);
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
	line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Cursor en interactivos */
button:not(:disabled), [role="button"], a[href], select, label[for] { cursor: pointer; }

/* ---------- Layout ---------- */
.gh-container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) { .gh-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .gh-container { padding: 0 2rem; } }

.gh-section { padding: 3rem 0; }
@media (min-width: 768px) { .gh-section { padding: 4rem 0; } }
.gh-section--alt { background: var(--carbon-2); }
.gh-pagehead {
	padding: 2.5rem 0;
	background: var(--carbon-2);
	border-bottom: 1px solid rgba(59,31,62,0.3);
}
@media (min-width: 768px) { .gh-pagehead { padding: 3.5rem 0; } }

.gh-eyebrow {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--plum-text, #7a4d80);
	margin: 0 0 0.35rem;
}
/* el morado puro es oscuro sobre negro: usamos un tono legible para textos pequeños */
.gh-eyebrow { color: #9b6aa3; }

.gh-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(2rem, 5vw, 3.5rem);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: var(--concrete);
}
.gh-title--sm { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }

.gh-sub { color: var(--muted-2); font-size: 0.95rem; margin: 0.5rem 0 0; }

.gh-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}
.gh-link-all {
	display: none;
	align-items: center;
	gap: 0.4rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lavender);
	white-space: nowrap;
	transition: color 150ms ease;
}
.gh-link-all:hover { color: var(--concrete); }
@media (min-width: 768px) { .gh-link-all { display: inline-flex; } }

/* ---------- Botones ---------- */
.gh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.7rem 1.5rem;
	border: 2px solid transparent;
	background: var(--plum);
	color: var(--concrete);
	transition: transform 160ms var(--ease), background-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.gh-btn:hover { background: var(--plum-hi); transform: translateY(-1px); }
.gh-btn:active { transform: scale(0.97); }
.gh-btn--outline { background: transparent; border-color: var(--plum); }
.gh-btn--outline:hover { background: var(--plum); transform: translateY(-1px); }
.gh-btn--lg { font-size: 1rem; padding: 0.85rem 2rem; }
.gh-btn--block { width: 100%; }
.gh-btn .gh-ico { stroke-width: 2.5; }

/* ---------- Header ---------- */
.gh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--carbon);
	border-bottom: 1px solid var(--plum-line);
	transition: background-color 300ms ease, box-shadow 300ms ease;
}
.gh-header.is-scrolled {
	background: rgba(13,13,13,0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.gh-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 1rem;
}
@media (min-width: 768px) { .gh-header__bar { height: 80px; } }

.gh-logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.gh-logo img { height: 40px; width: auto; }
@media (min-width: 768px) { .gh-logo img { height: 48px; } }
.gh-logo__name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	background: linear-gradient(135deg, #E6E6E6 0%, #BCB0C4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.gh-logo__tag {
	display: block;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #9b6aa3;
	margin-top: 2px;
}
.gh-logo__txt { display: none; }
@media (min-width: 480px) { .gh-logo__txt { display: block; } }

.gh-nav { display: none; }
@media (min-width: 1024px) { .gh-nav { display: block; } }
.gh-nav-list { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	position: relative;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--concrete);
	padding: 0.5rem 0;
	background: none;
	border: none;
	transition: color 150ms ease;
}
.nav-link::after {
	content: '';
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 2px;
	background: var(--plum);
	transition: width 200ms ease;
}
.nav-link:hover { color: var(--lavender); }
.nav-link:hover::after { width: 100%; }

.gh-has-sub { position: relative; }
.gh-subnav {
	position: absolute;
	top: 100%; left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 220px;
	padding: 0.5rem 0;
	background: var(--card);
	border: 1px solid rgba(59,31,62,0.5);
	box-shadow: 0 20px 60px rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 60;
}
.gh-has-sub:hover .gh-subnav,
.gh-has-sub:focus-within .gh-subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.gh-subnav a {
	display: block;
	padding: 0.6rem 1rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--concrete);
	transition: background-color 150ms ease, color 150ms ease;
}
.gh-subnav a:hover { background: rgba(59,31,62,0.35); color: var(--lavender); }

.gh-actions { display: flex; align-items: center; gap: 0.6rem; }
.gh-iconbtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	background: none; border: none;
	color: var(--concrete);
	transition: color 150ms ease;
}
.gh-iconbtn:hover { color: var(--lavender); }
.gh-iconbtn--search { display: none; }
@media (min-width: 768px) { .gh-iconbtn--search { display: inline-flex; } }
.gh-cta-header { display: none; }
@media (min-width: 768px) { .gh-cta-header { display: inline-flex; } }
.gh-cart-badge {
	position: absolute;
	top: -4px; right: -4px;
	min-width: 18px; height: 18px;
	padding: 0 4px;
	background: var(--plum);
	color: #fff;
	font-family: 'Barlow', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.gh-cart-badge:empty,
.gh-cart-badge[data-count="0"] { display: none; }

.gh-burger { display: inline-flex; }
@media (min-width: 1024px) { .gh-burger { display: none; } }

/* Menú móvil */
.gh-mobile {
	display: none;
	background: var(--carbon-2);
	border-top: 1px solid var(--plum-line);
}
.gh-mobile.is-open { display: block; }
.gh-mobile__inner { padding: 1rem 0; display: flex; flex-direction: column; gap: 2px; }
.gh-m-link {
	display: block;
	padding: 0.8rem 0.75rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--concrete);
	transition: background-color 150ms ease;
}
.gh-m-link:hover { background: rgba(59,31,62,0.2); }
.gh-m-group {
	padding: 0.8rem 0.75rem 0.3rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9b6aa3;
}
.gh-m-sub { padding-left: 1.5rem; font-weight: 600; font-size: 0.85rem; color: var(--muted); }
.gh-mobile__cta { padding: 0.75rem; margin-top: 0.5rem; border-top: 1px solid var(--line-2); }

/* ---------- Hero ---------- */
.gh-hero { position: relative; min-height: 85vh; overflow: hidden; display: flex; }
.gh-hero__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center; background-repeat: no-repeat;
	will-change: transform;
}
.gh-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(17,17,17,0.65) 0%, rgba(59,31,62,0.35) 50%, rgba(17,17,17,0.78) 100%);
}
.gh-hero__inner {
	position: relative; z-index: 2;
	width: 100%; max-width: var(--maxw);
	margin: 0 auto;
	padding: 6rem 1rem 4rem;
	display: flex; flex-direction: column; justify-content: flex-end;
}
@media (min-width: 640px) { .gh-hero__inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .gh-hero__inner { padding: 8rem 2rem 6rem; } }
.gh-hero__content { max-width: 640px; }
.gh-badge-pill {
	display: inline-block;
	font-size: 0.7rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.2em;
	padding: 0.35rem 0.8rem;
	background: var(--plum); color: var(--concrete);
	margin-bottom: 1rem;
}
.gh-hero h1 {
	font-weight: 900;
	font-size: clamp(2.5rem, 8vw, 5rem);
	text-transform: uppercase;
	color: var(--concrete);
	text-shadow: 0 4px 20px rgba(0,0,0,0.8);
	margin-bottom: 1rem;
}
.gh-hero h1 span { color: var(--lavender); }
.gh-hero__sub {
	font-size: 1.05rem;
	color: rgba(230,230,230,0.82);
	max-width: 32rem;
	margin: 0 0 2rem;
}
.gh-hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.gh-scroll-ind {
	position: absolute; bottom: 1.5rem; left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
	opacity: 0.6;
}
.gh-scroll-ind .bar { width: 1px; height: 30px; background: var(--plum); animation: ghPulse 1.8s ease-in-out infinite; }
.gh-scroll-ind span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--lavender); }

/* ---------- Trust bar ---------- */
.gh-trust { background: var(--carbon-2); border-bottom: 1px solid rgba(59,31,62,0.3); }
.gh-trust__grid {
	display: grid; grid-template-columns: repeat(2, 1fr);
	gap: 1rem; padding: 1.1rem 0;
}
@media (min-width: 768px) { .gh-trust__grid { grid-template-columns: repeat(4, 1fr); } }
.gh-trust__item { display: flex; align-items: center; gap: 0.7rem; padding: 0.4rem 0; }
.gh-trust__item .gh-ico { color: var(--lavender); flex-shrink: 0; }
.gh-trust__item strong {
	display: block;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700; font-size: 0.95rem; line-height: 1.1;
	color: var(--concrete);
}
.gh-trust__item small { color: var(--muted-2); font-size: 0.78rem; }

/* ---------- Categorías ---------- */
.gh-grid-cats {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 768px) { .gh-grid-cats { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gh-cat-card {
	position: relative; overflow: hidden; aspect-ratio: 3/2; display: block;
}
.gh-cat-card::before {
	content: ''; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(135deg, rgba(59,31,62,0.65) 0%, rgba(17,17,17,0.55) 100%);
	transition: opacity 300ms ease;
}
.gh-cat-card:hover::before { opacity: 0.55; }
.gh-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.gh-cat-card:hover img { transform: scale(1.06); }
.gh-cat-card__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.2rem; }
.gh-cat-card__content h3 {
	font-weight: 900; text-transform: uppercase; line-height: 1;
	font-size: clamp(1.2rem, 3vw, 2rem);
	color: var(--concrete);
	text-shadow: 0 2px 8px rgba(0,0,0,0.8);
	margin-bottom: 0.25rem;
}
.gh-cat-card__more {
	display: inline-flex; align-items: center; gap: 0.25rem;
	font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
	color: var(--lavender);
}
.gh-cat-mobilecta { margin-top: 1.5rem; text-align: center; }
@media (min-width: 768px) { .gh-cat-mobilecta { display: none; } }
.gh-bottomcta { margin-top: 2rem; text-align: center; }
@media (min-width: 768px) { .gh-bottomcta--mobile { display: none; } }

/* ---------- Promo banner ---------- */
.gh-promo { position: relative; overflow: hidden; }
.gh-promo__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gh-promo__overlay { position: absolute; inset: 0; background: rgba(17,17,17,0.7); }
.gh-promo__inner {
	position: relative; z-index: 2;
	display: flex; flex-direction: column; align-items: flex-start; gap: 2rem;
	padding: 4rem 0;
}
@media (min-width: 768px) { .gh-promo__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 5rem 0; } }
.gh-promo h2 {
	font-weight: 900; text-transform: uppercase; line-height: 1;
	font-size: clamp(2rem, 6vw, 3.5rem); color: var(--concrete); margin-bottom: 0.6rem;
}
.gh-promo h2 span { color: var(--lavender); }
.gh-promo p { color: rgba(230,230,230,0.82); margin: 0; }

/* ---------- Product card ---------- */
.gh-grid-products {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 768px) { .gh-grid-products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gh-grid-products { grid-template-columns: repeat(4, 1fr); } }

.gh-product {
	display: flex; flex-direction: column;
	background: var(--card);
	border: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
	transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.gh-product:hover { transform: translateY(-4px); border-color: rgba(59,31,62,0.6); box-shadow: 0 12px 40px rgba(59,31,62,0.3); }
.gh-product__media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--card); }
.gh-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.gh-product:hover .gh-product__media img { transform: scale(1.06); }
.gh-product__badges { position: absolute; top: 0.5rem; left: 0.5rem; display: flex; flex-direction: column; gap: 0.3rem; z-index: 2; }
.gh-badge {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
	padding: 0.18rem 0.55rem; color: var(--concrete); background: var(--plum); width: max-content;
}
.gh-badge--sale { background: var(--sale); color: #fff; }
.gh-product__quick {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem;
	background: linear-gradient(to top, rgba(59,31,62,0.85) 0%, transparent 60%);
	opacity: 0; transition: opacity 200ms ease;
}
.gh-product:hover .gh-product__quick { opacity: 1; }
.gh-product__body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.gh-product__brand {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
	color: #9b6aa3; margin-bottom: 0.25rem;
}
.gh-product__name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700; font-size: 1rem; line-height: 1.1; color: var(--concrete);
	margin-bottom: 0.4rem;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gh-product__desc {
	font-size: 0.78rem; color: var(--muted-2); margin-bottom: 0.6rem;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gh-product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.gh-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--concrete); }
.gh-price--old { font-family: 'Barlow', sans-serif; font-weight: 400; font-size: 0.8rem; color: var(--muted-3); text-decoration: line-through; margin-left: 0.4rem; }
.gh-addmini {
	flex-shrink: 0;
	width: 34px; height: 34px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--plum); color: var(--concrete); border: none;
	transition: transform 150ms var(--ease), background-color 150ms var(--ease);
}
.gh-addmini:hover { transform: scale(1.1); background: var(--plum-hi); }

/* Estrellas */
.gh-stars { display: inline-flex; align-items: center; gap: 1px; color: var(--plum); }
.gh-stars span { color: #5a3560; display: inline-flex; }
.gh-stars span.is-on { color: #9b6aa3; }
.gh-rating-row { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem; }
.gh-rating-row small { color: var(--muted-2); font-size: 0.75rem; }

/* ---------- About ---------- */
.gh-about { position: relative; overflow: hidden; }
.gh-about__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gh-about__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.6) 60%, rgba(17,17,17,0.25) 100%); }
.gh-about__inner { position: relative; z-index: 2; padding: 4rem 0; }
@media (min-width: 768px) { .gh-about__inner { padding: 6rem 0; } }
.gh-about__content { max-width: 38rem; }
.gh-about h2 { font-weight: 900; text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--concrete); margin-bottom: 1rem; }
.gh-about p { color: rgba(230,230,230,0.82); line-height: 1.7; margin: 0 0 1.5rem; }
.gh-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; max-width: 30rem; }
.gh-stat__num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1; color: #9b6aa3; }
.gh-stat__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 0.3rem; }

/* ---------- Why us ---------- */
.gh-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (min-width: 768px) { .gh-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.gh-feature {
	text-align: center; padding: 1.6rem 1.2rem;
	background: var(--card); border: 1px solid var(--line);
	transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}
.gh-feature:hover { transform: translateY(-4px); border-color: rgba(59,31,62,0.5); }
.gh-feature__ico {
	width: 54px; height: 54px; margin: 0 auto 1rem;
	display: flex; align-items: center; justify-content: center;
	background: rgba(59,31,62,0.25); border: 1px solid rgba(59,31,62,0.5); color: var(--lavender);
}
.gh-feature h3 { font-weight: 800; text-transform: uppercase; font-size: 1.05rem; color: var(--concrete); margin-bottom: 0.5rem; }
.gh-feature p { font-size: 0.85rem; color: var(--muted-2); margin: 0; }

/* ---------- Brands ---------- */
.gh-brands { border-top: 1px solid rgba(59,31,62,0.3); border-bottom: 1px solid rgba(59,31,62,0.3); padding: 2.5rem 0; }
.gh-brands__label { text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-3); margin-bottom: 1.5rem; }
.gh-brands__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 2.5rem; }
.gh-brands__row span {
	font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.15rem;
	text-transform: uppercase; letter-spacing: 0.08em; color: var(--concrete);
	opacity: 0.45; transition: opacity 200ms ease;
}
.gh-brands__row span:hover { opacity: 1; }

/* ---------- Blog ---------- */
.gh-grid-blog { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .gh-grid-blog { grid-template-columns: repeat(3, 1fr); } }
.gh-post { display: block; background: var(--card); border: 1px solid var(--line); transition: border-color 200ms ease, transform 200ms ease; }
.gh-post:hover { border-color: rgba(59,31,62,0.5); transform: translateY(-3px); }
.gh-post__media { aspect-ratio: 16/9; overflow: hidden; }
.gh-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.gh-post:hover .gh-post__media img { transform: scale(1.05); }
.gh-post__body { padding: 1.25rem; }
.gh-post__meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.gh-chip { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.15rem 0.5rem; background: rgba(59,31,62,0.4); color: var(--lavender); }
.gh-post__meta small { color: var(--muted-3); font-size: 0.72rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.gh-post h3 { font-weight: 700; font-size: 1.05rem; line-height: 1.15; color: var(--concrete); margin-bottom: 0.5rem; transition: color 150ms ease; }
.gh-post:hover h3 { color: var(--lavender); }
.gh-post p { font-size: 0.85rem; color: var(--muted-2); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.gh-post-feature { display: grid; grid-template-columns: 1fr; background: var(--card); border: 1px solid var(--line); overflow: hidden; margin-bottom: 2.5rem; transition: border-color 200ms ease; }
@media (min-width: 768px) { .gh-post-feature { grid-template-columns: 1fr 1fr; } }
.gh-post-feature:hover { border-color: rgba(59,31,62,0.5); }
.gh-post-feature__media { aspect-ratio: 16/9; overflow: hidden; }
.gh-post-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.gh-post-feature:hover .gh-post-feature__media img { transform: scale(1.04); }
.gh-post-feature__body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.gh-post-feature__body h2 { font-weight: 900; text-transform: uppercase; font-size: 1.6rem; line-height: 1.1; color: var(--concrete); margin: 0.5rem 0; }
.gh-post-feature__body p { color: var(--muted); font-size: 0.9rem; margin: 0 0 1rem; }

/* ---------- Newsletter ---------- */
.gh-news { background: var(--plum); padding: 3rem 0; }
@media (min-width: 768px) { .gh-news { padding: 4rem 0; } }
.gh-news__inner { text-align: center; }
.gh-news h2 { font-weight: 900; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--concrete); margin-bottom: 0.75rem; }
.gh-news p { color: rgba(230,230,230,0.82); margin: 0 auto 1.5rem; max-width: 36rem; }
.gh-news__form { display: flex; flex-direction: column; gap: 0.6rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 480px) { .gh-news__form { flex-direction: row; } }
.gh-news__form input {
	flex: 1; padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--concrete);
	background: rgba(17,17,17,0.5); border: 1px solid rgba(230,230,230,0.3); outline: none;
}
.gh-news__form input::placeholder { color: rgba(230,230,230,0.5); }
.gh-news__form button {
	flex-shrink: 0; padding: 0.85rem 1.5rem;
	font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.9rem;
	text-transform: uppercase; letter-spacing: 0.08em;
	background: var(--carbon); color: var(--concrete); border: none;
	transition: background-color 160ms ease;
}
.gh-news__form button:hover { background: #000; }

/* ---------- Footer ---------- */
.gh-footer { background: var(--carbon-3); border-top: 3px solid var(--plum); }
.gh-footer__main { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
@media (min-width: 768px) { .gh-footer__main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gh-footer__main { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; padding: 4rem 0; } }
.gh-footer__brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.gh-footer__social { display: flex; gap: 0.6rem; }
.gh-footer__social a {
	width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
	background: rgba(59,31,62,0.3); border: 1px solid rgba(59,31,62,0.5); color: var(--concrete);
	transition: transform 180ms ease, background-color 180ms ease;
}
.gh-footer__social a:hover { transform: translateY(-2px); background: var(--plum); }
.gh-footer h3 {
	font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--concrete); padding-bottom: 0.5rem; margin-bottom: 1rem; border-bottom: 2px solid var(--plum);
}
.gh-footer__links li { margin-bottom: 0.5rem; }
.gh-footer__links a { color: var(--muted); font-size: 0.88rem; transition: color 150ms ease; }
.gh-footer__links a:hover { color: var(--lavender); }
.gh-footer__contact li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.88rem; }
.gh-footer__contact .gh-ico { color: #9b6aa3; flex-shrink: 0; margin-top: 2px; }
.gh-footer__contact a:hover { color: var(--lavender); }
.gh-footer__pay { border-top: 1px solid var(--line); }
.gh-footer__pay-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; padding: 1rem 0; }
@media (min-width: 768px) { .gh-footer__pay-inner { flex-direction: row; } }
.gh-pay-methods { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; justify-content: center; }
.gh-pay-methods .lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-3); }
.gh-pay-methods span.m { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.5rem; background: var(--card); border: 1px solid var(--line-2); color: var(--muted); }
.gh-footer__copy { background: #060606; border-top: 1px solid rgba(255,255,255,0.04); }
.gh-footer__copy p { text-align: center; color: #444; font-size: 0.78rem; padding: 0.9rem 0; margin: 0; }

/* ---------- Producto (detalle) ---------- */
.gh-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; padding: 1rem 0; font-size: 0.78rem; color: var(--muted-3); }
.gh-breadcrumb a:hover { color: var(--lavender); }
.gh-breadcrumb .gh-ico { color: var(--muted-3); }
.gh-pdp { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .gh-pdp { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.gh-pdp__media { position: relative; background: var(--card); border: 1px solid var(--line); }
.gh-pdp__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gh-pdp__media .gh-badge--sale { position: absolute; top: 1rem; left: 1rem; font-size: 0.85rem; padding: 0.3rem 0.7rem; }
.gh-pdp__info { display: flex; flex-direction: column; }
.gh-pdp__brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: #9b6aa3; margin-bottom: 0.25rem; }
.gh-pdp h1 { font-weight: 900; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.05; color: var(--concrete); margin-bottom: 0.75rem; }
.gh-pdp__short { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.04em; color: var(--lavender); margin: 0.5rem 0 1rem; }
.gh-pdp__price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.gh-pdp__price .gh-price { font-size: 2rem; }
.gh-opt-group { margin-bottom: 1.2rem; }
.gh-opt-group__label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lavender); margin-bottom: 0.5rem; }
.gh-opt-group__label b { color: var(--concrete); font-weight: 700; }
.gh-opts { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gh-opt {
	padding: 0.45rem 0.85rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
	font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em;
	background: transparent; color: var(--muted); border: 1px solid var(--line-2);
	transition: all 150ms ease;
}
.gh-opt:hover { border-color: var(--plum); color: var(--concrete); }
.gh-opt.is-active { background: var(--plum); color: #fff; border-color: var(--plum); }
.gh-qty { display: inline-flex; align-items: center; border: 1px solid rgba(59,31,62,0.5); }
.gh-qty button { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: none; border: none; color: var(--concrete); transition: background-color 150ms ease; }
.gh-qty button:hover { background: rgba(59,31,62,0.3); }
.gh-qty span { width: 48px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--concrete); }
.gh-pdp__buy { display: flex; align-items: center; gap: 0.75rem; margin: 1rem 0 1.5rem; }
.gh-pdp__buy .gh-btn { flex: 1; }
.gh-pdp__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.gh-pdp__trust div { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; text-align: center; }
.gh-pdp__trust .gh-ico { color: #9b6aa3; }
.gh-pdp__trust small { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; color: var(--muted); }
.gh-pdp__section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.gh-pdp__section h2 { margin-bottom: 1rem; }
.gh-pdp__section p { color: var(--muted); max-width: 48rem; line-height: 1.7; }

/* ---------- Tienda (filtros) ---------- */
.gh-filters { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .gh-filters { flex-direction: row; align-items: center; } }
.gh-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gh-chip-btn {
	padding: 0.5rem 1rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
	font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em;
	background: transparent; color: var(--muted); border: 1px solid var(--line-2);
	transition: all 150ms ease;
}
.gh-chip-btn:hover { border-color: var(--plum); color: var(--concrete); }
.gh-chip-btn.is-active { background: var(--plum); color: #fff; border-color: var(--plum); }
.gh-sort { margin-left: 0; }
@media (min-width: 768px) { .gh-sort { margin-left: auto; } }
.gh-select {
	padding: 0.5rem 0.75rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
	font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em;
	background: var(--card); color: var(--concrete); border: 1px solid var(--line-2); outline: none;
}
.gh-count { font-size: 0.78rem; color: var(--muted-3); margin-bottom: 1.5rem; }
.gh-empty { text-align: center; padding: 4rem 1rem; }
.gh-empty p { color: var(--muted-2); }

/* ---------- Carrito / Checkout ---------- */
.gh-2col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .gh-2col { grid-template-columns: 2fr 1fr; } }
.gh-cart-item { display: flex; gap: 1rem; padding: 1rem; background: var(--card); border: 1px solid var(--line); }
.gh-cart-item__img { width: 90px; height: 90px; flex-shrink: 0; overflow: hidden; background: #222; }
.gh-cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.gh-cart-item__body { flex: 1; min-width: 0; }
.gh-cart-item__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.02rem; line-height: 1.1; color: var(--concrete); margin-bottom: 0.2rem; }
.gh-cart-item__cat { font-size: 0.75rem; color: var(--muted-2); margin-bottom: 0.7rem; }
.gh-cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.gh-cart-item__remove { width: 32px; height: 32px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: none; border: none; color: var(--muted-3); transition: color 150ms ease; }
.gh-cart-item__remove:hover { color: #ef5350; }
.gh-summary { padding: 1.5rem; background: var(--card); border: 1px solid rgba(59,31,62,0.3); }
.gh-summary h2 { font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--concrete); padding-bottom: 0.75rem; margin-bottom: 1rem; border-bottom: 2px solid var(--plum); }
.gh-summary__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--muted); }
.gh-summary__row b { color: var(--concrete); font-weight: 700; }
.gh-summary__row .free { color: var(--ok); font-weight: 700; }
.gh-summary__items { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.gh-summary__total { display: flex; justify-content: space-between; align-items: center; padding-top: 0.85rem; margin-bottom: 1.5rem; border-top: 1px solid var(--line-2); }
.gh-summary__total span { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; color: var(--concrete); }
.gh-summary__total b { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--concrete); }
.gh-cart-empty { text-align: center; padding: 4rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.gh-cart-empty .gh-ico { color: var(--plum); opacity: 0.5; }

.gh-card { padding: 1.5rem; background: var(--card); border: 1px solid var(--line); margin-bottom: 1.5rem; }
.gh-card h2 { font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--concrete); margin-bottom: 1rem; }
.gh-field { margin-bottom: 1rem; }
.gh-field label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lavender); margin-bottom: 0.35rem; }
.gh-input {
	width: 100%; padding: 0.7rem 0.85rem; font-size: 0.9rem; color: var(--concrete);
	background: var(--carbon); border: 1px solid var(--plum-line); outline: none; transition: border-color 150ms ease;
}
.gh-input:focus { border-color: var(--plum); }
textarea.gh-input { resize: vertical; min-height: 110px; }
.gh-grid2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .gh-grid2 { grid-template-columns: 1fr 1fr; } }
.gh-grid2 .span2 { grid-column: 1 / -1; }
.gh-pay { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .gh-pay { grid-template-columns: repeat(4, 1fr); } }
.gh-pay__opt {
	padding: 0.85rem 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
	background: transparent; border: 2px solid var(--line-2); color: var(--muted); transition: all 160ms ease; text-align: center;
}
.gh-pay__opt:hover { border-color: rgba(59,31,62,0.6); }
.gh-pay__opt.is-active { border-color: var(--plum); background: rgba(59,31,62,0.2); color: var(--concrete); }
.gh-pay__opt strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; }
.gh-pay__opt small { font-size: 0.7rem; color: var(--muted-3); }
.gh-secure-note { display: flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.78rem; color: var(--muted-3); }
.gh-summary--sticky { position: sticky; top: 100px; }

/* ---------- Marca / contacto ---------- */
.gh-marca-hero { position: relative; overflow: hidden; padding: 5rem 0; text-align: center; }
@media (min-width: 768px) { .gh-marca-hero { padding: 8rem 0; } }
.gh-marca-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; }
.gh-marca-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,17,17,0.5), rgba(17,17,17,0.92)); }
.gh-marca-hero__inner { position: relative; z-index: 2; }
.gh-marca-hero p { color: rgba(230,230,230,0.82); max-width: 34rem; margin: 0.75rem auto 0; }
.gh-split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .gh-split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.gh-statbox { padding: 1.5rem; text-align: center; background: var(--card); border: 1px solid rgba(59,31,62,0.3); }
.gh-statbox__num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.2rem; color: #9b6aa3; line-height: 1; margin-bottom: 0.25rem; }
.gh-statbox__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.gh-values { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .gh-values { grid-template-columns: repeat(3, 1fr); } }
.gh-value { padding: 2rem; text-align: center; background: var(--card); border: 1px solid var(--line); }
.gh-value__ico { width: 60px; height: 60px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; background: rgba(59,31,62,0.25); border: 1px solid rgba(59,31,62,0.5); color: var(--lavender); }
.gh-value h3 { font-weight: 800; font-size: 1.3rem; text-transform: uppercase; color: var(--concrete); margin-bottom: 0.6rem; }
.gh-value p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.gh-contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.gh-contact-row__ico { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(59,31,62,0.3); border: 1px solid rgba(59,31,62,0.5); color: var(--lavender); }
.gh-contact-row small { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-3); }
.gh-contact-row strong { color: var(--concrete); font-weight: 600; transition: color 150ms ease; }
.gh-contact-row:hover strong { color: var(--lavender); }

/* ---------- 404 ---------- */
.gh-404 { text-align: center; padding: 6rem 1rem; }
.gh-404 h1 { font-size: clamp(4rem, 14vw, 9rem); color: var(--plum); line-height: 1; }

/* ---------- Cart drawer ---------- */
.gh-drawer-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,0.7); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity 250ms ease, visibility 250ms ease; }
.gh-drawer-overlay.is-open { opacity: 1; visibility: visible; }
.gh-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 26rem; z-index: 81;
	display: flex; flex-direction: column;
	background: var(--carbon); border-left: 1px solid rgba(59,31,62,0.5);
	box-shadow: -20px 0 60px rgba(0,0,0,0.8);
	transform: translateX(100%); transition: transform 300ms var(--ease);
}
.gh-drawer.is-open { transform: translateX(0); }
.gh-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); }
.gh-drawer__head h2 { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; text-transform: uppercase; }
.gh-drawer__head h2 .gh-ico { color: #9b6aa3; }
.gh-drawer__count { font-size: 0.7rem; font-weight: 700; padding: 0.1rem 0.45rem; background: var(--plum); color: var(--concrete); }
.gh-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.gh-drawer__foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line); }
.gh-drawer__empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 1rem; text-align: center; }
.gh-drawer__empty .gh-ico { color: var(--plum); opacity: 0.5; }
.gh-drawer__empty strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; text-transform: uppercase; }
.gh-drawer__empty small { color: var(--muted-2); }
.gh-di { display: flex; gap: 0.75rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); }
.gh-di__img { width: 72px; height: 72px; flex-shrink: 0; overflow: hidden; background: var(--card); }
.gh-di__img img { width: 100%; height: 100%; object-fit: cover; }
.gh-di__body { flex: 1; min-width: 0; }
.gh-di__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.92rem; line-height: 1.1; color: var(--concrete); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gh-di__cat { font-size: 0.72rem; color: var(--muted-2); margin-bottom: 0.5rem; }
.gh-di__row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.gh-di .gh-qty button { width: 28px; height: 28px; }
.gh-di .gh-qty span { width: 32px; font-size: 0.85rem; }
.gh-di__price { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.92rem; color: var(--concrete); }
.gh-di__remove { background: none; border: none; color: var(--muted-3); width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; transition: color 150ms ease; flex-shrink: 0; }
.gh-di__remove:hover { color: #ef5350; }
.gh-drawer__subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.gh-drawer__subtotal span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lavender); }
.gh-drawer__subtotal b { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--concrete); }
.gh-drawer__ship { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin-bottom: 1rem; }
.gh-drawer__cont { width: 100%; margin-top: 0.6rem; background: none; border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; color: var(--muted-2); transition: color 150ms ease; }
.gh-drawer__cont:hover { color: var(--lavender); }

/* ---------- WhatsApp float ---------- */
.gh-wa {
	position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 70;
	width: 56px; height: 56px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--wa); color: #fff;
	box-shadow: 0 4px 20px rgba(37,211,102,0.4);
	transition: transform 200ms ease, box-shadow 200ms ease;
}
.gh-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ---------- Toasts ---------- */
.gh-toasts { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 95; display: flex; flex-direction: column; gap: 0.5rem; width: calc(100% - 2rem); max-width: 360px; }
.gh-toast {
	background: var(--card); border: 1px solid var(--plum); color: var(--concrete);
	padding: 0.85rem 1rem; font-size: 0.88rem; box-shadow: 0 10px 30px rgba(0,0,0,0.6);
	display: flex; align-items: center; gap: 0.6rem;
	animation: ghToastIn 250ms var(--ease) both;
}
.gh-toast .gh-ico { color: var(--ok); flex-shrink: 0; }
.gh-toast.is-out { animation: ghToastOut 250ms var(--ease) both; }

/* ---------- Animaciones ---------- */
@keyframes ghFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ghPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes ghToastIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ghToastOut { to { opacity: 0; transform: translateY(16px); } }

.gh-hero__content { animation: ghFadeUp 0.6s var(--ease) both; }

/* Scroll reveal: oculto solo si hay JS */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: translateY(0); }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
	.js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--carbon); }
::-webkit-scrollbar-thumb { background: var(--plum); border-radius: 4px; }

/* ---------- Utilidades ---------- */
.gh-noscroll { overflow: hidden; }
.gh-hide { display: none !important; }
.gh-center { text-align: center; }
