/*
Theme Name:  Jevelin Child — Hypnos Music Project
Template:    jevelin
Version:     1.0.0
Description: Rediseño Hypnos Music Project — sello discográfico y agencia artística
Text Domain: jevelin-child
*/

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CUSTOM CURSOR — guitar pick
   ============================================================ */


/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --hmp-bg:           #07070e;
  --hmp-surface:      #0d0d1c;
  --hmp-surface2:     #131328;
  --hmp-border:       #1e1e3a;
  --hmp-blue:         #4d7bff;
  --hmp-lilac:        #9b6fef;
  --hmp-blue-dim:     rgba(77, 123, 255, 0.18);
  --hmp-lilac-dim:    rgba(155, 111, 239, 0.18);
  --hmp-gradient:     linear-gradient(135deg, #4d7bff 0%, #9b6fef 100%);
  --hmp-text:         #e4e4f4;
  --hmp-muted:        #6a6a96;
  --hmp-font-display: 'Righteous', sans-serif;
  --hmp-font-body:    'Poppins', sans-serif;
  --hmp-radius:       12px;
  --hmp-transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
body {
  background-color: var(--hmp-bg) !important;
  color: var(--hmp-text) !important;
  font-family: var(--hmp-font-body) !important;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--hmp-blue); text-decoration: none; transition: color var(--hmp-transition); }
a:hover { color: var(--hmp-lilac); }

/* ============================================================
   WOOCOMMERCE NOTICES — dark theme global
   Jevelin envuelve los notices en .sh-alert en vez de
   los clases WC estándar (.woocommerce-info, etc.)
   ============================================================ */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    font-family: var(--hmp-font-body), sans-serif !important;
}

/* ── Jevelin floating AJAX notification (add to cart) ── */
.sh-notifications { z-index: 9999; }
.sh-notification-item,
.sh-notification-item-example {
    background: var(--hmp-surface) !important;
    background-color: var(--hmp-surface) !important;
    border: none !important;
    border-left: 3px solid #4fffb0 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
    color: var(--hmp-text) !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
}
.sh-notification-item a,
.sh-notification-item a strong {
    color: var(--hmp-blue) !important;
    font-weight: 600 !important;
}
.sh-notification-item a:hover {
    color: var(--hmp-lilac) !important;
}
.sh-notification-item .sh-notification-item-close,
.sh-notification-item .sh-notification-item-close i {
    color: rgba(228,228,244,0.4) !important;
}
.sh-notification-item .sh-notification-item-close:hover i {
    color: var(--hmp-text) !important;
}

/* ── Jevelin alert wrapper ── */
.sh-alert {
    background: var(--hmp-surface) !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.sh-alert .sh-alert-data {
    padding: 14px 24px !important;
}
.sh-alert .sh-alert-title,
.sh-alert .sh-alert-title *,
.sh-alert .sh-alert-text,
.sh-alert .sh-alert-text * {
    color: var(--hmp-text) !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    background: none !important;
}
.sh-alert .sh-alert-icon,
.sh-alert .sh-alert-data-icon {
    color: var(--hmp-blue) !important;
    font-size: 18px !important;
}

/* Notice (info) — acento azul */
.sh-alert.sh-alert-notice {
    border-left: 3px solid var(--hmp-blue) !important;
}
.sh-alert.sh-alert-notice .sh-alert-icon { color: var(--hmp-blue) !important; }

/* Success — acento verde */
.sh-alert.sh-alert-success {
    border-left: 3px solid #4fffb0 !important;
}
.sh-alert.sh-alert-success .sh-alert-icon { color: #4fffb0 !important; }

/* Error — acento rojo */
.sh-alert.sh-alert-error {
    border-left: 3px solid #ff5a7e !important;
}
.sh-alert.sh-alert-error .sh-alert-icon { color: #ff5a7e !important; }

/* Botones dentro de alertas Jevelin (ej: "Ver carrito") */
.sh-alert .button,
.sh-alert a.button {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--hmp-blue) !important;
    border: 1px solid rgba(77,123,255,0.4) !important;
    border-radius: 6px !important;
    padding: 5px 14px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}
.sh-alert .button:hover,
.sh-alert a.button:hover {
    background: rgba(77,123,255,0.1) !important;
    background-color: rgba(77,123,255,0.1) !important;
}

/* Info notice (carrito vacío, mensajes informativos) */
.woocommerce-info {
    background: var(--hmp-surface) !important;
    color: var(--hmp-text) !important;
    border-top: 3px solid var(--hmp-blue) !important;
    border-radius: 0 0 10px 10px !important;
    padding: 14px 20px 14px 52px !important;
    font-size: 14px !important;
    box-shadow: none !important;
}
.woocommerce-info::before {
    color: var(--hmp-blue) !important;
}

/* Success notice (producto añadido al carrito) */
.woocommerce-message {
    background: var(--hmp-surface) !important;
    color: var(--hmp-text) !important;
    border-top: 3px solid #4fffb0 !important;
    border-radius: 0 0 10px 10px !important;
    padding: 14px 20px 14px 52px !important;
    font-size: 14px !important;
    box-shadow: none !important;
}
.woocommerce-message::before {
    color: #4fffb0 !important;
}

/* Error notice */
.woocommerce-error {
    background: var(--hmp-surface) !important;
    border-top: 3px solid #ff5a7e !important;
    border-radius: 0 0 10px 10px !important;
    padding: 14px 20px 14px 52px !important;
    box-shadow: none !important;
}
.woocommerce-error li {
    color: var(--hmp-text) !important;
    font-size: 14px !important;
    background: none !important;
}

/* Botón "View cart" / "Continuar comprando" dentro del notice */
.woocommerce-message .button,
.woocommerce-info .button {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--hmp-blue) !important;
    border: 1px solid rgba(77,123,255,0.4) !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    float: right !important;
    margin-left: 12px !important;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
    background: rgba(77,123,255,0.1) !important;
    background-color: rgba(77,123,255,0.1) !important;
    color: var(--hmp-blue) !important;
}

/* Break out of Jevelin's .container.entry-content wrapper — same fix as novedades */
#hmp-main {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}

.hmp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================================
   NAVEGACIÓN AESTHETIC - ENFOQUE DEFINITIVO (PÍLDORA = MENÚ)
   ============================================================ */

/* 1. Forzar Flexbox en el contenedor principal para centrar */
.sh-header .header-elements-container,
.sh-header .sh-nav-container {
  display: flex !important;
  align-items: center !important;
}

.sh-header .sh-nav-container {
  flex-grow: 1 !important;
  justify-content: center !important;
}

/* Efecto foco en estado normal */
.sh-header .sh-nav > li > a {
  transition: all 0.3s ease !important;
}
.sh-header .sh-nav > li > a:hover {
  color: #fff !important;
  text-shadow: 0 0 10px var(--hmp-lilac), 0 0 20px var(--hmp-blue) !important;
}

/* ============================================================
   ESTADO SCROLLED (LA PÍLDORA FLOTANTE PURA)
   ============================================================ */

/* 2. ELIMINAR DRÁSTICAMENTE TODO LO QUE NO SEA EL MENÚ */
/* Atacamos a los iconos de buscar, carrito, redes y botones extra de Jevelin */
.sh-header.scrolled .header-logo-container,
.sh-header.scrolled .sh-nav-login,
.sh-header.scrolled .sh-nav-cart,
.sh-header.scrolled .sh-nav-search,
.sh-header.scrolled .sh-nav-social,
.sh-header.scrolled .sh-header-mobile-navigation,
.sh-header.scrolled .header-elements-right {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
}


/* 3. HACER LA CABECERA PRINCIPAL INVISIBLE */
/* En lugar de hacer la cabecera oscura, la hacemos transparente para que no moleste */
.sh-header.scrolled,
.sh-sticky-header-active {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  pointer-events: none; /* Para que el fondo transparente no bloquee clics en la web */
}

/* 4. CONVERTIR *SOLO* LA LISTA DE ENLACES EN LA PÍLDORA (Y CENTRARLA A LA FUERZA) */
.sh-header.scrolled .sh-nav {
  background: rgba(13, 13, 28, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;

  border-radius: 100px !important;
  padding: 0 30px !important;

  /* --- LA MAGIA DEL CENTRADO ABSOLUTO --- */
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 15px !important; /* Separación desde el borde superior */
  margin: 0 !important; /* Quitamos márgenes residuales */

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: max-content !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;

  pointer-events: auto;
}

/* Altura perfecta para las letras dentro de la píldora */
.sh-header.scrolled .sh-nav > li > a {
  height: 55px !important;
  line-height: 55px !important;
  padding: 0 20px !important;
}


/* ============================================================
   HERO CAROUSEL
   ============================================================ */

/* Animatable angle for the traveling-light border trace */
@property --trace-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.hmp-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  background: var(--hmp-bg);
  overflow: hidden;
}

/* Corner accent marks — top-left and bottom-right of the frame */
.hmp-hero::before,
.hmp-hero::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 20;
  pointer-events: none;
}
.hmp-hero::before {
  top: 95px;
  left: clamp(20px, 3vw, 48px);
  border-top: 2px solid var(--hmp-blue);
  border-left: 2px solid var(--hmp-blue);
}
.hmp-hero::after {
  bottom: 56px;
  right: clamp(20px, 3vw, 48px);
  border-bottom: 2px solid var(--hmp-blue);
  border-right: 2px solid var(--hmp-blue);
}

/* The frame: inset with animated traveling-light border */
.hmp-hero__slides {
  position: absolute;
  top: 95px;
  left: clamp(20px, 3vw, 48px);
  right: clamp(20px, 3vw, 48px);
  bottom: 56px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--hmp-bg), var(--hmp-bg)),
    conic-gradient(from var(--trace-angle) at 50% 50%,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.10) 65%,
      rgba( 77, 123, 255, 0.60) 74%,
      rgba(155, 111, 239, 0.95) 82%,
      rgba(255, 255, 255, 1.00) 85%,
      rgba(155, 111, 239, 0.95) 88%,
      rgba( 77, 123, 255, 0.60) 96%,
      rgba(255, 255, 255, 0.10) 100%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  overflow: hidden;
  animation: trace-rotate 9s linear infinite;
}

@keyframes trace-rotate {
  to { --trace-angle: 360deg; }
}

.hmp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hmp-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hmp-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
  will-change: transform;
}
.hmp-slide.active .hmp-slide__bg {
  transform: scale(1);
}

/* Rotating starburst — sits between bg and overlay, very subtle */
.hmp-slide__fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba( 77, 123, 255, 0.04) 0deg,
    transparent                4deg,
    transparent               16deg,
    rgba(155, 111, 239, 0.03) 20deg
  );
  animation: fx-spin 120s linear infinite;
  will-change: transform;
}
@keyframes fx-spin {
  to { transform: rotate(360deg); }
}

/* Cinematic overlay — strong bottom darkening for text readability */
.hmp-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to top,    rgba(7,7,14,1.00) 0%, rgba(7,7,14,0.98) 22%, rgba(7,7,14,0.15) 55%, transparent 72%),
    linear-gradient(to bottom, rgba(7,7,14,0.45) 0%, transparent 20%);
}

