:root {
  --brand-red: #e2231a;
  --brand-red-light: #ff4436;
  --brand-red-dark: #a8160f;
  --red-gradient: linear-gradient(135deg, #ff4436 0%, #e2231a 45%, #a8160f 100%);
  --brand-black: #0c0c0f;
  --brand-charcoal: #1c1c22;
  --brand-charcoal-light: #2a2a32;
  --text-muted: rgba(28, 28, 34, 0.66);
  --border: rgba(12, 12, 15, 0.1);
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brand-black);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.brand-text .name,
.footer-brand span,
.signoff-name {
  font-family: var(--font-display);
}

.why::before,
.vision-banner::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

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

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

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(226, 35, 26, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-black);
}

.brand-text .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  transition: color 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--brand-red);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 10px 22px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  overflow: hidden;
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--red-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(226, 35, 26, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(226, 35, 26, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

/* Collapsed by default: just the round icon button. Clicking it (see
   main.js) adds .expanded, which grows the input open; it collapses again
   on blur if left empty, so it never sits half-open with nothing typed. */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.header-search-toggle:hover,
.header-search.expanded .header-search-toggle {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.header-search-toggle svg {
  width: 16px;
  height: 16px;
}

.header-search input {
  width: 0;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 0;
  margin-left: 0;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--brand-black);
  background: #fff;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.2s ease, padding 0.25s ease, margin-left 0.25s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search.expanded input {
  width: 200px;
  padding: 9px 16px;
  margin-left: 8px;
  opacity: 1;
}

.header-search input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.12);
}

.header-search input::-webkit-search-cancel-button {
  cursor: pointer;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  align-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--brand-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  padding: 0 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 0 solid var(--border);
  transition: max-height 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), opacity 0.25s ease,
    padding 0.35s ease;
}

.mobile-nav.open {
  max-height: 420px;
  opacity: 1;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.15s ease, color 0.15s ease;
}

.mobile-nav.open a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }

.menu-toggle span:nth-child(1) {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav a {
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--brand-red);
}

.mobile-nav .btn {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .brand-text .tag {
    display: none;
  }
}

/* Below 640px there usually isn't room to grow the input inline next to
   the logo and hamburger -- flexbox just crushes it back down to fit
   (min-width: 0 on the base rule removes its floor). Taking it out of
   flow with position: fixed sidesteps that entirely: it no longer
   competes with its siblings for space, and gets the full header width
   to work with instead of whatever sliver was left over. */
@media (max-width: 639px) {
  .header-search.expanded input {
    position: fixed;
    top: 73px;
    left: 12px;
    right: 12px;
    width: auto;
    margin-left: 0;
    z-index: 60;
    box-shadow: 0 12px 28px rgba(12, 12, 15, 0.15);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 600px at 82% 15%, rgba(226, 35, 26, 0.16), transparent 60%),
    linear-gradient(135deg, var(--brand-charcoal-light), var(--brand-black) 55%, #000);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 40px;
  padding: 88px 0;
}

.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(226, 35, 26, 0.28), transparent 70%);
  filter: blur(4px);
  z-index: 0;
}

.hero-logo .logo-spin {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
  animation: fadeIn 1s ease 0.3s both;
}

.pill {
  display: inline-block;
  background: rgba(226, 35, 26, 0.15);
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 999px;
  padding: 6px 16px;
}

.hero .pill {
  animation: fadeInUp 0.7s ease both;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  color: var(--brand-red);
}

.hero p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero-logo {
    justify-content: flex-end;
  }
  .hero-logo .logo-spin {
    width: 260px;
    height: 260px;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* Audience bar */
.audience-bar {
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  gap: 24px;
  padding: 40px 0;
  text-align: center;
}

.audience-grid h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0;
}

.audience-grid p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

/* Section headings */
.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-red);
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Product search */
.product-search {
  position: relative;
  max-width: 520px;
  margin: 40px auto 0;
}

.product-search svg {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.product-search input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 20px 13px 48px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--brand-black);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-search input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.12);
}

.product-search input::-webkit-search-cancel-button {
  cursor: pointer;
}

