:root {
  --bg: #f6f1ea;
  --surface: #fffdfa;
  --text: #191919;
  --muted: #6d655e;
  --accent: #ed1c24;
  --line: rgba(25, 25, 25, 0.1);
  --shadow: 0 24px 60px rgba(10, 10, 10, 0.12);
  --radius-xl: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(237, 28, 36, 0.08), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 100%);
}

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

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

.site-container {
  max-width: 1180px;
}

.topbar {
  background: #fff;
  color: var(--text);
  border-top: 1px solid rgba(237, 28, 36, 0.3);
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}

.topbar a,
.footer-links a,
.topbar-social a {
  color: var(--text);
}

.topbar a:hover,
.topbar-social a:hover,
.footer-links a:hover,
.nav-links .nav-link:hover {
  color: var(--accent);
}

.header {
  background: #fff;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.navbar {
  min-height: 134px;
}

.brand img {
  width: 90px;
  height: auto;
}

.nav-links .nav-link {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
  color: var(--text);
  padding: 0.3rem 1rem;
  position: relative;
}

.nav-links .nav-link.active {
  color: var(--text);
}

.nav-links .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.05rem;
  height: 1px;
  background: var(--text);
}

.category-menu-toggle {
  border: 0;
  background: transparent;
}

.nav-links .nav-item.dropdown {
  position: relative;
}

.nav-links .theme-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.12);
  padding: 0.55rem 0;
  margin-top: 0.45rem;
}

.nav-links .nav-item.dropdown:hover > .theme-dropdown,
.nav-links .nav-item.dropdown:focus-within > .theme-dropdown,
.theme-dropdown.show {
  display: block;
}

.theme-dropdown .dropdown-item {
  color: var(--text);
  font-size: 0.92rem;
  padding: 0.45rem 1rem;
}

.theme-dropdown .dropdown-item:hover,
.theme-dropdown .dropdown-item:focus {
  color: var(--accent);
  background: #fff4f4;
}

.theme-dropdown .dropdown-item-sub {
  color: var(--muted);
  font-size: 0.84rem;
  padding-left: 1.75rem;
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.82rem 1.5rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-accent {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 14px 30px rgba(237, 28, 36, 0.22);
}

.btn-accent:hover {
  color: #fff;
  background: #c5141c;
  border-color: #c5141c;
}

.btn-ghost,
.btn-ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost-dark:hover {
  color: #fff;
  border-color: #fff;
}

.btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.marquee {
  overflow: hidden;
  background: #ccff4d;
  border-top: 1px solid rgba(25, 25, 25, 0.06);
  border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  letter-spacing: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #101010;
}

.marquee-track span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
}

.marquee-track i {
  font-size: 1.05rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-section {
  padding: 28px 0 42px;
}

.hero-slider {
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: relative;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-slide--one {
  background-image: url("../images/sport-2-slide2-bg.jpg.jpeg");
}

.hero-slide--two {
  background-image: url("../images/sport-2-slide1.png");
}

.hero-slide--three {
  background-image: url("../images/sport-2-slide3.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.32) 44%, rgba(12, 12, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.05) 0%, rgba(12, 12, 12, 0.35) 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: #fff;
  padding: 4rem 1rem 5.5rem 2rem;
}

.eyebrow,
.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.section-eyebrow {
  color: var(--accent);
}

.hero-copy h1,
.section-title,
.promo-title,
.showcase-title,
.footer-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.hero-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin: 22px 0 28px;
}

.hero-visual {
  min-height: 100%;
  display: grid;
  align-content: end;
  justify-items: end;
  padding: 4rem 2rem 5.5rem 1rem;
}

.hero-image,
.hero-card {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.hero-image {
  width: min(100%, 390px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 5.5rem;
  width: 250px;
  padding: 20px;
  background: rgba(255, 250, 245, 0.94);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent);
}

.hero-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.92rem;
}

.hero-indicators {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  gap: 10px;
}

.hero-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin: 0;
  border: 0;
  opacity: 1;
  background: rgba(255, 255, 255, 0.32);
}

.hero-indicators .active {
  width: 34px;
  background: #fff;
}

.hero-section {
  padding: 0 0 42px;
}

.hero-slider {
  border-radius: 0;
  box-shadow: none;
}

.hero-slide {
  min-height: 460px;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide--custom {
  background:
    linear-gradient(180deg, rgba(10, 137, 202, 0.92), rgba(10, 137, 202, 0.94)),
    url("../images/sport-2-slide2-bg.jpg.jpeg") center/cover no-repeat;
}

.hero-slide--supplier {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.98)),
    url("../images/sport-2-slide3.png") center/cover no-repeat;
}

.hero-slide--sporty {
  background:
    linear-gradient(180deg, rgba(246, 78, 24, 0.98), rgba(246, 78, 24, 0.98)),
    url("../images/sport-2-slide3.png") center/cover no-repeat;
}

