:root {
  --font-family-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-size-xs: 14px;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --container-max: 1200px;
  --container-gutter: 16px;
  --layout-shell-max: var(--container-max);
  --layout-shell-gutter: var(--container-gutter);
  --layout-shell-radius: 14px;
  --layout-shell-radius-sm: 12px;

  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;

  --transition-fast: 160ms ease;
  --z-nav: 1100;

  --header-height-desktop: 96px;
  --header-height-mobile: 82px;
  --header-height: var(--header-height-mobile);

  --wow-primary: #ffca05;
  --wow-yellow: var(--wow-primary);
  --wow-black: #111111;
  --wow-soft: #f7f7f7;
  --wow-border: #e6e6e6;
  --wow-text: #ffffff;
  --wow-muted: #a3a3a3;
  --wow-radius: 14px;
}

@media (min-width: 992px) {
  :root {
    --header-height: var(--header-height-desktop);
  }
}

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

body {
  margin: 0;
  font-family: var(--font-family-sans);
  color: var(--wow-text);
  background: #000;
}

/* Dark mode base: todas las secciones del contenido usan fondo negro */
.wow-main section {
  background-color: #000 !important;
}

a {
  color: inherit;
}

.ds-lateral-shell,
.wow-shell {
  width: min(var(--layout-shell-max), calc(100% - (var(--layout-shell-gutter) * 2)));
  margin-inline: auto;
}

.wow-main {
  min-height: calc(100vh - 140px);
  padding-top: calc(var(--header-height) + var(--space-3));
}

.wow-view-home .wow-main {
  padding-top: 0;
}

.wow-view-categoria .wow-main {
  padding-top: calc(var(--header-height) + var(--space-3));
}

.wow-view-contacto .wow-main,
.wow-view-envios .wow-main {
  padding-top: calc(var(--header-height) + var(--space-3));
}

/* Header (MG-like behavior) */
.mg-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  background: #000;
  border: 0;
  box-shadow: none;
  padding-top: 0.5rem;
  padding-inline: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.mg-header-shell {
  min-height: var(--header-height-mobile);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.7rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--layout-shell-radius, 14px);
  background: linear-gradient(132deg, rgba(26, 26, 26, 0.88) 0%, rgba(14, 14, 14, 0.8) 52%, rgba(8, 8, 8, 0.76) 100%);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(178%);
  -webkit-backdrop-filter: blur(16px) saturate(178%);
  overflow: visible;
}

.mg-header-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 72% at 8% 2%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.72;
  border-radius: inherit;
  z-index: 0;
}

.mg-header-shell::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  top: -130px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 72%);
  border-radius: inherit;
  z-index: 0;
}

.mg-header-shell>* {
  position: relative;
  z-index: 1;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 56px;
}

.header-logo .nav-wow-logo {
  display: block;
  height: auto;
  width: clamp(84px, 11vw, 130px);
  min-width: 56px;
  max-width: 100%;
  object-fit: contain;
}

.header-logo .nav-wow-logo--mobile {
  display: none;
}

.nav-desktop {
  display: none;
  justify-self: start;
  min-width: 0;
}

.navbar-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.mg-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #e8edf7;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0.45rem 0.58rem;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.mg-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.mg-nav-link.active {
  color: #ffffff;
  background: transparent;
}

.mg-nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.58rem;
  right: 0.58rem;
  bottom: 0.12rem;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(255, 215, 77, 0.82);
}

.nav-item {
  position: relative;
}

.nav-link-catalog {
  cursor: pointer;
}

.nav-caret {
  display: inline-block;
  font-size: 0.68rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.nav-link-catalog[aria-expanded='true'] .nav-caret,
.mobile-catalog-toggle[aria-expanded='true'] .nav-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  width: min(980px, calc(100vw - 2.5rem));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: linear-gradient(132deg, rgba(22, 22, 22, 0.9) 0%, rgba(12, 12, 12, 0.84) 52%, rgba(8, 8, 8, 0.8) 100%);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  backdrop-filter: blur(14px) saturate(172%);
  -webkit-backdrop-filter: blur(14px) saturate(172%);
  overflow: hidden;
  z-index: calc(var(--z-nav) + 2);
}

.mega-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(88% 70% at 8% 2%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.07) 42%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.09) 72%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.62;
  border-radius: inherit;
  z-index: 0;
}

.mega-menu::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -110px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 72%);
  border-radius: inherit;
  z-index: 0;
}

.mega-menu > * {
  position: relative;
  z-index: 1;
}

