/* =====================================================
   CART PAGE — AVISHKAR PREMIUM THEME
===================================================== */

:root{
  --blue:#017ff7;
  --yellow:#FFBE3B;
  --text-dark:#022a57;
  --muted:#555;
  --bg:#f4f9ff;
  --radius:18px;
}

/* ================= PAGE ================= */
.cart-page{
  background:linear-gradient(180deg,#f6fbff,#ffffff);
  min-height:100vh;
  padding:70px 15px;
}

.cart-container{
  max-width:1150px;
  margin:auto;
}

/* ================= TITLE ================= */
.section-title{
  text-align:center;
  font-size:36px;
  font-weight:900;
  color:var(--text-dark);
  margin-bottom:45px;
  position:relative;
}

.section-title::after{
  content:'';
  width:90px;
  height:5px;
  background:var(--yellow);
  display:block;
  margin:12px auto 0;
  border-radius:10px;
}

/* ================= EMPTY CART ================= */
.empty-cart{
  background:#fff;
  border-radius:var(--radius);
  padding:60px 25px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.1);
}

.empty-cart img{
  max-width:220px;
  margin-bottom:25px;
}

.empty-cart p{
  font-size:19px;
  color:var(--muted);
  margin-bottom:30px;
}

/* ================= CART CARD ================= */
.cart-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:0 20px 45px rgba(1,127,247,.12);
  padding:25px;
}

/* ================= PRODUCT ROW ================= */
.cart-row{
  display:grid;
  grid-template-columns:1.2fr .7fr .6fr .3fr;
  align-items:center;
  gap:15px;
  padding:18px 15px;
  border-radius:14px;
  margin-bottom:15px;
  background:#f9fbff;
  transition:.25s;
}

.cart-row:hover{
  background:#eef6ff;
  transform:scale(1.01);
}

/* ================= PRODUCT ================= */
.product-info{
  display:flex;
  align-items:center;
  gap:16px;
}

.product-image{
  width:78px;
  height:78px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid #e5e5e5;
  background:#fff;
}

.product-info span{
  font-weight:700;
  color:#333;
}

/* ================= QTY ================= */
.qty-control{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
}

.qty-btn{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#eaf3ff;
  color:var(--blue);
  font-size:18px;
  font-weight:900;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  transition:.2s;
}

.qty-btn:hover{
  background:var(--blue);
  color:#fff;
}

.qty-num{
  font-weight:800;
  min-width:26px;
  text-align:center;
}

/* ================= PRICE ================= */
.price{
  font-size:18px;
  font-weight:900;
  color:var(--text-dark);
}

/* ================= REMOVE ================= */
.btn-remove{
  font-size:14px;
  font-weight:700;
  color:#ef4444;
  text-decoration:none;
}

.btn-remove:hover{
  text-decoration:underline;
}

/* ================= TOTAL ================= */
.cart-total{
  margin-top:30px;
  padding:30px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,#f1f7ff,#ffffff);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.cart-total h3{
  font-size:26px;
  font-weight:900;
  color:var(--text-dark);
}

/* ================= BUTTONS ================= */
.cart-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 26px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  transition:.25s;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.btn-yellow{
  background:linear-gradient(135deg,#ffcc4d,#ffb300);
  color:#000;
}

.btn-yellow:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(255,190,59,.5);
}

.btn-outline{
  border:2px solid var(--blue);
  color:var(--blue);
  background:#fff;
}

.btn-outline:hover{
  background:var(--blue);
  color:#fff;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .section-title{
    font-size:28px;
  }

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

  .qty-control{
    justify-content:flex-start;
  }

  .cart-total{
    flex-direction:column;
    align-items:flex-start;
  }
}.cart-price {
  text-align: right;
  min-width: 120px;
}

.cart-final {
  font-size: 17px;
  font-weight: 700;
  color: #000;
}

.cart-original {
  font-size: 13px;
  color: #666;
}

.cart-original del {
  margin-right: 6px;
}

.cart-off {
  color: #d60000;
  font-weight: 600;
}

