.cart-page {
  min-height: calc(100vh - 200px);
  padding: 70px 20px 40px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-title {
  font-size: 32px;
  font-weight: 800;
  color: #1d1d1d;
  margin: 10px 0 0px;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.cart-empty a {
  color: rgb(3, 122, 122);
  text-decoration: none;
  font-weight: 600;
}

.cart-empty a:hover {
  text-decoration: underline;
}

.cart-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
}

.cart-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.cart-item-id {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.cart-item-price {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1d;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-btn {
  background-color: transparent;
  border: none;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1d;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantity-btn:hover {
  background-color: #e5e5e5;
}

.quantity-btn:active {
  background-color: #d5d5d5;
}

.quantity-value {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  min-width: 50px;
  text-align: center;
  background-color: white;
}

.cart-separator {
  height: 1px;
  background-color: #e5e5e5;
  margin: 20px 0;
}

.order-summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  font-size: 16px;
  color: #666;
}

.summary-value {
  font-size: 16px;
  color: #1d1d1d;
  font-weight: 600;
}

.summary-value.discount {
  color: #e74c3c;
}

.total-row {
  margin-top: 5px;
}

.total-row .summary-label {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1d;
}

.total-row .summary-value.total {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1d;
}

.checkout-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.checkout-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-page {
    padding: 72px 15px 30px;
  }

  .cart-title {
    font-size: 28px;
    margin-top: 0;
  }

  .cart-card {
    padding: 20px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .quantity-selector {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .cart-page {
    padding: 68px 12px 24px;
  }

  .cart-card {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .cart-title {
    font-size: 24px;
    margin: 0 0 12px;
  }

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

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

  .checkout-btn {
    width: 100%;
    max-width: none;
    padding: 13px 16px;
    font-size: 15px;
    letter-spacing: 0.2px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.28);
  }
}