/* Badge — top-left of the frame */
.hmp-slide__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(7, 7, 14, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(228, 228, 244, 0.85);
  font-family: var(--hmp-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.hmp-slide__badge svg {
  color: var(--hmp-blue);
  flex-shrink: 0;
}

/* Content — centered, anchored to bottom of frame */
.hmp-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px) clamp(32px, 5vh, 52px);
  z-index: 5;
}

.hmp-slide__logo {
  display: block;
  width: clamp(200px, 38vw, 480px);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
}

/* Fallback text name (EVA AMIEVA while no logo) */
.hmp-slide__name {
  font-family: var(--hmp-font-display);
  font-size: clamp(40px, 8.5vw, 116px);
  line-height: 0.9;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
/* Desktop: cuando hay logo, el nombre no se muestra */
.hmp-slide__name--has-logo { display: none; }

.hmp-slide__genre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.hmp-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff !important;
  font-family: var(--hmp-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--hmp-transition), border-color var(--hmp-transition), transform var(--hmp-transition);
}
.hmp-slide__cta:hover {
  background: var(--hmp-gradient);
  border-color: transparent;
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(77, 123, 255, 0.35);
}

/* Navigation arrows — left / right sides of the hero */
.hmp-arrow {
  position: absolute;
  top: calc(50svh + 6px);
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 7, 14, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--hmp-transition), background var(--hmp-transition);
}
.hmp-arrow:hover {
  border-color: var(--hmp-blue);
  background: var(--hmp-blue-dim);
}
.hmp-arrow svg { width: 16px; height: 16px; }
.hmp-arrow--prev { left: 8px; }
.hmp-arrow--next { right: 8px; }

/* Dots */
.hmp-hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hmp-dot {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: width var(--hmp-transition), background var(--hmp-transition);
}
.hmp-dot.active {
  width: 24px;
  background: var(--hmp-gradient);
}

/* Progress bar */
.hmp-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--hmp-gradient);
  width: 0%;
  z-index: 10;
  transition: none;
}
.hmp-hero__progress.running {
  transition: width 6s linear;
}

/* Counter */
.hmp-hero__counter {
  position: absolute;
  bottom: 18px;
  right: clamp(20px, 3vw, 48px);
  font-family: var(--hmp-font-display);
  font-size: 12px;
  color: var(--hmp-muted);
  z-index: 10;
  letter-spacing: 1px;
}
.hmp-hero__counter span { color: var(--hmp-text); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.hmp-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.hmp-section-header {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.hmp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.hmp-heading {
  font-family: var(--hmp-font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  color: var(--hmp-text);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hmp-subheading {
  font-size: 16px;
  color: var(--hmp-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ============================================================
   ARTISTS LIST — editorial name list
   ============================================================ */
.hmp-management {
  background: var(--hmp-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

section[id] {
  scroll-margin-top: 90px;
}

.hmp-alist__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px) clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hmp-alist__header .hmp-heading { margin-bottom: 0; }

.hmp-alist__row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: clamp(120px, 13vw, 175px);
  padding: 0 clamp(24px, 5vw, 60px);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.hmp-alist__row:hover { color: inherit; }

/* Even rows: block goes left, name goes right */
.hmp-alist__row--flip { flex-direction: row-reverse; }

.hmp-alist__name {
  font-family: var(--hmp-font-display);
  font-size: clamp(38px, 6.2vw, 100px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.82);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82);
  transition: background 0.3s ease, -webkit-text-fill-color 0.3s ease;
}
.hmp-alist__row:hover .hmp-alist__name {
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rounded bar — fat pill shape, vertically centered, fills remaining width */
.hmp-alist__block {
  flex: 1;
  height: clamp(40px, 5vw, 68px);
  border-radius: 100px;
  background: rgba(77, 123, 255, 0.14);
  transition: background 0.35s ease;
}
.hmp-alist__row:hover .hmp-alist__block {
  background: linear-gradient(90deg, rgba(77, 123, 255, 0.55) 0%, rgba(155, 111, 239, 0.45) 100%);
}

/* Genre label — hidden on desktop, shown on mobile photo cards */
.hmp-alist__genre {
  display: none;
}

/* Grid wrapper — transparent on desktop */
.hmp-alist__grid {
  display: contents;
}

/* Floating photo preview — fixed, centered horizontally, follows cursor vertically */
.hmp-artist-preview {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 300px;
  pointer-events: none;
  z-index: 500;
  overflow: hidden;
  opacity: 0;
  scale: 0.93;
  transition: opacity 0.28s ease, scale 0.28s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}
.hmp-artist-preview.visible {
  opacity: 1;
  scale: 1;
}
.hmp-artist-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 700px) {
  .hmp-alist__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hmp-artist-preview { width: 160px; height: 200px; }
}

/* ============================================================
   MUSIC PLAYER — Vinyl
   ============================================================ */
.hmp-player-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(106, 116, 244, 0.1) 0%, transparent 70%), var(--hmp-bg);
  border-top: 1px solid rgba(106, 116, 244, 0.2);
  padding: clamp(60px, 8vw, 100px) 0;
}
.hmp-spotify-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.hmp-spotify-header {
  text-align: center;
  margin-bottom: 40px;
}
.hmp-spotify-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(106, 116, 244, 0.25),
    0 0 48px rgba(106, 116, 244, 0.2),
    0 24px 64px rgba(0, 0, 0, 0.6);
}
.hmp-spotify-frame iframe {
  display: block;
  border-radius: 16px;
}

.hmp-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

/* Info block — title, artist, Spotify link */
.hmp-player__info { text-align: center; }

.hmp-player__sp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hmp-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ef5466 !important;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.hmp-player__sp-link:hover { opacity: 1; color: #ef5466 !important; }

.hmp-player__title {
  font-family: var(--hmp-font-display);
  font-size: clamp(20px, 3.2vw, 40px);
  color: var(--hmp-text);
  margin: 0 0 8px;
  line-height: 1.1;
}

.hmp-player__artist {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hmp-muted);
  margin: 0;
}

/* Three-disc stage */
.hmp-player__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* Vinyl disc wrapper */
.hmp-vinyl {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* The physical disc */
.hmp-vinyl__disc {
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    radial-gradient(ellipse at 68% 72%, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
    repeating-radial-gradient(
      circle at center,
      #0b0b16 0px, #0b0b16 1px,
      #17172a 1px, #17172a 2.5px
    );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.85),
    inset 0 0 24px rgba(0, 0, 0, 0.6);
}

/* Orbital rings around the main disc */
.hmp-vinyl--main {
  position: relative;
}
.hmp-vinyl--main::before,
.hmp-vinyl--main::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
  border-style: solid;
  border-color: transparent;
  transform-origin: center;
}
/* Ring 1 — close, slow rotation */
.hmp-vinyl--main::before {
  width:  calc(clamp(200px, 21vw, 268px) + 44px);
  height: calc(clamp(200px, 21vw, 268px) + 44px);
  margin-top:  calc((clamp(200px, 21vw, 268px) + 44px) / -2);
  margin-left: calc((clamp(200px, 21vw, 268px) + 44px) / -2);
  border-width: 1px;
  border-top-color:    rgba(77, 123, 255, 0.55);
  border-right-color:  rgba(155, 111, 239, 0.25);
  border-bottom-color: rgba(77, 123, 255, 0.10);
  border-left-color:   transparent;
  animation: hmp-ring-cw 12s linear infinite;
}
/* Ring 2 — farther, counter-rotation */
.hmp-vinyl--main::after {
  width:  calc(clamp(200px, 21vw, 268px) + 88px);
  height: calc(clamp(200px, 21vw, 268px) + 88px);
  margin-top:  calc((clamp(200px, 21vw, 268px) + 88px) / -2);
  margin-left: calc((clamp(200px, 21vw, 268px) + 88px) / -2);
  border-width: 1px;
  border-top-color:    rgba(155, 111, 239, 0.40);
  border-right-color:  transparent;
  border-bottom-color: rgba(77, 123, 255, 0.20);
  border-left-color:   rgba(155, 111, 239, 0.12);
  animation: hmp-ring-ccw 20s linear infinite;
}

@keyframes hmp-ring-cw  { to { transform: rotate(360deg);  } }
@keyframes hmp-ring-ccw { to { transform: rotate(-360deg); } }

/* Active (center) disc — spins when playing */
.hmp-vinyl--main .hmp-vinyl__disc {
  width: clamp(200px, 21vw, 268px);
  height: clamp(200px, 21vw, 268px);
  animation: hmp-vinyl-spin 3.5s linear infinite;
  animation-play-state: paused;
}
.hmp-vinyl--main .hmp-vinyl__disc.spinning {
  animation-play-state: running;
}

/* Luminous halo ring tight around the disc */
.hmp-vinyl--main .hmp-vinyl__disc::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(77, 123, 255, 0.65);
  box-shadow:
    0 0 10px 3px  rgba(77, 123, 255, 0.50),
    0 0 22px 6px  rgba(155, 111, 239, 0.25),
    inset 0 0 8px 2px rgba(77, 123, 255, 0.15);
  pointer-events: none;
  z-index: 4;
  animation: hmp-halo-pulse 3s ease-in-out infinite;
}

@keyframes hmp-halo-pulse {
  0%, 100% { opacity: 0.50; border-color: rgba( 77, 123, 255, 0.55); }
  50%       { opacity: 1.00; border-color: rgba(155, 111, 239, 0.85); }
}

/* Side discs — smaller, darker, clickable */
.hmp-vinyl--side .hmp-vinyl__disc {
  width: clamp(118px, 13vw, 162px);
  height: clamp(118px, 13vw, 162px);
}
.hmp-vinyl--side {
  opacity: 0.5;
  filter: brightness(0.65);
  cursor: pointer;
  transition: opacity 0.35s, filter 0.35s;
}
.hmp-vinyl--side:hover {
  opacity: 0.75;
  filter: brightness(0.9);
}
.hmp-vinyl--prev { margin-right: clamp(-40px, -4vw, -24px); z-index: 0; }
.hmp-vinyl--next { margin-left:  clamp(-40px, -4vw, -24px); z-index: 0; }
.hmp-vinyl--main { z-index: 1; }

/* Album art — center circle inside the disc */
.hmp-vinyl__art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  z-index: 2;
}
.hmp-vinyl--main .hmp-vinyl__art  { width: 100%; height: 100%; }
.hmp-vinyl--side .hmp-vinyl__art  { width: 100%; height: 100%; }

/* Center hole */
.hmp-vinyl__hole {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5%; height: 5%;
  min-width: 10px; min-height: 10px;
  border-radius: 50%;
  background: var(--hmp-bg);
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes hmp-vinyl-spin {
  to { transform: rotate(360deg); }
}

/* Playback controls */
.hmp-player__controls {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}

.hmp-player__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--hmp-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--hmp-transition), background var(--hmp-transition), color var(--hmp-transition), transform var(--hmp-transition), box-shadow var(--hmp-transition);
}
.hmp-player__btn:hover {
  border-color: var(--hmp-blue);
  background: var(--hmp-blue-dim);
  color: var(--hmp-blue);
}

