:root {
  --bg: #ffffff;
  --bg-soft: #eef6fc;
  --bg-alt: #fff7df;
  --bg-pink: #fff1f7;
  --bg-green: #f0f8f3;
  --bg-cream: #fff9eb;
  --primary: #6fc1fd;
  --primary-deep: #1877cf;
  --primary-light: #e8f2fa;
  --text: #1a1a1a;
  --muted: #606060;
  --accent: #ffa96b;
  --accent-warm: #ffc900;
  --pink: #fdb9d2;
  --green: #83be9c;
  --line: #e7e2dc;
  --card: #ffffff;
  --shadow: 0 16px 36px rgba(26, 26, 26, 0.1);
  --shadow-strong: 0 24px 54px rgba(26, 26, 26, 0.16);
  --button-shadow: 0 8px 0 rgba(26, 26, 26, 0.14), 0 16px 28px rgba(26, 26, 26, 0.1);
  --button-shadow-hover: 0 11px 0 rgba(26, 26, 26, 0.14), 0 22px 34px rgba(26, 26, 26, 0.15);
  --max: 1180px;
  --header-height: 142px;
  --display-font: "Rubik", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--primary);
  border-bottom: 3px solid var(--text);
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0);
  transform: translateY(0);
  transition: box-shadow 180ms ease, transform 220ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.12);
}

.site-header.is-hidden-mobile {
  transform: translateY(-100%);
}

.promo-bar {
  display: grid;
  place-items: center;
  min-height: 36px;
  background: var(--accent-warm);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  border-bottom: 2px solid var(--text);
}

.header-main {
  max-width: var(--max);
  min-height: 70px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--display-font);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  line-height: 0.9;
}

.brand-word {
  display: inline-block;
  font-size: 1.62em;
  letter-spacing: -0.03em;
  transform: skewX(-6deg) rotate(-2deg);
  text-shadow: 3px 3px 0 #ffffff;
  transition: transform 180ms ease;
}

.brand-sub {
  font-size: 0.6em;
  letter-spacing: 0.4em;
  font-weight: 700;
}

.brand:hover .brand-word {
  transform: skewX(-6deg) rotate(-2deg) scale(1.06);
}

.site-search {
  display: flex;
  min-width: 0;
  border: 2px solid var(--text);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-search:focus-within {
  border-color: var(--text);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5), 0 12px 26px rgba(26, 26, 26, 0.08);
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--text);
}

.site-search button {
  min-height: 54px;
  border: 0;
  border-left: 2px solid var(--text);
  padding: 0 30px;
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 0.96rem;
  font-weight: 700;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-search button:hover {
  background: var(--primary);
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 42px;
  padding: 0 20px;
  background: var(--primary);
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 3px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover {
  border-bottom-color: var(--text);
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-actions a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  max-width: none;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(42px, 7vw, 82px) max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background:
    linear-gradient(100deg, rgba(10, 14, 20, 0.72) 0%, rgba(10, 14, 20, 0.34) 52%, rgba(10, 14, 20, 0.08) 100%),
    url("assets/images/body-good-shaped-sexy-athletic-girl-holds-dumbbells.jpg") center 28% / cover no-repeat;
  border-bottom: 3px solid var(--text);
  overflow: hidden;
  isolation: isolate;
}

.hero > * {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 7px 14px;
  background: var(--accent-warm);
  color: var(--text);
  border: 2px solid var(--text);
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(26, 26, 26, 0.22);
  transform: rotate(-1deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(2.95rem, 5.8vw, 5.35rem);
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1,
.hero-subtitle {
  color: #ffffff;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-warm);
}

.hero-subtitle {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--display-font);
  line-height: 1;
  box-shadow: var(--button-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: var(--button-shadow-hover);
}

.button-primary {
  background: var(--accent);
  color: var(--text);
}

.button-secondary {
  background: var(--accent-warm);
  color: var(--text);
}

.hero-product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: 8px;
  z-index: 2;
  padding: 10px 14px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--display-font);
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-sticker {
  position: absolute;
  left: 6px;
  top: 72px;
  bottom: auto;
  z-index: 2;
  padding: 9px 13px;
  border: 2px solid var(--text);
  border-radius: 999px;
  transform: rotate(-3deg);
  background: var(--accent-warm);
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.12);
}

.hero-product-card {
  z-index: 1;
  width: min(100%, 390px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.hero-product-card img {
  width: min(82%, 300px);
  margin: 0 auto;
  filter: drop-shadow(0 16px 22px rgba(26, 26, 26, 0.14));
}

.hero-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-product-meta h2 {
  font-size: 1.15rem;
}

.hero-product-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-product-meta span {
  color: var(--accent);
  font-weight: 700;
}

.floating-card {
  animation: productFloat 5s ease-in-out infinite;
}

.trust-strip {
  display: block;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-green);
  color: #2f7450;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
}

.trust-strip-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 46px);
  flex-wrap: wrap;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trustMarquee 32s linear infinite;
  will-change: transform;
}

.trust-strip:hover .trust-track {
  animation-play-state: paused;
}

.trust-group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
  padding-right: clamp(24px, 5vw, 58px);
  white-space: nowrap;
}

