/* Shopping Cart Styles - Bootstrap 5 Offcanvas */

/* Cart Button Styling */
.header-cart-btn {
  position: relative;
  padding: 10px 20px !important;
  background-color: #28a745 !important;
  color: white !important;
  border-radius: 40px !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.header-cart-btn:hover {
  background-color: #218838 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.header-cart-btn .cart-badge {
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* Offcanvas Customization */
#cartOffcanvas {
  width: 450px !important;
}

@media (max-width: 768px) {
  #cartOffcanvas {
    width: 100% !important;
  }
}

.offcanvas-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 20px;
}

.offcanvas-header .offcanvas-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.offcanvas-body {
  padding: 0 !important;
  background-color: #fff;
}

#cart-items {
  max-height: 450px;
  overflow-y: auto;
  padding: 0;
}

/* Cart Item Styling */
.cart-item {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

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

.cart-item:hover {
  background-color: #f8f9fa;
}

/* Cart Item Image */
.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

/* Cart Item Content */
.cart-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.4;
}

.cart-item-category {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #28a745;
  display: inline-block;
  margin-right: 10px;
}

/* Remove Button */
.remove-from-cart {
  background-color: #fff !important;
  border: 1px solid #dee2e6 !important;
  color: #666 !important;
  padding: 6px 10px !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  transition: all 0.3s ease;
}

.remove-from-cart:hover {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  color: white !important;
}

.remove-from-cart i {
  margin-right: 4px;
}

/* Empty Cart Message */
.empty-cart-placeholder {
  padding: 60px 20px;
  text-align: center;
  color: #6c757d;
}

.empty-cart-placeholder i {
  font-size: 48px;
  color: #ced4da;
  margin-bottom: 18px;
  display: block;
}

.empty-cart-placeholder p {
  margin: 0;
}

.empty-cart-placeholder p:first-of-type {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.empty-cart-placeholder p.text-muted {
  font-size: 14px;
  color: #6c757d;
}

/* Offcanvas Footer (Checkout) */
.offcanvas-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offcanvas-footer .total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding: 15px 0;
  border-top: 1px solid #dee2e6;
}

.offcanvas-footer .total-price span:last-child {
  color: #28a745;
}

.offcanvas-footer .btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}

.offcanvas-footer .btn-success {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.offcanvas-footer .btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.offcanvas-footer .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}

.offcanvas-footer .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .header-cart-btn {
    padding: 8px 12px !important;
    font-size: 14px;
  }

  .cart-item-title {
    font-size: 13px;
  }

  .cart-item-price {
    font-size: 14px;
  }

  .offcanvas-footer .total-price {
    font-size: 16px;
  }
}

/* Scrollbar Styling */
#cart-items::-webkit-scrollbar {
  width: 6px;
}

#cart-items::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#cart-items::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

#cart-items::-webkit-scrollbar-thumb:hover {
  background: #555;
}
