:root {
  --ink: #050505;
  --ink-2: #161616;
  --paper: #efeeeb;
  --paper-2: #dedbd4;
  --card: #ffffff;
  --muted: #69645d;
  --line: #d4cec2;
  --hot: #0b0b0b;
  --gold: #f7f7f7;
  --green: #4a4a4a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 169, 104, 0.18), transparent 25rem),
    linear-gradient(180deg, var(--paper), #f8f7f4 38%, var(--paper));
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28) 1px, transparent 1px);
  background-size: 6px 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-mark {
  width: 58px;
  height: 58px;
}

.brand-logo-word {
  height: 60px;
  max-width: 190px;
  object-fit: contain;
}

.brand-logo[src]:not([src=""]) + .brand-fallback {
  display: none;
}

.brand-logo.loaded {
  display: block;
}

.brand-logo.loaded + .brand-fallback {
  display: none;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.brand-name,
h1,
h2,
h3,
.button,
.filter-button,
.eyebrow,
.hero-stamp,
.catalog-count,
.image-toggle button,
.product-id,
.product-category {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  font-size: 1.15rem;
  line-height: 1;
}

.brand-name {
  font-size: clamp(1.12rem, 2.3vw, 1.8rem);
  line-height: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-menu-head,
.mobile-menu-foot {
  display: none;
}

.nav-links a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 2px;
  background: var(--hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 7px auto;
  background: #ffffff;
  transition: transform 180ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: end;
  padding: 110px 0 0;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.1) brightness(0.95);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), #000000 105%),
    url("../img/hero/hero_hop_principal.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.035) 10px),
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent 24%);
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 36px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--hot);
  font-size: 0.9rem;
  line-height: 1;
}

.hero-copy h1 {
  position: relative;
  max-width: 860px;
  margin: 0;
  font-size: clamp(4.6rem, 14vw, 11.5rem);
  line-height: 0.78;
  text-wrap: balance;
  text-shadow: 5px 5px 0 rgba(215, 25, 32, 0.38);
}

.hero-copy h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0.035em;
  top: 0.035em;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 21px;
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 46%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
}

.hero-panel {
  min-height: 350px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-stats span {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 0.8;
}

.hero-stats small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stamp {
  width: 170px;
  height: 170px;
  justify-self: end;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 1.25rem;
  line-height: 0.92;
  transform: rotate(-12deg);
}

.marquee {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff;
  color: #000000;
}

.marquee div {
  display: flex;
  min-width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 16px 28px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  min-height: 460px;
  background: #111111;
  color: #ffffff;
}

.visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 80px);
}

.visual-copy h2,
.section-heading h2,
.split-heading h2,
.girl-power-content h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.84;
  text-wrap: balance;
}

.visual-media {
  min-height: 460px;
  background:
    linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.2) 26%, transparent),
    url("../img/hero/banner_secundario_01.png") center / cover no-repeat;
}

.section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.catalog-section {
  padding-top: 92px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.section-note {
  position: relative;
  max-width: 430px;
  margin: 0;
  padding: 18px 20px 18px 24px;
  border: 2px solid #0b0b0b;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 238, 235, 0.86)),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 9px);
  color: #1f1d1a;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.34;
  box-shadow:
    7px 7px 0 #0b0b0b,
    14px 14px 0 rgba(215, 25, 32, 0.12);
}

.section-note::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 12px;
  bottom: 12px;
  width: 6px;
  background: #d71920;
}

.section-note span {
  display: block;
  margin-bottom: 4px;
  color: #d71920;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.toolbar {
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  background: rgba(241, 239, 235, 0.82);
  backdrop-filter: blur(16px);
}

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.88rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-1px);
}

.catalog-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(130deg, rgba(215, 25, 32, 0.12), transparent 32%, rgba(201, 169, 104, 0.18));
  opacity: 0;
  transition: opacity 200ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(5, 5, 5, 0.34);
  box-shadow: var(--shadow);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 42%),
    radial-gradient(circle at 50% 58%, rgba(0, 0, 0, 0.12), transparent 48%),
    #f2f1ee;
  border-bottom: 1px solid var(--line);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.product-media::after {
  content: attr(data-category);
  position: absolute;
  left: 12px;
  top: 12px;
  color: rgba(0, 0, 0, 0.07);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.22));
  transition: transform 220ms ease, opacity 140ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045) rotate(-1deg);
}

