/* ============================================================
   SONO SEASON — Redesign Concept
   Design system: Hotel Editorial
   ============================================================ */

:root {
  --bg: #faf8f4;
  --bg-soft: #f1ede5;
  --ink: #1c1a16;
  --ink-soft: #4a463f;
  --muted: #8a8378;
  --line: #e5dfd3;
  --accent: #a5622d;
  --accent-deep: #7e4a20;
  --copper: #b08d57;
  --dark: #171512;
  --dark-soft: #24211c;
  --white: #ffffff;
  --serif: "Noto Serif KR", "Apple SD Gothic Neo", serif;
  --sans: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo", sans-serif;
  --shadow-sm: 0 2px 10px rgba(28, 26, 22, 0.06);
  --shadow-md: 0 10px 34px rgba(28, 26, 22, 0.1);
  --shadow-lg: 0 24px 60px rgba(28, 26, 22, 0.16);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

.wrap { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.wrap-wide { width: min(1440px, calc(100% - 40px)); margin-inline: auto; }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.h-display {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.22; letter-spacing: -0.02em;
}
.h-section {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px); line-height: 1.3; letter-spacing: -0.015em;
}
.lead { font-size: 17px; color: var(--ink-soft); max-width: 56ch; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--dark); color: rgba(255,255,255,0.85);
  font-size: 12.5px; letter-spacing: 0.02em;
  text-align: center; padding: 9px 16px;
}
.topbar b { color: var(--copper); font-weight: 600; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 28px;
}
.logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo strong {
  font-family: var(--serif); font-size: 23px; font-weight: 700; letter-spacing: 0.14em;
}
.logo span { font-size: 9.5px; letter-spacing: 0.34em; color: var(--muted); font-weight: 600; }

.gnb { display: flex; gap: 4px; }
.gnb > li { list-style: none; position: relative; }
.gnb > li > a {
  display: block; padding: 26px 16px; font-size: 15px; font-weight: 600;
  color: var(--ink-soft); transition: color 0.2s; position: relative;
}
.gnb > li > a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 18px;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s var(--ease);
}
.gnb > li > a:hover, .gnb > li > a.active { color: var(--ink); }
.gnb > li > a:hover::after, .gnb > li > a.active::after { transform: scaleX(1); }

