/* ============================================================
   TOUGE TECHNOLOGIES — Main Stylesheet
   Synthwave / Retro-80s JDM aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Press+Start+2P&family=Rajdhani:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-base:       #08080f;
  --bg-card:       #0e0e18;
  --bg-card-hover: #141425;
  --accent-pink:   #FF2D78;
  --accent-cyan:   #00E5FF;
  --accent-orange: #FF6B1A;
  --text-primary:  #FFFFFF;
  --text-muted:    #8888a0;
  --border-glow:   rgba(255, 45, 120, 0.35);
  --border-cyan:   rgba(0, 229, 255, 0.3);
  --glow-pink:     0 0 20px rgba(255, 45, 120, 0.6), 0 0 60px rgba(255, 45, 120, 0.3);
  --glow-cyan:     0 0 20px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
  --font-heading:  'Bebas Neue', sans-serif;
  --font-pixel:    'Press Start 2P', monospace;
  --font-body:     'Rajdhani', sans-serif;
  --font-jp:       'Noto Sans JP', sans-serif;

  /* Per-card accent colours (service cards) */
  --card-yellow:  #FFB800;
  --card-cyan:    #00E5FF;
  --card-pink:    #FF2D78;
  --card-green:   #39FF14;
  --card-purple:  #BF5FFF;
  --card-orange:  #FF6B1A;
  --nav-height:    72px;
  --radius:        4px;
  --transition:    0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-pink); }
ul { list-style: none; }

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--sm { padding: 60px 0; }

.section-label {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px rgba(0,229,255,0.4);
}

/* prefix ">" symbol on section labels */
.section-label::before {
  content: '> ';
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.section-title--glow {
  color: var(--text-primary);
  text-shadow:
    0 0 10px rgba(255, 45, 120, 0.9),
    0 0 30px rgba(255, 45, 120, 0.6),
    0 0 80px rgba(255, 45, 120, 0.3),
    0 0 2px #fff;
}

.section-title--cyan {
  color: var(--accent-cyan);
  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.9),
    0 0 30px rgba(0, 229, 255, 0.6),
    0 0 80px rgba(0, 229, 255, 0.3),
    0 0 2px #fff;
}

/* Pixel-font title variant (for hero logo treatment) */
.pixel-title {
  font-family: var(--font-pixel);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: var(--accent-cyan);
  text-shadow:
    0 0 10px rgba(0, 229, 255, 1),
    0 0 30px rgba(0, 229, 255, 0.7),
    0 0 80px rgba(0, 229, 255, 0.4),
    0 0 2px #fff;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.neon-line {
  width: 60px;
  height: 2px;
  background: var(--accent-pink);
  box-shadow: var(--glow-pink);
  margin-bottom: 32px;
}

.neon-line--cyan {
  background: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

.kanji-bg {
  position: absolute;
  font-family: var(--font-jp);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(255, 45, 120, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--pink {
  background: var(--accent-pink);
  color: #fff;
  border-color: var(--accent-pink);
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
}
.btn--pink:hover {
  background: transparent;
  color: var(--accent-pink);
  box-shadow: var(--glow-pink);
}

.btn--outline-cyan {
  background: transparent;
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}
.btn--outline-cyan:hover {
  background: var(--accent-cyan);
  color: var(--bg-base);
  box-shadow: var(--glow-cyan);
}

.btn--outline-pink {
  background: transparent;
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}
.btn--outline-pink:hover {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: transparent;
  color: #25D366;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.95rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 45, 120, 0.15);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 15, 0.97);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-title {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.8), 0 0 25px rgba(0,229,255,0.4);
}

.nav__logo-sub {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  color: var(--accent-pink);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255,45,120,0.7);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-pink);
  box-shadow: var(--glow-pink);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--accent-pink) !important;
  border: 1px solid var(--accent-pink);
  padding: 6px 18px;
  border-radius: var(--radius);
  transition: all var(--transition) !important;
}

.nav__cta:hover {
  background: var(--accent-pink) !important;
  color: #fff !important;
}