.image-toggle {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  border: 1px solid #000000;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.image-toggle button {
  min-width: 66px;
  min-height: 34px;
  border: 0;
  border-right: 1px solid #000000;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 0.72rem;
}

.image-toggle button:last-child {
  border-right: 0;
}

.image-toggle button.is-active {
  background: #000000;
  color: #ffffff;
}

.product-badge {
  position: absolute;
  z-index: 4;
  right: 12px;
  top: 12px;
  padding: 8px 10px;
  background: var(--hot);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  min-height: 274px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.product-id {
  color: var(--ink);
  font-size: 0.8rem;
}

.product-category {
  color: var(--hot);
  font-size: 0.78rem;
  text-align: right;
}

.product-card h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(1.38rem, 2.7vw, 1.86rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-shadow: 2px 2px 0 rgba(215, 25, 32, 0.12);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.46;
}

.product-card .button {
  width: 100%;
  margin-top: auto;
}

.split-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  padding-inline: max(16px, calc((100% - 1240px) / 2));
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.84) 42%, rgba(0, 0, 0, 0.66)),
    radial-gradient(circle at 16% 16%, rgba(215, 25, 32, 0.28), transparent 17rem),
    url("../img/hero/foto_real_apoyo_01.png") right center / cover no-repeat,
    #070707;
  color: #ffffff;
  overflow: hidden;
}

.split-heading {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 28px 0;
}

.split-heading::before {
  content: "HOP";
  position: absolute;
  left: -0.08em;
  top: -0.18em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 0.8;
}

.split-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 7px;
  margin-top: 24px;
  background: #d71920;
  box-shadow: 18px 0 0 rgba(255, 255, 255, 0.9);
}

.split-heading p:not(.eyebrow) {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
}

.split-heading .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(215, 25, 32, 0.92);
  color: #ffffff;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.12);
}

.split-heading h2 {
  position: relative;
  color: #ffffff;
  text-shadow:
    5px 5px 0 rgba(215, 25, 32, 0.36),
    10px 10px 0 rgba(0, 0, 0, 0.65);
}

.featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-grid .product-card {
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.36),
    8px 8px 0 rgba(215, 25, 32, 0.38);
}

.featured-grid .product-card h3 {
  display: block;
  padding: 10px 12px;
  background: #050505;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  text-shadow: 3px 3px 0 rgba(215, 25, 32, 0.45);
}

.featured-grid .product-card p {
  color: #3b3935;
}

.girl-power-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 95, 168, 0.18), transparent 24rem),
    linear-gradient(135deg, #fff6fb, #ffffff 44%, #f8edf3);
}

.girl-power-media {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)),
    url("../img/hero/banner_girl_power.png") center / cover no-repeat;
}

.girl-power-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 7vw, 84px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 95, 168, 0.28), transparent 18rem),
    linear-gradient(135deg, #14060d, #2a111f 46%, #080808);
  color: #ffffff;
}

.girl-power-content h2 {
  color: #ffffff;
  text-shadow:
    4px 4px 0 rgba(255, 95, 168, 0.32),
    0 22px 40px rgba(0, 0, 0, 0.36);
}

.girl-power-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 28px;
  color: rgba(255, 240, 248, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-band {
  width: min(1240px, calc(100% - 32px));
  min-height: 380px;
  margin: 0 auto 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 6vw, 64px);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.2)),
    url("../img/hero/banner_comunidad.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  filter: saturate(1.12) contrast(1.04);
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  line-height: 1.5;
}