.hero-marquee {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--accent-warm);
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: heroMarquee 34s linear infinite;
  will-change: transform;
}

.hero-marquee:hover .hero-marquee-track {
  animation-play-state: paused;
}

.hero-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-width: max-content;
  padding: 14px clamp(28px, 5vw, 70px) 14px 0;
  white-space: nowrap;
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-marquee span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--text);
  border-radius: 3px;
  background: var(--accent);
  transform: rotate(45deg);
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background: var(--bg-pink);
}

.offer-strip a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 28px;
  background: #ffffff;
  color: var(--text);
  font-family: var(--display-font);
  text-align: center;
  font-weight: 700;
  border: 3px solid var(--text);
  border-radius: 999px;
  box-shadow: var(--button-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.offer-strip a::after,
.button::after {
  content: "";
  width: 1.05em;
  height: 1.05em;
  margin-left: 10px;
  background: currentColor;
  clip-path: polygon(18% 46%, 68% 46%, 47% 25%, 58% 14%, 98% 54%, 58% 94%, 47% 83%, 68% 62%, 18% 62%);
  transition: transform 160ms ease;
}

.offer-strip a:hover::after,
.button:hover::after {
  transform: translateX(3px);
}

.offer-strip a:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--button-shadow-hover);
}

.section {
  position: relative;
  isolation: isolate;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 20px;
  scroll-margin-top: 170px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--section-bg, #ffffff);
}

main > .section:nth-of-type(4n + 1),
.page-root > .section:nth-of-type(4n + 1) {
  --section-bg:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      var(--bg-soft) 18%,
      var(--bg-soft) 58%,
      color-mix(in srgb, var(--bg-soft) 55%, var(--bg-pink)) 82%,
      var(--bg-pink) 100%
    );
}

main > .section:nth-of-type(4n + 2),
.page-root > .section:nth-of-type(4n + 2) {
  --section-bg:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-soft) 55%, var(--bg-pink)) 0%,
      var(--bg-pink) 18%,
      var(--bg-pink) 58%,
      color-mix(in srgb, var(--bg-pink) 52%, var(--bg-cream)) 82%,
      var(--bg-cream) 100%
    );
}

main > .section:nth-of-type(4n + 3),
.page-root > .section:nth-of-type(4n + 3) {
  --section-bg:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-pink) 52%, var(--bg-cream)) 0%,
      var(--bg-cream) 18%,
      var(--bg-cream) 58%,
      color-mix(in srgb, var(--bg-cream) 54%, var(--bg-green)) 82%,
      var(--bg-green) 100%
    );
}

main > .section:nth-of-type(4n),
.page-root > .section:nth-of-type(4n) {
  --section-bg:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-cream) 54%, var(--bg-green)) 0%,
      var(--bg-green) 18%,
      var(--bg-green) 58%,
      color-mix(in srgb, var(--bg-green) 54%, var(--bg-soft)) 82%,
      var(--bg-soft) 100%
    );
}

.hero,
.brand-banner,
.newsletter,
.site-footer {
  scroll-margin-top: 170px;
}

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