.dropdown {
  position: absolute; top: calc(100% - 8px); left: 50%; translate: -50% 0;
  min-width: 190px; background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s var(--ease);
}
.gnb > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 9px;
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--accent-deep); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--ink); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 3px; right: 1px; min-width: 17px; height: 17px;
  background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 700;
  border-radius: 9px; display: grid; place-items: center; padding: 0 4px;
}
.hamburger { display: none; }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  padding: 28px 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-nav .mn-group { border-bottom: 1px solid var(--line); padding: 18px 0; }
.mobile-nav .mn-group > span { font-size: 12px; letter-spacing: 0.2em; color: var(--muted); font-weight: 700; }
.mobile-nav .mn-group a { display: block; padding: 9px 0; font-size: 18px; font-weight: 600; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 780px);
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(160deg, #efe9dd 0%, #e6ddcb 45%, #ded2ba 100%);
}
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.hero-art .orb {
  position: absolute; border-radius: 50%; filter: blur(2px);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift { from { translate: 0 0; } to { translate: 0 -26px; } }
.hero-art .bed-shape {
  position: absolute; right: -4%; bottom: 8%; width: 54%; max-width: 760px; opacity: 0.9;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; }
.hero .eyebrow { margin-bottom: 18px; }
.hero p.lead { margin: 22px 0 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 36px; margin-top: 64px; padding-top: 28px;
  border-top: 1px solid rgba(28,26,22,0.14); width: fit-content;
}
.hero-meta div strong { font-family: var(--serif); font-size: 26px; display: block; }
.hero-meta div span { font-size: 13px; color: var(--ink-soft); }
.hero-dots { position: absolute; left: 50%; bottom: 28px; translate: -50% 0; display: flex; gap: 10px; z-index: 3; }
.hero-dots button {
  width: 34px; height: 4px; border-radius: 2px; background: rgba(28,26,22,0.2);
  transition: background 0.3s;
}
.hero-dots button.on { background: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px; font-size: 15px; font-weight: 700;
  letter-spacing: 0.01em; transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid rgba(28,26,22,0.32); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-line { border: 1.5px solid var(--line); background: var(--white); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 46px; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head .more { font-size: 14px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; flex-shrink: 0; }
.section-head .more:hover { color: var(--accent-deep); }

/* value strip */
.value-strip { border-block: 1px solid var(--line); background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.value-item {
  padding: 34px 18px; text-align: center; border-left: 1px solid var(--line);
  transition: background 0.25s;
}
.value-item:first-child { border-left: 0; }
.value-item:hover { background: var(--bg-soft); }
.value-item .vi-num { font-family: var(--serif); font-size: 15px; color: var(--copper); font-weight: 700; letter-spacing: 0.12em; }
.value-item h4 { font-size: 15.5px; margin: 8px 0 4px; }
.value-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; }
.card-thumb {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-soft); aspect-ratio: 1; box-shadow: var(--shadow-sm);
}
.card-thumb svg { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.card:hover .card-thumb svg { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  padding: 6px 11px; border-radius: 999px; background: var(--ink); color: #fff;
}
.card-badge.NEW { background: var(--accent); }
.card-badge.PREMIUM { background: var(--copper); }
.card-cart {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--ink);
  opacity: 0; transform: translateY(8px); transition: all 0.3s var(--ease);
}
.card:hover .card-cart { opacity: 1; transform: translateY(0); }
.card-cart:hover { background: var(--ink); color: #fff; }
.card-cart svg { width: 19px; height: 19px; }
.card-body { padding: 16px 4px 0; }
.card-cat { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; font-weight: 600; }
.card-name { font-size: 15.5px; font-weight: 650; margin: 5px 0 8px; line-height: 1.45; }
.card:hover .card-name { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.card-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card-price .rate { color: var(--accent); font-weight: 800; font-size: 16px; }
.card-price .sale { font-weight: 800; font-size: 16px; }
.card-price .orig { color: var(--muted); font-size: 13px; text-decoration: line-through; }
.card-review { font-size: 12.5px; color: var(--muted); margin-top: 6px; display: flex; gap: 6px; align-items: center; }
.card-review .star { color: var(--copper); }

/* collection tabs */
.coll-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.coll-tabs button {
  padding: 11px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 650;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft);
  transition: all 0.2s;
}
.coll-tabs button:hover { border-color: var(--ink); color: var(--ink); }
.coll-tabs button.on { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- dark editorial band ---------- */
.band-dark { background: var(--dark); color: #efece6; overflow: hidden; }
.band-dark .eyebrow { color: var(--copper); }
.band-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.band-dark .h-section { color: #f7f4ee; }
.band-dark p { color: rgba(239,236,230,0.72); }
.band-art { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.band-list { margin-top: 30px; display: grid; gap: 0; }
.band-list li {
  list-style: none; display: flex; gap: 16px; padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 15px;
}
.band-list li:last-child { border-bottom: 0; }
.band-list .n { font-family: var(--serif); color: var(--copper); font-weight: 700; }

/* ---------- reviews marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: scroll 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.review-card {
  width: 340px; flex-shrink: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.review-card .stars { color: var(--copper); font-size: 14px; letter-spacing: 2px; }
.review-card p { font-size: 14.5px; margin: 13px 0 16px; color: var(--ink-soft); line-height: 1.6; }
.review-card .who { font-size: 12.5px; color: var(--muted); }
.review-card .who b { color: var(--ink); }

/* ---------- event cards ---------- */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); transition: all 0.3s var(--ease); display: block;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.event-card .ev-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); }
.event-card .ev-thumb svg { width: 100%; height: 100%; object-fit: cover; }
.event-card .ev-body { padding: 22px 24px 26px; }
.ev-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px; background: var(--accent); color: #fff; margin-bottom: 12px;
}
.ev-tag.done { background: var(--muted); }
.event-card h3 { font-size: 18px; margin-bottom: 6px; }
.event-card p { font-size: 14px; color: var(--ink-soft); }
.event-card .ev-period { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* ---------- newsletter ---------- */
.newsletter { background: var(--bg-soft); border-block: 1px solid var(--line); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 64px 0; flex-wrap: wrap; }
.newsletter form { display: flex; gap: 10px; flex: 1; max-width: 480px; min-width: 280px; }
.newsletter input {
  flex: 1; padding: 15px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 15px; outline: none; transition: border 0.2s;
}
.newsletter input:focus { border-color: var(--accent); }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: rgba(239,236,230,0.62); font-size: 13.5px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding: 68px 0 52px; }
.footer h5 { color: #f0ede6; font-size: 13px; letter-spacing: 0.14em; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: var(--copper); }
.footer .f-logo { font-family: var(--serif); font-size: 22px; letter-spacing: 0.14em; color: #f0ede6; font-weight: 700; }
.footer .f-cs { font-family: var(--serif); font-size: 30px; color: #f0ede6; margin: 14px 0 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09); padding: 26px 0;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px;
}
.footer-bottom a { margin-right: 18px; }
.footer-note { font-size: 11.5px; color: rgba(239,236,230,0.4); line-height: 1.7; margin-top: 14px; }

/* ---------- page hero (sub pages) ---------- */
.page-hero { padding: 74px 0 50px; text-align: center; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero p { color: var(--muted); margin-top: 14px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent-deep); }

/* ---------- shop toolbar ---------- */
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 18px 0; border-block: 1px solid var(--line); margin-bottom: 40px; flex-wrap: wrap;
}
.shop-count { font-size: 14px; color: var(--muted); }
.shop-count b { color: var(--ink); }
.select {
  padding: 10px 38px 10px 16px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" viewBox="0 0 24 24" fill="none" stroke="%238a8378" stroke-width="2.4"><path d="M6 9l6 6 6-6"/></svg>') no-repeat right 14px center;
  font-size: 14px; font-weight: 600; appearance: none; outline: none; cursor: pointer;
}
.empty-state { text-align: center; padding: 90px 0; color: var(--muted); }

/* ---------- product detail ---------- */
.pd-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; }
.pd-gallery { position: sticky; top: 100px; }
.pd-main-img { border-radius: 22px; overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-sm); }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumbs button {
  width: 84px; border-radius: 12px; overflow: hidden; border: 2px solid transparent;
  background: var(--bg-soft); transition: border 0.2s; padding: 0;
}
.pd-thumbs button.on { border-color: var(--ink); }
.pd-info .card-cat { font-size: 13px; }
.pd-title { font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); font-weight: 600; line-height: 1.35; margin: 8px 0 10px; }
.pd-sub { color: var(--muted); font-size: 15px; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin: 16px 0 22px; font-size: 14px; }
.pd-rating .star { color: var(--copper); letter-spacing: 1.5px; }
.pd-price-box { padding: 24px 0; border-block: 1px solid var(--line); margin-bottom: 26px; }
.pd-price-box .rate { color: var(--accent); font-weight: 800; font-size: 24px; margin-right: 10px; }
.pd-price-box .sale { font-size: 30px; font-weight: 800; }
.pd-price-box .orig { color: var(--muted); text-decoration: line-through; margin-left: 10px; font-size: 16px; }
.pd-opt { margin-bottom: 22px; }
.pd-opt > span { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 10px; color: var(--ink-soft); }
.opt-row { display: flex; gap: 9px; flex-wrap: wrap; }
.opt-chip {
  padding: 11px 19px; border-radius: 11px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 14px; font-weight: 600; transition: all 0.18s;
}
.opt-chip:hover { border-color: var(--ink); }
.opt-chip.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.opt-chip small { opacity: 0.65; font-size: 12px; margin-left: 5px; }
.qty-row { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 11px; width: fit-content; overflow: hidden; }
.qty-row button { width: 44px; height: 46px; font-size: 19px; color: var(--ink-soft); transition: background 0.15s; }
.qty-row button:hover { background: var(--bg-soft); }
.qty-row output { width: 52px; text-align: center; font-weight: 700; font-size: 16px; }
.pd-total { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; margin-top: 6px; border-top: 1px solid var(--line); }
.pd-total .t-label { font-size: 14px; color: var(--muted); }
.pd-total .t-value { font-family: var(--serif); font-size: 28px; font-weight: 700; }
.pd-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.pd-perks { margin-top: 26px; display: grid; gap: 10px; }
.pd-perks li { list-style: none; display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.pd-perks li::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* detail tabs */
.pd-tabs { display: flex; border-bottom: 1.5px solid var(--line); margin: 90px 0 0; position: sticky; top: 74px; background: var(--bg); z-index: 5; }
.pd-tabs button {
  padding: 18px 28px; font-size: 15px; font-weight: 700; color: var(--muted);
  border-bottom: 2.5px solid transparent; margin-bottom: -1.5px; transition: all 0.2s;
}
.pd-tabs button.on { color: var(--ink); border-bottom-color: var(--ink); }
.pd-panel { padding: 56px 0; display: none; }
.pd-panel.on { display: block; animation: fadein 0.4s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table th, .spec-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { width: 200px; color: var(--muted); font-weight: 600; background: var(--bg-soft); }
.pd-story { max-width: 760px; margin-inline: auto; text-align: center; }
.pd-story .h-section { margin: 18px 0; }
.pd-story figure { border-radius: 22px; overflow: hidden; margin: 44px 0; }
.pd-story p { color: var(--ink-soft); font-size: 16px; }

/* review list */
.review-list { display: grid; gap: 0; max-width: 860px; }
.review-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.review-item .stars { color: var(--copper); font-size: 13px; letter-spacing: 2px; }
.review-item p { margin: 10px 0 8px; font-size: 15px; }
.review-item .who { font-size: 13px; color: var(--muted); }

/* ---------- cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 48px; align-items: start; }
.cart-item {
  display: grid; grid-template-columns: 108px 1fr auto; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-item .ci-thumb { width: 108px; border-radius: 14px; overflow: hidden; background: var(--bg-soft); }
.cart-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.cart-item .ci-opt { font-size: 13px; color: var(--muted); }
.cart-item .ci-price { font-weight: 800; font-size: 16px; margin-top: 10px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.ci-remove { color: var(--muted); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.ci-remove:hover { color: var(--accent-deep); }
.cart-summary {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px; position: sticky; top: 100px;
}
.cart-summary h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 22px; }
.cs-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 8px 0; color: var(--ink-soft); }
.cs-row.total { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 18px; font-size: 16px; color: var(--ink); font-weight: 700; }
.cs-row.total .v { font-family: var(--serif); font-size: 24px; }
.free-ship-bar { height: 6px; background: var(--bg-soft); border-radius: 3px; margin: 16px 0 8px; overflow: hidden; }
.free-ship-bar i { display: block; height: 100%; background: var(--accent); border-radius: 3px; transition: width 0.5s var(--ease); }
.free-ship-note { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }

/* ---------- brand page ---------- */
.brand-hero {
  min-height: 66vh; display: grid; place-items: center; text-align: center;
  background: linear-gradient(170deg, #1d1a15, #2b2620); color: #f2efe8; padding: 90px 24px;
}
.brand-hero .eyebrow { color: var(--copper); }
.brand-hero .h-display { color: #f7f4ed; max-width: 18ch; margin: 20px auto; }
.brand-hero p { color: rgba(242,239,232,0.66); max-width: 52ch; margin-inline: auto; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px 32px; transition: all 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar .n { font-family: var(--serif); color: var(--copper); font-size: 15px; letter-spacing: 0.14em; font-weight: 700; }
.pillar h3 { font-size: 20px; margin: 14px 0 10px; }
.pillar p { font-size: 14.5px; color: var(--ink-soft); }
.timeline { max-width: 720px; margin-inline: auto; }
.timeline li {
  list-style: none; display: grid; grid-template-columns: 110px 1fr; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.timeline .yr { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--copper); }
.timeline h4 { font-size: 16px; margin-bottom: 4px; }
.timeline p { font-size: 14px; color: var(--muted); }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-band strong { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); display: block; color: var(--ink); }
.stat-band span { font-size: 14px; color: var(--muted); }

/* ---------- stores ---------- */
.store-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.store-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; transition: all 0.3s var(--ease);
}
.store-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.store-card .region { font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; color: var(--accent); }
.store-card h3 { font-size: 17.5px; margin: 10px 0 12px; }
.store-card p { font-size: 14px; color: var(--ink-soft); display: flex; gap: 9px; padding: 3px 0; }
.store-card p b { color: var(--muted); font-weight: 600; min-width: 34px; }

/* ---------- support ---------- */
.support-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; gap: 16px; align-items: center;
  padding: 22px 6px; font-size: 16px; font-weight: 650;
}
.faq-q .fq-cat { font-size: 11.5px; color: var(--accent); font-weight: 800; letter-spacing: 0.06em; flex-shrink: 0; width: 62px; }
.faq-q .chev { margin-left: auto; transition: transform 0.3s var(--ease); color: var(--muted); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 2px 6px 24px 84px; font-size: 14.5px; color: var(--ink-soft); }
.notice-list { max-width: 800px; margin-inline: auto; }
.notice-list li {
  list-style: none; display: flex; justify-content: space-between; gap: 20px;
  padding: 19px 6px; border-bottom: 1px solid var(--line); font-size: 15px;
}
.notice-list .dt { color: var(--muted); font-size: 13.5px; flex-shrink: 0; }
.cs-banner {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap; max-width: 800px; margin: 60px auto 0;
}
.cs-banner .f-cs { font-family: var(--serif); font-size: 34px; }
.cs-banner p { font-size: 13.5px; color: var(--muted); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 34px; translate: -50% 20px; z-index: 300;
  background: var(--ink); color: #fff; padding: 14px 26px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: all 0.35s var(--ease);
  display: flex; gap: 10px; align-items: center;
}
.toast.show { opacity: 1; translate: -50% 0; }
.toast a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .gnb { display: none; }
  .hamburger { display: grid; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .band-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-item:nth-child(4) { border-left: 0; }
  .value-item { border-top: 1px solid var(--line); }
  .value-item:nth-child(-n+3) { border-top: 0; }
  .store-grid, .event-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-item:nth-child(n) { border-top: 1px solid var(--line); border-left: 0; }
  .value-item:nth-child(-n+2) { border-top: 0; }
  .value-item:nth-child(even) { border-left: 1px solid var(--line); }
  .store-grid, .event-grid, .pillar-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; gap: 34px 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .hero-meta { gap: 22px; }
  .hero-art .bed-shape { display: none; }
  .pd-actions { grid-template-columns: 1fr; }
  .faq-a p { padding-left: 6px; }
  .pd-tabs { overflow-x: auto; }
  .pd-tabs button { padding: 16px 18px; white-space: nowrap; }
  .cart-item { grid-template-columns: 84px 1fr; }
  .ci-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .timeline li { grid-template-columns: 74px 1fr; gap: 16px; }
}