.hmp-player__btn--play {
  width: 68px;
  height: 68px;
  background: var(--hmp-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(77, 123, 255, 0.35);
}
.hmp-player__btn--play:hover {
  transform: scale(1.08);
  background: var(--hmp-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 36px rgba(77, 123, 255, 0.5);
}

@media (max-width: 600px) {
  .hmp-vinyl--side { display: none; }
}

/* ============================================================
   TOUR SPOTLIGHT — TOVALES
   ============================================================ */
.hmp-tour {
  background: var(--hmp-surface);
  position: relative;
  overflow: hidden;
}
.hmp-tour::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--hmp-lilac-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hmp-tour__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .hmp-tour__inner { grid-template-columns: 1fr; } }

.hmp-tour__img {
  border-radius: var(--hmp-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hmp-tour__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hmp-tour__content { padding: 20px 0; }

.hmp-tour__dates {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hmp-tour__date {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--hmp-surface2);
  border: 1px solid var(--hmp-border);
  border-radius: 8px;
  transition: border-color var(--hmp-transition), background var(--hmp-transition);
}
.hmp-tour__date:hover {
  border-color: var(--hmp-blue);
  background: var(--hmp-blue-dim);
}
.hmp-tour__date-day {
  font-family: var(--hmp-font-display);
  font-size: 22px;
  color: var(--hmp-blue);
  min-width: 48px;
}
.hmp-tour__date-info { flex: 1; }
.hmp-tour__date-city {
  font-size: 14px;
  font-weight: 600;
  color: var(--hmp-text);
}
.hmp-tour__date-venue {
  font-size: 12px;
  color: var(--hmp-muted);
  margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.hmp-services {
  background: var(--hmp-bg);
  position: relative;
}
.hmp-services::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--hmp-blue-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hmp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hmp-services-grid--4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .hmp-services-grid,
  .hmp-services-grid--4 { grid-template-columns: 1fr; }
}

.hmp-service-card {
  background: var(--hmp-surface);
  border: 1px solid var(--hmp-border);
  border-radius: var(--hmp-radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--hmp-transition), transform var(--hmp-transition);
  cursor: default;
}
.hmp-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hmp-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--hmp-transition);
}
.hmp-service-card:hover {
  border-color: rgba(77, 123, 255, 0.3);
  transform: translateY(-4px);
}
.hmp-service-card:hover::after { transform: scaleX(1); }

.hmp-service-card__icon {
  width: 48px; height: 48px;
  background: var(--hmp-gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hmp-service-card__icon svg { width: 24px; height: 24px; color: #fff; }

.hmp-service-card__num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--hmp-font-display);
  font-size: 48px;
  color: var(--hmp-border);
  line-height: 1;
}

.hmp-service-card__title {
  font-family: var(--hmp-font-display);
  font-size: 22px;
  color: var(--hmp-text);
  margin: 0 0 12px;
}
.hmp-service-card__desc {
  font-size: 14px;
  color: var(--hmp-muted);
  line-height: 1.7;
}
.hmp-service-card__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hmp-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--hmp-border);
  color: var(--hmp-muted);
}

/* ============================================================
   DISTRIBUTION SECTION
   ============================================================ */
.hmp-distribution {
  background: var(--hmp-surface);
  text-align: center;
}
.hmp-distribution__coming {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hmp-surface2);
  border: 1px solid var(--hmp-border);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--hmp-muted);
  margin-top: 24px;
}
.hmp-distribution__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hmp-blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   STATEMENT — gran texto de impacto
   ============================================================ */
.hmp-statement {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}
.hmp-statement__inner { position: relative; }
.hmp-statement__eyebrow {
  display: block;
  font-family: var(--hmp-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--hmp-muted);
  margin-bottom: 28px;
}
.hmp-statement__title {
  font-family: var(--hmp-font-display);
  font-size: clamp(58px, 11vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--hmp-text);
  margin: 0;
}
.hmp-statement__grad {
  display: block;
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hmp-statement__sub {
  display: block;
  margin: 36px auto 0;
  max-width: 420px;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--hmp-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.hmp-testimonials { background: var(--hmp-bg); }

.hmp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .hmp-testimonials__grid { grid-template-columns: 1fr; } }

.hmp-testimonial {
  background: var(--hmp-surface);
  border: 1px solid var(--hmp-border);
  border-radius: var(--hmp-radius);
  padding: clamp(28px, 3vw, 40px);
  margin: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.hmp-testimonial:hover { border-color: rgba(77,123,255,0.35); }

.hmp-testimonial__mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
  margin-bottom: 16px;
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}
.hmp-testimonial__text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
}
.hmp-testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--hmp-border);
}
.hmp-testimonial__name {
  font-family: var(--hmp-font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hmp-text);
}
.hmp-testimonial__role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmp-muted);
}

/* ============================================================
   STORE CTA BAND
   ============================================================ */
.hmp-store {
  background: linear-gradient(135deg, rgba(77,123,255,0.1) 0%, rgba(155,111,239,0.1) 100%);
  border-top: 1px solid var(--hmp-border);
  border-bottom: 1px solid var(--hmp-border);
  padding: 60px 0;
}
.hmp-store__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hmp-store__title {
  font-family: var(--hmp-font-display);
  font-size: clamp(24px, 4vw, 40px);
  color: var(--hmp-text);
  margin: 0;
}
.hmp-store__desc {
  font-size: 15px;
  color: var(--hmp-muted);
  margin-top: 6px;
}
.hmp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--hmp-font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--hmp-transition), transform var(--hmp-transition), box-shadow var(--hmp-transition);
  white-space: nowrap;
}
.hmp-btn--primary {
  background: var(--hmp-gradient);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(77,123,255,0.3);
}
.hmp-btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(77,123,255,0.45);
  color: #fff !important;
}
.hmp-btn--outline {
  border: 1px solid var(--hmp-border);
  color: var(--hmp-text) !important;
  background: transparent;
}
.hmp-btn--outline:hover {
  border-color: var(--hmp-blue);
  background: var(--hmp-blue-dim);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER SOCIAL STRIP
   ============================================================ */
.hmp-social-strip {
  background: var(--hmp-surface);
  border-top: 1px solid var(--hmp-border);
  padding: 32px 0;
}
.hmp-social-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hmp-social-strip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hmp-muted);
}
.hmp-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hmp-social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--hmp-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hmp-muted) !important;
  transition: border-color var(--hmp-transition), color var(--hmp-transition), background var(--hmp-transition);
}
.hmp-social-link:hover {
  border-color: var(--hmp-blue);
  color: var(--hmp-blue) !important;
  background: var(--hmp-blue-dim);
}
.hmp-social-link svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hmp-hero__arrows { display: none; }
  .hmp-hero__contact { display: none; }
  .hmp-store__inner { flex-direction: column; text-align: center; }
  .hmp-social-strip__inner { justify-content: center; text-align: center; }

  /* Hero — sin marco en móvil: imagen a ancho completo */
  .hmp-hero {
    height: 62dvh;
    min-height: 380px;
  }

  /* Frame: sin borde animado, imagen edge-to-edge bajo la nav */
  .hmp-hero__slides {
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
    background-image: none !important;
    background-clip: unset;
    animation: none;
    border-radius: 0;
  }

  /* Imagen: cover desde arriba para priorizar caras */
  .hmp-slide__bg {
    background-size: cover !important;
    background-position: center top !important;
  }

  /* Móvil: ocultar logo flotante, mostrar nombre en texto */
  .hmp-slide__logo { display: none !important; }
  .hmp-slide__name--has-logo {
    display: block !important;
    font-size: clamp(26px, 8vw, 44px);
  }

  /* Ocultar esquinas decorativas — no hay marco */
  .hmp-hero::before,
  .hmp-hero::after { display: none; }

  /* Badge — pegado al borde izquierdo */
  .hmp-slide__badge {
    top: 10px;
    left: 12px;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 5px 10px;
  }

  /* Contenido del slide */
  .hmp-slide__content {
    padding: 0 20px 26px;
    max-width: 100%;
  }
  .hmp-slide__name {
    font-size: clamp(30px, 9vw, 48px);
  }
  .hmp-slide__genre {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .hmp-slide__logo {
    width: clamp(130px, 52vw, 240px);
    max-height: 80px;
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmp-slide,
  .hmp-hero__progress,
  .hmp-artist-card__img { transition: none !important; }
  .hmp-distribution__dot { animation: none; }
}

/* ============================================================
   LEGAL BAR (child theme footer)
   ============================================================ */
.hmp-footer {
  background: #090a0d;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hmp-footer__social-bar {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.hmp-footer__social-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hmp-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.hmp-footer__social-links a:hover,
.hmp-footer__social-links a:focus-visible {
  color: #fff;
  background: rgba(106,116,244,0.15);
  border-color: rgba(106,116,244,0.4);
  transform: translateY(-2px);
  outline: none;
}
.hmp-legal-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  font-family: var(--hmp-font-body, 'Barlow', sans-serif);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
}
.hmp-legal-bar__copy  { margin: 0; }
.hmp-legal-bar__dev   { margin: 0; font-style: normal; }
.hmp-legal-bar__contact { margin: 0; font-style: normal; }
.hmp-legal-bar__links { display: flex; align-items: center; gap: 8px; }
.hmp-legal-bar__inner a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.hmp-legal-bar__inner a:hover,
.hmp-legal-bar__inner a:focus-visible { color: rgba(255,255,255,0.85); text-decoration: underline; }

/* Hide the Jevelin theme footer — belt-and-suspenders in case get_footer()
   still outputs something on non-front-page templates */
.sh-footer,
.sh-footer-template { display: none !important; }

@media (max-width: 600px) {
  .hmp-legal-bar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

/* ============================================================
   HMP SEARCH OVERLAY
   ============================================================ */

/* Ocultar el panel original de Jevelin */
#header-search { display: none !important; }

/* Overlay base */
#hmp-search {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#hmp-search.active {
  opacity: 1;
  pointer-events: all;
}

/* Backdrop */
.hmp-search__bd {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 14, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Floating particles */
.hmp-search__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hmp-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d7bff, #9b6fef);
  filter: blur(1px);
  animation: hmp-float linear infinite;
}
@keyframes hmp-float {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(14px,-20px) scale(1.3); }
  66%  { transform: translate(-12px,12px) scale(0.7); }
  100% { transform: translate(0,0) scale(1); }
}

/* Centered content */
.hmp-search__wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: translateY(24px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#hmp-search.active .hmp-search__wrap {
  transform: translateY(0);
}

/* Eyebrow label */
.hmp-search__label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(200,200,220,0.35);
  text-transform: uppercase;
  margin: 0;
}

/* Gradient-border wrapper */
.hmp-search__bar-outer {
  width: 300px;
  border-radius: 52px;
  padding: 2px;
  background: rgba(255,255,255,0.1);
  transition: width 0.45s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.hmp-search__bar-outer.focused {
  width: 100%;
  background: linear-gradient(135deg, #4d7bff 0%, #9b6fef 100%);
  box-shadow: 0 0 32px rgba(77,123,255,0.22), 0 20px 40px rgba(0,0,0,0.5);
}

/* Inner bar */
.hmp-search__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0c0c1a;
  border-radius: 50px;
  padding: 0 8px 0 18px;
  height: 56px;
}

.hmp-search__icon {
  flex-shrink: 0;
  color: rgba(200,200,220,0.4);
  transition: color 0.2s ease;
}
.hmp-search__bar-outer.focused .hmp-search__icon {
  color: #7a9fff;
}

.hmp-search__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e8e8f2;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.02em;
  min-width: 0;
}
.hmp-search__input::placeholder { color: rgba(200,200,220,0.25); }
.hmp-search__input::-webkit-search-decoration,
.hmp-search__input::-webkit-search-cancel-button { display: none; }

