@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-black: #0a0a0a;
  --color-charcoal: #141414;
  --color-gray-dark: #2a2a2a;
  --color-gray-mid: #6b6b6b;
  --color-gray-light: #e8e8e8;
  --color-off-white: #f5f5f5;
  --color-white: #ffffff;

  --color-accent: #c8cdd4;

  --font-body: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: "Oswald", "Arial Narrow", "Impact", sans-serif;
  --max-width: 1140px;
  --header-height: 72px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.hero h1,
.section-header h2,
.about-content h2,
.product-name,
.footer-brand {
  font-family: var(--font-heading);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-light {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-light:hover {
  background: var(--color-accent);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-gray-dark);
}

.btn-disabled,
.btn-disabled:hover {
  background: var(--color-gray-light);
  color: var(--color-gray-mid);
  border-color: var(--color-gray-light);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.25rem;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
}

.logo {
  display: block;
  flex-shrink: 0;
  overflow: visible;
  color: var(--color-white);
}

.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  padding: 0.25rem;
  filter: brightness(0) invert(1);
}

.logo-img--header {
  width: 118px;
  max-width: 118px;
  opacity: 0.65;
}

.hero-logo {
  display: block;
  overflow: visible;
  margin-bottom: 2rem;
  max-width: 100%;
}

.logo-img--hero {
  max-width: min(560px, 92vw);
}

.site-nav ul {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.25s, opacity 0.25s;
}


   .hero {
    position: relative;
    overflow: hidden;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 8rem;
    background-image:
      radial-gradient(circle at 85% 20%, rgba(200, 205, 212, 0.16), transparent 34%),
      linear-gradient(
        145deg,
        #202020 0%,
        var(--color-black) 48%,
        #111111 100%
      );
  }
  
.hero::before {
  content: "Marca Do Mestre";
  position: absolute;
  left: 50%;
  bottom: 2rem;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(3rem, 13vw, 10rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(230, 203, 137, 0.10);
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-38%) rotate(-10deg);
  transform-origin: center;
}
  
  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
  }
  
  .hero-logo {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
    margin: 0 auto 5.75rem;
    max-width: 100%;
  }
  
  .hero-logo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  width: 96px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 203, 137, 0.85) 35%,
    rgba(230, 203, 137, 0.85) 65%,
    transparent 100%
  );
  transform: translateX(-50%);
}
  
  .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.35rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .hero h1 {
    font-size: clamp(3rem, 8vw, 5.4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
  }
  
  .hero-subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    margin-bottom: 2.75rem;
  }


.brand-statement {
  padding: 4.5rem 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #eeeeee 100%
  );
  border-bottom: 1px solid var(--color-gray-light);
}

.brand-statement .container::before {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 203, 137, 0.85) 35%,
    rgba(230, 203, 137, 0.85) 65%,
    transparent 100%
  );
  margin: 0 auto 2.25rem;
}

.statement-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-gray-dark);
}

.statement-text--secondary {
  max-width: 780px;
  margin-top: 1rem;
  color: var(--color-gray-mid);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
}

.statement-callout {
  max-width: 620px;
  margin: 1.75rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(180, 145, 75, 0.35);
  text-align: center;
}

