@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --bg: #0c0e12;
  --bg-2: #141820;
  --surface: #1a1f2a;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f2f4f7;
  --muted: #9aa3b2;
  --accent: #e11d2e;
  --accent-2: #ff4d5a;
  --steel: #c5ccd8;
  --ok: #22c55e;
  --warn: #f59e0b;
  --radius: 4px;
  --max: 1180px;
  --nav-h: 72px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 14, 18, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
  filter: invert(1);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1rem;
}

.nav > a,
.nav-drop > button {
  padding: 0.55rem 0.85rem;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav > a:hover,
.nav > a.active,
.nav-drop > button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-drop {
  position: relative;
}

.nav-drop > button {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-drop > button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.mega {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 720px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  display: none;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.nav-drop:hover .mega,
.nav-drop:focus-within .mega,
.nav-drop.open .mega {
  display: grid;
  animation: fadeUp 0.22s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mega-brands {
  border-right: 1px solid var(--line);
  padding-right: 0.5rem;
  max-height: 320px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.mega-brands::-webkit-scrollbar,
.mega-models::-webkit-scrollbar {
  width: 5px;
}

.mega-brands::-webkit-scrollbar-track,
.mega-models::-webkit-scrollbar-track {
  background: transparent;
}

.mega-brands::-webkit-scrollbar-thumb,
.mega-models::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.mega-brands::-webkit-scrollbar-thumb:hover,
.mega-models::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.35);
}

.mega-brands button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.75rem;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  color: var(--muted);
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.mega-brands button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mega-brands button.active {
  color: #fff;
  font-weight: 600;
  border-left-color: var(--accent);
  background: linear-gradient(90deg, rgba(225, 29, 46, 0.22), rgba(225, 29, 46, 0.04) 70%, transparent);
  box-shadow: inset 0 0 0 1px rgba(225, 29, 46, 0.12);
}

.mega-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem 1rem;
  align-content: start;
  max-height: 320px;
  overflow: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.mega-models a {
  padding: 0.4rem 0.5rem;
  color: var(--steel);
  font-size: 0.88rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.mega-models a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mega-all {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.88rem;
}

.search-wrap {
  margin-left: auto;
  position: relative;
  width: min(280px, 28vw);
}

.search-wrap input {
  width: 100%;
  height: 40px;
  padding: 0 2.5rem 0 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  outline: none;
}

.search-wrap input:focus {
  border-color: rgba(225, 29, 46, 0.55);
}

.search-wrap button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: none;
  z-index: 50;
}

.search-suggest.open {
  display: block;
}

.search-suggest a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.search-suggest a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-suggest .oem {
  color: var(--accent-2);
  font-weight: 600;
  margin-right: 0.4rem;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(12, 14, 18, 0.88) 0%, rgba(12, 14, 18, 0.45) 48%, rgba(12, 14, 18, 0.75) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(225, 29, 46, 0.22), transparent 55%),
    linear-gradient(160deg, #1a2230, #0c0e12 60%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: 10%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.28), transparent 68%);
  filter: blur(10px);
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 8rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin-bottom: 1rem;
  animation: fadeIn 0.8s ease both;
}

.hero-brand em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  animation: fadeIn 0.8s ease 0.1s both;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
  animation: fadeIn 0.8s ease 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeIn 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 48px;
  padding: 0 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn-wa {
  background: #25d366;
  color: #06140c;
}

/* ========== Sections ========== */
section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 36rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.brand-tile {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, transform 0.2s;
}

.brand-tile:hover {
  border-color: rgba(225, 29, 46, 0.55);
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.product-card .thumb {
  aspect-ratio: 4/3;
  background:
    linear-gradient(145deg, #222836, #12151c),
    radial-gradient(circle at 30% 30%, rgba(225, 29, 46, 0.15), transparent 50%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .thumb .placeholder {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
}

.product-card .body {
  padding: 1rem 1.05rem 1.15rem;
}

.product-card .oem {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-card .meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  min-height: 360px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.35), transparent 55%),
    linear-gradient(160deg, #242b38, #10141c);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: "DY";
  position: absolute;
  right: -0.1em;
  bottom: -0.25em;
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.page-banner {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(225, 29, 46, 0.18), transparent 50%),
    linear-gradient(180deg, #161b24, var(--bg));
  border-bottom: 1px solid var(--line);
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  opacity: 0.45;
}

/* Products layout */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}

.filters {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.filters h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0.75rem 0 0.5rem;
}

.filters h3:first-child {
  margin-top: 0;
}

.filter-list {
  list-style: none;
}

.filter-list a,
.filter-list button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.55rem;
  border: none;
  background: none;
  color: var(--steel);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
}

.filter-list a:hover,
.filter-list a.active,
.filter-list button:hover,
.filter-list button.active {
  background: rgba(225, 29, 46, 0.12);
  color: #fff;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.toolbar .count {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Product detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.gallery-main {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main .placeholder {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.12);
}

.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.gallery-thumbs button {
  width: 78px;
  height: 58px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.gallery-thumbs button.active {
  border-color: var(--accent);
}

.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info .oem-tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  background: rgba(225, 29, 46, 0.15);
  color: var(--accent-2);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.detail-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.92rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  color: var(--muted);
  font-weight: 500;
  width: 38%;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem;
}

.contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  color: var(--steel);
}

.contact-list strong {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  height: 44px;
  padding: 0 0.85rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
}

.form-grid textarea {
  height: auto;
  min-height: 120px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: rgba(225, 29, 46, 0.55);
}

.wa-banner {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.wa-banner small {
  color: var(--muted);
  display: block;
  margin-top: 0.2rem;
}

/* Admin */
.admin-layout {
  padding: 2rem 0 4rem;
  display: grid;
  gap: 1.25rem;
}

.admin-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}

.admin-panel h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.admin-panel > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

table.data th,
table.data td {
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

table.data th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.tag-default {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.dropzone {
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.15);
}

.dropzone.dragover {
  border-color: var(--accent);
  color: #fff;
}

.inline-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.notice {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(225, 29, 46, 0.1);
  border: 1px solid rgba(225, 29, 46, 0.25);
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #090b0f;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.site-footer p,
.site-footer a {
  color: var(--steel);
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #06140c;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}

.float-wa:hover {
  transform: scale(1.06);
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav,
  .search-wrap {
    display: none;
  }

  .site-header.mobile-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem;
    margin: 0;
    gap: 0.15rem;
  }

  .site-header.mobile-open .search-wrap {
    display: block;
    position: absolute;
    top: calc(var(--nav-h) + 12.5rem);
    left: 1rem;
    right: 1rem;
    width: auto;
    z-index: 101;
  }

  .mega {
    position: static;
    min-width: 0;
    box-shadow: none;
    margin-top: 0.35rem;
    grid-template-columns: 1fr;
  }

  .mega-brands {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 0.5rem;
    max-height: 160px;
  }

  .mega-models {
    grid-template-columns: 1fr 1fr;
    max-height: 180px;
  }

  .about-split,
  .products-layout,
  .detail-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