/* Submit button — aparece al hacer focus */
.hmp-search__btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #4d7bff, #9b6fef);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.15s ease;
}
.hmp-search__bar-outer.focused .hmp-search__btn {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}
.hmp-search__btn:hover { filter: brightness(1.15); }
.hmp-search__btn:active { filter: brightness(0.95); }

/* Suggestions dropdown */
.hmp-search__suggestions {
  width: 100%;
  background: rgba(10, 10, 22, 0.97);
  border: 1px solid rgba(77,123,255,0.18);
  border-radius: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.hmp-search__suggestions.visible {
  max-height: 320px;
  opacity: 1;
}

.hmp-sugg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: hmp-sugg-in 0.22s ease both;
  transition: background 0.15s ease;
}
.hmp-sugg-item:last-child { border-bottom: none; }
.hmp-sugg-item:hover,
.hmp-sugg-item.selected { background: rgba(77,123,255,0.11); }

@keyframes hmp-sugg-in {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hmp-sugg-icon { flex-shrink: 0; color: rgba(77,123,255,0.55); }
.hmp-sugg-title {
  flex: 1;
  color: rgba(220,220,238,0.88);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hmp-sugg-title mark {
  background: none;
  color: #7a9fff;
  font-weight: 600;
}
.hmp-sugg-type {
  flex-shrink: 0;
  font-size: 10px;
  color: rgba(155,111,239,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Close button */
.hmp-search__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(200,200,220,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}
.hmp-search__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: rotate(90deg);
}
.hmp-search__close:focus-visible {
  outline: 2px solid #4d7bff;
  outline-offset: 2px;
}

/* Keyboard hint */
.hmp-search__hint {
  font-size: 12px;
  color: rgba(200,200,220,0.2);
  letter-spacing: 0.04em;
  margin: 0;
}
.hmp-search__hint kbd {
  font-family: inherit;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 11px;
  color: rgba(200,200,220,0.5);
}

/* Mobile */
@media (max-width: 600px) {
  .hmp-search__bar-outer,
  .hmp-search__bar-outer.focused { width: 100%; }
  .hmp-search__btn { padding: 9px 14px; }
}

/* ============================================================
   SHUTTER TEXT — "Haz sonar tu nombre"
   ============================================================ */

/* El h2 se convierte en columna flex cuando el JS lo procesa */
.hmp-st--shutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Cada línea: fila flex de caracteres */
.hmp-st-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

/* Espacio entre palabras */
.hmp-st-space {
  display: inline-block;
  width: 0.28em;
}

/* Wrapper por carácter — clipping de los slices */
.hmp-st-c {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Carácter base — arranca invisible */
.hmp-st-c__base {
  display: block;
  opacity: 0;
  filter: blur(9px);
  animation: hmp-st-reveal 0.85s cubic-bezier(0.22,1,0.36,1) both;
  animation-play-state: paused;
}
.hmp-st--active .hmp-st-c__base {
  animation-play-state: running;
}

/* Variante degradado — solo en __base, no en slices */
.hmp-st-c--grad .hmp-st-c__base {
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes hmp-st-reveal {
  from { opacity: 0; filter: blur(9px); }
  to   { opacity: 1; filter: blur(0); }
}

/* Slices comunes */
.hmp-st-c__slice {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  opacity: 0;
  animation-play-state: paused;
  animation-duration: 0.62s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}
.hmp-st--active .hmp-st-c__slice {
  animation-play-state: running;
}

/* Franja superior 0–35% → sweep derecha */
.hmp-st-c__s0 {
  color: var(--hmp-blue);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation-name: hmp-sh-r;
}
/* Franja media 35–65% → sweep izquierda */
.hmp-st-c__s1 {
  color: var(--hmp-lilac);
  clip-path: polygon(0 35%, 100% 35%, 100% 65%, 0 65%);
  animation-name: hmp-sh-l;
}
/* Franja inferior 65–100% → sweep derecha */
.hmp-st-c__s2 {
  color: var(--hmp-blue);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation-name: hmp-sh-r;
}

@keyframes hmp-sh-r {
  0%   { transform: translateX(-115%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(115%); opacity: 0; }
}
@keyframes hmp-sh-l {
  0%   { transform: translateX(115%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(-115%); opacity: 0; }
}

/* Accesibilidad: sin animaciones */
@media (prefers-reduced-motion: reduce) {
  .hmp-st-c__base  { animation: none; opacity: 1; filter: none; }
  .hmp-st-c__slice { display: none; }
}

/* ============================================================
   SERVICES — glow upgrade
   ============================================================ */

/* Quitar el ::before estático anterior */
.hmp-services::before { display: none; }

/* Spotlight de cursor — overlay sobre toda la grid */
.hmp-services {
  --sx: 50%;
  --sy: 50%;
}
.hmp-services__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px circle at var(--sx) var(--sy),
    rgba(77,123,255,0.055) 0%, transparent 65%);
  transition: background 0.12s ease;
  z-index: 0;
}
.hmp-services .hmp-container { position: relative; z-index: 1; }

/* Card glow en hover — más potente */
.hmp-service-card:hover {
  border-color: rgba(77,123,255,0.45);
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(77,123,255,0.25),
    0 8px 32px rgba(77,123,255,0.14),
    0 24px 64px rgba(77,123,255,0.07);
}

/* Ícono: glow pulsante en hover */
.hmp-service-card:hover .hmp-service-card__icon {
  box-shadow:
    0 0 0 6px rgba(77,123,255,0.12),
    0 0 24px rgba(77,123,255,0.45),
    0 0 48px rgba(155,111,239,0.2);
  transition: box-shadow 0.35s ease;
}

/* Número decorativo: se ilumina levemente con hover */
.hmp-service-card:hover .hmp-service-card__num {
  color: rgba(77,123,255,0.18);
  transition: color 0.35s ease;
}

/* ============================================================
   TESTIMONIALS — rediseño
   ============================================================ */

/* Fondo de sección con orbes ambientales */
.hmp-testimonials {
  position: relative;
  overflow: hidden;
}
.hmp-testimonials::before,
.hmp-testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hmp-testimonials::before {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: rgba(77,123,255,0.06);
}
.hmp-testimonials::after {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: rgba(155,111,239,0.07);
}

/* Estrellas — CSS puro, sin HTML extra */
.hmp-testimonial::before {
  content: "★★★★★";
  display: block;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--hmp-blue);
  margin-bottom: 18px;
  opacity: 0.9;
}

/* Spotlight interior en hover */
.hmp-testimonial::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 0%, rgba(77,123,255,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hmp-testimonial:hover::after { opacity: 1; }

/* Glow en border al hover */
.hmp-testimonial:hover {
  border-color: rgba(77,123,255,0.4);
  box-shadow:
    0 0 0 1px rgba(77,123,255,0.18),
    0 12px 40px rgba(77,123,255,0.1);
  transform: translateY(-3px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* Comilla — más grande y dramática */
.hmp-testimonial__mark {
  font-size: 100px;
  line-height: 0.6;
  margin-bottom: 12px;
  opacity: 0.7;
}

/* Animación de entrada escalonada */
.hmp-testimonial {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              border-color 0.3s, box-shadow 0.3s;
}
.hmp-testimonial.hmp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hmp-testimonial:nth-child(2) { transition-delay: 0.12s; }
.hmp-testimonial:nth-child(3) { transition-delay: 0.24s; }

/* Score resumen encima de la grid */
.hmp-testimonials__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hmp-testimonials__score-stars {
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--hmp-blue);
}
.hmp-testimonials__score-label {
  font-size: 13px;
  color: var(--hmp-muted);
  letter-spacing: 0.08em;
}

/* ============================================================
   PULL QUOTE — opiniones editorial
   ============================================================ */

/* Anular estilos de tarjeta previos que ya no aplican */
.hmp-testimonials::before {
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77,123,255,0.04) 0%, transparent 65%);
  filter: blur(60px);
}
.hmp-testimonials::after { display: none; }

/* Wrapper */
.hmp-pq {
  max-width: 780px;
  margin: clamp(40px, 5vw, 64px) auto 0;
}

/* Track: grid-stack — todos ocupan la misma celda */
.hmp-pq__track {
  display: grid;
}

/* Cada item apilado */
.hmp-pq__item {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 44px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
  user-select: none;
}
.hmp-pq__item--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  user-select: auto;
}

/* Estrellas */
.hmp-pq__stars {
  font-size: 15px;
  letter-spacing: 5px;
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  display: block;
}

/* Blockquote — reset Jevelin's blockquote:before icon and indent */
.hmp-pq__quote {
  margin: 0;
  padding: 0;
  border-left: none;
}
.hmp-pq__quote::before {
  display: none !important;
}

/* Texto de la cita */
.hmp-pq__text {
  font-size: clamp(19px, 2.8vw, 29px);
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  color: rgba(228, 228, 244, 0.92);
  margin: 0 0 36px;
  position: relative;
}
/* Comilla decorativa de fondo */
.hmp-pq__text::before {
  content: '\201C';
  position: absolute;
  top: -0.25em;
  left: -0.2em;
  font-size: 5em;
  line-height: 1;
  font-style: normal;
  font-family: Georgia, serif;
  color: rgba(77,123,255,0.1);
  pointer-events: none;
  user-select: none;
}

/* Autor */
.hmp-pq__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 24px;
  position: relative;
}
/* Línea separadora con degradado */
.hmp-pq__author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: var(--hmp-gradient);
}

.hmp-pq__name {
  font-family: var(--hmp-font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--hmp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: normal;
}

.hmp-pq__role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hmp-muted);
}

/* Dots de navegación */
.hmp-pq__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.hmp-pq__dot {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.hmp-pq__dot--active {
  width: 28px;
  background: var(--hmp-blue);
}
.hmp-pq__dot:hover:not(.hmp-pq__dot--active) {
  background: rgba(255,255,255,0.45);
}
.hmp-pq__dot:focus-visible {
  outline: 2px solid var(--hmp-blue);
  outline-offset: 3px;
}


/* ============================================================
   MOBILE HEADER — Jevelin child override
   ============================================================ */

/* ── Barra superior móvil ────────────────────────────────────────── */
#header-mobile {
  background: transparent !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
}
.sh-header-mobile-navigation {
  background: transparent !important;
}

/* ── Logo en móvil — ocultar imagen original, mostrar wordmark ───── */
#header-mobile .header-logo-container .sh-logo-image,
#header-mobile .header-logo-container img:not(.hmp-logo-svg) {
  display: none !important;
}
#header-mobile .header-logo-container a::before {
  content: '';
  display: block;
  width: 130px;
  height: 74px;
  background: url('/wp-content/themes/jevelin-child/assets/logo-header.png') no-repeat left center;
  background-size: contain;
}
#header-mobile .header-logo-container a::after {
  content: none;
}