.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/logo/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 15, 0.92) 0%,
    rgba(8, 8, 15, 0.7) 50%,
    rgba(8, 8, 15, 0.4) 100%
  );
}

/* Retro grid floor */
.hero__grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 1;
  overflow: hidden;
  perspective: 300px;
}

.hero__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 45, 120, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 120, 0.35) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(55deg) translateY(-20%);
  transform-origin: top center;
  animation: grid-scroll 8s linear infinite;
}

@keyframes grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}

/* Scanline overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: var(--nav-height);
}

.hero__eyebrow {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 10px rgba(0,229,255,0.9), 0 0 25px rgba(0,229,255,0.4);
}

.hero__eyebrow::before {
  content: '>';
  color: var(--accent-cyan);
  font-size: 0.7rem;
  text-shadow: 0 0 10px rgba(0,229,255,1);
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.hero__title span {
  display: block;
  color: var(--accent-pink);
  text-shadow: var(--glow-pink);
}

.hero__tagline {
  font-family: var(--font-jp);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-jp);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-pink);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── About Section ── */
.about {
  background: var(--bg-base);
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.3);
}

.about__image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
  z-index: -1;
  opacity: 0.4;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.about__stat {
  background: var(--bg-card);
  border: 2px solid rgba(255,45,120,0.35);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 12px rgba(255,45,120,0.1);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.about__stat:hover {
  border-color: var(--accent-pink);
  box-shadow: 0 0 22px rgba(255,45,120,0.4);
}

.about__stat:nth-child(2) { border-color: rgba(0,229,255,0.35); box-shadow: 0 0 12px rgba(0,229,255,0.1); }
.about__stat:nth-child(2):hover { border-color: var(--accent-cyan); box-shadow: 0 0 22px rgba(0,229,255,0.4); }
.about__stat:nth-child(3) { border-color: rgba(255,184,0,0.35); box-shadow: 0 0 12px rgba(255,184,0,0.1); }
.about__stat:nth-child(3):hover { border-color: var(--card-yellow); box-shadow: 0 0 22px rgba(255,184,0,0.4); }
.about__stat:nth-child(4) { border-color: rgba(191,95,255,0.35); box-shadow: 0 0 12px rgba(191,95,255,0.1); }
.about__stat:nth-child(4):hover { border-color: var(--card-purple); box-shadow: 0 0 22px rgba(191,95,255,0.4); }

.about__stat-num {
  font-family: var(--font-pixel);
  font-size: 1.4rem;
  color: var(--accent-pink);
  text-shadow: var(--glow-pink);
  line-height: 1.2;
}

.about__stat-label {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1.8;
}

/* ── Services Section ── */
.services {
  background: linear-gradient(180deg, var(--bg-base) 0%, #0a0a14 100%);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 2px solid var(--card-accent, var(--accent-pink));
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
  box-shadow:
    0 0 12px rgba(var(--card-accent-rgb, 255,45,120), 0.25),
    inset 0 0 30px rgba(var(--card-accent-rgb, 255,45,120), 0.04);
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow:
    0 0 25px rgba(var(--card-accent-rgb, 255,45,120), 0.55),
    0 0 60px rgba(var(--card-accent-rgb, 255,45,120), 0.2),
    inset 0 0 30px rgba(var(--card-accent-rgb, 255,45,120), 0.07);
}

/* Corner bracket decoration */
.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}
.service-card::before {
  top: -2px; left: -2px;
  border-top: 3px solid var(--card-accent, var(--accent-pink));
  border-left: 3px solid var(--card-accent, var(--accent-pink));
}
.service-card::after {
  bottom: -2px; right: -2px;
  border-bottom: 3px solid var(--card-accent, var(--accent-pink));
  border-right: 3px solid var(--card-accent, var(--accent-pink));
}
.service-card:hover::before,
.service-card:hover::after {
  width: 22px; height: 22px;
}

/* Individual card accent colours */
.service-card--yellow  { --card-accent: var(--card-yellow);  --card-accent-rgb: 255,184,0;   }
.service-card--cyan    { --card-accent: var(--card-cyan);    --card-accent-rgb: 0,229,255;   }
.service-card--pink    { --card-accent: var(--card-pink);    --card-accent-rgb: 255,45,120;  }
.service-card--green   { --card-accent: var(--card-green);   --card-accent-rgb: 57,255,20;   }
.service-card--purple  { --card-accent: var(--card-purple);  --card-accent-rgb: 191,95,255;  }
.service-card--orange  { --card-accent: var(--card-orange);  --card-accent-rgb: 255,107,26;  }

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--card-accent, var(--accent-pink));
  filter: drop-shadow(0 0 8px var(--card-accent, var(--accent-pink)));
}

