:root {
  --orange: #ff5a00;
  --black: #0b0b0d;
  --muted: #6c6c73;
  --bg: #f5f5f6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #17171a;
  background: #fff;
}
.container {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
}
.topbar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 9px;
  font-weight: 800;
  font-size: 13px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 12, 0.96);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 160px;
  height: 58px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 850;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.nav-cta,
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.hero {
  background:
    radial-gradient(circle at 80% 20%, #3c1a0b 0, transparent 30%),
    linear-gradient(135deg, #070708, #151519);
  color: #fff;
  padding: 78px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: #ff8a4d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  margin: 16px 0;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  color: #c9c9ce;
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.btn-ghost {
  border: 1px solid #444;
  color: #fff;
}
.hero-visual {
  background: linear-gradient(145deg, #222, #0b0b0c);
  border: 1px solid #333;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 90px #0008;
}
.hero-visual img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
}
.hero-placeholder {
  height: 330px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #21150f, #0e0e10);
  font-size: 90px;
}
.hero-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
}
.hero-price strong {
  font-size: 32px;
  color: var(--orange);
}
.section {
  padding: 82px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 8px 0;
}
.bike-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bike-card {
  border: 1px solid #e6e6e9;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 35px #0000000a;
  transition: 0.25s;
}
.bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px #00000016;
}
.bike-image {
  height: 230px;
  background: #ececef;
  position: relative;
}
.bike-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.bike-content {
  padding: 20px;
}
.bike-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.bike-title h3 {
  margin: 4px 0 0;
  font-size: 22px;
}
.specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 17px 0;
}
.specs span {
  background: #f1f1f3;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 12px;
}
.price small {
  display: block;
  color: var(--muted);
}
.price strong {
  font-size: 27px;
}
.bike-content a {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  background: #111;
  color: #fff;
  padding: 13px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}
.offer {
  padding: 20px 0 80px;
}
.offer-card {
  background: linear-gradient(120deg, #ff5a00, #ff7a23);
  border-radius: 28px;
  padding: 48px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.offer-card h2 {
  font-size: 40px;
  max-width: 700px;
  margin: 10px 0;
}
.btn-light {
  background: #fff;
  color: #151515;
}
.location {
  background: #111;
  color: #fff;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.map-box {
  min-height: 310px;
  border-radius: 22px;
  background: linear-gradient(135deg, #242429, #151517);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.footer {
  background: #080809;
  color: #aaa;
  padding: 38px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer img {
  width: 150px;
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 27px;
  box-shadow: 0 12px 30px #0005;
}
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 420px;
  gap: 40px;
  align-items: start;
}

.main-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  cursor: pointer;
}

.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumbs img {
  width: 95px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
  flex-shrink: 0;
}

.thumbs img:hover {
  transform: scale(1.05);
  border: 2px solid #ff5b00;
}

.details-card {
  position: sticky;
  top: 110px;
}

.main-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  background: #eee;
}
.thumbs {
  display: flex;
  gap: 10px;
  overflow: auto;
  margin-top: 10px;
}
.thumbs img {
  width: 90px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}
.details-card {
  background: #f5f5f6;
  border-radius: 24px;
  padding: 30px;
}
.details-card h1 {
  font-size: 45px;
  margin: 8px 0;
}
.description {
  line-height: 1.75;
  color: #555;
}
.empty {
  padding: 50px;
  text-align: center;
  border: 1px dashed #ccc;
  border-radius: 18px;
}
@media (max-width: 850px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
  .hero-grid,
  .gallery,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .bike-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 50px 0;
  }
  .hero-visual img,
  .hero-placeholder {
    height: 250px;
  }
  .section-head,
  .offer-card,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .offer-card h2 {
    font-size: 31px;
  }
  .main-photo {
    height: 330px;
  }
  .details-card h1 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .details-card {
    position: relative;

    top: 0;
  }

  .main-photo {
    height: 330px;
  }

  .thumbs {
    justify-content: flex-start;
  }

  .thumbs img {
    width: 70px;

    height: 60px;
  }
}

.map-box {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  overflow: hidden;
  min-height: 430px;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.map-info {
  display: flex;
  padding: 48px 38px;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.map-info .eyebrow {
  margin-bottom: 12px;
  color: #ff6420;
}

.map-info h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1;
}

.map-info p {
  margin: 0 0 10px;
  color: #d5d5d5;
  line-height: 1.6;
}

.map-info .btn {
  margin-top: 20px;
}

.map-frame {
  min-height: 430px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

@media (max-width: 800px) {
  .map-box {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 20px;
  }

  .map-info {
    padding: 32px 24px;
  }

  .map-info h2 {
    font-size: 28px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }
}

@media (max-width: 480px) {
  .map-info {
    padding: 28px 20px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 290px;
  }

  .map-info .btn {
    width: 100%;
    text-align: center;
  }
}
.nav-login {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;

  border: 1px solid #d9d9d9;

  border-radius: 999px;

  color: #333;
  font-weight: 600;
  text-decoration: none;

  transition: 0.25s;
}

.nav-login:hover {
  background: #f5f5f5;
  border-color: #111;
  color: #111;
}
