@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&family=Bebas+Neue&display=swap');

/* ─── TOKENS ─── */
:root {
  --gold:       #C9A227;
  --gold-light: #E8BC0E;
  --gold-dim:   #7a5f10;
  --black:      #0d0d0d;
  --black-2:    #151414;
  --black-3:    #1e1e1e;
  --off-white:  #f0ece0;
  --grey:       #757575;
  --radius-card: 16px;
  --shadow-card: 0 8px 32px rgba(0,0,0,.55);
}

html{
  scroll-behavior: smooth;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--black);
  color: var(--off-white);
}
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(13,13,13,1) 88%),
    url('images/hero.png') center/cover no-repeat;
}

/* glowing circle */
.hero-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(201,162,39,.28) 0%,
    rgba(201,162,39,.10) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: .85rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .95;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 4px 40px rgba(0,0,0,.8);
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin: 0 0 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
}

.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background .2s, transform .2s;
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* hero car image strip */
.hero-cars {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 96vw;
  z-index: 2;
  pointer-events: none;
}
.hero-cars img {
  width: 100%;
  filter: drop-shadow(0 0 60px rgba(201,162,39,.35));
}

/* ─── SITE WRAPPER ─── */
.container {
  width: 960px;
  max-width: 92vw;
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
}

/* ─── STICKY NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,.2);
  padding: 2px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: .05em;
}
.nav-brand span { color: #fff; }
.nav-theme {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey);
  font-size: .8rem;
}

/* ─── SECTION TITLES ─── */
.section-label {
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin: 0 0 36px;
  line-height: 1;
}

/* ─── SEARCH ─── */
.search-section {
  padding: 40px 0 20px;
}
.searchbar {
  display: flex;
  align-items: center;
  background: var(--black-3);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 40px;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 20px;
  height: 52px;
  transition: border-color .2s;
}
.searchbar:focus-within {
  border-color: var(--gold);
}
.searchbar-left { display: flex; align-items: center; }
.search-icon { color: var(--gold); width: 20px; height: 20px; }
.searchbar-icon { display: inline-flex; fill: currentColor; width: 22px; height: 22px; }
.searchbar-center { flex: 1; }
.searchbar-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--off-white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 0 12px;
}
.searchbar-input::placeholder { color: var(--grey); }
.searchbar-input-spacer { display: none; }
.searchbar-wrapper { display: flex; flex: 1; align-items: center; }

/* ─── PRODUCT GRID ─── */
.grid-section { padding: 20px 0 60px; }

.listProduct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.listProduct .item {
  background: var(--black-3);
  border: 1px solid rgba(201,162,39,.12);
  border-radius: var(--radius-card);
  padding: 18px;
  box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.listProduct .item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,.05) 0%, transparent 60%);
  pointer-events: none;
}
.listProduct .item:hover {
  border-color: rgba(201,162,39,.5);
  transform: translateY(-4px);
}