.service-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--card-accent, var(--accent-pink));
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.service-card__title {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--card-accent, var(--accent-cyan));
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition), text-shadow var(--transition);
}

.service-card__link:hover {
  gap: 14px;
  text-shadow: 0 0 10px var(--card-accent, var(--accent-cyan));
}

/* ── Products Section ── */
.products {
  background: var(--bg-base);
  position: relative;
}

.products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 2px solid rgba(255, 45, 120, 0.35);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 0 10px rgba(255, 45, 120, 0.12);
}

.product-card:hover {
  border-color: var(--accent-pink);
  box-shadow: 0 0 25px rgba(255, 45, 120, 0.45), 0 0 60px rgba(255, 45, 120, 0.15);
  transform: translateY(-5px);
}

/* Category-coloured product card borders */
.product-card[data-category="wheels"] {
  border-color: rgba(255,184,0, 0.4);
  box-shadow: 0 0 10px rgba(255,184,0, 0.1);
}
.product-card[data-category="wheels"]:hover {
  border-color: var(--card-yellow);
  box-shadow: 0 0 25px rgba(255,184,0, 0.5), 0 0 60px rgba(255,184,0, 0.15);
}
.product-card[data-category="parts"] {
  border-color: rgba(0,229,255, 0.4);
  box-shadow: 0 0 10px rgba(0,229,255, 0.1);
}
.product-card[data-category="parts"]:hover {
  border-color: var(--card-cyan);
  box-shadow: 0 0 25px rgba(0,229,255, 0.5), 0 0 60px rgba(0,229,255, 0.15);
}
.product-card[data-category="electronics"] {
  border-color: rgba(57,255,20, 0.35);
  box-shadow: 0 0 10px rgba(57,255,20, 0.08);
}
.product-card[data-category="electronics"]:hover {
  border-color: var(--card-green);
  box-shadow: 0 0 25px rgba(57,255,20, 0.45), 0 0 60px rgba(57,255,20, 0.15);
}
.product-card[data-category="refurb"] {
  border-color: rgba(191,95,255, 0.4);
  box-shadow: 0 0 10px rgba(191,95,255, 0.1);
}
.product-card[data-category="refurb"]:hover {
  border-color: var(--card-purple);
  box-shadow: 0 0 25px rgba(191,95,255, 0.5), 0 0 60px rgba(191,95,255, 0.15);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0a0a14;
}

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

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 45, 120, 0.2);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.badge--category {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.badge--condition {
  background: rgba(255, 45, 120, 0.15);
  border: 1px solid var(--accent-pink);
  color: var(--accent-pink);
}

.badge--sold {
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid #ff6464;
  color: #ff6464;
}

.badge--reserved {
  background: rgba(255, 180, 0, 0.15);
  border: 1px solid #ffb400;
  color: #ffb400;
}

.product-card__body {
  padding: 20px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-pink);
  text-shadow: 0 0 10px rgba(255, 45, 120, 0.4);
  margin-bottom: 16px;
}

.product-card__price--contact {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  text-shadow: none;
  letter-spacing: 0.05em;
}

.product-card__actions {
  display: flex;
  gap: 10px;
}

/* ── Product reference ID badge ── */
.product-ref-badge {
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 6px;
  opacity: 0.8;
}