.hero-slide--custom::before,
.hero-slide--supplier::before,
.hero-slide--sporty::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.14;
}

.hero-slide--custom::before,
.hero-slide--sporty::before {
  background-image: url("../images/sport-2-slide3.png");
}

.hero-slide--supplier::before {
  background-image: url("../images/sport-2-slide1.png");
}

.hero-panel {
  position: absolute;
  overflow: hidden;
}

.hero-panel img,
.hero-panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 7vw, 5.9rem);
  max-width: none;
}

.hero-copy p {
  max-width: none;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 18px 0 24px;
}

.hero-copy--left {
  padding: 7.4rem 0 0 3.25rem;
  max-width: 470px;
}

.hero-copy--center {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 7.2rem 1rem 0;
}

.btn-hero-light {
  min-height: 36px;
  padding: 0.45rem 1rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111;
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.btn-hero-light:hover {
  color: #111;
  background: #f4f4f4;
}

.hero-panel--text-left {
  inset: 0 auto 0 0;
  width: 41%;
  z-index: 3;
}

.hero-panel--tilt-center {
  left: 35.5%;
  top: -2%;
  width: 30.5%;
  height: 76%;
  transform: rotate(8deg);
  opacity: 0.95;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.hero-panel--tilt-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 153, 216, 0.22), rgba(13, 108, 168, 0.14));
}

.hero-panel--tilt-right {
  right: -2.5%;
  top: -3%;
  width: 41%;
  height: 87%;
  transform: rotate(-8deg);
}

.hero-panel-image--tennis {
  background:
    linear-gradient(180deg, rgba(4, 165, 233, 0.02), rgba(4, 165, 233, 0.02)),
    url("../images/sport-2-slide2-bg.jpg.jpeg") center/cover no-repeat;
}

.hero-panel--supplier-left {
  left: 0;
  top: 0;
  width: 35.8%;
  height: 100%;
}

.hero-panel--supplier-center {
  left: 31.3%;
  top: 0;
  width: 32%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(20, 20, 20, 0.98)),
    url("../images/sport-2-slide1.png") center/cover no-repeat;
  z-index: 2;
}

.hero-panel--supplier-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
}

.hero-panel--supplier-right {
  right: 0;
  top: 0;
  width: 40.5%;
  height: 100%;
}

.hero-panel--sport-left {
  left: 0;
  top: 0;
  width: 29%;
  height: 98%;
}

.hero-panel--sport-center {
  left: 25.6%;
  top: 0;
  width: 48%;
  height: 100%;
  z-index: 2;
}

.hero-panel--sport-right {
  right: 0;
  top: 0;
  width: 30.2%;
  height: 96%;
}

.hero-panel--sport-float {
  left: 21%;
  bottom: 7%;
  width: 10%;
  height: 27%;
  transform: rotate(-9deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.hero-control {
  width: 42px;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  width: 22px;
  height: 36px;
  filter: invert(1) opacity(0.38);
}

.hero-indicators {
  bottom: 16px;
  gap: 8px;
}

.hero-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: transparent;
}

.hero-indicators .active {
  width: 8px;
  background: #fff;
}

.carousel-item.active .hero-animate--rise {
  animation: heroRise 0.9s ease both;
}

.carousel-item.active .hero-animate--drift {
  animation: heroDrift 1.05s ease both;
}

.carousel-item.active .hero-animate--float {
  animation: heroFloat 1.15s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(34px) rotate(8deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(8deg);
  }
}

@keyframes heroDrift {
  from {
    opacity: 0;
    transform: translateX(34px) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(-8deg);
  }
}

@keyframes heroFloat {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-9deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-9deg);
  }
}

.category-strip {
  padding: 3rem 3rem 2.4rem;
  background: #fff;
}

.category-strip-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}

.category-strip-title {
  margin: 0 0 2rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}

.category-strip-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.category-strip-track::-webkit-scrollbar {
  display: none;
}

.category-strip-item {
  min-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #111;
  flex: 1 0 auto;
}

.category-strip-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.category-strip-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0);
}

.category-strip-item span:last-child {
  font-size: 0.95rem;
  line-height: 1.35;
}

.category-strip-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.category-strip-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #111;
}

.category-strip-dots .is-active {
  background: #111;
}

.new-arrivals-section {
  padding: 1.3rem 0 2.4rem;
  background: #fff;
}

.new-arrivals-head h2 {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
  color: #111;
  border-bottom: 1px solid #111;
}

.new-arrivals-slider-wrap {
  position: relative;
}

.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}

.arrival-card {
  background: #fff;
}

.arrival-card-image {
  aspect-ratio: 0.78;
  display: grid;
  place-items: center;
  background: #fff;
}

.arrival-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arrival-card-body {
  padding-top: 0.45rem;
}

.arrival-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
  color: #111;
  font-weight: 500;
}

