.container {
  max-width: 1200px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}



/* ---------------------------------------
   🔷 Header Right Nav + My Account
------------------------------------------ */
.right-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.account-link {
  background: #00b894;
  padding: 8px 14px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.account-link:hover {
  background: #019875;
}

.mobile-account {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-align: left;
}

/* Hide desktop My Account on mobile */
@media (max-width: 768px) {
  .account-link {
    display: none;
  }
}

/* ---------------------------------------
   🏍️ Bike Card Grid (Brand Page)
------------------------------------------ */
.bike-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.bike-card-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.bike-card-box:hover {
  transform: translateY(-5px);
}

.bike-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.bike-card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bike-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.bike-title a {
  color: inherit;
  text-decoration: none;
}

.bike-title a:hover {
  color: #007bff;
}

.bike-excerpt {
  font-size: 15px;
  color: #555;
  flex-grow: 1;
}

/* ---------------------------------------
   🔵 Read More Button
------------------------------------------ */
.btn-readmore {
  margin-top: 15px;
  align-self: flex-start;
  padding: 8px 14px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-readmore:hover {
  background: #0056b3;
}

/* ---------------------------------------
   🔵 Widgets Add
------------------------------------------ */
.header-ad,
.single-post-ad,
.single-bike-ad,
.footer-ad {
  background-color: #f9f9f9;
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
}

.header-ad img,
.single-post-ad img,
.single-bike-ad img,
.footer-ad img {
  max-width: 100%;
  height: auto;
}



/* ---------------------------------------
   🔵 Widgets Fixed Ads Code
------------------------------------------ */
                                                                            

