.cart-page {
  background: linear-gradient(135deg, #f6f6f6, #eaeaea);
  padding: 80px 20px;
}

.cart-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
}

/* LEFT */
.cart-left {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.cart-left h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.cart-details p {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Quantity */
.quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.quantity button {
  background: #f5f5f5;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

.quantity span {
  padding: 8px 14px;
  font-weight: 600;
}

.remove-item {
  background: none;
  border: none;
  color: #888;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.remove-item:hover {
  color: #111;
}

.cart-price {
  font-size: 18px;
  font-weight: 600;
}

/* RIGHT */
.cart-right {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  height: fit-content;
}

.cart-right h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  border-top: 1px dashed #ccc;
  padding-top: 15px;
}

/* BUTTONS */
.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #555, #222);
  color: #fff;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

.continue-btn {
  display: block;
  margin-top: 15px;
  text-align: center;
  padding: 13px;
  border-radius: 14px;
  background: #f2f2f2;
  color: #555;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.continue-btn:hover {
  background: #ddd;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-price {
    align-self: flex-end;
  }
}