/* Compact category browser: popular choices plus one complete picker */
.category-tabs {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(226, 35, 26, 0.28) transparent;
}

.category-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-charcoal);
  font-family: inherit;
  padding: 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 120px;
  scroll-snap-align: start;
}

.category-tab-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: contain;
  box-sizing: border-box;
  padding: 10px;
  background: #fafafa;
  border: 1px solid var(--border);
}

.category-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.category-tab-icon svg {
  width: 40%;
  height: 40%;
}

.category-tab-name {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.category-tab:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(12, 12, 15, 0.06);
}

.category-tab.active {
  background: rgba(226, 35, 26, 0.06);
  border-color: var(--brand-red);
  color: var(--brand-red);
  box-shadow: 0 6px 16px rgba(226, 35, 26, 0.15);
}

.category-tab.active .category-tab-photo {
  border-color: var(--brand-red);
}

.category-picker {
  position: relative;
  flex: 0 0 150px;
  min-height: 170px;
  border: 1px dashed rgba(226, 35, 26, 0.45);
  border-radius: 14px;
  background: rgba(226, 35, 26, 0.035);
  color: var(--brand-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.category-picker:hover,
.category-picker.active {
  background: rgba(226, 35, 26, 0.08);
  border-color: var(--brand-red);
  transform: translateY(-3px);
}

.category-picker-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(226, 35, 26, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.category-picker-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.category-picker-copy strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.category-picker-copy small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.category-picker select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

@media (max-width: 639px) {
  .category-tabs {
    margin-top: 28px;
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .category-tab {
    flex-basis: 106px;
    min-height: 148px;
    padding: 10px;
  }

  .category-picker {
    flex-basis: 126px;
    min-height: 148px;
  }
}

/* Vehicle fitment filter */
.vehicle-filter {
  margin-top: 24px;
  padding: 24px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid var(--border);
}

.vehicle-filter-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-black);
  margin-bottom: 16px;
}

.vehicle-filter-head svg {
  width: 20px;
  height: 20px;
  color: var(--brand-red);
  flex-shrink: 0;
}

.vehicle-filter-row {
  display: grid;
  gap: 14px;
  align-items: end;
}

@media (min-width: 720px) {
  .vehicle-filter-row {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.filter-field select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--brand-black);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.filter-field select:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.12);
}

.filter-field select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.filter-reset {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.filter-reset:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
}

.filter-status {
  margin: 16px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-red);
}

.filter-empty {
  text-align: center;
  margin: 40px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 0;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.page-btn.active {
  background: var(--red-gradient);
  border-color: transparent;
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 639px) {
  .page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 0.78rem;
  }
}

.card-enter {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 0.84, 0.44, 1) both;
}

/* Product detail page */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  margin-bottom: 32px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.back-link:hover {
  color: var(--brand-red);
  transform: translateX(-3px);
}

.product-detail-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 860px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-detail-info .warranty-badge {
  margin-top: 0;
  margin-bottom: 20px;
}

.product-detail-photo {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  aspect-ratio: 1 / 1;
}

