/* WooCommerce-like Cart page */

.vgc-box{max-width:1120px;margin:18px auto;padding:14px}
.vgc-muted{color:#4b5563;font-size:16px;line-height:1.7}

.vgc-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:14px}
.vgc-actions{display:flex;gap:10px;flex-wrap:wrap}

/* Status banner from return.php */
.vgc-banner{
  margin:0 0 12px 0;
  padding:10px 12px;
  border-radius:10px;
  font-size:16px;
  line-height:1.65;
  display:flex;
  align-items:center;
  gap:8px;
}
.vgc-banner.ok{background:rgba(16,185,129,.12);color:#065f46;border:1px solid rgba(16,185,129,.25);}
.vgc-banner.fail{background:rgba(248,113,113,.12);color:#991b1b;border:1px solid rgba(248,113,113,.25);}
.vgc-banner.pending{background:rgba(251,191,36,.14);color:#92400e;border:1px solid rgba(251,191,36,.28);}

.vgc-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}
@media(max-width:980px){.vgc-grid{grid-template-columns:1fr}}

.vgc-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:14px;
}

.vgc-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;
  border:1px solid #ddd;background:#fff;
  font-weight:800;cursor:pointer;text-decoration:none;color:#111;
  font-size:16px;
  min-height:48px;
}
.vgc-btn-primary{background:#c65d00;border-color:#c65d00;color:#fff}
.vgc-btn-ghost{background:#fff}

.vgc-item{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid #f0f0f0}
.vgc-item:last-child{border-bottom:0}

.vgc-thumb{width:78px;height:78px;object-fit:cover;border-radius:12px;border:1px solid #eee}
.vgc-title{font-weight:900}
.vgc-price{font-weight:900;margin-top:6px;font-size:18px}

.vgc-meta{flex:1}
.vgc-line{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:8px}

.vgc-qtyrow{display:flex;align-items:center;gap:8px}
.vgc-qtybtn{
  padding:8px 12px;border:1px solid #ddd;border-radius:10px;background:#fff;cursor:pointer;font-weight:900;font-size:16px
}
.vgc-qty{min-width:28px;text-align:center;font-weight:900;font-size:17px}

.vgc-remove{
  margin-left:auto;padding:8px 12px;border:1px solid #f1c0c0;border-radius:10px;background:#fff;cursor:pointer;color:#b00020;font-weight:900;font-size:15px
}

.vgc-summary-box .row{display:flex;justify-content:space-between;gap:10px;margin:8px 0}
.vgc-summary-box .total{font-size:22px;font-weight:1000}
.vgc-bundle-row span{color:#14532d;font-weight:700}
.vgc-bundle-row b{color:#166534}

.vgc-bundle-badge{
  margin:0 0 10px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #bbf7d0;
  background:#f0fdf4;
  color:#14532d;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.vgc-bundle-badge strong{
  font-size:14px;
  line-height:1.3;
}
.vgc-bundle-badge span{
  font-size:13px;
  line-height:1.4;
}
.vgc-bundle-badge small{
  font-size:12px;
  font-weight:700;
  color:#166534;
}

.vgc-label{display:block;margin:8px 0;font-weight:900;font-size:16px}
.vgc-input{width:100%;padding:12px 13px;border:1px solid #ddd;border-radius:10px;font-size:16px;min-height:48px}
.vgc-coupon-row{display:flex;gap:10px}
.vgc-coupon-row .vgc-input{flex:1}