.section-heading h2,
.philosophy h2,
.newsletter h2,
.brand-banner h2 {
  max-width: 700px;
  color: var(--text);
  font-size: clamp(2.18rem, 4.15vw, 3.65rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(10, 14, 20, 0.72) 0%, rgba(10, 14, 20, 0.36) 55%, rgba(10, 14, 20, 0.12) 100%),
    var(--page-hero-image, url("assets/images/composition-with-metal-dumbbell-protein-shake-blurred-woman-background.jpg")) center / cover no-repeat;
  border-bottom: 3px solid var(--text);
  padding: clamp(56px, 8vw, 96px) 20px;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(2.85rem, 5.15vw, 4.95rem);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.65;
}


.page-root[data-page="shop"] .page-hero {
  --page-hero-image: url("assets/images/composition-with-metal-dumbbell-protein-shake-blurred-woman-background.jpg");
}

.page-root[data-page="protein"] .page-hero,
.page-root[data-page="product"] .page-hero {
  --page-hero-image: url("assets/images/smiling-active-young-latin-woman-sportswear-doing-exercises-resting-fitness-ball-with-bottle.jpg");
}

.page-root[data-page="performance"] .page-hero,
.page-root[data-page="best-sellers"] .page-hero {
  --page-hero-image: url("assets/images/serious-man-doing-push-ups.jpg");
}

.page-root[data-page="wellness"] .page-hero,
.page-root[data-page="faq"] .page-hero {
  --page-hero-image: url("assets/images/young-tired-sportswoman-with-towel-her-shoulders.jpg");
}

.page-root[data-page="goals"] .page-hero {
  --page-hero-image: url("assets/images/unrecognizable-athletic-woman-tying-sports-shoe-health-club.jpg");
}

.page-root[data-page="brands"] .page-hero,
.page-root[data-page="learn"] .page-hero {
  --page-hero-image: url("assets/images/sports-girl-doing-exercises-pink-background.jpg");
}

.page-root[data-page="sale"] .page-hero {
  --page-hero-image: url("assets/images/curly-blond-guy-with-glasses-lifting-up-dumbbell.jpg");
}

.page-root[data-page="about"] .page-hero {
  --page-hero-image: url("assets/images/full-shot-couple-training-together-outdoors.jpg");
}

.page-root[data-page="contact"] .page-hero,
.page-root[data-page="shipping-returns"] .page-hero,
.page-root[data-page="privacy"] .page-hero,
.page-root[data-page="terms"] .page-hero {
  --page-hero-image: url("assets/images/with-roller-young-fitness-woman-sportive-clothes-against-background-studio.jpg");
}

.page-toolbar,
.filter-layout,
.detail-layout,
.two-column,
.policy-layout {
  max-width: var(--max);
  margin: 0 auto;
}

.page-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 24px 20px 0;
}

.select-control,
.filter-chip,
.quantity-control,
.option-pill {
  border: 2px solid var(--text);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-family: var(--display-font);
  font-weight: 700;
}

.select-control {
  min-height: 46px;
  padding: 0 18px;
  font-family: "Inter", system-ui, sans-serif;
}

.shop-search-panel {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin: clamp(28px, 5vw, 54px) auto 0;
  padding: 0 20px;
}

.shop-search-panel input,
.select-control {
  width: 100%;
  border: 2px solid var(--primary);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.shop-search-panel input {
  min-height: 58px;
  padding: 0 18px;
}

.shop-search-panel input:focus,
.select-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 169, 107, 0.18), 0 12px 24px rgba(26, 26, 26, 0.08);
}

.filter-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: clamp(42px, 7vw, 72px) 20px;
}

.filter-panel,
.info-card,
.article-card,
.brand-card,
.goal-card,
.faq-group,
.contact-card,
.policy-card,
.buy-panel,
.nutrition-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.filter-panel {
  align-self: start;
  padding: 22px;
  position: sticky;
  top: 170px;
}

.filter-panel h2,
.filter-panel h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.filter-list,
.link-list {
  display: grid;
  gap: 10px;
}

.page-toolbar .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-family: var(--display-font);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--primary);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(26, 26, 26, 0.12);
}

