/* Ana Container Stilleri */
#cart-container {
  margin-bottom: 0.5rem !important;
  
}
#basketnewcontainer{
    padding-bottom: 0 !important;
}

#cart-container:hover {
  box-shadow: 0 8px 32px 0 rgba(234,32,126,0.15);
}

#cart-header {
  background: #ff6b00;
}

/* Ürün Resim Stilleri */
#bskt-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 56px;
  max-width: 56px;
  flex-shrink: 0;
}

#bskt-img {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  border-radius: 1rem;
  border: 2px solid #a78bfa;
  background: #fff;
  transition: transform 0.2s;
}

#bskt-img {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 4px 16px 0 rgba(49,46,129,0.12);
}

/* Fiyat Stilleri */
#bskt-prc{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Quantity Stilleri */
.bskt-quantity {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  max-width: 110px;
  width: 100%;
  flex-shrink: 1;
}

.bskt-quantity .qty-input {
  width: 2.2rem;
  min-width: 0;
  text-align: center;
  font-size: 1rem;
  padding: 0.2rem 0.1rem;
  height: 2rem;
}

.bskt-quantity .btn-qty {
  min-width: 28px;
  padding: 0.2rem 0.4rem;
  font-size: 1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toplam Footer Stilleri */
#total-footer {
  background: #f8f9fa;
}

/* Onay Butonu Stilleri */
#confirm-order-btn {
  background: #ff6b00;
  color: #fff;
  border: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

#confirm-order-btn:hover,
#confirm-order-btn:focus {
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(234,32,126,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* Genel Stiller */
.text-pink {
  color: #ff6b00 !important;
}

.product-link:hover {
  color: #EA207E;
  text-decoration: underline;
}

.remove-btn {
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.remove-btn:hover {
  opacity: 1;
  color: #a78bfa !important;
}

/* Mobil Responsive */
@media (max-width: 575.98px) {
  #cart-container {
    border-radius: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  
  #cart-header {
    border-radius: 1.2rem 1.2rem 0 0 !important;
  }
  
  #total-footer {
    border-radius: 0 0 1.2rem 1.2rem !important;
  }
  
  #product-1,
  #product-2,
  #product-3 {
    padding: 0.8rem !important;
  }
  
#bskt-img{
    min-width: 48px;
    max-width: 48px;
  }
  
#bskt-img .product-img {
    width: 48px !important;
    height: 48px !important;
  }
  
.bskt-quantity{
    max-width: 70px;
    gap: 0.1rem;
  }
.bskt-quantity  .qty-input {
    width: 1.6rem;
    font-size: 0.95rem;
    padding: 0.1rem 0.05rem;
    height: 1.6rem;
  }
  
.bskt-quantity .btn-qty {
    min-width: 22px;
    font-size: 0.95rem;
    padding: 0.1rem 0.2rem;
    height: 1.6rem;
  }
}