/* ============================================================
   VELZO SPORTS — DESIGN SYSTEM
   velzosports.com
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --brand-red:       #FA2B2B;
  --brand-red-hover: #D91D1D;
  --brand-dark:      #0A0A0A;
  --brand-charcoal:  #141414;
  --brand-mid:       #2A2A2A;
  --brand-gray:      #8A8A8A;
  --brand-border:    #EAECEF;
  --brand-light:     #F6F8FA;
  --brand-white:     #FFFFFF;
  --brand-red-faint: rgba(250, 43, 43, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Responsive Type Scale */
  --h1-size:   clamp(2.5rem, 6vw, 4.5rem);
  --h2-size:   clamp(1.8rem, 4vw, 3rem);
  --h3-size:   clamp(1.2rem, 2.5vw, 1.75rem);
  --body-size: clamp(0.9rem, 1.5vw, 1.05rem);
  --small-size: 0.85rem;

  /* Spacing */
  --section-py:  clamp(4rem, 8vw, 7rem);
  --container-px: clamp(1.25rem, 4vw, 3rem);
  --max-w:       1400px;

  /* UI */
  --radius:     8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --card-shadow: 0 10px 40px rgba(0,0,0,0.03);
  --card-shadow-hover: 0 20px 60px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --header-h: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--brand-dark);
  background: var(--brand-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
}

.section--light { background: var(--brand-light); }
.section--dark  { background: var(--brand-dark); }
.section--charcoal { background: var(--brand-charcoal); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--brand-dark);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-title--white { color: var(--brand-white); }

.section-desc {
  font-size: clamp(0.9rem, 1.8vw, 1.0625rem);
  color: var(--brand-gray);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.section-desc--white { color: rgba(255,255,255,0.7); }

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-desc {
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.8vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75em 1.75em;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-height: 44px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 3px;
}

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, #aa0000 100%);
  color: var(--brand-white);
  border: none;
  box-shadow: 0 4px 14px rgba(204,0,0,0.25);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #e60000 0%, var(--brand-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(204,0,0,0.4);
}

/* Outline dark */
.btn--outline {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn--outline:hover {
  background: var(--brand-dark);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Outline white */
.btn--outline-white {
  background: transparent;
  color: var(--brand-white);
  border-color: var(--brand-white);
}
.btn--outline-white:hover {
  background: var(--brand-white);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Ghost red */
.btn--ghost-red {
  background: transparent;
  color: var(--brand-red);
  border-color: var(--brand-red);
}
.btn--ghost-red:hover {
  background: var(--brand-red);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.25);
}

/* WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: var(--brand-white);
  border: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2de572 0%, #25D366 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
}

.btn--sm {
  font-size: 0.78rem;
  padding: 0.55em 1.2em;
  min-height: 38px;
}

.btn--lg {
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  padding: 0.875em 2.25em;
  min-height: 52px;
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img,
.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand img,
.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-inline: auto; /* Center the navigation */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 0 0.875rem;
  height: var(--header-h);
  line-height: var(--header-h);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-red);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 0;
  min-width: 200px;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-top: 2px solid var(--brand-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}

.nav-dropdown a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 0.75rem 1.25rem;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: var(--brand-light);
  color: var(--brand-red);
}

/* Header CTA area */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--brand-light); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open .mobile-overlay { opacity: 1; }

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--brand-white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--brand-border);
  flex-shrink: 0;
}

.mobile-panel-header img {
  height: 36px;
  width: auto;
}

.mobile-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--brand-dark);
  font-size: 1.25rem;
  transition: background var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-close:hover { background: var(--brand-light); }

.mobile-nav-list {
  padding: 1rem 0;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--brand-border);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--brand-red);
  background: var(--brand-red-faint);
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-submenu {
  display: none;
  background: var(--brand-light);
}

.mobile-submenu.open { display: block; }

.mobile-submenu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-gray);
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  border-bottom: 1px solid var(--brand-border);
  transition: color var(--transition);
}

.mobile-submenu a:hover { color: var(--brand-red); }