.contact-band .button {
  min-width: 220px;
  min-height: 72px;
  border-color: #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 38px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(320px, 1.25fr) minmax(220px, 0.75fr);
  align-items: center;
  gap: 28px;
  padding: 42px max(16px, calc((100% - 1240px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.1), transparent 18rem),
    linear-gradient(135deg, #030303, #151515 52%, #050505);
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer::before {
  content: "HOUR OF POWER";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255, 255, 255, 0.035);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.8;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
}

.footer-brand img {
  width: min(220px, 100%);
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.84rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.13);
}

.footer-social span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #050505;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-credit {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-credit p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.footer-credit img {
  width: min(230px, 100%);
  max-height: 92px;
  object-fit: contain;
  object-position: right center;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
}

.footer-legal {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Visual direction: HOP black/white gym catalog */
.site-header {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(12, 12, 12, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
}

.brand-mark {
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-name {
  max-width: 120px;
}

.nav-links a::after,
.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: #ffffff;
  color: #000000;
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.78) 46%, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), #000000 105%),
    url("../img/hero/hero_hop_principal.png") 28% center / cover no-repeat;
  filter: grayscale(1) contrast(1.15);
}

.hero-backdrop::after {
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.032) 8px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.12), transparent 20rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 34%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.74fr);
  align-items: center;
}

.hero-copy .eyebrow,
.split-heading .eyebrow,
.girl-power-content .eyebrow,
.contact-copy .eyebrow,
.visual-copy .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.section-heading .eyebrow {
  color: #000000;
}

.hero-copy h1 {
  max-width: 760px;
  color: #f4f1ea;
  text-shadow:
    4px 4px 0 rgba(0, 0, 0, 0.8),
    8px 8px 0 rgba(255, 255, 255, 0.08);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:nth-child(2) {
  display: inline-block;
  margin: -0.08em 0 -0.02em 0.05em;
  padding: 0.08em 0.16em;
  border-top: 0.08em solid currentColor;
  border-bottom: 0.08em solid currentColor;
  font-size: 0.46em;
  line-height: 0.75;
  vertical-align: middle;
}

.hero-copy h1::after {
  display: none;
}

.hero-copy .hero-tagline {
  width: min(520px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-copy .hero-tagline::before,
.hero-copy .hero-tagline::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 2px;
  margin: 0 14px 0.22em;
  background: rgba(255, 255, 255, 0.62);
}

.hero-traits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-traits div {
  position: relative;
  min-height: 82px;
  display: grid;
  align-content: center;
  padding: 12px 18px 12px 64px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-traits div:last-child {
  border-right: 0;
}

.hero-traits div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-traits span,
.hero-traits small {
  font-weight: 900;
  text-transform: uppercase;
}

.hero-traits span {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

.hero-traits small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.hero-panel {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.2);
}

.hero-stamp {
  border-radius: 50%;
  font-size: 1rem;
}

.marquee {
  background: #090909;
  color: #f4f1ea;
}

.visual-band,
.girl-power-content {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 20rem),
    linear-gradient(135deg, #050505, #171717 48%, #050505);
}

.visual-media,
.girl-power-media {
  filter: grayscale(1) contrast(1.08);
}

.toolbar {
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(239, 238, 235, 0.92);
}

.filter-button {
  border-radius: 999px;
}

.product-card {
  border-radius: 8px;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.product-card::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent 45%, rgba(0, 0, 0, 0.08));
}

.product-media {
  background:
    radial-gradient(circle at 50% 62%, rgba(0, 0, 0, 0.13), transparent 45%),
    linear-gradient(180deg, #ffffff, #edeae4);
}

.product-media img {
  filter: grayscale(0.25) drop-shadow(0 24px 22px rgba(0, 0, 0, 0.24));
}

.product-badge {
  left: 12px;
  right: auto;
  top: 12px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: #050505;
  font-size: 0.66rem;
  text-align: center;
}

.product-category {
  color: #000000;
}

.product-card h3 {
  font-size: clamp(1.24rem, 2.2vw, 1.58rem);
}

.product-card .button {
  min-height: 44px;
  border-radius: 4px;
}

.image-toggle {
  border-radius: 999px;
  overflow: hidden;
}

.image-toggle button {
  min-width: 70px;
}

.contact-band {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72) 54%, rgba(0, 0, 0, 0.28)),
    url("../img/hero/banner_comunidad.png") center / cover no-repeat;
}

/* Requested visual refinements */
.hero {
  min-height: 82vh;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), #000000 116%);
  animation: none;
  filter: none;
  transform: none;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3.7rem, 9.2vw, 7.3rem);
}