/* ── Wheel spec bar on product cards ── */
.wheel-spec-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.wspec {
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.wspec--size   { background: rgba(255,184,0,0.12); border: 1px solid rgba(255,184,0,0.4); color: var(--card-yellow); }
.wspec--pcd    { background: rgba(0,229,255,0.08);  border: 1px solid rgba(0,229,255,0.35); color: var(--accent-cyan); }
.wspec--et     { background: rgba(255,45,120,0.08); border: 1px solid rgba(255,45,120,0.35); color: var(--accent-pink); }
.wspec--colour { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); }
.wspec--qty    { background: rgba(57,255,20,0.08);  border: 1px solid rgba(57,255,20,0.3); color: var(--card-green); }

.product-card--sold .product-card__image::after {
  content: 'SOLD';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 15, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 0.2em;
  color: #ff6464;
  text-shadow: 0 0 20px rgba(255, 100, 100, 0.6);
}

.product-card--reserved .product-card__image::after {
  content: 'RESERVED';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 15, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.12em;
  color: #ffb400;
  text-shadow: 0 0 20px rgba(255, 180, 0, 0.6);
}

.products__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.products__empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 8px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 45, 120, 0.3);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  background: rgba(255, 45, 120, 0.08);
  box-shadow: 0 0 12px rgba(255, 45, 120, 0.2);
}

/* ── Contact Section ── */
.contact {
  background: linear-gradient(180deg, var(--bg-base) 0%, #0a0a14 100%);
  position: relative;
  overflow: hidden;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact__info-value {
  color: var(--text-primary);
  font-size: 1rem;
}

.contact__whatsapp {
  margin-top: 32px;
}

/* ── Contact Form ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form__input,
.form__select,
.form__textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 120, 0.25);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(136, 136, 160, 0.5);
}

.form__select option {
  background: var(--bg-card);
}

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}

.form__alert--success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  display: block;
}

.form__alert--error {
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--accent-pink);
  display: block;
}

/* ── Services Page — Detail Sections ── */
.service-detail {
  padding: 80px 0;
  position: relative;
}

.service-detail:nth-child(even) {
  background: #0a0a14;
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail__inner--reverse {
  direction: rtl;
}

.service-detail__inner--reverse > * {
  direction: ltr;
}

.service-detail__image {
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 45, 120, 0.15);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}

.service-detail__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-pink);
  box-shadow: var(--glow-pink);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, rgba(255, 45, 120, 0.05) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid rgba(255, 45, 120, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .kanji-bg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Footer ── */
.footer {
  background: #05050c;
  border-top: 1px solid rgba(255, 45, 120, 0.2);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(0,229,255,0.8), 0 0 25px rgba(0,229,255,0.35);
  line-height: 1.6;
}

.footer__brand-jp {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--accent-pink);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(255,45,120,0.7);
  line-height: 1.8;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent-pink);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__copy span {
  color: var(--accent-pink);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__social:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  box-shadow: 0 0 12px rgba(255, 45, 120, 0.3);
}

/* ── Admin Styles ── */
.admin-body {
  background: #070710;
  min-height: 100vh;
}

.admin-nav {
  background: #0a0a18;
  border-bottom: 1px solid rgba(255, 45, 120, 0.2);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-nav__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.admin-nav__title span {
  color: var(--accent-pink);
}

.admin-nav__links {
  display: flex;
  gap: 24px;
}

.admin-nav__links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.admin-nav__links a:hover,
.admin-nav__links a.active {
  color: var(--accent-pink);
}

.admin-main {
  padding: 40px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.admin-page-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.admin-stat__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-pink);
  line-height: 1;
}

.admin-stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 45, 120, 0.2);
}

.admin-table td {
  padding: 14px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(255, 45, 120, 0.04);
}

.admin-table td:first-child { color: var(--text-primary); }

.admin-thumb {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 45, 120, 0.2);
}

.admin-thumb-placeholder {
  width: 56px;
  height: 40px;
  background: rgba(255, 45, 120, 0.05);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 45, 120, 0.2);
  font-size: 0.6rem;
}