.mega-menu__head {
  margin-bottom: 0.75rem;
}

.mega-menu__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
}

.mega-menu__title {
  margin: 0.24rem 0 0;
  font-size: 0.96rem;
  color: #ffffff;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.mega-menu__column {
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.7rem;
}

.mega-menu__column:first-child {
  border-left: 0;
  padding-left: 0;
}

.mega-menu__category-link {
  display: inline-flex;
  margin-bottom: 0.42rem;
  text-decoration: none;
  color: var(--wow-yellow);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mega-menu__category-link:hover {
  color: #ffe36f;
}

.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(52vh, 340px);
  overflow-y: auto;
  display: grid;
  gap: 0.14rem;
}

.mega-menu__product-link {
  display: block;
  border-radius: 8px;
  padding: 0.32rem 0.44rem;
  text-decoration: none;
  color: #e8edf7;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mega-menu__product-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mega-menu__empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
}

.wow-header-cta {
  justify-self: end;
}

.wow-back-mg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 34px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 77, 0.5);
  background: rgba(255, 255, 255, 0.06);
  color: #ffd74d;
  font-size: 0.74rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.wow-back-mg__logo {
  display: block;
  width: auto;
  height: 1.4em;
}

.wow-back-mg:hover {
  border-color: rgba(255, 215, 77, 0.8);
  background: rgba(255, 255, 255, 0.12);
  color: #ffe57f;
}