.hero-logo-title {
  max-width: min(470px, 82vw);
  margin: 0;
}

.hero-logo-title img {
  width: 100%;
  max-height: 245px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.84))
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.hero-copy .hero-tagline {
  width: min(440px, 100%);
}

.hero-panel {
  display: none;
}

.visual-media,
.girl-power-media {
  position: relative;
  filter: saturate(1.08) contrast(1.06);
}

.visual-media::after,
.girl-power-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-media::after {
  background:
    linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.34) 18%, transparent 38%, rgba(17, 17, 17, 0.22) 74%, #111111 100%),
    linear-gradient(180deg, #111111 0%, transparent 18%, transparent 82%, #111111 100%);
}

.girl-power-media {
  filter: saturate(1.18) contrast(1.04);
}

.girl-power-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 36%, rgba(14, 0, 8, 0.36) 100%),
    linear-gradient(180deg, rgba(255, 111, 184, 0.08), transparent 52%, rgba(0, 0, 0, 0.24));
}

.product-badge {
  width: 78px;
  height: 78px;
  background: #d71920;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 0.9;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.28);
}

.filter-button[data-category="GIRL POWER"].is-active,
.filter-button[data-category="GIRL POWER"]:hover,
.filter-button[data-category="GIRL POWER"]:focus-visible,
body.girl-power-mode .filter-button.is-active {
  border-color: #ff5fa8;
  background: #ff5fa8;
  color: #0b0b0b;
  box-shadow: 0 12px 24px rgba(255, 95, 168, 0.22);
}

body.girl-power-mode {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 95, 168, 0.22), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(180, 93, 255, 0.14), transparent 22rem),
    linear-gradient(180deg, #fff5fa, #f7f2f4 42%, var(--paper));
}

body.girl-power-mode .toolbar {
  border-color: rgba(255, 95, 168, 0.42);
  background: rgba(255, 245, 250, 0.92);
}

body.girl-power-mode .catalog-count,
body.girl-power-mode .section-heading .eyebrow,
body.girl-power-mode .product-category {
  color: #cf2f76;
}

body.girl-power-mode #catalogo .section-heading h2::after {
  content: "Girl Power";
  display: block;
  margin-top: 8px;
  color: rgba(255, 95, 168, 0.18);
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.72;
}

body.girl-power-mode #catalogGrid .product-card {
  border-color: rgba(255, 95, 168, 0.28);
  box-shadow: 0 18px 48px rgba(255, 95, 168, 0.12);
}

body.girl-power-mode #catalogGrid .product-media {
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 95, 168, 0.2), transparent 45%),
    linear-gradient(180deg, #ffffff, #fff0f7);
}

body.girl-power-mode #catalogGrid .button {
  border-color: #ff5fa8;
  background: #ff5fa8;
  color: #0b0b0b;
}

#girlPowerCollection .section-heading h2 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.78;
  color: #080808;
  text-shadow:
    5px 5px 0 rgba(255, 95, 168, 0.22),
    10px 10px 0 rgba(0, 0, 0, 0.05);
}

.girl-power-note {
  color: #a12c64;
}

.girl-power-collection {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(16px, calc((100% - 1240px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 95, 168, 0.26), transparent 21rem),
    radial-gradient(circle at 76% 8%, rgba(103, 204, 224, 0.2), transparent 18rem),
    radial-gradient(circle at 88% 36%, rgba(255, 211, 65, 0.2), transparent 15rem),
    linear-gradient(135deg, #fff8fb 0%, #ffffff 40%, #fff0f7 100%);
}

.girl-power-collection::before {
  content: "POWER";
  position: absolute;
  right: -0.12em;
  top: 42px;
  color: rgba(255, 95, 168, 0.09);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(8rem, 22vw, 21rem);
  line-height: 0.72;
  pointer-events: none;
}

.girl-power-collection::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 95, 168, 0.12) 18% 20%, transparent 20% 100%),
    linear-gradient(64deg, transparent 0 72%, rgba(103, 204, 224, 0.12) 72% 74%, transparent 74% 100%);
}