.admin-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 2px;
  border: 1px solid;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.admin-btn--edit {
  color: var(--accent-cyan);
  border-color: rgba(0, 229, 255, 0.4);
}
.admin-btn--edit:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
}

.admin-btn--delete {
  color: #ff6464;
  border-color: rgba(255, 100, 100, 0.4);
}
.admin-btn--delete:hover {
  background: rgba(255, 100, 100, 0.1);
  color: #ff6464;
}

.admin-btn--primary {
  color: var(--accent-pink);
  border-color: rgba(255, 45, 120, 0.5);
}
.admin-btn--primary:hover {
  background: rgba(255, 45, 120, 0.1);
  color: var(--accent-pink);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.admin-image-item {
  position: relative;
  aspect-ratio: 1;
}

.admin-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 45, 120, 0.2);
}

.admin-image-item--primary img {
  border-color: var(--accent-pink);
  box-shadow: 0 0 10px rgba(255, 45, 120, 0.3);
}

.admin-image-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(255, 100, 100, 0.9);
  border: none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  padding: 24px;
}

.admin-login__box {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 0 60px rgba(255, 45, 120, 0.1);
}

.admin-login__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 8px;
}

.admin-login__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-pink);
}

/* ── GarageLog Cross-Promo Banner ── */
.garagelog-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, rgba(8,8,15,0) 60%);
  border-top:    1px solid rgba(0,229,255,0.12);
  border-bottom: 1px solid rgba(0,229,255,0.12);
  position: relative;
  overflow: hidden;
}

.garagelog-banner::before {
  content: 'GL';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 22rem;
  color: rgba(0,229,255,0.025);
  pointer-events: none;
  line-height: 1;
}

.garagelog-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.garagelog-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-shadow:
    0 0 10px rgba(0,229,255,0.4),
    0 0 40px rgba(0,229,255,0.15);
}

.garagelog-banner__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 20px;
}

.garagelog-banner__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gl-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gl-feature svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* ── Mock UI card ── */
.garagelog-banner__mock {
  position: relative;
}

.gl-mock-card {
  background: #0c0c1a;
  border: 2px solid rgba(0,229,255,0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(0,229,255,0.12),
    0 0 80px rgba(0,229,255,0.05);
  position: relative;
}

/* Corner bracket decorations */
.gl-mock-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 18px; height: 18px;
  border-top: 2px solid var(--accent-cyan);
  border-left: 2px solid var(--accent-cyan);
}
.gl-mock-card::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 18px; height: 18px;
  border-bottom: 2px solid var(--accent-cyan);
  border-right: 2px solid var(--accent-cyan);
}

.gl-mock-header {
  background: rgba(0,229,255,0.06);
  border-bottom: 1px solid rgba(0,229,255,0.15);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gl-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.gl-mock-title {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-shadow: 0 0 8px rgba(0,229,255,0.7);
  margin-left: 6px;
}

.gl-mock-body {
  padding: 20px;
}

.gl-mock-car {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gl-mock-car-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.gl-mock-car-sub {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
  line-height: 1.8;
}

.gl-mock-entries {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gl-mock-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gl-mock-entry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.gl-mock-entry-title {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.gl-mock-entry-sub {
  font-family: var(--font-pixel);
  font-size: 0.4rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 3px;
  line-height: 1.8;
}

.gl-mock-entry-date {
  font-family: var(--font-pixel);
  font-size: 0.4rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1.8;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.fade-in-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.fade-in-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .garagelog-banner__inner { grid-template-columns: 1fr; gap: 40px; }
  .garagelog-banner__mock  { display: none; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(8, 8, 15, 0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-glow);
  }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero__btns { flex-direction: column; align-items: flex-start; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail__inner { grid-template-columns: 1fr; direction: ltr !important; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-main { padding: 24px 16px; }
  .admin-nav { padding: 0 16px; }
  .admin-nav__links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .admin-image-grid { grid-template-columns: repeat(3, 1fr); }
}