.arrival-card-body span {
  display: inline-block;
  font-size: 0.82rem;
  color: #111;
}

.new-arrivals-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: #111;
  border-bottom: 1px solid #111;
}

.new-arrivals-arrow {
  display: none;
  position: absolute;
  top: 38%;
  width: 20px;
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  color: #111;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

.new-arrivals-arrow--left {
  left: -10px;
}

.new-arrivals-arrow--right {
  right: -10px;
}

.athleisure-section {
  padding: 0.35rem 0 2rem;
  background: #fff;
}

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

.athleisure-slider-wrap .arrival-card-body h3 {
  font-size: 0.92rem;
}

.arrival-card-image--mock {
  background: #fff;
}

.mock-trouser {
  position: relative;
  width: 92px;
  height: 220px;
  background: linear-gradient(180deg, #222 0%, #171717 100%);
  clip-path: polygon(24% 0, 76% 0, 84% 12%, 78% 100%, 56% 100%, 50% 44%, 44% 100%, 22% 100%, 16% 12%);
  border-radius: 10px;
}

.mock-tshirt {
  position: relative;
  width: 165px;
  height: 255px;
  background: linear-gradient(180deg, #cdd1d6 0%, #b9bdc2 100%);
  clip-path: polygon(26% 0, 41% 0, 46% 4%, 54% 4%, 59% 0, 74% 0, 93% 12%, 83% 28%, 83% 100%, 17% 100%, 17% 28%, 7% 12%);
  border-radius: 18px;
}

.mock-tshirt::after {
  content: "EA";
  position: absolute;
  right: 24px;
  top: 58px;
  font-size: 26px;
  font-weight: 800;
  color: #1f1f1f;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
}

.shop-showcase {
  width: 100%;
  background: #fff;
}

.shop-hero-block {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 147, 199, 0.92) 0%, rgba(15, 147, 199, 0.76) 18%, rgba(15, 147, 199, 0.14) 34%, rgba(255, 255, 255, 0) 52%),
    url("../images/1.png") center/cover no-repeat;
  background-attachment: fixed;
}

.shop-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 465px;
  display: flex;
  align-items: center;
}

.shop-hero-copy {
  max-width: 520px;
  color: #fff;
}

.shop-hero-copy h2,
.ready-sets-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.shop-hero-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  max-width: 8ch;
}

.shop-hero-copy p {
  max-width: 440px;
  margin: 1.2rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.3;
}

.ready-sets-block {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #fff;
}

.ready-sets-media,
.ready-sets-media img {
  width: 100%;
  height: 100%;
}

.ready-sets-media {
  position: absolute;
  inset: 0;
}

.ready-sets-media img {
  object-fit: cover;
}

.ready-sets-overlay {
  position: relative;
  z-index: 2;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ready-sets-copy {
  width: min(100%, 920px);
  text-align: center;
}

.ready-sets-copy h2 {
  color: #ff1a10;
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 9ch;
  margin: 0 auto 2rem;
}

.section-space {
  padding: 46px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 12ch;
}

.section-text,
.feature-card-body p,
.showcase-copy p,
.support-point p,
.blog-card-body p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
}

.category-card,
.mini-card,
.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.mini-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.09);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(180deg, #fff 0%, #f8efe6 100%);
  border-radius: 28px;
  padding: 26px 18px;
  border: 1px solid rgba(25, 25, 25, 0.06);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.category-card h3,
.mini-card h3,
.blog-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
}

.category-card-icon,
.mini-card-icon {
  display: grid;
  place-items: center;
  background: #f2ebe4;
}

.category-card-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  border-radius: 24px;
  padding: 18px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.06);
}

.mini-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  padding: 14px;
  flex-shrink: 0;
}

.category-card-icon img,
.mini-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}

.promo-card,
.feature-card,
.support-card,
.showcase-copy,
.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.promo-card,
.showcase-copy {
  box-shadow: var(--shadow);
}

.promo-card {
  position: relative;
  min-height: 620px;
  background: #111;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.2), rgba(13, 13, 13, 0.72)),
    url("../images/image.png") center/cover no-repeat;
}

.promo-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 48px;
  color: #fff;
}

.promo-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 9ch;
  margin-bottom: 16px;
}

.promo-card-content p {
  max-width: 38ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px;
}