.product-results {
  align-self: center;
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.clear-filters {
  margin-top: 18px;
}

.no-results {
  margin: 22px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 700;
}

.collection-grid,
.article-grid,
.brand-grid,
.goal-grid,
.benefit-grid,
.faq-grid,
.contact-grid,
.clearance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-grid,
.benefit-grid,
.article-grid,
.brand-grid,
.goal-grid,
.faq-grid,
.contact-grid,
.clearance-grid {
  margin-top: 26px;
}

.info-card,
.article-card,
.brand-card,
.goal-card,
.contact-card,
.policy-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.info-card::before,
.article-card::before,
.brand-card::before,
.goal-card::before,
.contact-card::before {
  content: "";
  display: block;
  height: 132px;
  margin: -24px -24px 22px;
  background:
    linear-gradient(180deg, rgba(111, 193, 253, 0.04), rgba(111, 193, 253, 0.18)),
    var(--card-image, url("assets/images/unrecognizable-athletic-woman-tying-sports-shoe-health-club.jpg")) center / cover;
}

.collection-grid .info-card::before {
  height: 210px;
}

.benefit-grid .info-card::before {
  height: 210px;
}

.goal-grid .goal-card::before,
.brand-grid .brand-card::before,
.article-grid .article-card::before,
.clearance-grid .info-card::before {
  height: 210px;
}

.clearance-grid .info-card:nth-child(1) {
  --card-image: url("assets/images/curly-blond-guy-with-glasses-lifting-up-dumbbell.jpg");
}

.clearance-grid .info-card:nth-child(2) {
  --card-image: url("assets/images/serious-man-doing-push-ups.jpg");
}

.clearance-grid .info-card:nth-child(3) {
  --card-image: url("assets/images/with-roller-young-fitness-woman-sportive-clothes-against-background-studio.jpg");
}

.collection-grid .info-card:nth-child(1),
.benefit-grid .info-card:nth-child(1),
.brand-grid .brand-card:nth-child(1),
.goal-grid .goal-card:nth-child(1),
.contact-grid .contact-card:nth-child(1) {
  --card-image: url("assets/images/composition-with-metal-dumbbell-protein-shake-blurred-woman-background.jpg");
}

.collection-grid .info-card:nth-child(2),
.benefit-grid .info-card:nth-child(2),
.brand-grid .brand-card:nth-child(2),
.goal-grid .goal-card:nth-child(2),
.contact-grid .contact-card:nth-child(2) {
  --card-image: url("assets/images/side-view-athletic-woman-holding-rope.jpg");
}

.collection-grid .info-card:nth-child(3),
.benefit-grid .info-card:nth-child(3),
.brand-grid .brand-card:nth-child(3),
.goal-grid .goal-card:nth-child(3),
.contact-grid .contact-card:nth-child(3) {
  --card-image: url("assets/images/sports-girl-stretches-holds-water-bottle-unusual-way.jpg");
}

.article-grid .article-card:nth-child(1),
.goal-grid .goal-card:nth-child(4),
.brand-grid .brand-card:nth-child(4) {
  --card-image: url("assets/images/crop-serious-sportswoman-with-dumbbell.jpg");
}

.article-grid .article-card:nth-child(2),
.goal-grid .goal-card:nth-child(5),
.brand-grid .brand-card:nth-child(5) {
  --card-image: url("assets/images/fitness-friends-outdoor-women-stretching-arms-workout-with-happiness-active-lifestyle-park-exercise-nature-healthy-happy-with-female-people-training-warm-up-together.jpg");
}

.article-grid .article-card:nth-child(3),
.goal-grid .goal-card:nth-child(6),
.brand-grid .brand-card:nth-child(6) {
  --card-image: url("assets/images/athletic-woman-is-doing-push-ups-while-using-special-handles-studio-background-with-color-filter.jpg");
}

.article-grid .article-card:nth-child(4),
.goal-grid .goal-card:nth-child(7) {
  --card-image: url("assets/images/male-athlete-keeps-his-balance-his-elbow.jpg");
}

.article-grid .article-card:nth-child(5) {
  --card-image: url("assets/images/with-roller-young-fitness-woman-sportive-clothes-against-background-studio.jpg");
}

.article-grid .article-card:nth-child(6) {
  --card-image: url("assets/images/smiling-active-young-latin-woman-sportswear-doing-exercises-resting-fitness-ball-with-bottle.jpg");
}

.info-card h3,
.article-card h3,
.brand-card h3,
.goal-card h3,
.contact-card h3,
.policy-card h2 {
  color: var(--primary-deep);
  font-size: 1.3rem;
}

.info-card h3::before,
.article-card h3::before,
.brand-card h3::before,
.goal-card h3::before,
.contact-card h3::before {
  content: "";
  display: block;
  width: 38px;
  height: 6px;
  margin-bottom: 14px;
  background: var(--accent-warm);
}

.info-card p,
.article-card p,
.brand-card p,
.goal-card p,
.contact-card p,
.policy-card p,
.faq-group p,
.faq-group dd {
  color: var(--muted);
  line-height: 1.65;
}

.promo-panel {
  max-width: var(--max);
  margin: clamp(36px, 6vw, 64px) auto;
  padding: clamp(26px, 5vw, 48px);
  border: 3px solid var(--text);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 169, 107, 0.95), rgba(255, 169, 107, 0.72) 48%, rgba(255, 169, 107, 0.16)),
    url("assets/images/fitness-friends-outdoor-women-stretching-arms-workout-with-happiness-active-lifestyle-park-exercise-nature-healthy-happy-with-female-people-training-warm-up-together.jpg") center / cover;
  color: var(--text);
  box-shadow: var(--button-shadow);
}

