* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", system-ui, sans-serif;
  background: #f4f5f7;
  color: #222;
}

/* 헤더 */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #ffffff;
  border-bottom: 1px solid #dde1e7;
}

.logo a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: #22303c;
}

.cart-page-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

/* 메인 레이아웃 */

.cart-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 24px 40px 40px;
}

/* 공통 섹션 타이틀 */
.section-title {
  font-size: 18px;
  margin-bottom: 16px;
  color: #111827;
}

/* 장바구니 아이템 리스트 */

.cart-items {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-name {
  font-size: 15px;
}

.cart-item-price {
  font-weight: 600;
  color: #374151;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.cart-item-qty input {
  width: 60px;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.cart-item-remove {
  align-self: flex-start;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 12px;
  cursor: pointer;
  color: #6b7280;
}

.cart-item-remove:hover {
  background: #e5e7eb;
}

/* 주문 요약 */

.cart-summary {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  height: fit-content;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #4b5563;
}

.summary-total {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
  font-weight: 700;
  color: #111827;
}

.btn-checkout {
  margin-top: 16px;
  width: 100%;
  padding: 10px 0;
  border-radius: 999px;
  border: none;
  background: #4f6fad;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-checkout:hover {
  background: #3e5a90;
}

.link-back {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
}

.link-back:hover {
  text-decoration: underline;
}
