table tr th, td {
  font-size:14px!important;
}
.banner-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.banner-wrapper img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: middle; /* crop from bottom */
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 4px #000;
}

.banner-subtext {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.4rem;
  text-align: center;
  text-shadow: 1px 1px 4px #000;
}

.card-header-dark {
  background-color: #212d5e;
  color: #fff;
  border-bottom: none;
}
.sidebar .list-group-item {
  border: none;
  font-size: 15px;
}
.sidebar .list-group-item:hover {
  background-color: #f1f1f1;
}
.sidebar .active {
  font-weight: bold;
  background-color: #e9ecef;
}
.btn-dark-blue {
  background-color: #212d5e;
  color: #fff;
}
.btn-dark-blue:hover {
  background-color: #1a234b;
  color: #fff;
}

.btn-orange {
  background-color: #f4a100;
  color: #fff;
}
.btn-orange:hover {
  background-color: #d98c00;
  color: #fff;
}
.btn-dark-blue {
  background-color: #212d5e;
  color: #fff;
}
.btn-dark-blue:hover {
  background-color: #1a234b;
  color: #fff;
}

.list-group-item.active.custom-success {
  background-color: #cfe2ff;  /* Bootstrap success green */
  color: #084298;
  border-color: #cfe2ff;
}

.logged-section-title {
  background-color: #1a2b5c;
  color: white;
  padding: 10px 15px;
  border-radius: 5px 5px 0 0;
  text-align:left;
}
.cart-btn {
  background-color: #f7941d;
  color: white;
  border: none;
  height:40px
  
}
.cart-btn:hover {
  background-color: #e68300;
}
.bmw-logo {
  width: 40px;
}
.highlight {
  color: #f7941d;
}
.price-info small {
  display: block;
}

.image-box {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin: auto;
    /* border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.03);
    border-radius: 8px; */
}

.image-box img {
    max-width: 250px;
    
    object-fit: contain;
}

@media (max-width: 600px) {
  .banner-text {
      position: absolute;
      top: 30%;
      width:100%;
      text-align: center;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 1.4rem;
      font-weight: bold;
      text-shadow: 1px 1px 4px #000;
    }
  
    .banner-subtext {
      position: absolute;
      top: 45%;
      width:100%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 1.2rem;
      text-align: center;
      text-shadow: 1px 1px 4px #000;
    }
}

.iti {
  width: 100%;
}

input.invalid { border: 2px solid red; }
  
/* Following classes are for cookie consent */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2c3260;
  color: white;
  max-width: 350px;
  padding: 16px;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.cookie-box p {
  margin: 0 0 10px;
  font-size: 14px;
  text-align: justify;
}

.cookie-options {
  background: #1e2345;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.cookie-options label {
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  padding: 6px 10px;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
}

#cookie-allow-all {
  background: #ffa726;
  color: #fff;
}

#cookie-save, #cookie-reject-all {
  background: #3f51b5;
  color: #fff;
}

.hidden {
  display: none !important;
}
.cookie-fingerprint {
  position: fixed;
  bottom: 15px; /* above scroll-top */
  right: 15px;
  background-color: #FFA638;
  color: white;
  z-index: 99999;
  font-size: 20px;
  text-decoration: none;
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.cookie-fingerprint:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.hidden {
  display: none !important;
}
/* Above classes are for cookie consent */

.w-100 {
  width: 100% !important;
}