.promo-panel h2,
.promo-panel p {
  color: var(--text);
}

.faq-group {
  padding: 24px;
}

.category-faq-section .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 36px);
  align-items: stretch;
}

.category-faq-section .faq-group {
  min-height: 100%;
  padding: clamp(26px, 3vw, 34px);
}

.category-faq-section .faq-question {
  min-height: 66px;
}

.faq-group h3 {
  margin-bottom: 14px;
}

.faq-group dl {
  display: grid;
  gap: 18px;
  margin: 16px 0 0;
}

.faq-group dt {
  color: var(--primary-deep);
  font-family: var(--display-font);
  font-weight: 700;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:first-of-type {
  border-top: 0;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--primary-deep);
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.faq-question span:last-child {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--text);
  border-radius: 50%;
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  background: var(--primary);
  color: var(--text);
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0;
  padding: 0 46px 18px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  padding: clamp(42px, 7vw, 78px) 20px;
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.gallery-main {
  display: grid;
  min-height: 560px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-pink));
}

.gallery-main img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 26px rgba(26, 26, 26, 0.12));
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumbs span {
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
}

.buy-panel {
  align-self: start;
  position: sticky;
  top: 170px;
  padding: 28px;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 22px;
}

.option-pill,
.quantity-control {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
}

.nutrition-panel {
  margin-top: 24px;
  padding: 24px;
}

.nutrition-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: 16px;
  font: inherit;
}

.contact-form {
  max-width: 780px;
  display: grid;
  gap: 18px;
  margin: clamp(32px, 5vw, 58px) auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form-heading {
  margin-bottom: 4px;
}

.contact-form-heading h2 {
  color: var(--primary-deep);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.contact-form-heading p:not(.eyebrow),
.form-note {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 2px solid var(--primary);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 15px 16px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(229, 122, 79, 0.18), 0 12px 24px rgba(34, 34, 34, 0.08);
}

.contact-form button {
  justify-self: start;
  min-height: 56px;
  padding: 0 32px;
  border: 3px solid var(--text);
  border-radius: 22px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--button-shadow);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.contact-form button:hover {
  background: var(--accent-warm);
  color: var(--text);
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--button-shadow-hover);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.about-story,
.about-columns,
.about-layer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

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

.about-story {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}

.about-layer {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.about-layer-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
}

.about-copy,
.about-highlight {
  padding: 0;
}

.about-story .about-copy {
  align-self: center;
}

.about-copy h2 {
  color: var(--primary-deep);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.about-highlight h3 {
  color: var(--primary-deep);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-highlight {
  border-top: 3px solid var(--green);
  color: var(--text);
  margin-top: 28px;
  padding-top: 20px;
}

.about-highlight h3 {
  color: var(--primary-deep);
}

.about-highlight ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-highlight li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.about-highlight li:last-child {
  border-bottom: 0;
}

.about-image {
  position: relative;
  min-height: 360px;
  margin: 0;
  border: 3px solid var(--text);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--button-shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(111, 193, 253, 0.18));
  pointer-events: none;
}

.about-image-primary {
  min-height: clamp(380px, 38vw, 560px);
  margin-top: 0;
}

.about-layer .about-copy {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 38px);
  border: 3px solid var(--text);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--button-shadow);
}

.about-layer:not(.about-layer-reverse) .about-copy {
  margin-left: 0;
}

.about-layer-reverse .about-copy {
  margin-right: 0;
}

.about-principles {
  padding-top: clamp(28px, 5vw, 56px);
}

.about-principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.about-principle-list article {
  display: block;
  min-height: 230px;
  padding: 26px;
  border: 3px solid var(--text);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--button-shadow);
}

