.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

.cart-badge.hidden {
  display: none;
}

/* Cart Dropdown */

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  width: 350px;
  max-height: 400px;
  /*overflow-y: auto;*/
  z-index: 1050;
  display: none;
}

.cart-dropdown.show {
  display: block;
}

.cart-dropdown-header {
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: #495057;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f8f9fa;
}

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

.cart-item-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 13px;
  color: #6c757d;
}

.cart-item-quantity {
  font-size: 12px;
  color: #0d6efd;
  margin-left: 8px;
}

.cart-summary {
  padding: 15px;
  border-top: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

.cart-subtotal {
  display: flex;
  justify-content: between;
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-empty {
  text-align: center;
  padding: 30px 15px;
  color: #6c757d;
}

/* Add to Cart Button */

.add-to-cart-btn {
  background: linear-gradient(45deg, #116b28, #2db48c);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.add-to-cart-btn.added {
  background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

/* Checkout Page Styles */

.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
}

.order-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  height: fit-content;
}

.checkout-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

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

.checkout-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.quantity-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-left: none;
  border-right: none;
  height: 30px;
}