.listProduct .item .outer_img {
  width: 100%;
  height: 150px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

.listProduct .item h2 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.listProduct .item .description {
  font-size: .85rem;
  line-height: 1.4;
  color: var(--grey);
  margin: 0 0 6px;
}

.listProduct .item .price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.listProduct .item .price.sale {
  text-decoration: line-through;
  color: var(--grey);
  font-size: .78rem;
}

.listProduct .item .actie.price {
  color: var(--gold);
  font-size: .9rem;
}

.listProduct .item button {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  border-radius: 20px;
  padding: 7px 18px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
}

.listProduct .item button.view {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-right: 6px;
}
.listProduct .item button.view:hover {
  background: var(--gold);
  color: var(--black);
}

.listProduct .item button.addCart {
  background: var(--gold);
  color: var(--black);
}
.listProduct .item button.addCart:hover {
  background: var(--gold-light);
  transform: scale(1.04);
}

.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.card-actions .addCart,
.card-actions .whatsapp-btn {
  margin-top: 8px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid #25D366;
  border-radius: 20px;
  padding: 7px 16px;
  cursor: pointer;
  color: #25D366;
  background: transparent;
  transition: background .2s, color .2s, transform .15s;
}
.whatsapp-btn i { font-size: .95rem; }
.whatsapp-btn:hover {
  background: #25D366;
  color: #fff;
  transform: scale(1.04);
}

/* ─── DARK TOGGLE ─── */
.theme-checkbox {
  --toggle-size: 14px;
  appearance: none;
  width: 4.5em;
  height: 2.125em;
  background: linear-gradient(to right, #333 50%, #C9A227 50%) no-repeat;
  background-size: 205%;
  background-position: 0;
  transition: .4s;
  border-radius: 99em;
  position: relative;
  cursor: pointer;
  font-size: var(--toggle-size);
}
.theme-checkbox::before {
  content: "";
  width: 1.7em; height: 1.7em;
  position: absolute;
  top: .19em; left: .19em;
  background: linear-gradient(to right, #aaa 50%, #fff 50%) no-repeat;
  background-size: 205%;
  background-position: 100%;
  border-radius: 50%;
  transition: .4s;
}
.theme-checkbox:checked::before { left: calc(100% - 1.7em - .338em); background-position: 0; }
.theme-checkbox:checked { background-position: 100%; }

/* ─── MODAL ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  inset: 0;
  background: rgba(0,0,0,.75);
  padding-top: 60px;
  overflow: auto;
}

.modal-content {
  background: var(--black-2);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 16px;
  width: 580px;
  max-width: 92vw;
  margin: 0 auto;
  animation: slideDown .35s ease;
  overflow: hidden;
}

@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.modal-header {
  background: linear-gradient(135deg, #1a1400, #2a1e00);
  border-bottom: 1px solid rgba(201,162,39,.25);
  padding: 20px 24px;
  position: relative;
}
.modal-header h2 {
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .06em;
  text-align: center;
  margin: 0;
}
.close {
  position: absolute;
  right: 16px; top: 14px;
  color: var(--grey);
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.close:hover { color: var(--gold); }

.modal-body { padding: 24px; }

.coolinput {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px 0;
}
.coolinput label {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.coolinput .input {
  background: var(--black-3);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .95rem;
  color: var(--off-white);
  font-family: 'Poppins', sans-serif;
  transition: border-color .2s;
}
.coolinput .input:focus {
  outline: none;
  border-color: var(--gold);
}
.coolinput .input::placeholder { color: var(--grey); }

.coolinput textarea.input {
  resize: vertical;
  min-height: 90px;
  font-family: 'Poppins', sans-serif;
}

.submit {
  display: block;
  width: 60%;
  margin: 20px auto 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  padding: 13px 0;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.submit:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}

/* ─── FOOTER ─── */
.footer-section {
  background: var(--black-2);
  border-top: 1px solid rgba(201,162,39,.15);
  margin-top: 0;
}

.footer-cta {
  border-bottom: 1px solid #2a2a2a;
  padding: 28px 40px;
}

.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.single-cta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.single-cta i {
  color: var(--gold);
  font-size: 28px;
  margin-top: 4px;
}
.cta-text h4 {
  color: var(--grey);
  font-size: .8rem;
  font-weight: 600;
  margin: 0 0 6px;
}
@media (max-width: 700px) {
.cta-text h4 {
  text-align: left;
}
}
.cta-text span {
  color: #fff;
  font-size: .9rem;
}

.footer-slogan {
  color: var(--gold-light);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .02em;
  margin: 0 0 14px;
}

.phone-numbers {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-numbers span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .9rem;
}
.phone-numbers span i {
  color: var(--gold);
  font-size: .85rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,162,39,.15);
  margin: 24px 0 20px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: column;
}

.social-label {
  color: var(--grey);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold);
  font-size: .95rem;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.copyright-area {
  background: #0a0a0a;
  padding: 12px 40px;
  text-align: center;
  border-top: 1px solid #1f1f1f;
}
.copyright-text p {
  margin: 0;
  font-size: .85rem;
  color: var(--gold-dim);
  letter-spacing: .04em;
}

/* ─── NOTHING FOUND ─── */
.listProduct h5 {
  grid-column: 1 / -1;
  color: var(--grey);
  font-size: 1.2rem;
  text-align: center;
  padding: 40px 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .listProduct { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .listProduct { grid-template-columns: repeat(2, 1fr); }
  .footer-cta, .footer-content { padding: 32px 20px; }
  .row { flex-direction: column; align-items: flex-start; }
  .site-nav { padding: 2px 20px; }
  .phone-numbers { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 700px) {
  .hero {
    min-height: 70vh;
    min-height: 70dvh;
    height: 70vh;
    height: 70dvh;
  }
  .hero-eyebrow {
    margin-bottom: 22px;
  }
  .hero-title {
    margin-bottom: 22px;
  }
  .hero-subtitle {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .listProduct { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .hero {
    min-height: 70vh;
    min-height: 70dvh;
    height: 70vh;
    height: 70dvh;
  }
  .hero-title { font-size: 3.4rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-eyebrow { font-size: .9rem; }

  .listProduct .item .outer_img {
    width: 95%;
    /* height: 190px; */
  }
  .listProduct .item .description {
    font-size: .72rem;
  }
}

/* ─── FEATURES BADGE ROW (optional) ─── */
.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 36px 20px 0;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-3);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--off-white);
}
.badge i { color: var(--gold); font-size: 1rem; }