.cart-page{
  max-width:1240px;
  margin:0 auto;
  padding:96px 24px 84px;
}

.cart-container h1{
  margin-bottom:28px;
  font-size:clamp(2rem,5vw,3.4rem);
}

.cart-row,
.cart-summary,
.empty-cart,
.order-confirmation{
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.cart-row{
  display:grid;
  grid-template-columns:110px 1fr auto;
  gap:22px;
  align-items:center;
  padding:22px;
  margin-bottom:16px;
}

.cart-img{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:20px;
}

.cart-info h4{
  margin-bottom:8px;
  font-size:1.1rem;
  color:#f5ecda;
}

.cart-info p{
  color:#c7baa1;
}

.qty-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
}

.qty-row button,
.remove-btn{
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:#f3e9d6;
  cursor:pointer;
}

.qty-row button{
  width:34px;
  height:34px;
  border-radius:12px;
}

.remove-btn{
  width:42px;
  height:42px;
  border-radius:50%;
}

.price-row{
  margin-top:12px;
  font-weight:700;
  color:#fff4df;
}

.cart-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:26px;
  padding:24px 28px;
}

.total-row{
  font-size:1.2rem;
  color:#f2e7d0;
}

.checkout-btn,
.shop-btn,
.track-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 24px;
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,#e1c984,#b98d31);
  color:#090909;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 16px 34px rgba(185,141,49,.22);
}

.empty-cart,
.order-confirmation{
  margin-top:18px;
  padding:48px 28px;
  text-align:center;
}

.empty-cart h2,
.order-confirmation h1{
  margin-bottom:12px;
}

.order-id{
  margin:20px 0;
  color:var(--gold);
  font-size:1.1rem;
}

@media (max-width: 768px){
  .cart-page{
    padding:88px 16px 60px;
  }

  .cart-row{
    grid-template-columns:1fr;
  }

  .cart-img{
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
  }

  .cart-summary{
    flex-direction:column;
    gap:18px;
    align-items:stretch;
  }

  .checkout-btn,
  .shop-btn,
  .track-btn{
    width:100%;
  }
}