.girl-power-collection > .section-heading,
.girl-power-collection > .product-grid {
  position: relative;
  z-index: 2;
}

.girl-power-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.girl-power-art span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(0.2px);
}

.girl-power-art span:nth-child(1) {
  width: 180px;
  height: 28px;
  left: 48%;
  top: 96px;
  background: #ff5fa8;
  transform: rotate(-18deg);
  box-shadow: 34px 34px 0 #67cce0, 88px -18px 0 #ffd341;
}

.girl-power-art span:nth-child(2) {
  width: 92px;
  height: 92px;
  right: 9%;
  top: 170px;
  border: 12px solid rgba(255, 95, 168, 0.42);
  background: transparent;
}

.girl-power-art span:nth-child(3) {
  width: 130px;
  height: 130px;
  left: 7%;
  bottom: 90px;
  background:
    radial-gradient(circle, transparent 0 44%, #67cce0 45% 54%, transparent 55%),
    radial-gradient(circle at 34% 34%, #ffd341 0 12%, transparent 13%);
}

.girl-power-collection .product-card {
  border-color: rgba(255, 95, 168, 0.18);
  box-shadow:
    0 20px 48px rgba(255, 95, 168, 0.12),
    0 8px 0 rgba(255, 95, 168, 0.08);
}

.girl-power-collection .product-media {
  background:
    radial-gradient(circle at 48% 60%, rgba(255, 95, 168, 0.18), transparent 44%),
    linear-gradient(180deg, #ffffff, #fff1f8);
}

.girl-power-collection .product-media::after {
  color: rgba(255, 95, 168, 0.1);
}

.girl-power-collection .product-category {
  color: #cf2f76;
}

.girl-power-collection .button {
  border-color: #111111;
  background:
    linear-gradient(90deg, #111111, #24101a);
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.11);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-logo-title {
    margin-inline: auto;
  }

  .hero-logo-title img {
    object-position: center center;
  }

  .hero-traits {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-traits div {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
  }

  .hero-traits div:last-child {
    border-bottom: 0;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    position: static;
  }

  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  body.menu-open .site-header {
    z-index: 72;
  }

  .nav-shell {
    position: relative;
    min-height: var(--header-height);
  }

  .menu-button {
    position: relative;
    z-index: 75;
    display: block;
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
      #0a0a0a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .menu-button.is-open {
    border-color: #ffffff;
    background: #ffffff;
  }

  .menu-button.is-open span {
    background: #000000;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 55;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.86)),
      radial-gradient(circle at 50% 100%, rgba(215, 25, 32, 0.2), transparent 16rem);
    backdrop-filter: blur(9px) saturate(0.75);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 68;
    width: 100%;
    max-height: calc(100dvh - var(--header-height) - 24px);
    min-height: min(340px, calc(100dvh - var(--header-height) - 24px));
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 6px;
    padding: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.09), transparent 34%),
      radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.12), transparent 10rem),
      radial-gradient(circle at 82% 88%, rgba(215, 25, 32, 0.17), transparent 11rem),
      linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(0, 0, 0, 0.98)),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
    box-shadow:
      0 26px 90px rgba(0, 0, 0, 0.68),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    counter-reset: mobile-nav;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
  }

  .nav-links::before {
    content: "HOP";
    position: absolute;
    right: -4px;
    bottom: 18px;
    z-index: 0;
    color: rgba(255, 255, 255, 0.04);
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: clamp(7rem, 34vw, 11rem);
    line-height: 0.75;
    pointer-events: none;
  }

  .nav-links > * {
    position: relative;
    z-index: 1;
  }

  .nav-links.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 4px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu-head img {
    width: min(158px, 64vw);
    max-height: 42px;
    object-fit: contain;
    object-position: center center;
  }

  .mobile-menu-head span,
  .mobile-menu-foot {
    color: rgba(255, 255, 255, 0.64);
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-menu-head span {
    display: none;
  }

  .nav-links a {
    min-height: 42px;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
      rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: clamp(0.96rem, 4.5vw, 1.18rem);
    line-height: 1;
    text-align: center;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.58);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  }

  .nav-links a::before {
    counter-increment: mobile-nav;
    content: "0" counter(mobile-nav);
    width: 26px;
    height: 26px;
    display: inline-grid;
    flex: 0 0 26px;
    place-items: center;
    border: 1px solid rgba(215, 25, 32, 0.5);
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.13);
    color: #ffffff;
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: 0.66rem;
    text-shadow: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-color: rgba(255, 255, 255, 0.56);
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
    text-shadow: none;
  }

  .nav-links a:hover::before,
  .nav-links a:focus-visible::before {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
  }

  .mobile-menu-foot {
    padding: 6px 4px 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
  }

  .visual-band,
  .girl-power-band {
    grid-template-columns: 1fr;
  }

  .visual-media {
    min-height: 340px;
  }

  .girl-power-media {
    min-height: 380px;
  }

  .section-heading,
  .toolbar,
  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .section-note {
    max-width: 100%;
  }

  .toolbar {
    position: relative;
    top: auto;
  }

  .catalog-count {
    align-self: flex-start;
  }

  .product-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section,
  .hero-grid,
  .contact-band {
    width: min(100% - 24px, 1240px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo-mark {
    width: 44px;
    height: 44px;
  }

  .brand-logo-word {
    height: 44px;
    max-width: 145px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 80px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.96)),
      radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.12), transparent 18rem);
  }

  .hero-video {
    object-position: center center;
    opacity: 0.78;
  }

  .hero-grid {
    padding-bottom: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 22vw, 5.4rem);
  }

  .hero-copy h1 span:nth-child(2) {
    margin-left: 0;
  }

  .hero-copy .hero-tagline {
    margin-inline: auto;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .hero-copy .hero-tagline::before,
  .hero-copy .hero-tagline::after {
    width: 28px;
    margin-inline: 8px;
  }

  .hero-actions .button,
  .contact-band .button {
    width: 100%;
  }

  .visual-copy,
  .girl-power-content {
    padding: 36px 16px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .split-heading h2,
  .visual-copy h2,
  .girl-power-content h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .girl-power-collection::before {
    top: 80px;
    right: -0.22em;
    font-size: clamp(6rem, 28vw, 10rem);
  }

  .girl-power-art span:nth-child(1) {
    left: 38%;
    top: 112px;
    transform: scale(0.72) rotate(-18deg);
  }

  .girl-power-art span:nth-child(2) {
    right: -18px;
    top: 164px;
    transform: scale(0.7);
  }

  .girl-power-art span:nth-child(3) {
    display: none;
  }

  .product-grid,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
    min-height: 0;
  }

  .product-media {
    min-height: 212px;
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-media::before {
    inset: 9px;
  }

  .product-media::after {
    left: 8px;
    top: 8px;
    font-size: 1.7rem;
  }

  .product-media img {
    width: 92%;
    height: 88%;
  }

  .product-badge {
    width: 54px;
    height: 54px;
    left: 8px;
    top: 8px;
    border-width: 2px;
    font-size: 0.58rem;
  }

  .product-body {
    min-height: 0;
    gap: 8px;
    padding: 14px;
  }

  .product-meta {
    align-items: flex-start;
    gap: 8px;
  }

  .product-id,
  .product-category {
    font-size: 0.68rem;
  }

  .product-card h3 {
    font-size: clamp(1.1rem, 7vw, 1.42rem);
    line-height: 0.95;
  }

  .featured-grid .product-card h3 {
    padding: 8px;
    font-size: clamp(1.05rem, 6.2vw, 1.34rem);
  }

  .product-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card .button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .image-toggle {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
  }

  .image-toggle button {
    min-width: 0;
    width: 50%;
    min-height: 30px;
    font-size: 0.62rem;
  }

  .split-section {
    padding-block: 58px;
  }

  .contact-band {
    min-height: 0;
    margin-bottom: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 26px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-credit {
    justify-items: center;
  }

  .footer-brand img,
  .footer-credit img {
    object-position: center center;
  }
}
