/* Cart — compact storefront checkout style */

.cart-page {
  --page-max: 1080px;
  --panel-border: #eadcc4;
  --panel-bg: rgba(255, 255, 255, 0.88);
  --soft-bg: #fff8ec;
  --ink: #2d241c;
  --muted: #6f6257;
  --gold: #c87500;
  --gold-dark: #884600;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 18px 18px 34px;
}

.cart-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #8b7a68;
  font-size: 0.82rem;
  margin: 0 0 12px;
}

.cart-breadcrumb a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.cart-breadcrumb a:hover { text-decoration: underline; }

.cart-title-row {
  align-items: center;
  border-bottom: 1px solid #eadcc4;
  display: flex;
  gap: 11px;
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.cart-title-icon {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.cart-title-icon svg { height: 24px; width: 24px; }

.cart-title-row h1 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1;
  margin: 0;
}

.cart-layout {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 286px;
}

.cart-items-panel {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.cart-item-card,
.cart-order-card,
.cart-empty-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(74, 50, 23, 0.055);
}

.cart-item-card {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 104px;
  padding: 12px 14px;
}

.cart-item-media {
  border-radius: 12px;
  overflow: hidden;
  width: 86px;
}

.cart-item-img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.cart-item-main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.cart-item-head {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.cart-item-head h2 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.02rem;
  line-height: 1.16;
  margin: 0;
}

.cart-item-head h2 span { color: var(--muted); font-size: 0.9rem; }
.cart-item-head p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
  margin: 4px 0 0;
}

.cart-remove-link {
  align-items: center;
  color: #9a7b55;
  display: inline-flex;
  flex: 0 0 auto;
  height: 28px;
  justify-content: center;
  text-decoration: none;
  width: 28px;
}

.cart-remove-link:hover { color: #9a3412; }
.cart-remove-link svg { height: 18px; width: 18px; }

.cart-item-foot {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.qty-control {
  align-items: center;
  background: #fff;
  border: 1px solid #e8d2ad;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.88rem;
  gap: 9px;
  min-height: 34px;
  padding: 6px 12px;
}

.qty-label { color: var(--muted); }
.item-qty { font-weight: 900; min-width: 14px; text-align: center; }

.qty-btn {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gold-dark);
  cursor: pointer;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  padding: 0;
  width: 22px;
}

.qty-btn svg { height: 15px; width: 15px; }

.cart-item-price-block {
  align-items: baseline;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  text-align: right;
}

.cart-item-unit-price { color: var(--muted); font-size: 0.8rem; }
.item-line-total { color: var(--gold-dark); font-size: 1.02rem; }

.cart-order-card {
  padding: 18px;
  position: sticky;
  top: 86px;
}

.order-card-header {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.order-card-header span {
  align-items: center;
  background: #fff8ec;
  border: 1px solid #eadcc4;
  border-radius: 12px;
  color: var(--gold);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.order-card-header svg { height: 19px; width: 19px; }

.order-card-header h2 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.28rem;
  line-height: 1.08;
  margin: 0;
}

.cart-total-list { display: grid; gap: 9px; }
.cart-summary-row {
  align-items: baseline;
  color: var(--ink);
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
}
.cart-summary-row strong { font-weight: 900; }
.cart-grand-total {
  border-top: 1px dashed #e2cda9;
  font-size: 1.05rem;
  font-weight: 900;
  margin-top: 2px;
  padding-top: 10px;
}

.cart-gift-card-notice,
.cart-checkout-notice {
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.38;
  margin: 12px 0 0;
  padding: 10px 12px;
}

.cart-gift-card-notice { background: #fff8ec; border: 1px solid #eadcc4; color: #6b5848; }
.cart-checkout-notice { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

.cart-primary-btn,
.cart-secondary-btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.cart-primary-btn {
  background: var(--gold);
  color: #fff;
  font-size: 0.92rem;
  height: 42px;
  margin-top: 14px;
  width: 100%;
}

.cart-primary-btn:hover { background: var(--gold-dark); }

.cart-secondary-btn {
  background: #fff8ec;
  border: 1px solid #eadcc4;
  color: var(--gold-dark);
  font-size: 0.86rem;
  gap: 7px;
  height: 38px;
  justify-self: start;
  margin-top: 2px;
  padding: 0 18px;
}

.cart-secondary-btn:hover { background: #fff2d9; }
.cart-secondary-btn svg { height: 15px; width: 15px; }

.cart-empty-card {
  margin: 20px auto 0;
  max-width: 520px;
  padding: 24px;
  text-align: center;
}

.cart-empty-icon {
  align-items: center;
  background: #fff8ec;
  border: 1px solid #eadcc4;
  border-radius: 16px;
  color: var(--gold);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 12px;
  width: 46px;
}

.cart-empty-icon svg { height: 24px; width: 24px; }
.cart-empty-card h2 { color: var(--ink); font-size: 1.25rem; margin: 0; }
.cart-empty-card p { color: var(--muted); margin: 8px 0 2px; }
.cart-empty-card .cart-primary-btn { margin-left: auto; margin-right: auto; max-width: 210px; }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-order-card { position: static; }
}

@media (max-width: 640px) {
  .cart-page { padding: 14px 12px 28px; }
  .cart-item-card { grid-template-columns: 72px minmax(0, 1fr); padding: 11px; }
  .cart-item-media { width: 72px; }
  .cart-item-foot { align-items: flex-start; flex-direction: column; gap: 9px; }
  .cart-item-price-block { justify-content: flex-start; text-align: left; }
  .cart-title-row h1 { font-size: 1.55rem; }
}