/* ── Hamburguesa (3 barras) — barras blancas ─────────────────────── */
.sh-nav-mobile-toggle,
.sh-nav-mobile-toggle span,
#header-mobile .sh-nav-mobile-toggle {
  color: #fff !important;
}
.sh-nav-mobile-toggle span {
  background-color: rgba(186,215,247,0.85) !important;
}
/* Icono hamburguesa si usa icon fonts */
#header-mobile .sh-nav-mobile-toggle i,
#header-mobile .sh-nav-mobile-toggle svg {
  color: #fff !important;
  fill: #fff !important;
}

/* Carrito en móvil */
#header-mobile .sh-nav-cart > a {
  color: rgba(186,215,247,0.8) !important;
}
#header-mobile .sh-nav-cart-count {
  background: var(--hmp-blue, #4d7bff) !important;
  color: #fff !important;
}

/* ── Menú desplegable (se abre al pulsar hamburguesa) ────────────── */

/* Cuando el menú está abierto, dar fondo sólido al header entero */
#header-mobile:has(.c-hamburger.is-active) {
  background: #07070e !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

nav.sh-header-mobile-dropdown,
.sh-header-mobile-dropdown {
  background: #07070e !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 4px 0 32px !important;
}

/* ── Links de navegación en el dropdown ──────────────────────────── */
.sh-nav-mobile > li > a,
.sh-nav-mobile li a {
  color: rgba(255, 255, 255, 0.70) !important;
  font-family: var(--hmp-font-body, 'Barlow', sans-serif) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 13px 24px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  transition: color 0.2s, padding-left 0.2s !important;
}
.sh-nav-mobile li a:hover,
.sh-nav-mobile li a:focus-visible {
  color: #fff !important;
  padding-left: 32px !important;
  background: transparent !important;
}
.sh-nav-mobile li.current-menu-item > a,
.sh-nav-mobile li.current_page_item > a,
.sh-nav-mobile li.current-menu-ancestor > a {
  color: var(--hmp-lilac, #a78bfa) !important;
}

/* Flechas de submenú */
.sh-nav-mobile .sh-nav-mobile-sub-toggle {
  color: rgba(255,255,255,0.25) !important;
  border-left: 1px solid rgba(255,255,255,0.06) !important;
}
.sh-nav-mobile .sh-nav-mobile-sub-toggle:hover {
  color: #fff !important;
  background: transparent !important;
}

/* Submenús */
.sh-nav-mobile .sub-menu {
  background: transparent !important;
  border-left: 2px solid rgba(167,139,250,0.3) !important;
}

/* ── Buscador en el dropdown ─────────────────────────────────────── */
.header-mobile-form-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.header-mobile-form-input::placeholder {
  color: rgba(255,255,255,0.25) !important;
}
.header-mobile-form-submit {
  color: rgba(255,255,255,0.4) !important;
}
.header-mobile-form-submit:hover {
  color: #fff !important;
}

/* ── Redes sociales en dropdown móvil ───────────────────────────── */
.header-mobile-social-media a {
  color: rgba(255,255,255,0.35) !important;
  transition: color 0.2s !important;
}
.header-mobile-social-media a:hover {
  color: #fff !important;
}

/* ── Ajuste body para que el contenido no quede bajo el nav fijo ── */
@media (max-width: 1024px) {
  body {
    padding-top: 70px !important;
  }
  /* El hero de novedades y home no necesitan el padding del body */
  body.page #hmp-nov-main,
  body.home #hmp-hero-section,
  body.page .hmp-orig-hero,
  body.home .hmp-hero {
    margin-top: -70px;
  }
}

/* ── MOBILE HEADER FIXES v2 ─────────────────────────────────────── */

/* Altura de la barra — espacio para el logo */
#header-mobile .sh-header-mobile-navigation .container {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  overflow: visible !important;
}
#header-mobile .sh-table {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
#header-mobile .sh-table-cell {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  vertical-align: middle !important;
  overflow: visible !important;
}
#header-mobile .sh-header-mobile-navigation {
  overflow: visible !important;
}
#header-mobile .header-logo-container,
#header-mobile .header-logo-container a {
  overflow: visible !important;
}

/* Logo: forzar el anchor como flex vertical para que ::before/::after funcionen */
#header-mobile .header-logo-container {
  display: flex !important;
  align-items: center !important;
}
#header-mobile .header-logo-container a {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-decoration: none !important;
  min-width: 80px !important;
  line-height: 1 !important;
  font-size: 0 !important; /* ocultar texto heredado si existe */
}
#header-mobile .header-logo-container a::before {
  content: '' !important;
  display: block !important;
  width: 130px !important;
  height: 74px !important;
  background: url('/wp-content/themes/jevelin-child/assets/logo-header.png') no-repeat left center !important;
  background-size: contain !important;
}
#header-mobile .header-logo-container a::after {
  content: none !important;
  display: none !important;
}

/* Search: quitar el botón cuadrado horrible y hacer el campo limpio */
.header-mobile-form-submit {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 0 !important;
  padding: 0 8px !important;
  color: rgba(186,215,247,0.60) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.header-mobile-form-submit:hover {
  background: transparent !important;
  color: #fff !important;
}
/* Asegurarnos de que el wrapper del buscador tenga borde, no el botón */
.header-mobile-form {
  display: flex !important;
  align-items: center !important;
  background: rgba(77,123,255,0.08) !important;
  border: 1px solid rgba(77,123,255,0.18) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
.header-mobile-form-input {
  background: transparent !important;
  border: none !important;
  flex: 1 !important;
  padding: 10px 14px !important;
}

/* ── MOBILE HEADER FIXES v3 — selectores corregidos ─────────────── */

/* Altura de la barra */
#header-mobile .sh-header-mobile-navigation { min-height: 0 !important; }
#header-mobile .sh-header-mobile-navigation .container { padding-top: 4px !important; padding-bottom: 4px !important; }
#header-mobile .sh-table { height: auto !important; min-height: 76px !important; }

/* Ocultar las imágenes del logo */
#header-mobile .header-logo-container .sh-table-cell,
#header-mobile .header-logo-container img,
#header-mobile .header-logo-container .sh-table-cell img {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}

/* El ANCHOR es .header-logo-container — los pseudo-elementos van directamente en él */
#header-mobile .header-logo-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  text-decoration: none !important;
  min-width: 100px !important;
  gap: 0 !important;
}
#header-mobile .header-logo-container::before {
  content: '' !important;
  display: block !important;
  width: 130px !important;
  height: 74px !important;
  background: url('/wp-content/themes/jevelin-child/assets/logo-header.png') no-repeat left center !important;
  background-size: contain !important;
}
#header-mobile .header-logo-container::after {
  content: none !important;
  display: none !important;
}

/* Botón de búsqueda — reset del cuadrado lila */
.header-mobile-form-submit,
button.header-mobile-form-submit {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 10px !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  color: rgba(186,215,247,0.6) !important;
  font-size: 16px !important;
}

/* ── SEARCH MÓVIL — diseño editorial, sin caja ───────────────────── */
.header-mobile-search {
  padding: 4px 24px 28px !important;
  margin-top: 4px !important;
}
/* Quitar el fondo/caja del form y dejarlo solo con línea inferior */
.header-mobile-form {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(77,123,255,0.22) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  transition: border-color 0.25s ease !important;
}
.header-mobile-form:focus-within {
  border-bottom-color: rgba(77,123,255,0.65) !important;
}
.header-mobile-form-input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 10px 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  font-style: italic !important;
  letter-spacing: 0.08em !important;
  color: rgba(186,215,247,0.55) !important;
  flex: 1 !important;
  width: 100% !important;
}
.header-mobile-form-input::placeholder {
  color: rgba(186,215,247,0.30) !important;
}
.header-mobile-form-input:focus {
  color: rgba(186,215,247,0.85) !important;
}


/* ==========================================================================
   TIENDA — CUSTOM SHOP
   ========================================================================== */

/* Page wrapper — replaces Jevelin's .woocomerce-styling */
#hmp-shop-page {
    background: transparent;
    min-height: 100vh;
}
/* El product grid necesita fondo sólido para no mostrar el gradient del body */
.hmp-shop-grid-wrap,
.hmp-shop-filters {
    background: var(--hmp-bg);
}
#hmp-shop-page .hmp-shop-notices {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

/* ── HERO ──────────────────────────────────────────── */
.hmp-shop-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(120px, 16vw, 180px) clamp(20px, 5vw, 80px) clamp(72px, 9vw, 110px);
    min-height: 480px;
    background: var(--hmp-bg); /* fallback si WebGL no está disponible */
}
.hmp-shop-hero__glow { display: none; }

