.cart-wrapper-rental {
  position: relative;
}
.cart-dropdown-rental {
  position: absolute;
  top: 100%;
  right: 0;
  width: 360px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  border-radius: 10px;
  border: 1px solid #ddd;
  z-index: 9999;
  width: 290px; 
  max-height: 400px;
 overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  /* pointer-events: none; */
}

/* Hover li open dropdown */
.cart-wrapper-rental:hover .cart-dropdown-rental {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


.cart-item-rental {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease-in-out;
}

.cart-item-rental:last-child {
  border-bottom: none;
}

.cart-item-rental:hover {
  background-color: #f9f9f9;
}

.cart-item-rental-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-dropdown-rental.active {
  display: block;
}

.btn-rental-now {
  display: inline-block;
  background-color: #f0f8ff; 
  color: #1a73e8;            
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-rental-now:hover {
  background-color: #e0f0ff; 
  text-decoration: none;
}
.cart-empty-box {
  text-align: center;
  padding: 10px 2px;
}


.cart-item-go-to-cart {
  margin-top: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #eee;
  background-color: #fff;
  text-align: center;
}

.cart-items-scrollable {
  overflow-y: auto;
  width: 100%;
  max-height: 220px;
  flex-grow: 1;
}

.btn-go-to-cart {
  display: inline-block;
  background-color: #f0f8ff; 
  color: #1a73e8;            
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-go-to-cart:hover {
  background-color: #e0f0ff; 
  text-decoration: none;
}

.cart-items-scrollable {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cart-item-go-to-cart {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}