.mobile-panel-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--brand-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-panel-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(480px, 85vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--brand-red);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--brand-white);
  margin-bottom: 1.5rem;
}

.hero__title em {
  color: var(--brand-red);
  font-style: normal;
}

.hero__desc {
  font-size: clamp(0.9rem, 1.8vw, 1.0625rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item strong {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--brand-white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-trust-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-bar {
  background: var(--brand-red);
  overflow: hidden;
  padding-block: 0.625rem;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-white);
  padding-inline: 2rem;
  white-space: nowrap;
}

.marquee-item::after {
  content: '●';
  font-size: 0.4rem;
  opacity: 0.6;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--brand-charcoal);
}

.category-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.5s ease;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card__img--sportswear img {
  object-position: center 30% !important;
  transform: scale(1.18);
}

.category-card__img--sportswear:hover img {
  transform: scale(1.23) !important;
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.9) 0%,
    rgba(17,17,17,0.4) 50%,
    rgba(17,17,17,0.05) 100%
  );
  transition: background 0.3s ease;
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.95) 0%,
    rgba(17,17,17,0.5) 60%,
    rgba(17,17,17,0.15) 100%
  );
}

.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem;
}

.category-card__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.3rem;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.category-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  transition: color var(--transition), gap var(--transition);
}

.category-card__link:hover {
  color: var(--brand-red);
  gap: 0.65rem;
}

.category-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: transparent;
  border: none;
  transition: transform var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--brand-red);
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border-radius: var(--radius);
  z-index: 2; /* Ensure badge stays on top during image zoom */
}

.product-card__body {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.35rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--brand-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-card__footer .btn {
  justify-content: center;
  padding: 0.6em 1.25em;
  font-size: 0.8125rem;
}

.product-card__footer .btn:not(.btn--whatsapp) {
  flex: 1;
  min-width: 0;
}

.product-card__footer .btn--whatsapp {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.product-card__footer .btn--whatsapp svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   COMBAT CATEGORIES (BOXING / MMA / MARTIAL ARTS)
   ============================================================ */
.combat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.combat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background: var(--brand-charcoal);
  cursor: pointer;
}

.combat-card__bg {
  position: absolute;
  inset: 0;
  background: var(--brand-dark);
}

.combat-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-red);
  transition: width var(--transition);
}

.combat-card:hover .combat-card__accent { width: 6px; }

.combat-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3rem;
  opacity: 0.15;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.combat-card:hover .combat-card__icon {
  opacity: 0.2;
  transform: translate(-50%, -55%) scale(1.1);
}

.combat-card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem;
  width: 100%;
}

.combat-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.combat-card__sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-item:hover {
  border-color: var(--brand-red);
  box-shadow: 0 4px 20px rgba(204,0,0,0.08);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-red-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--brand-red);
  transition: background var(--transition);
}

.why-item:hover .why-icon {
  background: var(--brand-red);
  color: var(--brand-white);
}

.why-icon svg { width: 24px; height: 24px; }

.why-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.8125rem;
  color: var(--brand-gray);
  line-height: 1.6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--brand-dark);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__text .section-label { color: rgba(255,255,255,0.5); }

.cta-band__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: var(--brand-border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  border: 2px solid var(--brand-dark);
  transition: background var(--transition), border-color var(--transition);
}

.process-step:hover .process-step__num {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.8125rem;
  color: var(--brand-gray);
  line-height: 1.6;
}

