/* ============================================================
   KGF ROYAL ENFIELD SPARE PARTS — global styles
   Theme : Premium automotive — black / charcoal / deep red / white
   Palette : bg #111111 · soft #282828 · card #1C1C1C · accent #D9281C
   Built mobile-first, fully responsive, subtle animations only.
   ============================================================ */

:root {
  --bg: #111111;
  --bg-soft: #161616;
  --card: #1C1C1C;
  --card-2: #282828;
  --line: #444444;
  --text: #FFFFFF;
  --muted: #C8C8C8;
  --gold: #D9281C;
  --gold-deep: #B32218;
  --gold-soft: #E63B2E;
  --red: #D9281C;
  --red-deep: #A31C13;
  --saffron: #C8C8C8;
  --white: #FFFFFF;
  --grad-gold: linear-gradient(135deg, #E63B2E 0%, #B32218 100%);
  --grad-gold-text: linear-gradient(120deg, #F04A3B 0%, #D9281C 45%, #9E1710 100%);
  --grad-red: linear-gradient(135deg, #D9281C 0%, #7E120B 100%);
  --font-disp: "Oswald", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  --container: 1180px;
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: #1a1205;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2c2c33;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

/* --------------------------- layout --------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 64px;
}

.section--soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-disp);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
}

.h2 {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.h2 em {
  font-style: normal;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

/* --------------------------- buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-disp);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

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

.btn--gold,
.btn--primary {
  background: var(--grad-gold);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(217, 40, 28, 0.28);
}
.btn--gold:hover,
.btn--primary:hover {
  box-shadow: 0 12px 30px rgba(217, 40, 28, 0.42);
  filter: brightness(1.06);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--red);
  color: var(--white);
}

.btn--wa {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn--wa:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
  filter: brightness(1.05);
}

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 11px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* --------------------------- header --------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-in {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand__logo {
  width: 46px;
  height: 48px;
  flex: none;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(217, 40, 28, 0.5);
  background: #000;
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.brand__name span {
  color: var(--gold);
}

.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  display: none;
}

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

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-icon svg {
  width: 19px;
  height: 19px;
}

.header-icon:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(217, 40, 28, 0.1);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  flex: none;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin: 3.5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(8, 8, 10, 0.99);
  border-bottom: 1px solid var(--line);
  padding: 18px 20px 26px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 59;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.mobile-menu a span {
  color: var(--gold);
  font-size: 0.95rem;
}

.mobile-menu .btn {
    margin-top: 18px;
  }

.mobile-menu a.btn {
  display: inline-flex;
  justify-content: center;
  border-bottom: none;
  padding: 14px 18px;
}

/* ---------------------------- hero ---------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 84px;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(217, 40, 28, 0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(217, 40, 28, 0.1), transparent 55%),
    linear-gradient(180deg, #141414 0%, var(--bg) 100%);
}

.hero-art {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55%);
  aspect-ratio: 1 / 1;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 72%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 72%);
}

.hero-art svg {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.32);
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.6));
}

@media (max-width: 560px) {
  .hero-art {
    display: none;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* diagonal checker strip on the right edge */
.hero::after {
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 45%);
  mask-image: linear-gradient(to left, #000 0%, transparent 45%);
  opacity: 0.5;
}

.hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(217, 40, 28, 0.4);
  background: rgba(217, 40, 28, 0.07);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  flex: none;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-meta b {
  color: var(--text);
  font-weight: 600;
}

.hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  vertical-align: -2px;
  margin-right: 6px;
  display: inline-block;
}

/* slider of "trust" cards under hero */
.hero-trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 40, 28, 0.45);
  background: rgba(217, 40, 28, 0.05);
}

.trust-card .num {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.trust-card .lab {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 5px;
}

/* -------------------------- marquee -------------------------- */
.marquee {
  border-block: 1px solid var(--line);
  background: #08080a;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

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

.marquee span {
  font-family: var(--font-disp);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}

.marquee span::after {
  content: "\25C6";
  color: var(--gold);
  font-size: 0.7rem;
}

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

/* ------------------------- category cards ------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 40, 28, 0.4);
  background: var(--card-2);
}
.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(217, 40, 28, 0.1);
  border: 1px solid rgba(217, 40, 28, 0.25);
  color: var(--gold);
}

.cat-card__icon svg {
  width: 26px;
  height: 26px;
}

.cat-card h3 {
  font-family: var(--font-disp);
  font-size: 1.12rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cat-card p {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.cat-card .count {
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------- model chips --------------------------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.22s ease;
}

.chip svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 40, 28, 0.5);
  color: var(--gold);
}

/* --------------------------- product cards --------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 40, 28, 0.4);
  box-shadow: var(--shadow);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #17171c, #0d0d10);
}

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

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

/* auto category artwork (when no photo uploaded) */
.artwork {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(217, 40, 28, 0.28);
}

.artwork svg {
  width: 84px;
  height: 84px;
}

.artwork::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 14px, transparent 14px 28px),
    radial-gradient(500px 220px at 20% 110%, rgba(217, 40, 28, 0.14), transparent 60%);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge--featured {
  background: var(--grad-gold);
  color: #ffffff;
}

.badge--status {
  background: linear-gradient(135deg, #e10301, #7d0604);
  color: #fff;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}

.pn {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card h3 {
  font-family: var(--font-disp);
  font-size: 1.18rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.product-card .desc {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card .models-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card .models-line span {
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.price {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.price--call {
  color: var(--saffron);
  font-size: 0.9rem;
}

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.product-card__actions .btn {
  white-space: normal;
  min-width: 0;
  text-align: center;
  line-height: 1.2;
  padding: 11px 10px;
}

/* ---------------------------- features ---------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 40, 28, 0.4);
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(225, 3, 1, 0.1);
  border: 1px solid rgba(225, 3, 1, 0.3);
  color: #ff5c53;
}

.feature__icon.gold {
  background: rgba(217, 40, 28, 0.1);
  border-color: rgba(217, 40, 28, 0.3);
  color: var(--gold);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.feature p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ------------------------------ about ------------------------------ */
.about-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(500px 300px at 80% 0%, rgba(217, 40, 28, 0.18), transparent 60%),
    linear-gradient(135deg, #141419, #09090b);
  display: grid;
  place-items: center;
}

.about-visual .logo-round {
  width: min(240px, 62%);
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(217, 40, 28, 0.5);
  box-shadow: 0 0 70px rgba(217, 40, 28, 0.18);
  background: #000;
}

.about-visual .logo-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual .since-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--grad-gold);
  color: #ffffff;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.about-body h2 {
  margin-bottom: 4px;
}

.about-body p {
  color: var(--muted);
  margin-top: 14px;
}

.about-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.about-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-points .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  margin-top: 2px;
}

.about-points .tick svg {
  width: 14px;
  height: 14px;
}

.about-points span {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-points b {
  color: var(--text);
}

/* ----------------------------- reviews ----------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
}

.review-card blockquote {
  color: #d8d3ca;
  font-size: 0.98rem;
  font-style: italic;
  margin-top: 12px;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b20301, #5d0503);
  display: grid;
  place-items: center;
  font-family: var(--font-disp);
  font-weight: 600;
  color: #fff;
  flex: none;
}

.review-card .who b {
  display: block;
  font-size: 0.92rem;
}

.review-card .who span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* empty state for reviews (editable — add real reviews in config) */
.review-empty {
  grid-column: 1 / -1;
  text-align: center;
  border: 1.5px dashed rgba(217, 40, 28, 0.35);
  border-radius: var(--radius);
  padding: 44px 24px;
  color: var(--muted);
}

.review-empty svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--gold);
}

.review-form-note {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-form-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------- FAQ ------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: rgba(217, 40, 28, 0.45);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.98rem;
}

.faq-q .faq-icon {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(217, 40, 28, 0.5);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #ffffff;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ----------------------------- contact ----------------------------- */
.contact-grid {
  display: grid;
  gap: 30px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 40, 28, 0.45);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: rgba(217, 40, 28, 0.1);
  border: 1px solid rgba(217, 40, 28, 0.3);
  color: var(--gold);
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card h3 {
  font-family: var(--font-disp);
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card .val {
  color: var(--muted);
  font-size: 0.9rem;
  word-break: break-word;
}

.contact-card .val b {
  color: var(--text);
}

.info-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.info-row {
  display: grid;
  grid-template-columns: 38% 62%;
}

.info-row + .info-row {
  border-top: 1px solid var(--line);
}

.info-row dt {
  padding: 15px 18px;
  font-family: var(--font-disp);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid var(--line);
  background: var(--card-2);
}

.info-row dd {
  padding: 15px 18px;
  font-size: 0.92rem;
}

.map-frame {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ----------------------------- contact form ----------------------------- */
.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.contact-form .form-title {
  font-family: var(--font-disp);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form .form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: -8px;
}

.form-field label {
  display: block;
  font-family: var(--font-disp);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a8a8a;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 40, 28, 0.18);
}

/* ---------------------------- CTA band ---------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background:
    radial-gradient(700px 300px at 80% 120%, rgba(217, 40, 28, 0.2), transparent 60%),
    radial-gradient(600px 260px at 10% -20%, rgba(225, 3, 1, 0.18), transparent 55%),
    var(--card-2);
  border-block: 1px solid var(--line);
  text-align: center;
  margin-top: 40px;
}

.cta-band h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta-band h2 em {
  font-style: normal;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 12px auto 26px;
}

/* ----------------------------- footer ----------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #08080a;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-bottom .tricolor {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.footer-bottom .tricolor i {
  width: 26px;
  height: 3px;
  border-radius: 2px;
}
.footer-bottom .tricolor i:nth-child(1) { background: #ff9933; }
.footer-bottom .tricolor i:nth-child(2) { background: #ffffff; }
.footer-bottom .tricolor i:nth-child(3) { background: #138808; }

.footer-bottom b {
  color: var(--gold);
  font-weight: 600;
}

/* ----------------------- floating WhatsApp ----------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  animation: wa-ring 2.4s ease-out infinite;
}

@keyframes wa-ring {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.wa-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.wa-float .tooltip-msg {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--card-2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--text);
  font-size: 0.82rem;
  padding: 9px 13px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.wa-float:hover .tooltip-msg {
  opacity: 1;
}

@media (max-width: 560px) {
  .wa-float .tooltip-msg {
    display: none;
  }
}

/* ------------------------------ toast ------------------------------ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  background: var(--card-2);
  border: 1px solid rgba(217, 40, 28, 0.5);
  color: var(--text);
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 40px);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
}

/* ---------------------------- products page ---------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 56px;
  background:
    radial-gradient(800px 380px at 90% -20%, rgba(217, 40, 28, 0.14), transparent 60%),
    linear-gradient(180deg, #0c0c0f, var(--bg));
}

.page-hero h1 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.page-hero h1 em {
  font-style: normal;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
  margin-top: 12px;
}

.toolbar {
  position: relative;
  z-index: 20;
  margin-top: -16px;
  padding-bottom: 10px;
}

.toolbar-card {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.search-box {
  position: relative;
}

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

.search-box input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.25s ease;
}

.search-box input::placeholder {
  color: var(--muted);
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold);
}

.toolbar-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.clear-btn {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-family: var(--font-disp);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d9281c' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.clear-btn {
  align-self: end;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.clear-btn:hover {
  color: var(--gold);
  border-color: rgba(217, 40, 28, 0.5);
}

.hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.results-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.results-count {
  font-size: 0.88rem;
  color: var(--muted);
}

.results-count b {
  color: var(--gold);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  border: 1.5px dashed rgba(217, 40, 28, 0.35);
  border-radius: var(--radius);
  color: var(--muted);
}

.empty-state svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  color: var(--gold);
}

/* --------------------------- reveal (subtle) --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* --------------------------- responsive --------------------------- */
@media (min-width: 560px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding-block: 88px;
  }
  .hero {
    padding: 92px 0 110px;
  }
  .hero-in {
    gap: 22px;
  }
  .toolbar-filters {
    grid-template-columns: repeat(3, 1fr);
  }
  .clear-btn {
    grid-column: auto;
  }
  .contact-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .header-cta {
    display: inline-flex;
  }
  .mobile-menu {
    display: none;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
  .toolbar-filters {
    grid-template-columns: 1.3fr 1.3fr 1fr;
  }
}

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

/* Why Choose Us — four strong feature blocks (2x2 grid, never 3-col) */
@media (min-width: 980px) {
  .feature-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}