/* Canvas WebGL shader */
#hmp-shader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Fade superior: difumina el corte entre nav y shader sin tocar el nav */
.hmp-shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--hmp-bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Fade inferior: transición suave hacia el filter bar */
.hmp-shop-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--hmp-bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ── HERO INNER — entra con CSS animation ────────── */
.hmp-shop-hero__inner {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(26px);
    animation: hmp-hero-reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@keyframes hmp-hero-reveal {
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .hmp-shop-hero__inner {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
.hmp-shop-eyebrow {
    font-family: var(--hmp-font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.40em;
    text-transform: uppercase;
    color: rgba(77, 123, 255, 0.65);
    margin: 0 0 22px;
}
.hmp-shop-title {
    font-family: var(--hmp-font-display);
    font-size: clamp(56px, 9vw, 108px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--hmp-text);
    margin: 0 0 22px;
    font-style: normal;
}
.hmp-shop-title__grad {
    background: var(--hmp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
.hmp-shop-tagline {
    font-size: clamp(14px, 1.4vw, 17px);
    color: rgba(228, 228, 244, 0.42);
    margin: 0 0 32px;
    font-family: var(--hmp-font-body);
    font-weight: 300;
    letter-spacing: 0.01em;
}
.hmp-shop-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--hmp-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(228, 228, 244, 0.22);
}
.hmp-shop-stats-sep {
    color: rgba(77, 123, 255, 0.35);
}

/* ── FILTER BAR ──────────────────────────────────────── */
.hmp-shop-filters {
    position: sticky;
    top: 68px;
    z-index: 90;
    background: rgba(7, 7, 14, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.hmp-shop-filters__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 60px;
}
.hmp-shop-pills {
    display: flex;
    gap: 6px;
}
.hmp-shop-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hmp-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: transparent;
    color: rgba(228, 228, 244, 0.45);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hmp-shop-pill:hover {
    border-color: rgba(77, 123, 255, 0.38);
    color: var(--hmp-text);
    background: rgba(77, 123, 255, 0.07);
}
.hmp-shop-pill--active {
    background: var(--hmp-gradient);
    border-color: transparent;
    color: #fff;
}
.hmp-shop-pill--active:hover {
    background: var(--hmp-gradient);
    border-color: transparent;
    color: #fff;
}
.hmp-shop-pill__count {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.65;
}
.hmp-shop-pill--active .hmp-shop-pill__count {
    opacity: 0.80;
}
.hmp-shop-count {
    font-family: var(--hmp-font-body);
    font-size: 11px;
    color: rgba(228, 228, 244, 0.25);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

/* ── GRID ────────────────────────────────────────────── */
.hmp-shop-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 72px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 120px);
    position: relative;
}

/* ── A: Spotlight del cursor sobre el grid ───────── */
.hmp-shop-grid-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(
        350px circle at var(--grid-x, -9999px) var(--grid-y, -9999px),
        rgba(77, 123, 255, 0.055) 0%,
        rgba(155, 111, 239, 0.025) 50%,
        transparent 70%
    );
}
.hmp-shop-grid-wrap ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* WC/Jevelin clearfix ::before/::after en ul.products participan como grid items — neutralizarlos */
.hmp-shop-grid-wrap ul.products::before,
.hmp-shop-grid-wrap ul.products::after {
    content: none !important;
    display: none !important;
}

/* ── CARD ────────────────────────────────────────────── */
@keyframes hmp-card-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hmp-shop-grid-wrap li.product.hmp-shop-card {
    width: auto !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    background: var(--hmp-surface) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    overflow: hidden !important;
    position: relative !important;
    cursor: pointer !important;
    transition: box-shadow 0.30s ease, border-color 0.30s ease, opacity 0.35s ease !important;
    animation: hmp-card-in 0.5s ease both;
}

/* ── B: Borde gradiente en hover ─────────────────── */
.hmp-shop-grid-wrap li.product.hmp-shop-card:hover {
    background:
        linear-gradient(var(--hmp-surface), var(--hmp-surface)) padding-box,
        linear-gradient(135deg, #4d7bff 0%, #9b6fef 100%) border-box !important;
    border: 1.5px solid transparent !important;
    box-shadow:
        0 0 24px rgba(77, 123, 255, 0.20),
        0 0 48px rgba(155, 111, 239, 0.08) !important;
}

/* ── B: Atenuar — gestionado por JS (clase añadida) ── */
.hmp-shop-card.hmp-card-dim {
    opacity: 0.55 !important;
}

/* Artwork */
.hmp-shop-card-art {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.hmp-shop-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
}
.hmp-shop-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.48s ease !important;
}
li.hmp-shop-card:hover .hmp-shop-card-img {
    transform: scale(1.07) !important;
}

/* Hover overlay */
.hmp-shop-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 7, 14, 0.90) 0%,
        rgba(7, 7, 14, 0.55) 40%,
        rgba(7, 7, 14, 0.00) 70%
    );
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.26s ease;
}
li.hmp-shop-card:hover .hmp-shop-card-overlay {
    opacity: 1;
}
.hmp-shop-card-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-family: var(--hmp-font-body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    background: var(--hmp-gradient) !important;
    padding: 11px 16px !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transform: translateY(10px);
    transition: transform 0.26s ease, opacity 0.26s ease !important;
    opacity: 0;
}
li.hmp-shop-card:hover .hmp-shop-card-btn {
    transform: translateY(0);
    opacity: 1;
}
.hmp-shop-card-btn:hover,
.hmp-shop-card-btn:focus {
    opacity: 0.88 !important;
}

/* Sale badge */
.hmp-shop-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--hmp-gradient);
    color: #fff;
    font-family: var(--hmp-font-body);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    pointer-events: none;
}

/* Card info */
.hmp-shop-card-info {
    padding: 16px 18px 20px;
}
.hmp-shop-card-name-link {
    text-decoration: none !important;
    display: block;
}
.hmp-shop-card-name {
    font-family: var(--hmp-font-display) !important;
    font-size: 13.5px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em !important;
    color: var(--hmp-text) !important;
    margin: 0 0 8px !important;
    transition: color 0.18s ease;
}
.hmp-shop-card-name-link:hover .hmp-shop-card-name {
    color: var(--hmp-blue) !important;
}
.hmp-shop-card-price {
    font-family: var(--hmp-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--hmp-blue);
}
.hmp-shop-card-price del {
    font-weight: 400;
    color: rgba(228, 228, 244, 0.28);
    margin-right: 6px;
    font-size: 12px;
}
.hmp-shop-card-price ins {
    text-decoration: none;
    color: var(--hmp-lilac);
}

/* Filter hidden state */
li.product.hmp-shop--hidden {
    display: none !important;
}

/* Empty state */
.hmp-shop-empty {
    text-align: center;
    color: rgba(228, 228, 244, 0.35);
    font-family: var(--hmp-font-body);
    padding: 80px 0;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .hmp-shop-grid-wrap ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 760px) {
    .hmp-shop-grid-wrap ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .hmp-shop-filters {
        top: 60px;
    }
}
@media (max-width: 420px) {
    .hmp-shop-grid-wrap ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }
    .hmp-shop-grid-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
    .hmp-shop-card-info {
        padding: 6px 8px 10px;
    }
    .hmp-shop-card-name {
        font-size: 9.5px !important;
    }
    .hmp-shop-card-price {
        font-size: 11px !important;
    }
}

/* WC loaded-class override for card add-to-cart (ajax feedback) */
.hmp-shop-grid-wrap li.product.hmp-shop-card.loading .hmp-shop-card-btn::after {
    display: none;
}

/* ==========================================================================
   TIENDA — JEVELIN OVERRIDES (aesthetic consistency)
   ========================================================================== */

/* 0. Fondo sólido uniforme — igual que el resto de páginas */
body.archive.post-type-archive-product {
    background: var(--hmp-bg) !important;
}

/* 1. Ocultar el banner blanco "Shop" de Jevelin */
body.archive.post-type-archive-product .sh-titlebar {
    display: none !important;
}

/* 2. Romper el contenedor estrecho — shop necesita full width */
body.archive.post-type-archive-product #wrapper,
body.archive.post-type-archive-product .content-container,
body.archive.post-type-archive-product .sh-page-layout-default,
body.archive.post-type-archive-product .container.entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Fondo oscuro en toda la página */
body.archive.post-type-archive-product,
body.archive.post-type-archive-product #wrapper,
body.archive.post-type-archive-product .content-container {
    background-color: var(--hmp-bg) !important;
}

/* 4. Quitar el padding/margin que Jevelin añade al wrapper */
body.archive.post-type-archive-product #wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 5. Shop: nav oscuro consistente con el resto de páginas */
body.archive.post-type-archive-product .sh-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.archive.post-type-archive-product .sh-header .sh-nav > li > a {
    color: rgba(228, 228, 244, 0.72) !important;
}
body.archive.post-type-archive-product .sh-header .sh-nav > li > a:hover {
    color: #fff !important;
}
body.archive.post-type-archive-product .sh-header .sh-nav-login a,
body.archive.post-type-archive-product .sh-header .sh-nav-cart a,
body.archive.post-type-archive-product .sh-header .sh-nav-social a,
body.archive.post-type-archive-product .sh-header .sh-nav-search {
    color: rgba(228, 228, 244, 0.65) !important;
}

/* ═══════════════════════════════════════════════════════════════
   HMP — MI CUENTA / LOGIN PAGE
   Scope: body.woocommerce-account
═══════════════════════════════════════════════════════════════ */

/* ── Canvas WebGL — fondo completo ── */
#hmp-login-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── Jevelin overrides ── */
body.woocommerce-account {
    background: var(--hmp-bg) !important;
}