/* ============================================================
   ABOUT / MANUFACTURER SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-img-group {
  position: relative;
  z-index: 1;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--brand-charcoal);
  z-index: 2;
}

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

.about-img-accent {
  position: absolute;
  top: 1.5rem;
  right: -0.75rem;
  bottom: -0.75rem;
  left: 1.5rem;
  border: 2px solid var(--brand-red);
  border-radius: var(--radius-md);
  z-index: 1;
}

.about-stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-border);
}

.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
}

.about-stat span {
  font-size: 0.8125rem;
  color: var(--brand-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  display: block;
}

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  border: 1px solid var(--brand-border);
  padding: 0.6em 1em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: var(--brand-white);
}

.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7em 1.25em 0.7em 0.9em;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.float-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.float-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

.float-wa__label { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.7);
}

.footer-main {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--brand-red); }

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: var(--brand-red-faint);
}

.footer-social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--brand-red); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: var(--brand-dark);
  padding-block: clamp(3rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(250, 43, 43, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero .section-title,
.page-hero .page-hero__title { 
  color: var(--brand-white); 
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--brand-red); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sidebar-section {
  border-bottom: 1px solid var(--brand-border);
  padding: 1.25rem;
}

.sidebar-section:last-child { border-bottom: none; }

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.875rem;
}

/* Sidebar Search Box */
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 0.25rem 0.5rem;
  background: var(--brand-light);
  transition: border-color var(--transition);
}
.search-box:focus-within {
  border-color: var(--brand-red);
  background: var(--brand-white);
}
.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  color: var(--brand-dark);
}
.search-box button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gray);
  border-radius: var(--radius);
  transition: color var(--transition);
}
.search-box button:hover {
  color: var(--brand-red);
}
.search-box button svg { width: 18px; height: 18px; }

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-item {
  display: flex;
  cursor: pointer;
  margin-bottom: 0.25rem;
}

.filter-item input[type="checkbox"],
.filter-item input[type="radio"] {
  display: none; /* Hide native radio buttons */
}

.filter-item label {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-gray);
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.filter-item:hover label {
  background: var(--brand-white);
  border-color: var(--brand-border);
  color: var(--brand-dark);
}

.filter-item input:checked + label {
  background: var(--brand-red-faint);
  color: var(--brand-red);
  border-color: var(--brand-red);
  font-weight: 600;
}

.shop-main-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.shop-count {
  font-size: 0.875rem;
  color: var(--brand-gray);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-sort select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 0.6em 2.5em 0.6em 1.2em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-dark);
  background-color: var(--brand-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  background-size: 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.shop-sort select:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px var(--brand-red-faint);
}
.shop-sort select:hover {
  background-color: var(--brand-white);
}

/* Mobile Filter Modal */
.filter-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--brand-white);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  visibility: hidden;
}

.filter-modal.open {
  transform: translateY(0);
  visibility: visible;
}

.filter-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--brand-border);
}

.filter-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
  margin: 0;
}

.filter-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: 50%;
  color: var(--brand-dark);
  transition: background var(--transition);
}

.filter-modal-close:hover {
  background: var(--brand-border);
}

.filter-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.filter-modal-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--brand-border);
  display: flex;
  gap: 1rem;
  background: var(--brand-white);
}

.filter-modal-footer .btn {
  flex: 1;
}

.shop-search {
  display: flex;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.shop-search input {
  flex: 1;
  border: none;
  padding: 0.6em 0.875em;
  font-size: 0.875rem;
  color: var(--brand-dark);
  outline: none;
  min-width: 0;
}

.shop-search button {
  padding: 0 0.875em;
  background: var(--brand-dark);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.shop-search button:hover { background: var(--brand-red); }
.shop-search button svg { width: 16px; height: 16px; }

/* Mobile filter button */
.filter-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-light);
  aspect-ratio: 4/5;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-main:hover img {
  transform: scale(1.05);
}

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

.gallery-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--brand-light);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.gallery-thumb.active { border-color: var(--brand-red); transform: translateY(-2px); box-shadow: var(--card-shadow); }

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

.product-info-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--brand-border);
}
.product-info-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.product-info-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gray);
  margin-bottom: 0.75rem;
}

.product-info-value {
  font-size: 0.9375rem;
  color: var(--brand-dark);
  line-height: 1.7;
}

.product-category-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: var(--brand-red-faint);
  padding: 0.25em 0.75em;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.spec-table {
  width: 100%;
  font-size: 0.875rem;
}

.spec-table tr { border-bottom: 1px solid var(--brand-border); }
.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
  padding: 0.6rem 0;
  vertical-align: top;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--brand-dark);
  width: 40%;
  padding-right: 1rem;
}

