.cart-button {
  position: relative;
  display: inline-block;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 350px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 5px;
  display: none;
}


.cart-dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.cart-dropdown-items {
  max-height: 300px;
  overflow-y: auto;
}

.cart-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f5f5f5;
}

.cart-dropdown-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 0.9rem;
  color: #333;
  margin: 0 0 0.25rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-quantity {
  font-size: 0.8rem;
  color: #666;
}

.cart-item-price {
  font-weight: bold;
  color: #2c5530;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.cart-dropdown-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #666;
  font-style: italic;
}

.cart-dropdown-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.cart-total {
  font-weight: bold;
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.cart-dropdown-button {
  background: #2c5530;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cart-dropdown-button:hover {
  background: #1e3a21;
  color: white;
  text-decoration: none;
}

.cart-more-items {
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.cart-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.cart-dropdown::after {
  content: '';
  position: absolute;
  top: -9px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ddd;
}