/* ================= CART PAGE ================= */
.cart-page {
  padding: 96px 24px 80px;
  background: #fff;
  min-height: 80vh;
}

.cart-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.cart-container h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* ================= CART ITEMS ================= */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

/* SINGLE ITEM */
.cart-item-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
}

/* IMAGE */
.cart-item-row img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 10px;
}

/* INFO */
.cart-item-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cart-item-info span {
  font-size: 14px;
  color: #666;
}

/* PRICE */
.cart-item-price {
  font-size: 15px;
  font-weight: 700;
}

/* ================= SUMMARY ================= */
.cart-summary {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TOTAL */
.total-row {
  font-size: 18px;
  font-weight: 700;
}

/* CHECKOUT BUTTON */
.checkout-btn {
  padding: 14px 34px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: opacity .2s ease, transform .2s ease;
}

.checkout-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ================= EMPTY CART ================= */
.cart-empty {
  padding: 60px 0;
  text-align: center;
  color: #666;
  font-size: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .cart-page {
    padding: 88px 16px 60px;
  }

  .cart-item-row {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .cart-item-price {
    grid-column: 2;
  }

  .cart-summary {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .checkout-btn {
    text-align: center;
  }
}
.cart-item{
  display:flex;
  gap:16px;
  padding:14px;
  border-bottom:1px solid #eee;
  align-items:center;
}
.cart-img{
  width:80px;
  height:80px;
  object-fit:contain;
  background:#f5f5f5;
  border-radius:10px;
}
.cart-info h4{margin:0;font-size:15px}
.cart-info p{font-size:12px;color:#777}
.cart-info span{font-weight:600}
.cart-item .remove{
  margin-left:auto;
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
}
.cart-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.cart-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 8px;
}

.cart-info span {
  display: block;
  font-size: 13px;
  color: #555;
}
@media (max-width: 768px) {
  .cart-item-row {
    grid-template-columns: 80px 1fr;
  }
}