.spec-table td:last-child { color: var(--brand-gray); }

.product-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-cta-group .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: 0.02em;
}

.form-label .req { color: var(--brand-red); margin-left: 2px; }

.form-control {
  width: 100%;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 0.85em 1rem;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  background: var(--brand-light);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  min-height: 48px;
}

.form-control:focus {
  border-color: var(--brand-red);
  background: var(--brand-white);
  box-shadow: 0 0 0 4px var(--brand-red-faint);
}

.form-control::placeholder { color: #b5b5b5; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  height: 120px;
}

.contact-info-card {
  background: var(--brand-dark);
  color: var(--brand-white);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.contact-info-card .section-label { color: rgba(255,255,255,0.5); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}

.contact-detail-text span {
  font-size: 0.9375rem;
  color: var(--brand-white);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .marquee-track,
  .category-card__img,
  .product-card__img-wrap img {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Nav collapses */
  .site-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .combat-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; position: static; }
  .filter-toggle { display: flex; }

  /* Product detail */
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .site-logo img,
  .header-logo-img {
    height: 40px;
  }

  /* Center hero content and headings */
  .hero__content {
    text-align: center;
    margin-inline: auto;
  }
  .hero__eyebrow {
    justify-content: center;
    margin-inline: auto;
  }
  .hero__title {
    text-align: center;
  }
  .hero__desc {
    margin-inline: auto;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
    align-items: center;
    margin-inline: auto;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
    text-align: center;
  }
  .hero-trust-item {
    align-items: center;
  }

  /* Center all section headers */
  .section-header {
    text-align: center;
  }
  .section-header .section-desc {
    margin-inline: auto;
    text-align: center;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .combat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split > * { min-width: 0; }
  .about-img-wrap { aspect-ratio: 16/9; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

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

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

/* ============================================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --header-h: 60px; }

  .site-logo img,
  .header-logo-img {
    height: 35px;
  }

  .hero { min-height: clamp(420px, 90vh, 600px); }

  .hero__trust {
    gap: 1rem;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
  }

  /* Single column grids */
  .category-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .combat-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Buttons */
  .btn { padding: 0.7em 1.4em; }
  .btn--lg { padding: 0.8em 1.75em; }

  /* Hero actions stack */
  .hero__actions { flex-direction: column; align-items: center; justify-content: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* CTA band */
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  /* Product card compact */
  .product-card__body { padding: 0.75rem 0.75rem 1rem; }
  .product-card__footer { flex-direction: column; }
  .product-card__footer .btn { width: 100%; }

  /* Float WA */
  .float-wa__label { display: none; }
  .float-wa { padding: 0.75rem; border-radius: 50%; }
  .float-wa svg { width: 24px; height: 24px; }

  /* Product detail CTA group */
  .product-cta-group { flex-direction: column; }
  .product-cta-group .btn { min-width: unset; width: 100%; }

  /* Form */
  .form-card { padding: 1.25rem; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL (≤375px)
   ============================================================ */
@media (max-width: 375px) {
  :root {
    --h1-size: clamp(2rem, 8vw, 2.5rem);
    --h2-size: clamp(1.4rem, 6vw, 1.7rem);
    --h3-size: clamp(1.1rem, 5vw, 1.25rem);
    --container-px: 1rem;
  }
  :root { --header-h: 56px; }
  .site-logo img { height: 32px; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
}

/* ============================================================
   SPECIFIC ELEMENT RESPONSIVENESS
   ============================================================ */
@media (max-width: 480px) {
  #combat-shop-btn {
    display: flex; /* Override inline-flex to allow width: 100% and margin-inline: auto */
    width: 100%; /* Make it take full width of its parent */
    max-width: 280px; /* Limit max width for better aesthetics, consistent with other mobile CTAs */
    margin-inline: auto; /* Center the button within its parent div */
    white-space: normal; /* Allow text to wrap */
  }
}
/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-red { color: var(--brand-red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.d-none { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