.about-principle-list h3 {
  color: var(--primary-deep);
  font-size: 1.35rem;
}

.about-principle-list p {
  max-width: none;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.section-categories {
  position: relative;
  background: var(--bg-pink);
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  overflow: hidden;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 14px;
  padding: 14px;
  border: 3px solid var(--text);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0) 45%, rgba(10, 14, 20, 0.34) 100%),
    var(--category-image, url("assets/images/composition-with-metal-dumbbell-protein-shake-blurred-woman-background.jpg")) center / cover;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--button-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--button-shadow-hover);
}

.category-card:nth-child(1) {
  --category-image: url("assets/images/composition-with-metal-dumbbell-protein-shake-blurred-woman-background.jpg");
}

.category-card:nth-child(2) {
  --category-image: url("assets/images/smiling-active-young-latin-woman-sportswear-doing-exercises-resting-fitness-ball-with-bottle.jpg");
}

.category-card:nth-child(3) {
  --category-image: url("assets/images/serious-man-doing-push-ups.jpg");
}

.category-card:nth-child(4) {
  --category-image: url("assets/images/curly-blond-guy-with-glasses-lifting-up-dumbbell.jpg");
}

.category-card:nth-child(5) {
  --category-image: url("assets/images/young-tired-sportswoman-with-towel-her-shoulders.jpg");
}

.category-card:nth-child(6) {
  --category-image: url("assets/images/sports-girl-stretches-holds-water-bottle-unusual-way.jpg");
}

.card-sticker {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: var(--primary);
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 4px 0 rgba(26, 26, 26, 0.24);
  transform: rotate(-2deg);
}

.card-sticker.green {
  background: var(--green);
  color: var(--text);
}

.card-sticker.yellow {
  background: var(--accent-warm);
  color: var(--text);
}

.card-sticker.blue {
  background: var(--primary);
  color: #ffffff;
}

.card-sticker.mint {
  background: var(--pink);
  color: var(--text);
}

.card-sticker.orange {
  background: var(--accent);
  color: var(--text);
}

.category-card h3 {
  font-size: 1.02rem;
  color: var(--text);
  background: #ffffff;
  border: 2px solid var(--text);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 4px 0 rgba(26, 26, 26, 0.24);
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.category-card:hover h3 {
  background: var(--accent-warm);
  transform: rotate(-2deg) scale(1.04);
}

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

.product-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card {
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.product-card:hover,
.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(111, 193, 253, 0.4);
  box-shadow: var(--shadow-strong);
}

.sale-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 7px 12px;
  border: 2px solid var(--text);
  border-radius: 999px;
  background: var(--accent-warm);
  color: var(--text);
  font-family: var(--display-font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(26, 26, 26, 0.24);
  transform: rotate(-3deg);
}

.product-media {
  position: relative;
  height: 315px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid var(--text);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light), #ffffff 42%, var(--bg-pink));
  overflow: hidden;
}

.product-media-photo {
  padding: 0;
}

.product-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover .product-media-photo img {
  transform: scale(1.05);
}

.product-media > * {
  position: relative;
  z-index: 1;
}

.product-media-image img {
  max-height: 275px;
  width: auto;
  filter: drop-shadow(0 14px 16px rgba(26, 26, 26, 0.12));
  transition: transform 180ms ease;
}

.product-card:hover .product-media-image img {
  transform: translateY(-6px);
}

.mock-product {
  position: relative;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--primary);
  box-shadow: 0 14px 20px rgba(26, 26, 26, 0.16);
  transition: transform 180ms ease;
}

.product-card:hover .mock-product {
  transform: translateY(-6px);
}

.mock-product::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
}

.mock-product-tub {
  width: 145px;
  height: 170px;
  border-radius: 16px 16px 24px 24px;
}