/* Ocultar agresivamente la barra de título de Jevelin en página de cuenta */
body.woocommerce-account .sh-titlebar,
body.woocommerce-account .sh-page-title,
body.woocommerce-account .sh-page-title-bar,
body.woocommerce-account .sh-page-title-wrap,
body.woocommerce-account [class*="sh-page-title"],
body.woocommerce-account [id*="sh-page-title"],
body.woocommerce-account [class*="sh-titlebar"],
body.woocommerce-account [id*="sh-titlebar"],
body.woocommerce-account .sh-breadcrumbs,
body.woocommerce-account .sh-breadcrumbs-wrap,
body.woocommerce-account .page-header,
body.woocommerce-account .entry-header,
body.woocommerce-account .page-header-wrap {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .sh-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.woocommerce-account #wrapper,
body.woocommerce-account .content-container,
body.woocommerce-account .sh-page-layout-default,
body.woocommerce-account .container.entry-content,
body.woocommerce-account .entry-content,
body.woocommerce-account .woocommerce {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
body.woocommerce-account .woocommerce-notices-wrapper {
    position: relative;
    z-index: 10;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Centering wrap ── */
.hmp-login-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: clamp(80px, 10vw, 120px) 20px clamp(40px, 6vw, 80px);
}

/* ── Card ── */
.hmp-login-card {
    width: 100%;
    max-width: 460px;
    background:
        linear-gradient(var(--hmp-surface), var(--hmp-surface)) padding-box,
        linear-gradient(135deg, rgba(77, 123, 255, 0.55) 0%, rgba(155, 111, 239, 0.55) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: clamp(36px, 5vw, 52px) clamp(28px, 5vw, 48px);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 60px rgba(77, 123, 255, 0.12),
        0 0 120px rgba(155, 111, 239, 0.06),
        0 32px 64px rgba(0, 0, 0, 0.6);
    animation: hmp-card-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* ── Brand header ── */
.hmp-login-brand {
    text-align: center;
    margin-bottom: 32px;
}
.hmp-login-eyebrow {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(155, 111, 239, 0.85);
    margin: 0 0 10px;
}
.hmp-login-title {
    font-family: var(--hmp-font-display), cursive;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.hmp-login-title__grad {
    font-style: normal;
    background: var(--hmp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Tabs ── */
.hmp-login-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 28px;
}
.hmp-login-tab {
    flex: 1;
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(228, 228, 244, 0.5);
    background: transparent;
    border: none;
    border-radius: 7px;
    padding: 10px 16px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}
.hmp-login-tab:hover {
    color: rgba(228, 228, 244, 0.85);
}
.hmp-login-tab--active {
    color: #fff !important;
    background:
        linear-gradient(var(--hmp-surface), var(--hmp-surface)) padding-box,
        linear-gradient(135deg, #4d7bff 0%, #9b6fef 100%) border-box;
    border: 1px solid transparent;
}

/* ── Panels ── */
.hmp-login-panel--hidden {
    display: none !important;
}

/* ── Form fields ── */
.hmp-field {
    margin-bottom: 20px;
}
.hmp-field label {
    display: block;
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(228, 228, 244, 0.55);
    margin-bottom: 8px;
}
.hmp-input,
body.woocommerce-account .woocommerce-Input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 10px !important;
    color: #e4e4f4 !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 15px !important;
    padding: 14px 16px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    box-sizing: border-box !important;
}
.hmp-input::placeholder {
    color: rgba(228, 228, 244, 0.22) !important;
}
.hmp-input:focus {
    border-color: rgba(77, 123, 255, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(77, 123, 255, 0.12) !important;
    background: rgba(77, 123, 255, 0.05) !important;
}

/* ── Checkbox + lost password row ── */
.hmp-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}
.hmp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 13px;
    color: rgba(228, 228, 244, 0.55);
}
.hmp-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--hmp-blue);
    cursor: pointer;
}
.hmp-lost-pass {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 13px;
    color: rgba(155, 111, 239, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.hmp-lost-pass:hover {
    color: #9b6fef;
}

/* ── Submit button ── */
.hmp-btn-primary {
    display: block !important;
    width: 100% !important;
    padding: 15px 24px !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: #fff !important;
    background: linear-gradient(135deg, #4d7bff 0%, #9b6fef 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 20px rgba(77, 123, 255, 0.35) !important;
    text-align: center !important;
}
.hmp-btn-primary:hover {
    opacity: 0.88 !important;
    box-shadow: 0 6px 28px rgba(77, 123, 255, 0.50) !important;
}
.hmp-btn-primary:focus-visible {
    outline: 2px solid #4d7bff !important;
    outline-offset: 3px !important;
}

/* ── Register note ── */
.hmp-register-note {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 13px;
    color: rgba(228, 228, 244, 0.45);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ── Desktop: forzar columna de login a ancho completo para que el card quede centrado ── */
@media (min-width: 769px) {
    body.woocommerce-account #sh-woocomerce-login-form {
        width: 100% !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

/* ── Responsivo ── */
@media (max-width: 500px) {
    .hmp-login-card {
        border-radius: 16px;
    }
    .hmp-form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HMP — CARRITO
   Scope: body.woocommerce-cart
═══════════════════════════════════════════════════════════════ */

/* ── Jevelin overrides ── */
body.woocommerce-cart {
    background: var(--hmp-bg) !important;
}
body.woocommerce-cart .sh-titlebar { display: none !important; }
body.woocommerce-cart .sh-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.woocommerce-cart #wrapper,
body.woocommerce-cart .content-container,
body.woocommerce-cart .sh-page-layout-default,
body.woocommerce-cart .container.entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-cart .woocommerce {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
/* Ocultar cross-sells — no encajan en la columna de totales */
body.woocommerce-cart .cross-sells { display: none !important; }
/* Barra de pasos de Jevelin */
body.woocommerce-cart .woocommerce-progress { display: none !important; }

/* ── Página wrapper ── */
.hmp-cart-page {
    min-height: 100dvh;
    padding: clamp(100px, 12vw, 140px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
    background: var(--hmp-bg);
}

/* ── Header ── */
.hmp-cart-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 48px;
}
.hmp-cart-title {
    font-family: var(--hmp-font-display), cursive;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.hmp-cart-title__grad {
    font-style: normal;
    background: var(--hmp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hmp-cart-badge {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(228, 228, 244, 0.45);
    letter-spacing: 0.04em;
}

/* ── Layout dos columnas ── */
.hmp-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* ── Lista de items ── */
.hmp-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

/* ── Item card ── */
.hmp-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto 36px;
    gap: 20px;
    align-items: center;
    background: var(--hmp-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hmp-cart-item:hover {
    border-color: rgba(77, 123, 255, 0.22);
    box-shadow: 0 0 20px rgba(77, 123, 255, 0.07);
}

/* Imagen */
.hmp-cart-item__img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
}
.hmp-cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}
.hmp-cart-item__img a:hover img { opacity: 0.85; }

/* Info */
.hmp-cart-item__info { min-width: 0; }
.hmp-cart-item__name {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #e4e4f4;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}
.hmp-cart-item__name:hover { color: var(--hmp-blue); }
.hmp-cart-item__unit-price {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 13px;
    color: rgba(228, 228, 244, 0.45);
    margin: 0;
}
.hmp-cart-item__unit-label { font-size: 11px; }
.hmp-cart-item__info .wc-item-meta { margin-top: 4px; }
.hmp-cart-item__info .wc-item-meta li,
.hmp-cart-item__info .wc-item-meta p {
    font-size: 12px;
    color: rgba(228,228,244,0.35);
}

/* Cantidad — controles +/- */
/* Resetear estilos de Jevelin en el wrapper de cantidad */
.hmp-cart-item__qty .quantity {
    display: inline-flex !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    box-shadow: none !important;
}
.hmp-cart-item__qty label.screen-reader-text { display: none !important; }
/* Hide Jevelin's injected circular +/- buttons — we use our own */
.hmp-cart-item__qty .sh-increase-number-down,
.hmp-cart-item__qty .sh-increase-number-up { display: none !important; }
.hmp-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
}
.hmp-qty-btn {
    width: 32px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: rgba(228, 228, 244, 0.5) !important;
    cursor: pointer !important;
    transition: color 0.2s ease, background 0.2s ease !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    font-size: 0 !important;
    min-width: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.hmp-qty-btn:hover { color: #fff !important; background: rgba(77,123,255,0.12) !important; }
.hmp-cart-item__qty input.qty,
.hmp-cart-item__qty input.sh-quantity-number {
    width: 40px !important;
    height: 36px !important;
    background: transparent !important;
    border: none !important;
    border-left: 1px solid rgba(255,255,255,0.08) !important;
    border-right: 1px solid rgba(255,255,255,0.08) !important;
    color: #e4e4f4 !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    padding: 0 !important;
    line-height: 36px !important;
    vertical-align: middle !important;
    outline: none !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
    border-radius: 0 !important;
    display: block !important;
}
.hmp-cart-item__qty input.qty::-webkit-inner-spin-button,
.hmp-cart-item__qty input.qty::-webkit-outer-spin-button,
.hmp-cart-item__qty input.sh-quantity-number::-webkit-inner-spin-button,
.hmp-cart-item__qty input.sh-quantity-number::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Subtotal */
.hmp-cart-item__subtotal {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--hmp-blue);
    min-width: 72px;
    text-align: right;
}
.hmp-cart-item__subtotal .woocommerce-Price-amount { color: var(--hmp-blue); }

/* Botón eliminar */
.hmp-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: rgba(228, 228, 244, 0.3);
    background: transparent;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    font-size: 0 !important;
}
/* Oculta la × que Jevelin añade via ::before en .remove */
.hmp-remove-btn::before,
.hmp-remove-btn::after {
    display: none !important;
    content: none !important;
}
.hmp-remove-btn svg { font-size: initial; }
.hmp-remove-btn:hover {
    color: #ff5c7a;
    background: rgba(255, 92, 122, 0.1);
}

/* ── Acciones (cupón + update) ── */
.hmp-cart-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}
.hmp-coupon {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 220px;
}
.hmp-coupon .hmp-input {
    flex: 1;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    border-radius: 8px !important;
    color: #e4e4f4 !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 14px !important;
    padding: 11px 14px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease !important;
}
.hmp-coupon .hmp-input::placeholder { color: rgba(228,228,244,0.25) !important; }
.hmp-coupon .hmp-input:focus { border-color: rgba(77,123,255,0.5) !important; }

/* Botón Aplicar cupón — especificidad máxima con atributo [name] */
body.woocommerce-cart .hmp-btn-outline,
body.woocommerce-cart button[name="apply_coupon"],
body.woocommerce-cart .hmp-coupon button[name="apply_coupon"] {
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--hmp-blue) !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid rgba(77,123,255,0.4) !important;
    border-radius: 8px !important;
    padding: 11px 18px !important;
    cursor: pointer !important;
    transition: background 0.2s ease, border-color 0.2s ease !important;
    white-space: nowrap !important;
    text-transform: none !important;
    box-shadow: none !important;
    letter-spacing: 0 !important;
    height: auto !important;
    width: auto !important;
    min-width: 0 !important;
    line-height: 1.4 !important;
}
body.woocommerce-cart .hmp-btn-outline:hover,
body.woocommerce-cart button[name="apply_coupon"]:hover {
    background: rgba(77,123,255,0.1) !important;
    background-color: rgba(77,123,255,0.1) !important;
    border-color: var(--hmp-blue) !important;
    color: var(--hmp-blue) !important;
}

/* Botón Actualizar carrito — especificidad máxima con atributo [name] */
body.woocommerce-cart .hmp-btn-ghost,
body.woocommerce-cart button[name="update_cart"],
body.woocommerce-cart .hmp-cart-actions button[name="update_cart"] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(228,228,244,0.45) !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 11px 0 !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    text-transform: none !important;
    box-shadow: none !important;
    letter-spacing: 0 !important;
    height: auto !important;
    width: auto !important;
    min-width: 0 !important;
    line-height: 1.4 !important;
}
body.woocommerce-cart .hmp-btn-ghost:hover,
body.woocommerce-cart button[name="update_cart"]:hover {
    color: rgba(228,228,244,0.8) !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* ── Columna de totales ── */
.hmp-cart-totals-col { position: sticky; top: 100px; }

/* Override WooCommerce's float:right + width:48% on .cart_totals */
body.woocommerce-cart .hmp-cart-totals-col .cart_totals,
body.woocommerce-cart .hmp-cart-totals-col .hmp-cart-totals {
    float: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.hmp-cart-totals {
    background:
        linear-gradient(var(--hmp-surface), var(--hmp-surface)) padding-box,
        linear-gradient(135deg, rgba(77,123,255,0.45) 0%, rgba(155,111,239,0.45) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 28px;
    box-shadow:
        0 0 40px rgba(77,123,255,0.08),
        0 24px 48px rgba(0,0,0,0.4);
}

.hmp-cart-totals__title {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(228,228,244,0.4);
    margin: 0 0 20px;
    white-space: nowrap;
}

/* Líneas de totales */
.hmp-totals-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.hmp-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 14px;
    color: rgba(228,228,244,0.65);
}
.hmp-totals-row th, .hmp-totals-row td { /* WC compat */
    background: transparent;
    padding: 0;
    border: none;
    font-size: 14px;
    color: rgba(228,228,244,0.65);
}
/* Forzar todo el texto del panel de totales a color claro */
.hmp-cart-totals,
.hmp-cart-totals p,
.hmp-cart-totals td,
.hmp-cart-totals th,
.hmp-cart-totals label,
.hmp-cart-totals span:not(.woocommerce-Price-currencySymbol),
.hmp-cart-totals a,
.hmp-cart-totals small,
.hmp-cart-totals .shipping-calculator-button,
.hmp-cart-totals .woocommerce-shipping-destination {
    color: rgba(228,228,244,0.65) !important;
    font-family: var(--hmp-font-body), sans-serif !important;
}
.hmp-cart-totals a { color: var(--hmp-blue) !important; }
.hmp-cart-totals a:hover { color: #fff !important; }

/* Shipping calculator */
.hmp-cart-totals .shipping-calculator-form { margin-top: 12px; }
.hmp-cart-totals .shipping-calculator-form p { margin-bottom: 8px; }
.hmp-cart-totals .shipping-calculator-form select,
.hmp-cart-totals .shipping-calculator-form input[type="text"] {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 6px !important;
    color: #e4e4f4 !important;
    padding: 8px 10px !important;
    width: 100% !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 13px !important;
}
.hmp-cart-totals .shipping-calculator-form button[name="calc_shipping"] {
    background: var(--hmp-gradient) !important;
    background-color: var(--hmp-blue) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    text-transform: none !important;
    box-shadow: none !important;
    letter-spacing: 0 !important;
    height: auto !important;
    width: auto !important;
}

/* WC shipping table que llega como HTML completo */
.hmp-cart-totals .shop_table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.hmp-cart-totals .shop_table tr td,
.hmp-cart-totals .shop_table tr th {
    background: transparent !important;
    border: none !important;
    padding: 6px 0 !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 14px !important;
    color: rgba(228,228,244,0.65) !important;
}
.hmp-cart-totals .shop_table tr.order-total td,
.hmp-cart-totals .shop_table tr.order-total th {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
}
.hmp-cart-totals .shop_table .woocommerce-Price-amount { color: inherit; }
.hmp-totals-row--discount .hmp-totals-discount { color: #4fffb0; }

/* Total grande */
.hmp-totals-grand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 4px;
    font-family: var(--hmp-font-body), sans-serif;
}
.hmp-totals-grand span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: rgba(228,228,244,0.7);
    letter-spacing: 0.04em;
}
.hmp-totals-grand__amount {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #fff !important;
}
.hmp-totals-grand__amount .woocommerce-Price-amount { color: #fff; }

/* Botón checkout */
.hmp-checkout-wrap { margin-bottom: 14px; }
body.woocommerce-cart .hmp-checkout-wrap a,
body.woocommerce-cart .hmp-checkout-wrap a.button,
body.woocommerce-cart .hmp-checkout-wrap a.checkout-button,
body.woocommerce-cart .hmp-checkout-wrap a.button.alt,
body.woocommerce-cart .hmp-checkout-wrap a.wc-forward {
    display: block !important;
    width: 100% !important;
    padding: 16px 24px !important;
    font-family: var(--hmp-font-body), sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #4d7bff 0%, #9b6fef 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(77,123,255,0.35) !important;
    transition: opacity 0.2s ease, box-shadow 0.2s ease !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    line-height: 1.3 !important;
}
body.woocommerce-cart .hmp-checkout-wrap a:hover {
    opacity: 0.88 !important;
    box-shadow: 0 6px 28px rgba(77,123,255,0.5) !important;
    color: #fff !important;
}
body.woocommerce-cart .hmp-checkout-wrap a:focus-visible {
    outline: 2px solid #4d7bff !important;
    outline-offset: 3px !important;
}

/* Texto confianza */
.hmp-cart-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 12px;
    color: rgba(228,228,244,0.3);
    margin: 0;
}

/* ── Empty cart ── */
.hmp-cart-empty {
    text-align: center;
    padding: clamp(80px, 12vw, 140px) 24px;
    max-width: 480px;
    margin: 0 auto;
}
.hmp-cart-empty__icon {
    color: rgba(77,123,255,0.4);
    margin-bottom: 28px;
}
.hmp-cart-empty__title {
    font-family: var(--hmp-font-display), cursive;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    color: #fff;
    margin: 0 0 14px;
}
.hmp-cart-empty__text {
    font-family: var(--hmp-font-body), sans-serif;
    font-size: 15px;
    color: rgba(228,228,244,0.45);
    line-height: 1.7;
    margin: 0 0 32px;
}

/* ── Notificaciones WC ── */
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info {
    max-width: 1200px;
    margin: 0 auto 24px;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
    .hmp-cart-layout {
        grid-template-columns: 1fr;
    }
    .hmp-cart-totals-col { position: static; }
}
@media (max-width: 600px) {
    .hmp-cart-item {
        grid-template-columns: 64px 1fr 36px;
        grid-template-rows: auto auto;
    }
    .hmp-cart-item__qty  { grid-column: 2; grid-row: 2; }
    .hmp-cart-item__subtotal { grid-column: 1 / 3; grid-row: 3; text-align: left; }
    .hmp-cart-item__remove { grid-column: 3; grid-row: 1; }
    .hmp-cart-actions { flex-direction: column; align-items: stretch; }
    .hmp-coupon { min-width: 0; }
}

/* ============================================================
   TIENDA — mobile visual improvements (solo mobile)
   ============================================================ */
@media (max-width: 760px) {

  /* 1. Aspect ratio portrait — más vivo que el cuadrado */
  .hmp-shop-card-art {
    aspect-ratio: 3 / 4 !important;
  }

  /* Overlay add-to-cart solo tiene sentido en hover/desktop — ocultar en touch */
  .hmp-shop-card-overlay {
    display: none !important;
  }

  /* 2. Jerarquía: precio domina, nombre es secundario */
  .hmp-shop-card-info {
    padding: 6px 8px 10px !important;
  }
  .hmp-shop-card-name {
    font-family: var(--hmp-font-body) !important;
    font-size: 9.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    color: rgba(228,228,244,0.52) !important;
    -webkit-text-fill-color: rgba(228,228,244,0.52) !important;
    margin-bottom: 3px !important;
  }
  .hmp-shop-card-price {
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  /* 3. Accent de color por categoría — diferencia visual sutil */
  .hmp-shop-grid-wrap .product_cat-musica.hmp-shop-card {
    border-top: 2px solid rgba(77,123,255,0.4) !important;
  }
  .hmp-shop-grid-wrap .product_cat-merchandising.hmp-shop-card {
    border-top: 2px solid rgba(155,111,239,0.4) !important;
  }
}

/* ============================================================
   MOBILE RHYTHM — artists photo grid + services 2×2
   ============================================================ */
@media (max-width: 767px) {

  /* ── Artistas: grid de fotos 2 columnas ── */
  .hmp-alist__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .hmp-alist__row {
    height: auto;
    aspect-ratio: 3/4;
    padding: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center top;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-bottom: none;
  }

  .hmp-alist__row::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(5,6,15,0.94) 0%,
      rgba(5,6,15,0.5)  38%,
      rgba(5,6,15,0.08) 68%,
      transparent       100%);
    pointer-events: none;
  }

  .hmp-alist__row--flip {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .hmp-alist__block { display: none; }

  .hmp-alist__name {
    position: relative;
    z-index: 2;
    font-size: clamp(13px, 3.4vw, 16px);
    white-space: normal;
    padding: 0 12px 10px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    -webkit-text-fill-color: rgba(255,255,255,0.95);
    color: rgba(255,255,255,0.95);
  }

  .hmp-alist__genre {
    display: block;
    position: relative;
    z-index: 2;
    font-family: var(--hmp-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(155,111,239,0.85);
    padding: 0 12px 4px;
  }

  /* Último artista full-width cuando el total es impar */
  .hmp-alist__row:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
    background-position: center 25%;
  }

  .hmp-artist-preview { display: none; }

  /* ── Servicios: 2×2 en lugar de 4×1 ── */
  .hmp-services-grid--4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .hmp-service-card {
    padding: 20px 14px !important;
  }

  .hmp-service-card__num {
    font-size: 36px !important;
    top: 14px !important;
    right: 14px !important;
  }

  .hmp-service-card__icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
    margin-bottom: 14px !important;
  }

  .hmp-service-card__icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .hmp-service-card__title {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .hmp-service-card__desc {
    font-size: 12px !important;
    line-height: 1.55 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hmp-service-card__tags {
    margin-top: 12px !important;
    gap: 4px !important;
  }

  .hmp-tag {
    font-size: 9px !important;
    padding: 3px 7px !important;
  }

  /* ── Alternancia de fondos entre secciones ── */
  .hmp-player-section,
  .hmp-store,
  .hmp-section.hmp-testimonials {
    background: rgba(77,123,255,0.028);
  }
}

/* ── Ocultar social strip (anchor #contacto se mantiene) ── */
.hmp-social-strip { display: none !important; }

/* ── Franja de acreditaciones ── */
.hmp-trust-strip {
  background: var(--hmp-bg);
  border-top: 1px solid var(--hmp-border);
  padding: 20px 0 22px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.hmp-trust-strip__header {
  text-align: center;
  margin-bottom: 14px;
}
.hmp-trust-strip__label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hmp-text);
}
.hmp-trust-marquee {
  overflow: hidden;
  width: 100%;
}
.hmp-trust-marquee__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: hmp-marquee 36s linear infinite;
}
.hmp-trust-marquee:hover .hmp-trust-marquee__track {
  animation-play-state: paused;
}
.hmp-trust-marquee__item {
  background: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 64px;
  box-sizing: border-box;
}
.hmp-trust-marquee__item img {
  max-height: 40px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@keyframes hmp-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .hmp-trust-strip { padding: 16px 0 18px; }
  .hmp-trust-marquee__item { height: 52px; padding: 8px 14px; }
  .hmp-trust-marquee__item img { max-height: 32px; max-width: 160px; }
}

/* ================================================================
   AGENDA DE CONCIERTOS
   ================================================================ */
.hmp-agenda {
  background: #0a0a0b;
  padding-bottom: 80px;
}

.hmp-agenda__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 72px 60px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hmp-agenda__row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.hmp-agenda__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4d7bff 0%, #9b6fef 100%);
  transform: scaleY(0);
  transition: transform 0.22s ease;
  transform-origin: center;
}

.hmp-agenda__row:hover::before,
.hmp-agenda__row:focus-within::before {
  transform: scaleY(1);
}

.hmp-agenda__row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.hmp-agenda__row--past {
  opacity: 0.38;
}

.hmp-agenda__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.hmp-agenda__day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  color: #fff;
  display: block;
}

.hmp-agenda__month {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4d7bff;
  display: block;
  margin-top: 4px;
}

.hmp-agenda__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hmp-agenda__artist {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.hmp-agenda__venue {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hmp-agenda__action {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hmp-agenda__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hmp-agenda__cta:hover {
  border-color: #4d7bff;
  color: #4d7bff;
  background: rgba(77, 123, 255, 0.07);
}

.hmp-agenda__cta:focus-visible {
  outline: 2px solid #4d7bff;
  outline-offset: 3px;
}

.hmp-agenda__cta svg {
  flex-shrink: 0;
}

.hmp-agenda__past-badge,
.hmp-agenda__soon {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.hmp-agenda__empty {
  padding: 64px 60px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  font-style: italic;
}

@media (max-width: 768px) {
  .hmp-agenda__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 48px 24px 28px;
  }

  .hmp-agenda__row {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    padding: 18px 24px;
    gap: 12px 16px;
  }

  .hmp-agenda__action {
    grid-column: 2;
    margin-top: 2px;
  }

  .hmp-agenda__day { font-size: 1.875rem; }

  .hmp-agenda__empty { padding: 40px 24px; }
}


@media (max-width: 767px) {
  body.page-id-8652 .hmp-info-hero {
    align-items: flex-start;
  }
  body.page-id-8652 .hmp-info-hero__content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
    overflow: hidden;
  }
  body.page-id-8652 .hmp-info-hero__title {
    font-size: clamp(36px, 11vw, 64px);
    word-break: break-word;
  }
}

/* ── SINGLE POST: transparent gradient navbar ─────────────────── */
body.single .sh-header:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(5,6,15,0.92) 0%, rgba(5,6,15,0.0) 100%) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.single .sh-header.scrolled {
    background: rgba(5,6,15,0.96) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
body.single .sh-header .sh-nav > li > a { color: rgba(228,228,244,0.72) !important; }
body.single .sh-header .sh-nav > li > a:hover { color: #fff !important; }
body.single .sh-header .sh-nav-login a,
body.single .sh-header .sh-nav-cart a,
body.single .sh-header .sh-nav-social a,
body.single .sh-header .sh-nav-search { color: rgba(228,228,244,0.65) !important; }
}