.wow-back-page {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0.38rem 0.62rem;
  margin: var(--space-3) 0;
  border-radius: 999px;
  border: 3px solid #fff;
  background: #ffca05;
  color: #000;
  font-size: 0.72rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.wow-back-page:hover {
  color: #000;
  border-color: #fff;
  background: #ffd633;
  transform: translateY(-1px);
}

.wow-back-page__icon {
  font-size: 0.9em;
  line-height: 1;
}

.navbar-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.navbar-toggle__bar {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: #e6edf7;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-toggle.active .navbar-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-toggle.active .navbar-toggle__bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .navbar-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.7rem 0.78rem 0.95rem;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-9px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.menu-mobile.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-mobile .mg-nav-link {
  width: 100%;
  justify-content: flex-start;
  border: 0;
  min-height: 42px;
  text-align: left;
  font-size: 0.76rem;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}

.mobile-catalog-toggle {
  width: 100%;
  justify-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-mobile-submenu {
  margin-top: 0.28rem;
  margin-left: 0.44rem;
  padding-left: 0.52rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 0.62rem;
}

.menu-mobile-submenu__group {
  display: grid;
  gap: 0.16rem;
}

.menu-mobile-submenu__title {
  display: block;
  padding: 0.34rem 0.42rem;
  border-radius: 7px;
  color: var(--wow-yellow);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-mobile-submenu__title:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-mobile-submenu__link {
  display: block;
  padding: 0.34rem 0.42rem;
  border-radius: 7px;
  color: #e8edf7;
  text-decoration: none;
  font-size: 0.74rem;
  line-height: 1.35;
}

.menu-mobile-submenu__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-mobile-submenu__empty {
  display: block;
  padding: 0.28rem 0.42rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.menu-mobile .wow-back-mg {
  border-radius: 8px;
  min-height: 42px;
  padding-inline: 0.58rem;
}

@media (max-width: 991.98px) {
  .mg-header-shell {
    min-height: auto;
    grid-template-columns: auto auto;
    gap: 0.62rem 0.72rem;
  }

  .header-logo .nav-wow-logo--desktop {
    display: none;
  }

  .header-logo .nav-wow-logo--mobile {
    display: block;
  }

  .mega-menu {
    display: none !important;
  }

  .wow-header-cta {
    display: none;
  }

  .navbar-toggle {
    justify-self: end;
  }
}

@media (max-width: 575px) {
  .mg-header {
    padding-top: 0.35rem;
  }

  .mg-header-shell {
    gap: 0.5rem;
    border-radius: var(--layout-shell-radius-sm, 12px);
  }

  .header-logo .nav-wow-logo {
    width: 76px;
    min-width: 76px;
  }

  .wow-back-page {
    min-height: 30px;
    padding: 0.34rem 0.46rem;
    font-size: 0.68rem;
  }

  .wow-back-page__label {
    display: none;
  }
}

@media (min-width: 992px) {
  .mg-header-shell {
    min-height: var(--header-height-desktop);
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .navbar-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .menu-mobile {
    display: none !important;
  }

  .mobile-catalog {
    display: none !important;
  }
}

/* Slider (same structure/behavior as MG) */
.hero-slider {
  position: relative;
  margin-top: calc(var(--header-height, 80px) + var(--space-3));
}

.hero-slider-shell {
  position: relative;
}

.hero-slider .swiper {
  width: 100%;
  height: 500px !important;
  border-radius: var(--layout-shell-radius, 14px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slider .swiper-wrapper {
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: default;
}

.hero-slider .swiper-slide picture,
.hero-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next,
.hero-slider .swiper-pagination {
  z-index: 5;
}

.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--wow-yellow);
  transform: scale(1.06);
}

.hero-slider .slide-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  z-index: 3;
}

.wow-view-home .hero-slider+.wow-section {
  margin-top: 0;
  padding-top: 24px;
}

.wow-view-categoria .wow-section {
  padding-top: var(--space-2);
}

.wow-view-contacto #contacto.contacto-section,
.wow-view-envios #envios.envios-section {
  padding-top: var(--space-2);
}

@media (max-width: 991.98px) {
  .wow-view-home .hero-slider+.wow-section {
    padding-top: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-slider .swiper {
    height: clamp(360px, 40vw, 440px) !important;
  }
}

@media (max-width: 575px) {
  .hero-slider .swiper {
    height: auto !important;
    aspect-ratio: 576 / 350;
    max-height: 350px;
    border-radius: var(--layout-shell-radius-sm, 12px);
  }

  .hero-slider .home-slider .swiper-slide {
    background: #000;
  }

  .hero-slider .home-slider .swiper-slide img {
    object-fit: contain;
    object-position: top center;
  }
}

.swiper {
  height: auto !important;
}

/* WOW content */
.wow-section {
  padding: 2.2rem 0;
  background: #000;
}

.wow-section-head h1,
.wow-section-head h2 {
  margin: 0.2rem 0 1rem;
}

.wow-eyebrow {
  margin: 0 0 0.25rem;
  color: var(--wow-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: var(--font-weight-bold);
}

.wow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wow-card {
  background: linear-gradient(156deg, #141414 0%, #090909 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--wow-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.wow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 202, 5, 0.8);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 202, 5, 0.22);
}

.wow-card-media {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0d0d0d;
}

.wow-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wow-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem;
}

.wow-card-title {
  font-weight: var(--font-weight-bold);
  color: #fff;
}

.wow-card-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.wow-empty {
  color: var(--wow-muted);
}

.wow-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.wow-gallery {
  position: sticky;
  top: calc(var(--header-height) + 12px);
}

.wow-main-image {
  width: 100%;
  border-radius: var(--wow-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0d0d0d;
  padding: 0.65rem;
}

.wow-thumbs {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
}

.wow-thumb {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  width: 72px;
  height: 72px;
  padding: 0;
  background: #0d0d0d;
  overflow: hidden;
  cursor: pointer;
}

.wow-thumb.is-active {
  border-color: var(--wow-yellow);
}

.wow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wow-product-info h1 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.wow-breadcrumbs {
  margin: 0 0 0.6rem;
  color: var(--wow-muted);
  font-size: 0.92rem;
}

.wow-breadcrumbs a {
  color: inherit;
}

.wow-price {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  font-weight: 800;
}

.wow-price-muted {
  font-size: 1rem;
  color: var(--wow-muted);
  font-weight: 600;
}

.wow-specs h2,
.wow-description h2 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.wow-specs table {
  width: 100%;
  border-collapse: collapse;
}

.wow-specs th,
.wow-specs td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  padding: 0.42rem 0.2rem;
  vertical-align: top;
}

.wow-specs th {
  width: 38%;
  font-weight: 700;
}

.wow-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

/* Footer */
.wow-footer {
  margin-top: clamp(2.5rem, 4vw, 3.2rem);
  background: var(--wow-yellow);
  color: var(--wow-black);
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.wow-footer a:not(.wow-footer-mg-link) {
  color: inherit;
  text-decoration: none;
}

.wow-footer-shell {
  padding: clamp(1.8rem, 3vw, 2.5rem) 0 1rem;
}

.wow-footer-top {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(280px, 1.1fr) minmax(280px, 1.2fr);
  align-items: center;
  gap: clamp(1rem, 2.8vw, 2.6rem);
}

.wow-footer-col--brand {
  display: flex;
  justify-content: center;
}

.wow-footer-wow-link {
  display: inline-flex;
  align-items: center;
}

.wow-footer-wow-logo {
  width: clamp(150px, 14vw, 188px);
  height: auto;
  object-fit: contain;
}

.wow-footer-col--contact {
  border-right: 1px solid rgba(0, 0, 0, 0.28);
  padding-right: clamp(0.9rem, 2vw, 1.7rem);
}

.wow-footer-title {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.wow-footer-label,
.wow-footer-text {
  margin: 0;
  line-height: 1.45;
}

.wow-footer-label {
  margin-top: 0.5rem;
  font-weight: 700;
}

.wow-footer-text {
  font-weight: 500;
}

.wow-footer-text a {
  text-decoration: none;
}

.wow-footer-col--mg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
}

.wow-footer-claim {
  margin: 0;
  max-width: 390px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
}

.wow-footer-mg-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  flex-wrap: wrap;
}

.wow-footer-mg-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1.6rem;
  border-radius: 0;
  background: #151515;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}

.wow-footer a.wow-footer-mg-link,
.wow-footer a.wow-footer-mg-link:visited,
.wow-footer a.wow-footer-mg-link:hover,
.wow-footer a.wow-footer-mg-link:focus,
.wow-footer a.wow-footer-mg-link:active {
  color: #ffffff;
  background: #151515;
  text-decoration: none;
}

.wow-footer-mg-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wow-footer-mg-logo {
  width: clamp(130px, 12vw, 170px);
  height: auto;
  object-fit: contain;
}

.wow-footer-legal {
  margin: clamp(1.3rem, 2vw, 2rem) 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  text-align: center;
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.5;
}

.wow-footer-legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 991.98px) {
  .wow-footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wow-footer-col--contact {
    border-right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
  }

  .wow-footer-claim {
    max-width: 520px;
  }
}

@media (max-width: 575px) {
  .wow-footer {
    margin-top: 2.1rem;
  }

  .wow-footer-shell {
    padding-top: 1.5rem;
  }

  .wow-footer-title {
    margin-bottom: 0.6rem;
  }

  .wow-footer-mg-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .wow-footer-mg-link {
    width: 100%;
    max-width: 320px;
    padding-inline: 1rem;
  }
}

@media (max-width: 991.98px) {
  .wow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wow-product {
    grid-template-columns: 1fr;
  }

  .wow-gallery {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .wow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* PDP + consultar (estructura MG, apariencia WOW) */
.wow-pdp {
  padding: clamp(20px, 3.5vw, 36px) 0 0;
}

.wow-pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "main" "thumbs";
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 12px;
  align-items: start;
}

.pdp-main {
  grid-area: main;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 10px;
  min-height: 340px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 20px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#mainImage {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-thumbs {
  grid-area: thumbs;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 4px 2px 6px;
}

.pdp-thumbs .thumb {
  appearance: none;
  cursor: pointer;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #0d0d0d;
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pdp-thumbs .thumb:hover {
  transform: translateY(-2px);
}

.pdp-thumbs .thumb.is-active {
  border-color: var(--wow-yellow);
}

.pdp-thumbs .img-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  background: #0d0d0d;
}

.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  color: #f6f6f6;
}

.pdp-info .title-productos {
  font-size: clamp(1.75rem, 1.25rem + 1.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
  color: #fff;
}

.wow-breadcrumbs {
  margin: 0;
  color: #c2c2c2;
  font-size: 0.92rem;
}

.wow-breadcrumbs a {
  color: inherit;
}

.pdp-price {
  margin: 0;
}

.wow-pdp .pdp-price.text-muted {
  color: #fff !important;
}

#producto .current-price {
  display: block;
  font-size: clamp(1.8rem, 1.2rem + 1.3vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  color: var(--wow-yellow);
  margin-bottom: 0.25rem;
}

.price-breakdown {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.9rem;
}

.pdp-unit-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.pdp-unit-qty {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 320px;
}

.pdp-unit-qty .form-label {
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #111;
  overflow: hidden;
  width: fit-content;
}

.qty-control input {
  min-width: 64px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-control input:focus {
  outline: none;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.qty-btn:hover {
  background: var(--wow-yellow);
  color: #111;
}

.pdp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.pdp-packs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pack-options {
  display: grid;
  gap: 12px;
}

.pack-option {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    #0b0b0b;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pack-option input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.pack-option__title {
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
}

.pack-option__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.pack-option__price {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--wow-yellow);
}

.pack-option.is-active {
  border-color: var(--wow-yellow);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 202, 5, 0.18);
  transform: translateY(-2px);
}

.pack-selection-hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74) !important;
}

.producto-contenedor_boton__ventas {
  margin-top: 0.35rem;
}

.wow-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.wow-btn:hover {
  transform: translateY(-1px);
}

.wow-btn--sales,
.wow-btn--submit {
  background: var(--wow-yellow);
  color: #111;
  border-color: var(--wow-yellow);
  box-shadow: 0 12px 26px rgba(255, 202, 5, 0.25);
}

.wow-btn--sales:hover,
.wow-btn--submit:hover {
  background: #ffd633;
  border-color: #ffd633;
  color: #111;
}

.wow-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.wow-btn--ghost:hover {
  border-color: var(--wow-yellow);
  color: var(--wow-yellow);
}

.pdp-specs-block,
.pdp-description-block {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pdp-info .subtitle {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 700;
  color: #fff;
}

.pdp-info .subtitle-small {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.pdp-table {
  margin: 0;
  border-color: rgba(255, 255, 255, 0.1);
}

.pdp-table th,
.pdp-table td {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding-inline: 0.45rem;
}

.pdp-table th {
  width: 42%;
  color: #fff;
}

.wow-section--suggested {
  padding-top: clamp(1.8rem, 3vw, 2.8rem);
}

.wow-section-head--suggested h2 {
  color: #fff;
}

/* Consultar */
.wow-contact-producto {
  padding: var(--space-2) 0 clamp(30px, 5vw, 68px);
}

.contact-producto__panel {
  width: 100%;
  max-width: none;
  margin: 0;
}

.panel-form {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(147deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%),
    #090909;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px) saturate(165%);
  -webkit-backdrop-filter: blur(12px) saturate(165%);
  overflow: hidden;
}

.panel-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(88% 70% at 8% 2%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.07) 42%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.08) 72%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.62;
  border-radius: inherit;
  z-index: 0;
}

.panel-form::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  z-index: 0;
}

.panel-form > * {
  position: relative;
  z-index: 1;
}

.panel-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.preview-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.15rem;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  margin-bottom: 18px;
}

.preview-card__media {
  flex: 0 0 108px;
  width: 108px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.preview-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.preview-card__pack {
  font-size: 0.94rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.preview-card__qty {
  font-size: 0.94rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.preview-card__price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--wow-yellow);
  margin: 0;
}

.panel-form__heading {
  margin-bottom: 1.4rem;
}

.panel-form__heading h1 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.panel-form__subtitle,
.panel-form__schedule {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.panel-form .form-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.panel-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #111;
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.panel-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.panel-form .form-control:focus {
  border-color: var(--wow-yellow);
  box-shadow: 0 0 0 3px rgba(255, 202, 5, 0.16);
  background-color: #121212;
  color: #fff;
}

.panel-form .form-text {
  font-size: 0.85rem;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
}

.contact-producto__consent .form-check-input {
  width: 1.12rem;
  height: 1.12rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background-color: transparent;
}

.contact-producto__consent .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 202, 5, 0.2);
  border-color: var(--wow-yellow);
}

.contact-producto__consent .form-check-input:checked {
  background-color: var(--wow-yellow);
  border-color: var(--wow-yellow);
}

.contact-producto__consent .form-check-label {
  margin-left: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.wow-contact-producto .form-state {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 991.98px) {
  .wow-pdp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .wow-grid--suggested {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .pdp-main {
    min-height: 280px;
  }

  .preview-card {
    flex-direction: column;
    text-align: center;
  }

  .preview-card__media {
    width: 100%;
    flex: 0 0 auto;
  }

  .preview-card__price {
    font-size: 1.18rem;
  }
}

@media (min-width: 576px) {
  .pdp-gallery {
    grid-template-areas: "thumbs main";
    align-items: start;
    gap: 16px;
  }

  .pdp-thumbs {
    flex-direction: column;
    width: 96px;
    max-height: calc(100vh - 180px);
    overflow: auto;
    padding-right: 2px;
  }

  .pdp-main {
    padding: 16px;
  }
}

@media (min-width: 992px) {
  .pdp-gallery {
    position: sticky;
    top: calc(var(--header-height) + 12px);
  }
}

/* Force dark background on Contacto/Envios sections */
body.wow-view-contacto .wow-main,
body.wow-view-envios .wow-main {
  background: #000000 !important;
}

body.wow-view-contacto .wow-main section#contacto.contacto-section,
body.wow-view-envios .wow-main section#envios.envios-section {
  background: #000000 !important;
  background-image: none !important;
}

/* Global hard override: todas las sections del contenido en negro */
.wow-main section {
  background: #000000 !important;
  background-image: none !important;
}
