.lk-cart {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 18px 100px;
}
.lk-cart__head h1 {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
}
.lk-cart__head p { margin: 0 0 22px; color: var(--lk-muted, #8a8a8a); }
.lk-cart__empty {
  padding: 40px 20px;
  text-align: center;
  border: 1px dashed var(--lk-line, #333);
  border-radius: 16px;
}
.lk-cart__shop {
  margin-bottom: 22px;
  border: 1px solid var(--lk-line, #333);
  border-radius: 16px;
  overflow: hidden;
  background: var(--lk-card, #0d0f10);
}
.lk-cart__shop-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--lk-line, #333);
}
.lk-cart__shop-head h2 { margin: 0; font-size: 1rem; font-weight: 800; }
.lk-cart__list { list-style: none; margin: 0; padding: 0; }
.lk-cart__row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--lk-line, #333);
  align-items: start;
}
.lk-cart__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #111 center/cover no-repeat;
}
.lk-cart__meta a {
  display: block;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 4px;
}
.lk-cart__meta span { font-size: 0.85rem; color: var(--lk-muted, #8a8a8a); }
.lk-cart__note { display: block; color: #ff7900; font-size: 0.8rem; font-style: normal; margin-top: 4px; }
.lk-cart__qty {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}
.lk-cart__qty button,
.lk-cart__qty input {
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--lk-line, #333);
  background: transparent;
  color: inherit;
}
.lk-cart__qty input {
  width: 52px;
  text-align: center;
}
.lk-cart__qty button { width: 34px; cursor: pointer; }
.lk-cart__rm {
  border: 0 !important;
  color: #ff7900 !important;
  background: transparent !important;
  width: auto !important;
  padding: 0 8px;
  font-weight: 700;
  cursor: pointer;
}
.lk-cart__line { font-weight: 800; white-space: nowrap; }
.lk-cart__checkout {
  padding: 14px 16px 18px;
  display: grid;
  gap: 10px;
}
.lk-cart__del {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}
.lk-cart__del select {
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--lk-line, #333);
  background: var(--lk-panel, #0d0f10);
  color: inherit;
  padding: 0 10px;
}
.lk-cart__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 0;
  background: #ff7900;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.lk-cart__cta:hover { background: #ff8c00; }
.lk-cart__hint { margin: 0; font-size: 0.8rem; color: var(--lk-muted, #8a8a8a); }
.lk-cart__err { margin: 0; color: #ef4444; font-weight: 700; font-size: 0.9rem; }
@media (max-width: 600px) {
  .lk-cart__row { grid-template-columns: 64px 1fr; }
  .lk-cart__line { grid-column: 2; }
}
