.cart-page {
  background: #f3f4f6;
  padding: 24px 0 60px;
}

.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .cart-container { grid-template-columns: 1fr; }
}

.cart-main {
  background: #fff;
  border-radius: 6px;
  padding: 24px 28px;
}

.cart-title {
  font-size: 1.7rem;
  font-weight: 200;
  margin: 0 0 18px;
}

.cart-list-head {
  display: flex;
  justify-content: flex-end;
  font-size: .85rem;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 6px;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 560px) {
  .cart-item { grid-template-columns: 90px 1fr; }
  .cart-item-price { grid-column: 2; text-align: left; }
}

.cart-item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fafafa;
  border-radius: 4px;
}

.cart-item-title a {
  font-size: 1rem;
  color: var(--black, #111);
  text-decoration: none;
  font-weight: 500;
}
.cart-item-title a:hover { color: var(--blue, #0a4ed6); }

.cart-item-brand,
.cart-item-cat {
  font-size: .85rem;
  color: #374151;
  margin: 2px 0;
}

.cart-item-stock {
  font-size: .85rem;
  color: #15803d;
  font-weight: 600;
  margin: 4px 0;
}

.cart-item-gift {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #374151;
  margin: 8px 0;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  flex-wrap: wrap;
  margin-top: 8px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  overflow: hidden;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.qty-btn:hover { background: #e5e7eb; }
.qty-value {
  width: 32px;
  text-align: center;
  font-size: .9rem;
}

.action-sep { color: #d1d5db; }

.cart-action-link {
  color: #007185;
  text-decoration: none;
}
.cart-action-link:hover { color: #c7511f; text-decoration: underline; }

.cart-item-price {
  font-weight: 700;
  font-size: 1.05rem;
  text-align: right;
  white-space: nowrap;
}

.cart-subtotal-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 16px;
  font-size: 1.05rem;
}
.cart-subtotal-row strong { margin-left: 4px; }

.cart-sidebar-box {
  background: #fff;
  border-radius: 6px;
  padding: 20px 22px;
  position: sticky;
  top: 20px;
}

.cart-sidebar-subtotal-label {
  font-size: .9rem;
  color: #374151;
  margin: 0 0 2px;
}
.cart-sidebar-subtotal-value {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 14px;
}

.cart-gift-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: #374151;
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  background: var(--blue, #0a4ed6);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 0;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s;
}
.btn-checkout:hover { background: var(--col-blue-dark, #083a9e); }