.statement-callout span {
  display: block;
  color: rgba(180, 145, 75, 0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.statement-callout p {
  color: var(--color-gray-mid);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  line-height: 1.65;
}


.section {
  padding: 5rem 0;
}

.shop {
  background: var(--color-off-white);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.club-store-title,
.club-access-inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.club-access-section {
  min-height: calc(100vh - var(--header-height));
  background: var(--color-off-white);
}

.club-access-inner {
  max-width: 760px;
}

.club-access-form {
  margin-top: 2rem;
}

.club-access-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-bottom: 0.75rem;
}

.club-access-controls {
  display: flex;
  gap: 1rem;
}

.club-access-controls input {
  width: 8rem;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.875rem 1rem;
  text-transform: uppercase;
}

.club-access-controls input:focus {
  border-color: var(--color-black);
  outline: none;
}

.club-access-error {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  color: #b00020;
  font-size: 0.875rem;
  font-weight: 600;
}

.club-hero {
  background-color: var(--color-black);
  background-image:
    radial-gradient(circle at 50% 10%, rgba(200, 205, 212, 0.14), transparent 32%),
    linear-gradient(145deg, #202020 0%, var(--color-black) 54%, #111111 100%);
  color: var(--color-white);
  padding: 4.5rem 0 5rem;
  text-align: center;
}

.club-hero-inner {
  max-width: 760px;
}

.club-hero-logo {
  width: min(190px, 52vw);
  height: auto;
  margin: 0 auto 2rem;
  object-fit: contain;
}

.club-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.club-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.club-hero-subtext {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.policy-section {
  min-height: calc(100vh - var(--header-height));
  background: var(--color-off-white);
}

.policy-content {
  max-width: 820px;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.policy-content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin: 2rem 0 0.75rem;
}

.policy-content p {
  color: var(--color-gray-mid);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.policy-content li {
  color: var(--color-gray-mid);
  display: list-item;
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.policy-updated {
  color: var(--color-gray-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marca-accent {
  position: relative;
  overflow: hidden;
}

.marca-accent::before {
  content: "Marca Do Mestre";
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(230, 203, 137, 0.08);
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-40%) rotate(-10deg);
}

.marca-accent > .container {
  position: relative;
  z-index: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  display: flex;
  flex-direction: column;
}

.product-image-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder--alt {
  background: #d8d8d8;
}

.product-image-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
}

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

.jersey-viewer,
.product-gallery {
  background: var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

.jersey-image-frame,
.product-gallery-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(230, 203, 137, 0.22), transparent 30%),
    linear-gradient(145deg, #f7f7f7 0%, var(--color-gray-light) 100%);
}

.jersey-viewer-image,
.product-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-frame--placeholder {
  color: var(--color-gray-mid);
}

.product-gallery-frame--placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.jersey-gallery-arrow,
.product-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s, border-color 0.2s;
}

.jersey-gallery-arrow:hover,
.product-gallery-arrow:hover {
  background: var(--color-white);
  border-color: rgba(10, 10, 10, 0.42);
}

.jersey-gallery-arrow--prev,
.product-gallery-arrow--prev {
  left: 0.85rem;
}

.jersey-gallery-arrow--next,
.product-gallery-arrow--next {
  right: 0.85rem;
}

.jersey-view-toggle,
.product-gallery-toggle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem;
  background: var(--color-white);
}

.jersey-view-btn,
.product-gallery-btn {
  min-width: 72px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.65rem 1rem;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.jersey-view-btn:hover,
.product-gallery-btn:hover {
  border-color: var(--color-black);
}

.jersey-view-btn.is-selected,
.product-gallery-btn.is-selected {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-subtitle {
  margin: -0.7rem 0 0.7rem;
  color: rgba(180, 145, 75, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--color-gray-mid);
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.product-pricing {
  margin-top: 0.25rem;
}

.product-status-note {
  min-height: 1.35rem;
  margin-top: 0.25rem;
  color: var(--color-gray-mid);
  font-size: 0.85rem;
  font-weight: 600;
}

.product-status-note:empty {
  min-height: 0;
  margin-top: 0;
}

.member-price-block {
  display: grid;
  gap: 0.2rem;
}

.member-price-main,
.standard-price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.member-price-main {
  color: var(--color-black);
}

.member-price-label {
  color: var(--color-gray-mid);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.product-price--member {
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: 1;
}

.member-price-support {
  color: var(--color-gray-mid);
  font-size: 0.82rem;
  line-height: 1.45;
}

.standard-price {
  color: var(--color-gray-mid);
  font-size: 0.92rem;
  font-weight: 400;
}

.discount-badge {
  color: #b00020;
  font-size: 0.92rem;
  font-weight: 400;
}

.sold-out-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(10, 10, 10, 0.86);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.45rem 0.7rem;
  text-transform: uppercase;
}

.sold-out-note {
  margin-top: 0.25rem;
  color: var(--color-gray-mid);
  font-size: 0.85rem;
  font-weight: 600;
}

.member-price-note {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f7d4f;
}

.size-options {
  margin-top: 1.25rem;
}

.color-options {
  margin-top: 1.25rem;
}

.size-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-bottom: 0.5rem;
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-swatches {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.color-swatch {
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-gray-light);
  border-radius: 999px;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 3px var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.color-swatch:hover {
  border-color: var(--color-black);
}

.color-swatch.is-selected {
  border-color: var(--color-black);
  box-shadow:
    inset 0 0 0 3px var(--color-white),
    0 0 0 2px rgba(10, 10, 10, 0.12);
}

.color-swatch--charcoal {
  --swatch-color: #3f3f3f;
}

.color-swatch--black {
  --swatch-color: #050505;
}

.color-swatch--babyblue {
  --swatch-color: #a7c7e7;
}

.size-btn {
  flex: 0 0 auto;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-gray-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.size-btn--wide {
  min-width: 7rem;
}

.size-btn:hover {
  border-color: var(--color-black);
}

.size-btn.is-selected {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.product-accordions {
  margin-top: 1.25rem;
  border-top: 1px solid var(--color-gray-light);
}

.product-accordion {
  border-bottom: 1px solid var(--color-gray-light);
}

.product-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--color-black);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-gray-mid);
  border-bottom: 2px solid var(--color-gray-mid);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.product-accordion[open] summary::after {
  transform: rotate(225deg);
}

.dafa-order-summary {
  margin-top: 2.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
}

.dafa-order-header {
  max-width: 620px;
}

.dafa-order-header h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.dafa-order-header p:last-child,
.dafa-cart-empty,
.dafa-cart-line-meta {
  color: var(--color-gray-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

.dafa-cart-empty {
  margin-top: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

.dafa-checkout-notice {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-gray-light);
  color: var(--color-black);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.dafa-checkout-notice--success {
  border-color: rgba(47, 125, 79, 0.35);
  background: rgba(47, 125, 79, 0.08);
}

.dafa-checkout-notice--cancelled {
  border-color: rgba(180, 145, 75, 0.4);
  background: rgba(180, 145, 75, 0.1);
}

.dafa-cart-items {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.dafa-cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.dafa-cart-line-title {
  margin-bottom: 0.2rem;
  color: var(--color-black);
  font-weight: 800;
}

.dafa-cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  text-align: right;
}

.dafa-cart-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 6.4rem;
  padding: 0.35rem;
  border: 1px solid var(--color-gray-light);
}

.dafa-cart-qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1;
}

.dafa-cart-remove {
  border: 0;
  background: transparent;
  color: var(--color-gray-mid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dafa-cart-remove:hover {
  color: var(--color-black);
}

.dafa-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: 0.95rem;
  font-weight: 800;
}

.dafa-cart-error {
  margin-top: 1rem;
  color: #a83232;
  font-size: 0.9rem;
  font-weight: 700;
}

.dafa-fulfillment-note {
  margin-top: 0.85rem;
  color: var(--color-gray-mid);
  font-size: 0.86rem;
  line-height: 1.6;
}

.dafa-cart-checkout[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-accordion p {
  padding: 0 0 0.95rem;
  color: var(--color-gray-mid);
  font-size: 0.87rem;
  line-height: 1.65;
}

.product-accordion .product-features {
  margin: 0 0 0.95rem;
}

.product-detail-list {
  list-style: disc;
  margin: 0 0 0.95rem;
  padding-left: 1.05rem;
}

.product-detail-list li {
  display: list-item;
  color: var(--color-gray-mid);
  font-size: 0.87rem;
  line-height: 1.65;
  padding-left: 0.1rem;
}

.care-guide {
  display: grid;
  gap: 1rem;
  padding-bottom: 0.95rem;
}

.care-guide-section {
  display: grid;
  gap: 0.55rem;
}

.care-guide-title {
  color: var(--color-black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.care-instruction-list,
.care-extra-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.care-instruction,
.care-extra-list li {
  color: var(--color-gray-mid);
  font-size: 0.86rem;
  line-height: 1.45;
}

.care-instruction {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
}

.care-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-black);
  flex: 0 0 auto;
  opacity: 0.72;
}

.care-extra-list {
  list-style: disc;
  padding-left: 1.05rem;
}

.care-extra-list li {
  display: list-item;
  padding-left: 0.1rem;
}


.about {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-content .section-tag {
  color: var(--color-accent);
}

.about-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-closing {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-mark {
  display: block;
  width: 64px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.about-image-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--color-gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-gray-dark);
}

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

.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-white);
}


   @media (max-width: 768px) {
    .hero::before {
      font-size: clamp(3rem, 12vw, 4rem);
      left: 50%;
      bottom: 1.5rem;
      transform: translateX(-40%) rotate(-10deg);
    }
  
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .club-access-controls {
    flex-direction: column;
  }

  .club-access-controls input {
    width: 100%;
  }

  .jersey-image-frame,
  .product-gallery-frame {
    padding: 1rem;
  }

  .jersey-gallery-arrow,
  .product-gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .jersey-gallery-arrow--prev,
  .product-gallery-arrow--prev {
    left: 0.6rem;
  }

  .jersey-gallery-arrow--next,
  .product-gallery-arrow--next {
    right: 0.6rem;
  }

  .product-card {
    width: 100%;
    min-width: 0;
  }

  .dafa-order-summary {
    padding: 1.15rem;
  }

  .dafa-cart-line {
    grid-template-columns: 1fr;
  }

  .dafa-cart-line-actions {
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
  }

  .dafa-cart-total-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero {
    padding: 2.5rem 0 5rem;
  }

  .logo-img--header {
    width: min(104px, 38vw);
    max-width: min(104px, 38vw);
  }

  .logo-img--hero {
    max-width: min(360px, 90vw);
  }

  .hero-logo {
    margin-bottom: 4.25rem;
  }

  .brand-statement {
    padding: 2rem 0 3rem;
  }

  .brand-statement .container::before {
    margin-bottom: 1.25rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 0.75rem 1rem;
  }
}

@media (min-width: 769px) {
  .logo-img--header {
    width: 118px;
    max-width: 118px;
  }

  .logo-img--hero {
    max-width: 560px;
  }
}
