
--------------------------------------------------------------*/
body {
  --heading-font: "Marcellus", Roboto, sans-serif;
  --heading-font-weight: 400;
  --heading-color: #111;
  --heading-line-height: 1.24;
  border-radius: 0 !important ;
overflow: visible;

  --swiper-theme-color: #8C907E;

  /* bootstrap */
  --bs-body-font-family: "Jost", Roboto, sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #8C907E;
  --bs-secondary: #6c757d;
  --bs-black: #111;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 140, 144, 126;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;
}

body {
  letter-spacing: 0.03rem;
}


/* =========================
GLOBAL RESET
========================= */

body{
  margin:0;
  padding-top:72px;
  font-family:Arial, sans-serif;
  background:#fff;
}

/* =========================
NAVBAR
========================= */

.custom-navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  padding:12px 18px;
  z-index:99999;
}

/* =========================
LOGO
========================= */

.navbar-brand{
  font-size:24px;
  font-weight:900;
  text-decoration:none;
  line-height:1;
  display:flex;
  gap:5px;
  align-items:center;
}

.logo-bike{
  color:#ff0000;
  font-weight:900;
}

.logo-details{
  color:#111;
  font-weight:900;
}

/* MOBILE LOGO SMALL */
@media(max-width:768px){
  .navbar-brand{
    font-size:18px;
  }
}

/* =========================
RIGHT ICONS
========================= */

.right-icons{
  display:flex;
  align-items:center;
  gap:16px;
}

.icon-btn{
  border:none;
  background:none;
  font-size:22px;
  cursor:pointer;
  color:#111;
}

/* =========================
DESKTOP SEARCH
========================= */

.desktop-search-wrapper{
  position:relative;
  width:360px;
}

.desktop-search-box{
  width:100%;
  background:#f5f5f5;
  border-radius:50px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
}

.desktop-search-box input{
  border:none;
  outline:none;
  background:none;
  width:100%;
  font-size:15px;
}

/* =========================
DESKTOP SUGGESTIONS
========================= */

.desktop-suggestions{
  position:absolute;
  top:60px;
  left:0;
  width:100%;
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border:1px solid #eee;
  display:none;
  overflow:hidden;
}

.desktop-suggestions.active{
  display:block;
}

.desktop-suggestion-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  text-decoration:none;
  color:#111;
  border-bottom:1px solid #f1f1f1;
}

.desktop-suggestion-item:hover{
  background:#f7f7f7;
}

.suggestion-image{
  width:52px;
  height:52px;
  border-radius:10px;
  object-fit:cover;
  background:#eee;
}

.no-image{
  width:52px;
  height:52px;
  border-radius:10px;
  background:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
  color:#999;
}

.suggestion-text{
  display:flex;
  flex-direction:column;
}

.suggestion-name{
  font-size:14px;
  font-weight:700;
}

.suggestion-brand{
  font-size:12px;
  color:#777;
}

/* =========================
OFFCANVAS MENU
========================= */

.offcanvas{
  width:320px !important;
}

.nav-link{
  font-size:17px !important;
  font-weight:700 !important;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0 !important;
}

.nav-icon{
  font-size:18px;
  width:22px;
  text-align:center;
}

.dropdown-item{
  font-size:15px;
  padding:8px 14px;
}

/* =========================
MOBILE SEARCH OVERLAY
========================= */

.search-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#fff;
  z-index:99999;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
}

.search-overlay.active{
  opacity:1;
  visibility:visible;
}

.search-top{
  display:flex;
  align-items:center;
  gap:10px;
  padding:15px;
  border-bottom:1px solid #eee;
}

.back-btn{
  border:none;
  background:none;
  font-size:22px;
  cursor:pointer;
}

.search-input-box{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  background:#f5f5f5;
  padding:12px 14px;
  border-radius:50px;
}

.search-input-box input{
  width:100%;
  border:none;
  outline:none;
  background:none;
  font-size:15px;
}

.search-suggestions{
  padding:10px 16px;
}

/* =========================
RESPONSIVE
========================= */

.mobile-search-btn{
  display:none;
}

@media(max-width:991px){

  body{
    padding-top:66px;
  }

  .desktop-search-wrapper{
    display:none;
  }

  .mobile-search-btn{
    display:block;
  }

  .navbar-brand{
    font-size:18px;
  }

  .icon-btn{
    font-size:20px;
  }
}



/* =========================
NAVBAR
========================= */

.custom-navbar{
padding:12px 18px;
background:#fff;
}

.search-btn{
border:none;
background:none;
font-size:20px;
cursor:pointer;
padding:0;
}

/* DESKTOP NAV */

.desktop-nav{
display:flex;
align-items:center;
gap:28px;
}

/* MOBILE */

.mobile-search{
display:none;
}

.navbar-toggler{
display:none;
}

/* MOBILE RESPONSIVE */

@media(max-width:1050px){

.desktop-nav{
display:none;
}

.mobile-search{
display:block;
}

.navbar-toggler{
display:block;
}

}

/* NAV LINKS */

.nav-link{
color:#111!important;
font-size:14px;
font-weight:500;
}

/* =========================
SEARCH OVERLAY
========================= */

.search-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:#fff;

z-index:99999;

opacity:0;
visibility:hidden;

transition:.3s ease;
}

.search-overlay.active{
opacity:1;
visibility:visible;
}

/* TOP */

.search-top{
display:flex;
align-items:center;
gap:12px;

padding:16px;

border-bottom:1px solid #eee;
}

/* BACK BUTTON */

.back-btn{
border:none;
background:none;
font-size:22px;
cursor:pointer;
}

/* SEARCH BOX */

.search-input-box{
flex:1;

display:flex;
align-items:center;
gap:10px;

background:#f5f5f5;

border-radius:50px;

padding:12px 16px;
}

.search-input-box input{
border:none;
outline:none;
background:none;

width:100%;
font-size:15px;
}

/* SUGGESTIONS */

.search-suggestions{
padding:10px 16px;
}

.suggestion-item{
padding:14px 10px;
border-bottom:1px solid #eee;
cursor:pointer;
transition:.2s;
font-size:15px;
}

.suggestion-item:hover{
background:#f7f7f7;
}