.mock-product-bottle {
  width: 100px;
  height: 210px;
  border-radius: 32px 32px 18px 18px;
}

.mock-product-sachet {
  width: 140px;
  height: 205px;
  border-radius: 10px 10px 24px 24px;
  background: var(--accent);
}

.mock-product-box {
  width: 160px;
  height: 145px;
  border-radius: 6px;
}

.product-card:nth-child(3n + 1) .product-media {
  background: linear-gradient(135deg, var(--primary-light), #ffffff 48%, rgba(111, 193, 253, 0.32));
}

.product-card:nth-child(3n + 2) .product-media {
  background: linear-gradient(135deg, var(--bg-pink), #ffffff 50%, rgba(253, 185, 210, 0.42));
}

.product-card:nth-child(3n) .product-media {
  background: linear-gradient(135deg, var(--bg-green), #ffffff 50%, rgba(255, 201, 0, 0.34));
}

.rating {
  color: #f5a300;
  font-size: 0.82rem;
  font-weight: 700;
}

.rating span {
  color: var(--muted);
  margin-left: 6px;
}

.product-card h3 {
  min-height: 46px;
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.product-card p {
  display: none;
}

.product-bottom {
  display: grid;
  gap: 12px;
  padding-top: 12px;
}

.product-bottom span {
  color: var(--primary-deep);
  font-size: 1.1rem;
  font-weight: 700;
}

.product-bottom button,
.newsletter-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--button-shadow);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.product-bottom button {
  padding: 0 28px;
}

.newsletter-form button {
  padding: 0 30px;
}

.product-bottom button:hover,
.newsletter-form button:hover {
  background: var(--accent-warm);
  color: var(--text);
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--button-shadow-hover);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  position: relative;
}

.philosophy-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary-deep);
  font-weight: 700;
}

.philosophy-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(240, 248, 243, 0.76), rgba(255, 255, 255, 0.74)),
    url("assets/images/sports-girl-stretches-holds-water-bottle-unusual-way.jpg") center / cover;
}

.philosophy-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.philosophy-panel div {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
}

.philosophy-panel dt {
  color: var(--primary-deep);
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 700;
}

.philosophy-panel dd {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-banner {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: grid;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: clamp(36px, 7vw, 76px) max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background:
    linear-gradient(90deg, rgba(111, 193, 253, 0.92), rgba(255, 169, 107, 0.52), rgba(111, 193, 253, 0.12)),
    url("assets/images/wet-sportswoman-training-abs-rain.jpg") center / cover;
  color: #ffffff;
}

.brand-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  transform: translateY(100%);
  background:
    linear-gradient(
      180deg,
      rgba(111, 193, 253, 0.28) 0%,
      color-mix(in srgb, rgba(111, 193, 253, 0.18) 45%, var(--bg-pink)) 46%,
      var(--bg-pink) 100%
    );
  pointer-events: none;
}

.brand-banner h2 {
  color: #ffffff;
}

.brand-banner .button-primary {
  margin-top: 22px;
  background: var(--accent);
}

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

.review-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: #ffffff;
  border-top: 8px solid var(--pink);
}

.review-card::before {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border: 3px solid var(--text);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(111, 193, 253, 0.18)),
    var(--review-image, url("assets/images/smiling-active-young-latin-woman-sportswear-doing-exercises-resting-fitness-ball-with-bottle.jpg")) center / cover;
  box-shadow: 0 8px 0 rgba(26, 26, 26, 0.08);
}

.review-card::after {
  content: "+";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--text);
  border-radius: 50%;
  background: var(--accent-warm);
  color: var(--text);
  font-family: var(--display-font);
  font-weight: 700;
}

.review-card:nth-child(2) {
  border-top-color: var(--green);
  --review-image: url("assets/images/fitness-friends-outdoor-women-stretching-arms-workout-with-happiness-active-lifestyle-park-exercise-nature-healthy-happy-with-female-people-training-warm-up-together.jpg");
}

.review-card:nth-child(3) {
  border-top-color: var(--accent-warm);
  --review-image: url("assets/images/young-tired-sportswoman-with-towel-her-shoulders.jpg");
}