.feature-card,
.support-card,
.blog-card {
  background: var(--surface);
  border: 1px solid rgba(25, 25, 25, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.feature-card img,
.support-card > img,
.blog-card img {
  width: 100%;
  object-fit: cover;
}

.feature-card img,
.support-card > img {
  height: 280px;
}

.blog-card img {
  height: 240px;
}

.feature-card-body,
.support-card-body,
.blog-card-body {
  padding: 30px;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background: linear-gradient(135deg, #171717 0%, #312d2b 100%);
  color: #fff;
  padding: 44px;
}

.showcase-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 18px;
  max-width: 11ch;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 44ch;
  margin: 0 0 28px;
}

.support-point {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: #fff3ef;
  border: 1px solid rgba(237, 28, 36, 0.08);
}

.support-point strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body time {
  display: block;
  margin-bottom: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.blog-card-body p {
  margin-top: 14px;
}

.inner-page {
  background: #fff;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  color: #fff;
  background: linear-gradient(135deg, #111 0%, #2f2a27 58%, #61171a 100%);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% auto;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.inner-hero-copy h1,
.about-story-copy h2,
.section-heading-row h2,
.process-copy h2,
.contact-info-panel h2,
.contact-form-panel h2,
.inquiry-items-panel h2,
.inquiry-form-panel h2,
.empty-state h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.inner-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: 0.92;
}

.inner-hero-copy p {
  max-width: 56ch;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.inner-hero-media {
  min-height: 320px;
  display: grid;
  place-items: end center;
}

.inner-hero-media img {
  width: min(100%, 380px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.28));
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.inner-section--surface {
  background: #f7f2ec;
}

.about-story-grid,
.process-grid,
.contact-grid,
.inquiry-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.about-story-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: center;
}

.about-story-media {
  overflow: hidden;
  min-height: 440px;
  background: #f4f1ee;
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-copy h2,
.section-heading-row h2,
.process-copy h2,
.contact-info-panel h2,
.contact-form-panel h2,
.inquiry-items-panel h2,
.inquiry-form-panel h2,
.empty-state h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.rich-text {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.rich-text p {
  margin: 0 0 1rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.7rem;
}

.text-link {
  display: inline-block;
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

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

.capability-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.capability-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(10, 10, 10, 0.1);
}

.capability-item span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.capability-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.capability-item strong {
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.process-copy p {
  max-width: 54ch;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(25, 25, 25, 0.12);
}

.process-steps div {
  min-height: 150px;
  padding: 1.4rem;
  background: #fff;
}

.process-steps span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--accent);
  font-weight: 800;
}

.process-steps strong {
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-grid,
.inquiry-grid {
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.contact-info-panel,
.contact-form-panel,
.inquiry-items-panel,
.inquiry-form-panel,
.empty-state {
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.08);
}

.contact-info-panel,
.contact-form-panel,
.inquiry-items-panel,
.inquiry-form-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.contact-info-panel {
  color: #fff;
  background: #111;
}

.contact-info-panel h2 {
  color: #fff;
}

.contact-detail-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-detail-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.contact-detail-item i {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.35;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.contact-social-row a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-social-row a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.theme-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

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

.theme-form label {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.theme-form label > span {
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-form input,
.theme-form select,
.theme-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(25, 25, 25, 0.13);
  background: #f8f5f1;
  color: #111;
  padding: 0.85rem 1rem;
  outline: none;
  border-radius: 0;
}

.theme-form textarea {
  min-height: 150px;
  resize: vertical;
}

.theme-form input:focus,
.theme-form select:focus,
.theme-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

.theme-form small {
  color: var(--accent);
  font-weight: 700;
}

.theme-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.theme-alert--success {
  color: #145c35;
  background: #eaf7ef;
  border-color: #bfe7cf;
}

.theme-alert--danger {
  color: #8a161b;
  background: #fff1f1;
  border-color: #ffd0d0;
}

.contact-map {
  margin-top: 2rem;
  overflow: hidden;
  min-height: 320px;
  background: #f4f1ee;
}

.contact-map iframe {
  width: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.inquiry-product-list {
  display: grid;
  gap: 0.9rem;
}

.inquiry-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem;
  background: #f8f5f1;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.inquiry-product-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fff;
}

.inquiry-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inquiry-product-body h3 {
  margin: 0;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.inquiry-product-body span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.icon-action {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 25, 25, 0.12);
  background: #fff;
  color: #111;
}

.icon-action:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.empty-state {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.empty-state p {
  max-width: 46ch;
  margin: 1rem auto 1.5rem;
  color: var(--muted);
}

.shop-hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.68)),
    url("../images/sport-2-slide2-bg.jpg.jpeg") center/cover;
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.shop-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.shop-hero p {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.shop-search-panel {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
}

.shop-search-panel label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-search-panel div {
  height: 52px;
  display: flex;
  background: #f4f1ee;
  border: 1px solid rgba(25, 25, 25, 0.1);
}

.shop-search-panel input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 1rem;
  outline: none;
}

.shop-search-panel button {
  width: 54px;
  border: 0;
  background: var(--accent);
  color: #fff;
}

.shop-section {
  padding: clamp(2.6rem, 5vw, 4.5rem) 0;
  background: #fff;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 154px;
  background: #f8f5f1;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.shop-sidebar-head {
  padding: 1.25rem 1.25rem 0.85rem;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.shop-sidebar-head h2,
.shop-toolbar h2 {
  margin: 0;
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.shop-category-list {
  padding: 0.45rem;
}

.shop-category-link,
.shop-category-group summary,
.shop-subcategory-list a {
  color: #111;
}

.shop-category-link,
.shop-category-group summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.shop-category-group summary {
  list-style: none;
}

.shop-category-group summary::-webkit-details-marker {
  display: none;
}

.shop-category-group summary i {
  transition: transform 0.2s ease;
}

.shop-category-group[open] summary i {
  transform: rotate(180deg);
}

.shop-category-link:hover,
.shop-category-link.is-active,
.shop-category-group summary:hover,
.shop-category-group summary.is-active,
.shop-subcategory-list a:hover,
.shop-subcategory-list a.is-active {
  color: var(--accent);
  background: #fff;
}

.shop-subcategory-list {
  display: grid;
  padding: 0 0.6rem 0.7rem;
}

.shop-subcategory-list a {
  padding: 0.45rem 0.75rem 0.45rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-left: 1px solid rgba(25, 25, 25, 0.1);
}

.shop-results {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.shop-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.shop-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.1);
}

.shop-product-image {
  aspect-ratio: 0.86;
  display: grid;
  place-items: center;
  background: #f8f5f1;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.7rem;
}

.shop-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.shop-product-category {
  width: fit-content;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-product-body h3 {
  margin: 0;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.shop-product-body p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.shop-product-actions {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1rem;
}

.shop-product-actions form {
  min-width: 0;
}

.shop-product-actions .btn {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
}

.shop-pagination {
  margin-top: 2rem;
}

.shop-pagination .pagination {
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.shop-pagination .page-link {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 25, 25, 0.12);
  color: #111;
  border-radius: 0;
}

.shop-pagination .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
}

.shop-pagination .page-item.disabled .page-link {
  color: #999;
  background: #f8f5f1;
}

.product-detail-section {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: #fff;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-breadcrumb a:hover {
  color: var(--accent);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-gallery-main {
  background: #f8f5f1;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.product-gallery-zoom {
  width: 100%;
  aspect-ratio: 0.95;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(0.7rem, 2vw, 1.4rem);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.product-thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 25, 25, 0.08);
  background: #fff;
  padding: 0.35rem;
}

.product-thumb.is-active {
  border-color: var(--accent);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary {
  position: sticky;
  top: 154px;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.08);
}

.product-summary-category {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 0;
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.65rem, 6vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-summary-text {
  margin-top: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

.product-summary-text p {
  margin: 0 0 0.85rem;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 1.4rem 0;
  background: rgba(25, 25, 25, 0.1);
}

.product-spec-grid div {
  min-width: 0;
  padding: 1rem;
  background: #f8f5f1;
}

.product-spec-grid span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-spec-grid strong {
  display: block;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.25;
}

.product-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.product-action-row form,
.product-action-row .btn {
  min-width: 0;
}

.product-action-row .btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-support-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(25, 25, 25, 0.08);
}

.product-support-strip div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #111;
  font-weight: 700;
}

.product-support-strip i {
  color: var(--accent);
}

.product-info-section,
.product-related-section {
  padding: clamp(2.8rem, 5vw, 4.5rem) 0;
  background: #f8f5f1;
}

.product-related-section {
  background: #fff;
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.product-info-grid h2 {
  margin: 0;
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.product-rich-text {
  margin-top: 0;
}

.product-rich-text ul,
.product-rich-text ol {
  padding-left: 1.2rem;
}

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

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.84);
}

.product-modal.is-open {
  display: flex;
}

.product-modal > img {
  width: min(100%, 1040px);
  max-height: 90vh;
  object-fit: contain;
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
  color: #111;
  z-index: 2;
}

.product-share-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: 92vh;
  overflow: auto;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  background: #fff;
}

.product-share-panel .product-modal-close {
  position: absolute;
}

.product-share-panel h2 {
  margin: 0 3rem 1rem 0;
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.product-share-panel > img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  background: #f8f5f1;
  padding: 0.8rem;
}

.product-share-link {
  display: flex;
  margin-top: 1rem;
  border: 1px solid rgba(25, 25, 25, 0.12);
}

.product-share-link input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: #f8f5f1;
  padding: 0.8rem 1rem;
  outline: none;
}

.product-share-link button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 0 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-share-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.product-share-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  border: 1px solid rgba(25, 25, 25, 0.12);
}

.product-share-socials a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.footer {
  padding: 2rem 0 1rem;
  margin-top: 0;
  background: #000;
  color: #fff;
}

.benefits-strip {
  padding: 3.2rem 0 2.8rem;
  background: #fff;
}

.support-cta-section {
  padding: 0 0 1.6rem;
  background: #fff;
}

.support-cta-row {
  overflow: hidden;
  background: #fff;
}

.support-cta-image,
.support-cta-image img {
  width: 100%;
  height: 100%;
}

.support-cta-image img {
  object-fit: cover;
}

.support-cta-copy {
  min-height: 100%;
  padding: 4.2rem 2rem;
  background: #f7f6f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.support-cta-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #111;
}

.support-cta-copy p {
  margin: 1.6rem 0 2rem;
  font-size: 0.98rem;
  color: #111;
}

.btn-support-dark {
  min-height: 46px;
  border-radius: 0;
  border: 0;
  background: #000;
  color: #fff;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.btn-support-dark:hover {
  color: #fff;
  background: #111;
}

.benefits-row {
  border-top: 0;
}

.benefit-card {
  min-height: 220px;
  padding: 2rem 2.2rem;
  text-align: center;
}

.benefit-card--bordered {
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.benefit-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 1.2rem;
  position: relative;
}

.benefit-icon--spark::before,
.benefit-icon--spark::after {
  content: "";
  position: absolute;
  background: #111;
}

.benefit-icon--spark::before {
  width: 12px;
  height: 12px;
  left: 2px;
  top: 8px;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.benefit-icon--spark::after {
  width: 8px;
  height: 8px;
  right: 1px;
  top: 1px;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.benefit-icon--diamond::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid #111;
  transform: rotate(45deg);
}

.benefit-icon--leaf::before,
.benefit-icon--leaf::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  border: 1.5px solid #111;
  border-radius: 100% 0 100% 0;
}

.benefit-icon--leaf::before {
  left: 3px;
  top: 5px;
  transform: rotate(-35deg);
}

.benefit-icon--leaf::after {
  right: 3px;
  top: 5px;
  transform: scaleX(-1) rotate(-35deg);
}

.benefit-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
  color: #111;
}

.benefit-card p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #111;
}

.footer-main {
  padding: 0 0 3rem;
  border-bottom: 0;
}

.footer-brand img {
  width: 118px;
  margin-bottom: 1.4rem;
}

.footer-title {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #fff;
  text-transform: none;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links a,
.footer-brand p,
.footer-copy,
.footer-developed {
  color: #fff;
}

.footer-brand p,
.footer-links a {
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials i {
  font-size: 1rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copy {
  font-size: 0.82rem;
  text-align: left;
}

.footer-developed {
  font-size: 0.82rem;
  text-align: right;
}

.desktop-nav-left {
  min-width: 0;
}

.desktop-search {
  width: 228px;
  height: 46px;
  display: flex;
  align-items: center;
  background: #f4f1ee;
}

.desktop-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 0.9rem 0 1.3rem;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}

.desktop-search input::placeholder {
  color: #9a938d;
}

.desktop-search button,
.mobile-icon-btn {
  border: 0;
  background: transparent;
  color: var(--text);
}

.desktop-search button {
  width: 48px;
  height: 46px;
  font-size: 1.2rem;
}

.mobile-header {
  background: #fff;
  border-top: 1px solid rgba(237, 28, 36, 0.3);
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.mobile-header-bar,
.mobile-drawer-top {
  height: 28px;
}

.mobile-icon-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0;
}

.mobile-header #mobileMenuToggle {
  color: #ff6f6f;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  width: min(206px, 100%);
  height: 100%;
  background: #fff;
  border-right: 1px solid rgba(25, 25, 25, 0.12);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}

.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-top {
  padding: 0 8px 0 6px;
  border-top: 1px solid rgba(237, 28, 36, 0.3);
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.mobile-icon-btn.is-close {
  color: #ff6f6f;
  font-size: 0.95rem;
}

.mobile-nav {
  padding-top: 12px;
}

.mobile-nav a {
  display: block;
  padding: 10px 16px;
  color: #000;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.mobile-nav a.is-active {
  color: var(--accent);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .product-detail-grid,
  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

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

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

  .shop-sidebar {
    position: static;
  }

  .shop-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .shop-category-group,
  .shop-category-link {
    background: #fff;
  }

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

  .inner-hero-grid,
  .about-story-grid,
  .process-grid,
  .contact-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-media {
    min-height: 240px;
    place-items: center;
  }

  .inner-hero-media img {
    max-height: 300px;
  }

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

  .about-story-media {
    min-height: 320px;
  }

  .hero-slide {
    min-height: 520px;
  }

  .hero-copy h1 {
    font-size: clamp(2.95rem, 9vw, 4.5rem);
  }

  .hero-copy--left,
  .hero-copy--center {
    padding-top: 4rem;
  }

  .hero-panel--text-left {
    width: 48%;
  }

  .hero-panel--tilt-center {
    left: 41%;
    width: 33%;
    height: 70%;
  }

  .hero-panel--tilt-right {
    width: 42%;
  }

  .hero-panel--supplier-left {
    width: 39%;
  }

  .hero-panel--supplier-center {
    left: 32%;
    width: 36%;
  }

  .hero-panel--supplier-right {
    width: 36%;
  }

  .hero-panel--sport-left {
    width: 36%;
  }

  .hero-panel--sport-center {
    left: 24%;
    width: 52%;
  }

  .hero-panel--sport-right {
    width: 30%;
  }

  .hero-panel--sport-float {
    left: 25%;
    width: 12%;
  }

  .showcase-copy,
  .promo-card-content,
  .feature-card-body,
  .support-card-body,
  .blog-card-body {
    padding: 28px 22px;
  }
}

@media (max-width: 767.98px) {
  .product-detail-section {
    padding: 1.6rem 0 2.4rem;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .product-summary {
    padding: 1.15rem;
  }

  .product-summary h1 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

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

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

  .product-info-section,
  .product-related-section {
    padding: 2.4rem 0;
  }

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

  .product-share-link {
    flex-direction: column;
  }

  .product-share-link button {
    min-height: 42px;
  }

  .shop-hero {
    padding: 2.4rem 0;
  }

  .shop-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .shop-search-panel {
    padding: 0.8rem;
  }

  .shop-section {
    padding: 2rem 0;
  }

  .shop-category-list,
  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .shop-product-image {
    aspect-ratio: 0.8;
  }

  .shop-product-body {
    padding: 0.85rem;
  }

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

  .shop-product-actions .btn {
    min-height: 38px;
  }

  .shop-pagination .pagination {
    justify-content: center;
  }

  .inner-hero {
    padding: 2.6rem 0 3rem;
  }

  .inner-hero-copy h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .inner-section {
    padding: 2.6rem 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .theme-form-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .capability-item {
    min-height: 145px;
  }

  .contact-info-panel,
  .contact-form-panel,
  .inquiry-items-panel,
  .inquiry-form-panel {
    padding: 1.15rem;
  }

  .inquiry-product {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .inquiry-product form {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .site-container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar {
    display: none;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-slider {
    border-radius: 0;
  }

  .hero-slide {
    min-height: 486px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  .section-space {
    padding: 36px 0;
  }

  .category-strip {
    padding: 2.25rem 0.85rem 1.5rem;
  }

  .category-strip-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.4rem;
  }

  .category-strip-track {
    gap: 0;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }

  .category-strip-item {
    min-width: 33.3333%;
    scroll-snap-align: start;
    padding: 0 0.15rem;
  }

  .category-strip-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 0.65rem;
  }

  .category-strip-icon img {
    width: 34px;
    height: 34px;
  }

  .category-strip-item span:last-child {
    font-size: 0.78rem;
  }

  .category-strip-dots {
    margin-top: 0.5rem;
    gap: 0.4rem;
  }

  .category-strip-dots span {
    width: 8px;
    height: 8px;
  }

  .new-arrivals-section {
    padding: 0.75rem 0 1.2rem;
  }

  .new-arrivals-head {
    text-align: center;
  }

  .new-arrivals-head h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .new-arrivals-slider-wrap {
    padding: 0 0.45rem;
  }

  .new-arrivals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .arrival-card:nth-child(n+3) {
    display: none;
  }

  .arrival-card-body h3 {
    font-size: 0.72rem;
    margin-bottom: 0.35rem;
  }

  .new-arrivals-arrow {
    display: inline-flex;
  }

  .new-arrivals-link {
    display: block;
    width: fit-content;
    margin: 0.7rem auto 0;
    font-size: 0.72rem;
  }

  .athleisure-section {
    padding: 0.2rem 0 1.2rem;
  }

  .athleisure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .athleisure-grid .arrival-card:nth-child(n+3) {
    display: none;
  }

  .athleisure-slider-wrap .new-arrivals-arrow {
    display: inline-flex;
  }

  .athleisure-slider-wrap .arrival-card-body h3 {
    font-size: 0.72rem;
  }

  .shop-hero-block {
    min-height: 290px;
    background:
      linear-gradient(90deg, rgba(15, 147, 199, 0.92) 0%, rgba(15, 147, 199, 0.7) 30%, rgba(15, 147, 199, 0.12) 52%, rgba(255, 255, 255, 0) 72%),
      url("../images/1.png") center/cover no-repeat;
    background-attachment: scroll;
  }

  .shop-hero-inner {
    min-height: 290px;
    align-items: flex-end;
    padding-bottom: 1.2rem;
  }

  .shop-hero-copy {
    max-width: 235px;
  }

  .shop-hero-copy h2 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .shop-hero-copy p {
    margin: 0.7rem 0 0.9rem;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .ready-sets-block,
  .ready-sets-overlay {
    min-height: 255px;
  }

  .ready-sets-copy {
    max-width: 320px;
    padding: 0 0.75rem;
  }

  .ready-sets-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
    margin-bottom: 1rem;
    max-width: 8ch;
  }

  .footer {
    padding: 1.45rem 0 0.85rem;
  }

  .benefits-strip {
    padding: 2.1rem 0 1.6rem;
  }

  .support-cta-section {
    padding-bottom: 0.65rem;
  }

  .support-cta-copy {
    padding: 1.1rem 0.7rem 1.2rem;
  }

  .support-cta-copy h2 {
    max-width: 7.2ch;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 0.9;
  }

  .support-cta-copy p {
    margin: 0.7rem 0 0.85rem;
    font-size: 0.76rem;
  }

  .btn-support-dark {
    min-height: 30px;
    padding: 0.28rem 0.72rem;
    font-size: 0.68rem;
  }

  .benefit-card {
    min-height: auto;
    padding: 0.9rem 0.75rem;
  }

  .benefit-card--bordered {
    border-left: 0;
    border-right: 0;
  }

  .benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
  }

  .benefit-card p {
    font-size: 0.76rem;
    max-width: 170px;
  }

  .footer-main {
    padding-bottom: 1rem;
    row-gap: 1rem !important;
  }

  .footer-brand img {
    width: 68px;
    margin: 0 auto 0.6rem;
  }

  .footer-brand,
  .footer-main .col-md-6,
  .footer-main .col-lg-3 {
    text-align: center;
  }

  .footer-brand {
    max-width: 125px;
    margin: 0 auto 0 0;
  }

  .footer-links {
    align-items: flex-start;
    gap: 0.45rem;
    max-width: 190px;
    margin: 0 auto 0 0;
  }

  .footer-title {
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
  }

  .footer-brand p,
  .footer-links a,
  .footer-copy,
  .footer-developed {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .footer-socials a {
    gap: 0.45rem;
  }

  .footer-meta {
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding-top: 0.55rem;
  }

  .footer-copy,
  .footer-developed {
    text-align: center;
    max-width: 205px;
    margin: 0 auto;
  }

  .footer-main .col-6 {
    text-align: left;
  }

  .footer-main .col-6:nth-child(2n) .footer-links,
  .footer-main .col-6:nth-child(2n) .footer-brand {
    margin-left: auto;
    margin-right: 0;
  }

  .footer-main .col-6:nth-child(2n) {
    text-align: left;
  }

  .hero-panel--text-left,
  .hero-panel--supplier-center,
  .hero-panel--sport-center {
    left: 0;
    right: 0;
    bottom: 56px;
    top: auto;
    width: 100%;
    height: 44%;
    background: rgba(14, 14, 14, 0.88);
    z-index: 3;
  }

  .hero-slide--custom .hero-panel--text-left {
    background: transparent;
  }

  .hero-slide--custom .hero-copy--left,
  .hero-slide--supplier .hero-copy--center,
  .hero-slide--sporty .hero-copy--center {
    max-width: 100%;
    text-align: center;
    padding: 1.5rem 1rem 0;
  }

  .hero-slide--custom .hero-copy--left {
    padding-top: 1.25rem;
  }

  .hero-slide--custom .hero-copy h1,
  .hero-slide--supplier .hero-copy h1,
  .hero-slide--sporty .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
  }

  .hero-slide--custom .hero-panel--tilt-center {
    left: -8%;
    top: 0;
    width: 58%;
    height: 44%;
    transform: none;
    box-shadow: none;
  }

  .hero-slide--custom .hero-panel--tilt-center::after {
    background: linear-gradient(180deg, rgba(28, 153, 216, 0.18), rgba(13, 108, 168, 0.08));
  }

  .hero-slide--custom .hero-panel--tilt-right {
    right: -6%;
    top: 0;
    width: 57%;
    height: 46%;
    transform: none;
  }

  .hero-slide--supplier .hero-panel--supplier-left {
    left: 0;
    top: 0;
    width: 50%;
    height: 42%;
  }

  .hero-slide--supplier .hero-panel--supplier-right {
    right: 0;
    top: 0;
    width: 50%;
    height: 42%;
  }

  .hero-slide--sporty .hero-panel--sport-left {
    left: 0;
    top: 0;
    width: 50%;
    height: 42%;
  }

  .hero-slide--sporty .hero-panel--sport-right {
    right: 0;
    top: 0;
    width: 50%;
    height: 42%;
  }

  .hero-slide--sporty .hero-panel--sport-float {
    left: 33%;
    top: 31%;
    width: 18%;
    height: 16%;
    bottom: auto;
  }

  .hero-control {
    width: 28px;
  }

  .hero-control .carousel-control-prev-icon,
  .hero-control .carousel-control-next-icon {
    width: 14px;
    height: 26px;
    filter: invert(1) opacity(0.3);
  }

  .hero-indicators {
    bottom: 8px;
  }

  .btn-hero-light {
    min-height: 28px;
    padding: 0.25rem 0.7rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .shop-product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .shop-product-body h3 {
    font-size: 0.86rem;
  }

  .shop-product-body p,
  .shop-product-category {
    display: none;
  }
}
