/* Cart Styles extracted and normalized from carts5.php */
/* Layout */
.cart-container{max-width:1200px;margin:0 auto;padding:2rem;font-family:Inter,Arial,sans-serif}
.cart-grid{display:grid;grid-template-columns:2fr 1fr;gap:2rem}
@media(max-width:900px){.cart-grid{grid-template-columns:1fr}}

/* Cards */
.cart-card{background:#fff;border-radius:14px;box-shadow:0 10px 25px rgba(0,0,0,.08);padding:1.5rem}
.cart-card h2{font-size:1.25rem;font-weight:700;margin-bottom:1rem}

/* Cart rows */
.cart-row{display:flex;justify-content:space-between;align-items:center;padding:.75rem 0;border-bottom:1px solid #e5e7eb}
.cart-row:last-child{border-bottom:none}
.cart-item-title{font-weight:600}
.cart-item-meta{color:#64748b;font-size:.875rem}

/* Pricing */
.price{font-weight:700}
.price-muted{color:#64748b}
.total-row{font-size:1.25rem;font-weight:800}

/* Buttons */
.btn-primary{background:#2563eb;color:#fff;border:none;border-radius:10px;padding:.75rem 1.25rem;font-weight:700;cursor:pointer}
.btn-primary:hover{background:#1d4ed8}
.btn-outline{background:#fff;border:2px solid #2563eb;color:#2563eb;border-radius:10px;padding:.6rem 1.1rem;font-weight:700;cursor:pointer}

/* Forms */
.input{width:100%;padding:.65rem .75rem;border:1px solid #cbd5f5;border-radius:8px}
.label{font-size:.875rem;font-weight:600;margin-bottom:.25rem;display:block}

/* Coupon */
.coupon-row{display:flex;gap:.5rem;margin-top:.5rem}

/* Alerts */
.alert{padding:.75rem 1rem;border-radius:8px;margin-bottom:1rem}
.alert-success{background:#ecfdf5;color:#065f46}
.alert-error{background:#fef2f2;color:#991b1b}

body{
  font-family: Inter, system-ui, sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

.cart5-shell{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.cart5-title{
  font-size:36px;
  font-weight:800;
  margin-bottom:30px;
}

.cart5-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

.cart5-panel{
  background:#fff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.cart5-panel h2{
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
}

.cart5-item{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:16px 0;
  border-bottom:1px solid #e5e7eb;
}

.cart5-item:last-child{border-bottom:none}

.cart5-item-title{
  font-weight:700;
}

.cart5-item-meta{
  font-size:13px;
  color:#64748b;
}

.cart5-item-price{
  font-weight:800;
}

.cart5-remove{
  font-size:12px;
  color:#ef4444;
  text-decoration:none;
}

.cart5-summary-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.cart5-summary-row.total{
  font-size:20px;
  font-weight:800;
}

.cart5-coupon input{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #cbd5e1;
}

.cart5-coupon button{
  margin-top:8px;
}

.cart5-checkout{
  width:100%;
  margin-top:20px;
  padding:14px;
  background:#2563eb;
  color:#fff;
  font-weight:800;
  border-radius:12px;
  border:none;
  cursor:pointer;
}
