/* Cart Styles */
.cart-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.cart-container {
  background-color: white;
  max-width: 500px;
  width: 100%;
  margin: 50px auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  animation: slideDown 0.3s ease-out;
  max-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}

@keyframes slideDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

.cart-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  color: var(--primary);
  font-size: 1.4em;
}

.cart-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--light-gray);
}

.cart-item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

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

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  object-fit: cover;
  margin-left: 15px;
}

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

.cart-item-title {
  margin: 0 0 5px;
  color: var(--dark);
  font-weight: 500;
}

.cart-item-price {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 10px;
}

.cart-quantity {
  display: flex;
  align-items: center;
}

.cart-quantity-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
}

.cart-quantity-input {
  width: 35px;
  text-align: center;
  border: none;
  font-size: 14px;
  margin: 0 5px;
}

.cart-item-remove {
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  font-size: 16px;
}

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

.cart-empty {
  text-align: center;
  padding: 30px 20px;
  color: var(--gray);
}

.cart-empty i {
  font-size: 3em;
  color: var(--light-gray);
  margin-bottom: 10px;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cart-continue-shopping {
  background-color: white;
  border: 1px solid var(--primary);
  color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .cart-container {
    max-width: 100%;
    margin: 0;
    height: 100%;
    border-radius: 0;
  }
  
  .cart-item {
    flex-direction: column;
  }
  
  .cart-item-image {
    margin-left: 0;
    margin-bottom: 10px;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cart-actions .btn {
    width: 100%;
  }
  
  .cart-subtotal {
    font-size: 1.2em;
    padding: 10px 0;
  }
  
  .cart-item-title {
    font-size: 0.95em;
  }
}