/* ========== cart.html 固有スタイル ========== */

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

/* --- 左：商品行 --- */
.cart-count-label { font-size: 14px; font-weight: 700; padding-bottom: 14px; border-bottom: 2px solid #1b1b1b; }
.cart-count-label b { color: var(--accent-dark); }

.cart-item { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid #ededea; }
.cart-item-thumb { width: 100px; height: 100px; flex: none; border-radius: 10px; overflow: hidden; background: #f3f2ef; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.cart-item-top { display: flex; justify-content: space-between; gap: 14px; }
.cart-item-name { font-size: 14.5px; font-weight: 700; line-height: 1.55; }
.cart-item-name:hover { color: var(--accent-dark); }
.cart-item-unit { font-size: 12.5px; color: #6c6c66; margin-top: 7px; }
.cart-remove { flex: none; background: none; border: none; cursor: pointer; font-size: 12.5px; color: #9a9a92; text-decoration: underline; padding: 0; height: fit-content; }
.cart-remove:hover { color: var(--accent-dark); }
.cart-item-ctrl { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cart-item-subtotal { font-size: 17px; font-weight: 700; }

.cart-continue { display: inline-block; margin-top: 28px; font-size: 13.5px; font-weight: 500; color: #5c5c56; }
.cart-continue:hover { color: var(--accent-dark); }

/* --- 右：注文サマリー --- */
.order-summary { background: #f6f6f3; border: 1px solid #ededea; border-radius: 12px; padding: 26px 24px; position: sticky; top: 94px; }
.order-summary-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.summary-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: #444; padding: 10px 0; }
.summary-point { color: var(--accent-dark); font-size: 12.5px; }
.summary-total { border-top: 1px solid #e0e0d8; margin-top: 8px; padding-top: 18px; font-size: 19px; font-weight: 900; color: #1b1b1b; }
.summary-cta { margin-top: 20px; font-size: 15px; padding: 18px 28px; }
.summary-note { font-size: 11.5px; color: #9a9a92; margin-top: 14px; line-height: 1.7; }

/* --- 空カート見本 --- */
.cart-empty { text-align: center; padding: 80px 20px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cart-empty-text { font-size: 15px; color: #6c6c66; }

/* --- レスポンシブ --- */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; gap: 32px; }
  .order-summary { position: static; }
}
@media (max-width: 480px) {
  .cart-item-thumb { width: 76px; height: 76px; }
}
