/* Cart Page Styles */
.cart-wrap { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.cart-header { margin-bottom: 30px; }
.cart-header h1 { font-family: 'Bebas Neue', 'Heebo', sans-serif; font-size: 42px; letter-spacing: -1px; margin: 0; }

.cart-container { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }

/* Progress Bar */
.cart-shipping-notice { background: var(--cream); padding: 20px; border-bottom: 2px solid var(--black); margin-bottom: 30px; border-radius: 8px; }
.cart-shipping-notice p { margin: 0 0 10px 0; font-size: 14px; font-weight: 700; text-align: center; }
.cart-progress-outer { height: 8px; background: rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden; }
.cart-progress-inner { height: 100%; background: var(--pink); border-radius: 4px; transition: width 0.3s ease; }

/* Table-less cart items for app feel */
.cart-items { background: white; border: 1px solid var(--light-gray); border-radius: 12px; overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 20px; padding: 20px; border-bottom: 1px solid var(--light-gray); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--cream); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 { font-size: 16px; font-weight: 800; margin: 0 0 5px 0; }
.cart-item-info .meta { font-size: 12px; color: var(--gray); display: flex; gap: 10px; }
.cart-item-price { font-weight: 800; font-size: 18px; margin-top: 10px; }

.cart-item-qty { display: flex; align-items: center; gap: 15px; }
.cart-item-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 18px; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--red); }

/* Sidebar / Totals */
.cart-sidebar { position: sticky; top: 120px; align-self: start; }
.cart-totals { background: var(--cream); padding: 30px; border: 2px solid var(--black); border-radius: 12px; }
.cart-totals h3 { font-family: 'Bebas Neue', 'Heebo', sans-serif; font-size: 24px; margin: 0 0 20px 0; letter-spacing: 1px; }
.total-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.total-row.grand-total { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--light-gray); font-size: 18px; font-weight: 900; }
.total-row.savings { color: var(--green); font-weight: 700; }

.checkout-btn { width: 100%; padding: 18px; background: var(--black); color: white; border: none; font-family: inherit; font-size: 16px; font-weight: 900; letter-spacing: 1px; cursor: pointer; transition: all 0.2s; border-radius: 8px; margin-top: 20px; display: block; text-align: center; text-decoration: none; }
.checkout-btn:hover { background: var(--pink); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 27, 107, 0.4); }

.coupon-section { margin-top: 24px; }
.coupon-toggle { font-size: 13px; font-weight: 700; color: var(--gray); cursor: pointer; text-decoration: underline; }
.coupon-form { display: flex; gap: 10px; margin-top: 10px; }
.coupon-form input { flex: 1; padding: 12px; border: 1.5px solid var(--light-gray); border-radius: 4px; font-family: inherit; font-size: 14px; }
.coupon-form button { padding: 12px 20px; background: var(--black); color: white; border: none; font-weight: 800; cursor: pointer; border-radius: 4px; }

/* Responsive */
@media (max-width: 968px) {
  .cart-container { grid-template-columns: 1fr; }
  .cart-sidebar { position: static; }
  .cart-item { grid-template-columns: 80px 1fr; gap: 15px; }
  .cart-item-qty { grid-column: 1 / -1; justify-content: space-between; padding-top: 10px; border-top: 1px dashed var(--light-gray); }
}

/* Upsell in Cart */
.cart-upsells { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--light-gray); }
.cart-upsells h2 { font-family: 'Bebas Neue', 'Heebo', sans-serif; font-size: 28px; margin-bottom: 20px; }
