/* =========================================================
   SUZUKI HABIB MOTORS - CLEAN CSS (NO TOPBAR + FOOTER)
========================================================= */

/* =========================
   1) GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family:system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   2) WRAPPER
========================= */
.sz-wrap{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding-left:40px;
  padding-right:40px;
}

/* =========================
   3) NAVBAR
========================= */
.sz-navbar{
  width:100%;
  background:#fff;
  border-bottom:1px solid #e8e8e8;
  padding:8px 0 !important;
  margin:0 !important;
  position:sticky;
  top:0;
  z-index:1090;
}

.sz-navbar .container-fluid.sz-wrap{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  column-gap:22px;
}

/* Left Suzuki */
.sz-left-logo img{
  height:40px;
  object-fit:contain;
}

/* Right Habib */
.sz-right-logo{
  display:flex;
  justify-content:flex-end;
}

.sz-right-logo img{
  height:40px;
  max-width:200px;
}

/* Nav links */
.sz-nav .nav-link{
  color:#0f172a !important;
  font-weight:800;
  font-size:15px;
  text-transform:uppercase;
  padding:10px 16px !important;
}

.sz-nav .nav-link:hover{
  color:#0b63a8 !important;
}

.sz-active{
  color:#0b63a8 !important;
  font-weight:900 !important;
}

/* =========================
   4) TITLE BAR
========================= */
.bike-hero,
.pp-hero{
  background:#005b8f;
  padding:18px 0;
  text-align:center;
}

.bike-hero h2,
.pp-hero h2{
  color:#fff;
  font-size:32px;
  font-weight:700;
}

/* =========================
   5) MOTORCYCLE LIST
========================= */
.motorcycle-list-section{
  background:#f3f4f6;
  padding:35px 0 50px;
}

.bike-row{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:28px;
  align-items:center;
  margin-bottom:34px;
}

.bike-row-image{
  display:flex;
  justify-content:center;
}

.bike-row-image img{
  max-width:220px;
}

.bike-table{
  background:#fff;
}

.bike-table-head,
.bike-table-body{
  display:grid;
  grid-template-columns:1.5fr 1fr 220px;
  align-items:center;
}

.bike-table-head{
  background:#eee;
  padding:0 18px;
  min-height:74px;
  font-weight:800;
}

.bike-table-body{
  padding:0 18px;
  min-height:90px;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
}

.bike-variant,
.bike-price{
  font-size:20px;
}

.bike-action{
  display:flex;
  justify-content:flex-end;
}

/* Button */
.book-btn{
  min-width:170px;
  height:50px;
  background:#003f5c;
  color:#fff;
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:700;
}

.book-btn:hover{
  background:#0b63a8;
}

.bike-effective-date{
  margin-top:16px;
  padding-left:18px;
  font-size:15px;
}

/* =========================
   6) PRODUCTS (pp)
========================= */
.pp-wrap{
  background:#f3f4f6;
  padding:35px 0;
}

.pp-row{
  max-width:1200px;
  margin:0 auto 22px;
  background:#fff;
  display:grid;
  grid-template-columns:260px 1fr 220px;
  gap:18px;
  padding:22px;
}

.pp-left img{
  max-width:220px;
}

.pp-table{
  width:100%;
  border-collapse:collapse;
}

.pp-table th{
  background:#f1f1f1;
  padding:12px;
  font-weight:800;
}

.pp-table td{
  padding:14px 12px;
}

.pp-btn{
  background:#0b3d4f;
  color:#fff;
  padding:10px 18px;
  border-radius:25px;
  text-decoration:none;
}

/* =========================
   7) RESPONSIVE
========================= */
@media (max-width:991px){

  .bike-row{
    grid-template-columns:1fr;
  }

  .bike-table-head,
  .bike-table-body{
    grid-template-columns:1fr 1fr;
  }

  .bike-action{
    grid-column:1 / -1;
    justify-content:flex-start;
  }

  .pp-row{
    grid-template-columns:1fr;
  }
}

@media (max-width:600px){

  .sz-wrap{
    padding-left:14px;
    padding-right:14px;
  }

  .bike-table-head,
  .bike-table-body{
    grid-template-columns:1fr;
  }

  .book-btn{
    width:100%;
  }
}