.cart-container {
  position: relative;
  width: 100%;
  background: var(--bg-color);
  padding-bottom: 180px;
  min-height: 100vh;
}

.cart-top-panel {
  background-color: var(--card-color);
  border-radius: 0 0 20px 20px;
  padding: 15px;
  margin-bottom: 15px;
}

.server-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.server-icon {
  width: 36px;
  height: 36px;
  background-image: url('./images/aqua.png');
  background-size: contain;
  margin-right: 10px;
}

.server-name {
  font-weight: 600;
  font-size: 18px;
  flex: 1;
}

.server-arrow {
  width: 12px;
  height: 12px;
  background-image: url('./images/right-arrow.png');
  background-size: contain;
  transform: rotate(90deg);
}

.select-all {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.select-all-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  margin-right: 10px;
  position: relative;
}

.select-all-checkbox.checked::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url('./images/check.png');
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.select-all-label {
  font-weight: 600;
  font-size: 16px;
}

.sale-banner {
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
}

.sale-banner-icon {
  width: 24px;
  height: 24px;
  background-image: url('./images/fire.png');
  background-size: contain;
  margin-right: 10px;
}

.sale-banner-content {
  flex: 1;
}

.sale-banner-text {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.sale-banner-subtext {
  font-size: 12px;
  color: var(--secondary-text);
}

.sale-banner-timer {
  background: linear-gradient(92.07deg, rgba(32, 206, 223, 0.8) 0%, rgba(6, 112, 235, 0.8) 100%);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 12px;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
}

/* Cart Items */
.cart-items {
  padding: 0 15px;
  background-color: var(--card-color);
  border-radius: 20px 20px 0 0;
  margin-bottom: 15px;
}

.cart-available-section {
  padding: 20px 0;
}

.cart-available-text {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.cart-divider {
  height: 2px;
  background-color: var(--border-color);
  margin: 10px 0;
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
  padding: 15px;
  background-color: var(--bg-color);
  border-radius: 10px;
  position: relative;
}

.cart-item-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  margin-right: 10px;
  margin-top: 5px;
  position: relative;
}

.cart-item-checkbox.checked::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url('./images/check.png');
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  margin-right: 10px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.cart-item-current-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 8px;
}

.cart-item-old-price {
  font-size: 12px;
  color: var(--secondary-text);
  text-decoration: line-through;
  margin-right: 8px;
}

.cart-item-discount {
  font-weight: 700;
  font-size: 12px;
  color: var(--discount-color);
}

.cart-item-sale-badge {
  display: inline-block;
  background: linear-gradient(92.07deg, rgba(32, 206, 223, 0.8) 0%, rgba(6, 112, 235, 0.8) 100%);
  border-radius: 3px;
  padding: 2px 5px;
  font-weight: 700;
  font-size: 10px;
  margin-bottom: 5px;
}

.cart-item-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.cart-item-limited {
  font-weight: 700;
  font-size: 10px;
  color: var(--accent-color);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-favorite {
  width: 24px;
  height: 24px;
  background-image: url('./images/heart-shape-outline.png');
  background-size: contain;
  cursor: pointer;
}

.cart-item-favorite.favorite {
  background-image: url('./images/heart-simple-shape-silhouette.png');
}

.cart-item-remove {
  width: 24px;
  height: 24px;
  background-image: url('./images/bin.png');
  background-size: contain;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
}

.quantity-decrease, 
.quantity-increase {
  width: 24px;
  height: 24px;
  background-color: var(--bg-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.quantity-value {
  margin: 0 8px;
  font-weight: 600;
  font-size: 16px;
  color: white;
}

.cart-item-buy {
  background-color: var(--accent-color);
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
}

/* Cart Summary */
.cart-summary {
  position: fixed;
  bottom: 89px;
  width: 100%;
  background: var(--card-color);
  border-top: 2px solid var(--border-color);
  padding: 15px;
  z-index: 5;
}

.total-amount {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
}

.checkout-button {
  width: 100%;
  background: linear-gradient(92.07deg, rgba(32, 206, 223, 0.8) 0%, rgba(6, 112, 235, 0.8) 100%);
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(146, 206, 255, 0.58);
}