.review-card p {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-card span {
  color: var(--primary-deep);
  font-weight: 700;
}

.newsletter {
  padding-top: 0;
}

.newsletter-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 3px solid var(--text);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(253, 185, 210, 0.94), rgba(255, 201, 0, 0.78), rgba(111, 193, 253, 0.42)),
    url("assets/images/sports-girl-doing-exercises-pink-background.jpg") center / cover;
  box-shadow: var(--button-shadow);
}

.newsletter-panel p:not(.eyebrow) {
  color: var(--text);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 6px;
  border: 2px solid var(--primary);
  border-radius: 24px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.newsletter-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(111, 193, 253, 0.22);
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0 12px;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  padding: 0 24px;
  white-space: nowrap;
}

.site-footer {
  padding: 48px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, var(--text), var(--primary-deep));
  color: #ffffff;
}

.footer-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(120px, 0.8fr)) 1.4fr;
  gap: 26px;
  margin: 0 auto;
}

.footer-grid > * {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.2;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.footer-grid nav {
  display: grid;
  align-content: start;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-newsletter p {
  margin: 0 0 12px;
}

.footer-form {
  border-color: var(--accent-warm);
  background: #ffffff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / var(--trust-groups, 4)));
  }
}

@keyframes heroMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / var(--hero-groups, 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track,
  .hero-marquee-track {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .header-main {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 2px solid var(--text);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
    position: relative;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 4px));
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 4px));
  }

  .menu-toggle.is-open span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 118px;
    z-index: 30;
    min-height: auto;
    padding: 12px;
    flex-direction: column;
    gap: 0;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .header-actions {
    gap: 12px;
  }

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

  .hero-product-stage {
    min-height: 390px;
  }

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

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

  .filter-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .about-story,
  .about-columns,
  .about-layer,
  .about-layer-reverse {
    grid-template-columns: 1fr;
  }

  .about-layer:not(.about-layer-reverse) .about-copy,
  .about-layer-reverse .about-copy {
    margin: 0;
  }

  .about-image-primary {
    min-height: 420px;
  }

  .about-principle-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .filter-panel,
  .buy-panel {
    position: static;
  }

  .collection-grid,
  .article-grid,
  .brand-grid,
  .goal-grid,
  .benefit-grid,
  .faq-grid,
  .contact-grid,
  .clearance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .philosophy,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    min-height: 32px;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .site-search,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-search {
    order: 3;
  }

  .header-actions {
    order: 4;
    justify-content: space-between;
  }

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

  .primary-nav {
    top: 226px;
    left: 16px;
    right: 16px;
  }

  .hero {
    padding-inline: 16px;
    padding-block: 34px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .button-row,
  .newsletter-form {
    flex-direction: column;
  }

  .button,
  .newsletter-form button,
  .contact-form button,
  .site-search button {
    width: 100%;
  }

  .site-search {
    flex-direction: column;
  }

  .site-search button {
    border-left: 0;
    border-top: 2px solid var(--text);
  }

  .hero-product-stage {
    min-height: 360px;
  }

  .offer-badge {
    top: 0;
    right: 0;
  }

  .hero-sticker {
    left: 0;
    top: 22px;
    bottom: auto;
  }

  .trust-strip {
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .offer-strip,
  .retail-bands,
  .category-grid,
  .product-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .article-grid,
  .brand-grid,
  .goal-grid,
  .benefit-grid,
  .faq-grid,
  .contact-grid,
  .clearance-grid {
    grid-template-columns: 1fr;
  }

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

  .page-toolbar {
    display: grid;
  }

  .shop-search-panel {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .product-results {
    justify-self: start;
  }

  .faq-question {
    min-height: 64px;
    align-items: flex-start;
    padding-block: 16px;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .gallery-main {
    min-height: 380px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image,
  .about-image-primary {
    min-height: 300px;
  }

  .about-layer .about-copy {
    padding: 22px;
  }

  .about-principle-list {
    grid-template-columns: 1fr;
  }

  .offer-strip {
    padding-inline: 16px;
  }

  .retail-bands {
    padding-inline: 16px;
  }

  .section {
    padding-inline: 16px;
  }

  .section-heading {
    display: block;
  }

  .category-card {
    min-height: 180px;
    justify-items: start;
    text-align: left;
    padding: 16px;
  }

  .product-media {
    height: 240px;
  }

  .brand-banner {
    min-height: 280px;
    padding-inline: 20px;
  }

}

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

}