.product-detail-photo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.detail-zoom-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-charcoal);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(12, 12, 15, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.detail-zoom-btn:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.detail-zoom-btn svg {
  width: 16px;
  height: 16px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 15, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 48px;
}

.image-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.image-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.detail-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.detail-gallery-thumb {
  width: 64px;
  height: 64px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

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

.detail-gallery-thumb.active,
.detail-gallery-thumb:hover {
  border-color: var(--brand-red);
}

.detail-badge {
  font-size: 0.78rem;
  padding: 7px 14px 7px 10px;
}

.detail-badge svg {
  width: 14px;
  height: 14px;
}

.detail-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(226, 35, 26, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.detail-category-tag:hover {
  background: var(--brand-red);
  color: #fff;
}

.product-detail-info h1 {
  font-size: 2rem;
  margin: 0 0 16px;
}

.product-detail-partno,
.product-detail-oe {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 10px 0 0;
}

.product-detail-partno strong {
  color: var(--brand-black);
  font-weight: 700;
}

.product-detail-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0 32px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.detail-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 26px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

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

.detail-whatsapp-btn:hover {
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
}

.btn-outline-dark {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-black);
  padding: 13px 26px;
}

.btn-outline-dark:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.product-detail-fitment {
  margin-top: 64px;
}

.product-detail-fitment h2 {
  font-size: 1.4rem;
  margin: 0 0 20px;
}

.fitment-accordion {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.fitment-accordion-item {
  border-bottom: 1px solid var(--border);
}

.fitment-accordion-item:last-child {
  border-bottom: none;
}

.fitment-accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.fitment-accordion-header:hover {
  background: #fafafa;
}

.fitment-accordion-chevron {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.fitment-accordion-item.open > .fitment-accordion-header .fitment-accordion-chevron {
  transform: rotate(180deg);
}

.fitment-accordion-brand,
.fitment-accordion-model {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-black);
}

.fitment-accordion-body {
  display: none;
  padding: 0 20px 16px;
}

.fitment-accordion-item.open > .fitment-accordion-body {
  display: block;
}

.fitment-accordion-body .fitment-table-wrap {
  border-radius: 10px;
}

.fitment-brand-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.fitment-accordion-nested {
  border: none;
  border-radius: 0;
}

.fitment-accordion-nested .fitment-accordion-header {
  padding: 12px 0;
  background: none;
}

.fitment-accordion-nested .fitment-accordion-item {
  border-bottom: 1px solid var(--border);
}

.fitment-accordion-nested .fitment-accordion-item:last-child {
  border-bottom: none;
}

.fitment-table-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

table.fitment-public-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}

table.fitment-public-table th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #fafafa;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

table.fitment-public-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

table.fitment-public-table tr:last-child td {
  border-bottom: none;
}

table.fitment-public-table tr:hover td {
  background: rgba(226, 35, 26, 0.03);
}

.empty-state-block {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-block h2 {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.empty-state-block p {
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* Product cards */
.product-grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.product-card {
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(12, 12, 15, 0.04);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.product-view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-red);
  transition: gap 0.2s ease;
}

.product-card:hover .product-view-link {
  gap: 8px;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 35, 26, 0.35);
  box-shadow: 0 24px 40px -12px rgba(12, 12, 15, 0.18), 0 0 0 1px rgba(226, 35, 26, 0.08);
}

.product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  background: var(--red-gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(226, 35, 26, 0.4);
}

.warranty-badge svg {
  width: 12px;
  height: 12px;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(226, 35, 26, 0.1);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-icon {
  background: var(--red-gradient);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.product-icon svg {
  width: 28px;
  height: 28px;
}

.card-brand-tag {
  display: inline-block;
  margin-top: 16px;
  margin-right: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(12, 12, 15, 0.05);
  padding: 4px 10px;
  border-radius: 999px;
}

.stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: #1a8a3e;
  background: rgba(26, 138, 62, 0.1);
}

.stock-tag.out-of-stock {
  color: #b3261e;
  background: rgba(179, 38, 30, 0.1);
}

.new-arrival-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  background: var(--brand-charcoal);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(12, 12, 15, 0.3);
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 0;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-sku {
  display: block;
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Below 640px there's no min-width rule earlier, so .product-grid would
   otherwise fall back to a single implicit column -- one product per row.
   Force 3 narrow columns instead. At ~100px per card there's no room for
   the badges or description without them wrapping onto their own lines
   (tried it -- looked broken), so this trims each card down to just the
   image and a short title, the way most mobile shopping grids do it. */
@media (max-width: 639px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .product-card {
    padding: 6px;
    border-radius: 12px;
  }

  .product-thumb {
    border-radius: 8px;
    margin-bottom: 6px;
  }

  .warranty-badge,
  .card-brand-tag,
  .stock-tag,
  .product-card p,
  .product-card-sku,
  .product-view-link {
    display: none;
  }

  .product-card h3 {
    font-size: 0.62rem;
    line-height: 1.25;
    margin: 0;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .new-arrival-badge {
    font-size: 0.5rem;
    padding: 3px 6px;
    top: 6px;
    left: 6px;
  }
}

/* Why choose us */
.why {
  position: relative;
  background: linear-gradient(150deg, var(--brand-charcoal-light), var(--brand-charcoal) 70%);
  color: #fff;
  overflow: hidden;
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

.why h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.why p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.why-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--red-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.why-list li:hover .why-check {
  transform: scale(1.15);
}

@media (min-width: 860px) {
  .why-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.cta p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta .btn {
  margin-top: 32px;
  padding: 14px 32px;
  animation: pulse-glow 2.6s ease-in-out infinite;
}

.cta .btn:hover {
  animation-play-state: paused;
}

/* Pull quote */
.pull-quote {
  max-width: 720px;
  margin: 40px auto 0;
  padding-left: 20px;
  border-left: 4px solid var(--brand-red);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: var(--brand-black);
}

/* Category pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.category-pill {
  display: inline-block;
  background: rgba(226, 35, 26, 0.08);
  border: 1px solid rgba(226, 35, 26, 0.25);
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-pill:hover {
  background: var(--red-gradient);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(226, 35, 26, 0.3);
}

.section-note {
  max-width: 560px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Vision & promise banner */
.vision-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red-dark) 75%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.vision-banner .container {
  position: relative;
  z-index: 1;
}

.vision-banner h2 {
  max-width: 680px;
  margin: 14px auto 0;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.vision-divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  margin: 40px auto;
  border-radius: 999px;
}

.promise-line {
  margin: 14px 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.vision-note {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Brand sign-off */
.brand-signoff {
  text-align: center;
  padding: 64px 0 16px;
}

.signoff-name {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--brand-black);
}

.signoff-tagline {
  margin: 10px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-red);
}

.signoff-powered {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
}

/* About page extras */
.origin {
  display: grid;
  gap: 48px;
}

.origin h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.origin p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.logo-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fafafa;
}

.logo-pair img,
.logo-pair .logo-spin {
  width: 130px;
  height: 130px;
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.logo-pair img:hover,
.logo-pair .logo-spin:hover {
  transform: scale(1.08);
}

.logo-pair span {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(43, 43, 48, 0.3);
}

@media (min-width: 860px) {
  .origin {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.values-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(12, 12, 15, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 35, 26, 0.35);
  box-shadow: 0 24px 40px -12px rgba(12, 12, 15, 0.18), 0 0 0 1px rgba(226, 35, 26, 0.08);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.value-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mission-section {
  background: #fafafa;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brand-charcoal) 0%, var(--brand-black) 100%);
  color: #fff;
  border-top: 1px solid rgba(226, 35, 26, 0.25);
}

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

.footer-grid {
  display: grid;
  gap: 48px;
  padding: 64px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-spin {
  width: 48px;
  height: 48px;
}

.footer-brand span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-about {
  margin: 16px 0 0;
  max-width: 320px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-icon.tiktok:hover {
  background: #010101;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a,
.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-note {
  margin-top: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-link {
  font-weight: 600;
  transition: color 0.15s ease;
}

.phone-link:hover {
  color: var(--brand-red);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-link svg {
  width: 13px;
  height: 13px;
}

.whatsapp-link:hover {
  background: #25d366;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-brandof {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brandof img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.footer-brandof strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
  }
}


/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Logo flywheel spin */
.logo-spin {
  position: relative;
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}

.logo-spin img {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-base {
  clip-path: url(#flywheelInverse);
}

.logo-flywheel {
  position: absolute;
  inset: 0;
  clip-path: url(#flywheelRing);
  transform-origin: 49.9% 40.3%;
  animation: flywheel-spin 9s linear infinite;
  pointer-events: none;
}

.logo-spin:hover .logo-flywheel {
  animation-play-state: paused;
}

@keyframes flywheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(226, 35, 26, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(226, 35, 26, 0);
  }
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  50% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Reseller form */
.reseller-form {
  max-width: 640px;
  margin: 48px auto 0;
  display: grid;
  gap: 20px;
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-black);
}

.form-field .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--brand-black);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red-gradient);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(226, 35, 26, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(226, 35, 26, 0.4);
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
