.cart-layout{display:grid; grid-template-columns:1.6fr 1fr; gap:48px; align-items:start;}

.cart-items{display:flex; flex-direction:column; gap:20px;}
.cart-item{
  background:var(--white); border-radius:32px; padding:22px; display:grid;
  grid-template-columns:110px 1fr auto; gap:22px; align-items:center;
  box-shadow:0 8px 24px rgba(59,36,24,.05); transition:box-shadow .3s ease;
}
.cart-item:hover{box-shadow:0 16px 34px rgba(59,36,24,.09);}
.ci-img{
  width:110px; height:110px; border-radius:55% 45% 48% 52%/50% 55% 45% 50%; overflow:hidden;
  background:linear-gradient(145deg,#d8c299,#b08c56);
}
.ci-img img{width:100%; height:100%; object-fit:cover;}
.ci-info h3{font-size:18px; margin-bottom:4px;}
.ci-info .weight{font-size:13px; color:var(--brown-muted); margin-bottom:10px;}
.ci-right{display:flex; flex-direction:column; align-items:flex-end; gap:12px;}
.ci-price{font-family:var(--serif); font-size:20px; font-weight:600;}
.stepper-form{display:flex; flex-direction:column; align-items:flex-end;}
.remove-btn{font-size:12.5px; color:var(--danger); font-weight:600; display:flex; align-items:center; gap:5px;}
.remove-btn svg{width:13px; height:13px; stroke:var(--danger); stroke-width:2;}
.remove-btn:hover{text-decoration:underline;}

.ship-progress{background:var(--cream); border-radius:24px; padding:20px 24px; margin-top:8px; display:flex; align-items:center; gap:16px;}
.ship-progress svg{width:22px; height:22px; stroke:var(--green); fill:none; stroke-width:1.6; flex-shrink:0;}
.ship-progress .txt{font-size:13.5px; color:var(--brown-muted);}
.ship-progress .txt b{color:var(--green);}
.ship-track{background:var(--line); border-radius:100px; height:6px; margin-top:8px; overflow:hidden;}
.ship-fill{height:100%; background:var(--green); border-radius:100px; transition:width .4s ease;}

.summary-card{
  background:var(--white); border-radius:36px; padding:36px; position:sticky; top:100px;
  box-shadow:0 20px 44px rgba(59,36,24,.08);
}
.summary-card h3{font-size:22px; margin-bottom:24px;}
.coupon-row{display:flex; gap:8px; margin-bottom:24px;}
.coupon-row input{flex:1; padding:13px 18px; border-radius:100px; border:1px solid var(--line); background:var(--bg); font-size:13.5px; outline:none;}
.coupon-row input:focus{border-color:var(--green);}
.coupon-row button{padding:13px 22px; border-radius:100px; background:var(--cream); border:1px solid var(--line); font-size:13px; font-weight:600; color:var(--brown);}
.coupon-row button:hover{background:var(--beige);}
.applied-coupon{display:flex; align-items:center; justify-content:space-between; background:var(--cream); border-radius:100px; padding:10px 18px; margin-bottom:24px; font-size:13px; font-weight:600; color:var(--green);}
.applied-coupon button{color:var(--brown-muted); font-size:16px;}
.sum-row{display:flex; justify-content:space-between; font-size:14.5px; color:var(--brown-muted); margin-bottom:14px;}
.sum-row.total{color:var(--brown); font-weight:700; font-size:19px; font-family:var(--serif); border-top:1px solid var(--line); padding-top:18px; margin-top:6px;}
.sum-row .free{color:var(--green); font-weight:600;}
.secure-note{display:flex; align-items:center; justify-content:center; gap:8px; font-size:12px; color:var(--brown-muted); margin-top:18px;}
.secure-note svg{width:14px; height:14px; stroke:var(--green); fill:none; stroke-width:1.7;}

.crosssell{margin-top:96px;}
.crosssell h2{font-size:30px; margin-bottom:28px;}
.cs-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.cs-card{background:var(--white); border-radius:28px; padding:16px; text-align:center; transition:transform .3s cubic-bezier(.34,1.4,.64,1);}
.cs-card:hover{transform:translateY(-6px);}
.cs-img{aspect-ratio:1/1; border-radius:58% 42% 45% 55%/50% 55% 45% 50%; background:linear-gradient(145deg,#d8c299,#b08c56); margin-bottom:14px; overflow:hidden;}
.cs-card h4{font-size:14.5px; font-family:var(--sans); font-weight:600; margin-bottom:4px;}
.cs-card .price{font-size:13px; color:var(--brown-muted);}

@media (max-width:1000px){
  .cart-layout{grid-template-columns:1fr;}
  .summary-card{position:static;}
  .cs-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:600px){
  .cart-item{grid-template-columns:1fr; text-align:center;}
  .ci-img{margin:0 auto;}
  .ci-right{align-items:center;}
  .stepper-form{align-items:center;}
  .cs-grid{grid-template-columns:1fr;}
}
