@charset "UTF-8";
/* HAKURO 白露 — 日本茶ストア
   设计稿 token 原样承袭；原型的 402px 手机框换成真实媒体查询。 */

:root {
  --bg: #F7F5EF;
  --bg-sage: #DDE4DC;
  --bg-mist: #EDEFE7;
  --bg-season: #E5E9E1;
  --bg-paper: #F1EFE6;
  --bg-card: #F4F2EA;
  --bg-input: #FBFAF6;

  --ink: #3A3A34;
  --ink-heading: #234137;
  --ink-body: #4E4E46;
  --ink-soft: #5A5A52;
  --ink-quiet: #55554C;

  --brown: #806C58;
  --brown-light: #9A8B76;
  --gold: #B39A6A;
  --green: #234137;
  --green-hover: #2E493F;
  --green-deep: #1F332B;
  --success: #3E6B3E;

  --line: rgb(35 65 55 / .12);
  --line-soft: rgb(35 65 55 / .08);
  --line-strong: rgb(35 65 55 / .22);
  --chip-bg: rgba(35, 65, 55, .07);

  --serif: 'Noto Serif JP', 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', system-ui, sans-serif;

  --shell: 1360px;
  --gutter: clamp(24px, 5vw, 40px);
  --band: clamp(72px, 10vw, 140px);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
::selection { background: var(--green); color: var(--bg); }
:focus-visible { outline: 1.5px solid currentColor; outline-offset: .2em; border-radius: inherit; }

@keyframes hkUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes hkDrawer { from { transform: translateX(102%); } to { transform: none; } }
@keyframes hkMenu { from { transform: translateX(-102%); } to { transform: none; } }
@keyframes hkScrim { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ---------- 版式基元 ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.shell--read { max-width: 1080px; }
.shell--cart { max-width: 1240px; }
.band { padding-top: var(--band); padding-bottom: var(--band); }
.eyebrow {
  font-size: 11.5px; letter-spacing: .32em; color: var(--brown);
  text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink-heading); margin: 0; }
.h1 { font-size: clamp(30px, 4vw, 48px); line-height: 1.3; }
.h2 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.4; }
.h3 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.45; }
.lede { font-size: 14.5px; line-height: 2; color: var(--ink-body); margin: 0 0 18px; max-width: 460px; }
.crumb { font-size: 12px; color: var(--brown); letter-spacing: .03em; }
.crumb a { color: var(--brown); }
.icon { display: inline-block; width: 1em; height: 1em; flex: none; }
.icon svg { display: block; width: 100%; height: 100%; }

/* ---------- 组件：Button（Horizon） ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 14px; letter-spacing: .02em;
  padding: 0 26px; min-height: 52px; border-radius: 7px;
  cursor: pointer; transition: background-color .125s ease-in-out, color .125s ease-in-out, border-color .125s ease-in-out;
  white-space: nowrap; border: 1px solid transparent;
}
.btn--primary { background: var(--green); color: var(--bg); border-color: var(--green); }
.btn--primary:hover { background: var(--green-hover); border-color: var(--green-hover); color: var(--bg); }
.btn--secondary { background: transparent; color: var(--green); border-color: rgb(35 65 55 / .38); }
.btn--secondary:hover { background: rgb(35 65 55 / .06); border-color: var(--green); color: var(--green); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 13px; }
.btn--md { min-height: 48px; }
.btn--full { width: 100%; }
/* 深绿底上的次级按钮（礼赠区） */
.on-dark .btn--secondary { color: #F7F5EF; border-color: rgba(255, 255, 255, .34); }
.on-dark .btn--secondary:hover { background: rgba(255, 255, 255, .1); border-color: #F7F5EF; color: #F7F5EF; }

/* ---------- 组件：IconButton ---------- */
.iconbtn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: none; background: none; cursor: pointer;
  color: var(--ink); border-radius: 7px; transition: background-color .125s ease-in-out;
}
.iconbtn:hover { background: rgb(35 65 55 / .06); }
.iconbtn .icon { width: 20px; height: 20px; }
.iconbtn__badge {
  position: absolute; top: 5px; right: 4px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--green); color: var(--bg);
  font-size: 10px; line-height: 17px; text-align: center; font-weight: 500;
}
.iconbtn__badge:empty { display: none; }

/* ---------- 公告栏 ---------- */
.announce {
  background: var(--green); color: #EAE7DC; text-align: center;
  font-size: 12.5px; letter-spacing: .02em; padding: 9px 16px; line-height: 1.5;
}

/* ---------- 页眉 ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 245, 239, .86); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(35 65 55 / .1);
}
.header__inner {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px;
}
.header__nav { display: flex; align-items: center; gap: 22px; }
.header__nav a { font-size: 13.5px; color: var(--ink); letter-spacing: .02em; white-space: nowrap; }
.header__nav a:hover { color: var(--green); }
.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.header__locale { font-size: 11px; color: var(--brown); margin-right: 8px; letter-spacing: .04em; }
.header__burger { justify-self: start; display: none; }
.header__cart-m { justify-self: end; display: none; }

.wordmark { text-align: center; line-height: 1; display: block; }
.wordmark__jp { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--green); letter-spacing: .14em; }
.wordmark__en { font-size: 9.5px; letter-spacing: .42em; color: var(--brown); margin-top: 5px; padding-left: .42em; }

@media (max-width: 899px) {
  :root { --header-h: 60px; }
  .header__inner { padding: 0 12px; }
  .header__nav, .header__actions { display: none; }
  .header__burger, .header__cart-m { display: block; }
  .wordmark__jp { font-size: 23px; letter-spacing: .12em; }
  .wordmark__en { font-size: 8px; letter-spacing: .4em; margin-top: 3px; padding-left: .4em; }
}

/* ---------- 首屏 ---------- */
.hero { position: relative; background: var(--bg-sage); overflow: hidden; }
.hero__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(247, 245, 239, .9) 0%, rgba(247, 245, 239, .6) 34%, rgba(247, 245, 239, .08) 62%, transparent 100%);
}
.hero__body {
  position: relative; max-width: var(--shell); margin: 0 auto;
  padding: clamp(64px, 11vw, 150px) var(--gutter);
  min-height: clamp(520px, 74vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero__copy { max-width: 640px; animation: hkUp .9s ease both; }
.hero__eyebrow { font-size: 12px; letter-spacing: .34em; color: var(--brown); text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: clamp(36px, 4.6vw, 60px); line-height: 1.3; letter-spacing: .02em; }
.hero__sub { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.9; color: #4A4A42; margin: 26px 0 0; max-width: 440px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
@media (max-width: 599px) {
  .hero__veil { background: linear-gradient(180deg, rgba(247, 245, 239, .92) 0%, rgba(247, 245, 239, .74) 46%, rgba(247, 245, 239, .3) 100%); }
  .hero__body { min-height: 78vh; }
}

/* ---------- 区块头 ---------- */
.sechead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 52px);
}
.sechead__note { font-size: 14px; line-height: 1.9; color: var(--ink-soft); max-width: 360px; margin: 0; }
.sechead--center { display: block; text-align: center; margin-bottom: clamp(36px, 4vw, 58px); }

/* ---------- 饮茶时刻 ---------- */
.moments { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.moment { position: relative; display: block; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; background: var(--bg-sage); }
.moment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.32, .72, 0, 1); }
.moment:hover img { transform: scale(1.04); }
.moment__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 32, 26, .62), rgba(20, 32, 26, .05) 55%, transparent); }
.moment__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; color: var(--bg); }
.moment__en { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; opacity: .82; margin-bottom: 7px; }
.moment__jp { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: .03em; }
.moment__copy { font-size: 12px; line-height: 1.7; opacity: .86; margin-top: 6px; }
@media (max-width: 599px) { .moments { grid-template-columns: 1fr 1fr; } .moment__body { padding: 14px; } .moment__jp { font-size: 16px; } .moment__copy { display: none; } }

/* ---------- 今月の三つの一煎 ---------- */
.teas { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.4vw, 36px); }
.tea { transition: transform .4s cubic-bezier(.32, .72, 0, 1); }
.tea:hover { transform: translateY(-6px); }
.tea__shot { display: block; position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; background: var(--bg-sage); }
.tea__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.32, .72, 0, 1); }
.tea__tag {
  position: absolute; top: 14px; left: 14px; background: rgba(247, 245, 239, .92);
  color: var(--green); font-size: 11px; letter-spacing: .08em; padding: 5px 11px; border-radius: 2px;
}
.tea__body { padding-top: 20px; }
.tea__name-row { display: flex; align-items: baseline; gap: 10px; }
.tea__name { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--green); }
.tea__reading { font-size: 11px; color: var(--brown-light); letter-spacing: .06em; }
.tea__oneliner { font-size: 13.5px; line-height: 1.8; color: var(--ink-quiet); margin: 10px 0 16px; }
.tea__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.tea__meta { font-size: 11px; color: var(--brown); letter-spacing: .04em; }
.tea__price { font-weight: 500; font-size: 18px; color: var(--green); margin-top: 5px; }
.tea__vol { font-size: 11px; color: var(--brown-light); font-weight: 400; margin-left: 6px; }

.words { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.word { font-size: 11px; color: #5E6B60; background: var(--chip-bg); border-radius: 2px; padding: 4px 9px; letter-spacing: .03em; }

/* ---------- 产地与制茶人 ---------- */
.origin { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
.origin__stack { position: relative; }
.origin__field { aspect-ratio: 3/2; border-radius: 4px; overflow: hidden; background: var(--bg-sage); }
.origin__field img { width: 100%; height: 100%; object-fit: cover; }
.origin__maker {
  position: absolute; right: -14px; bottom: -28px; width: clamp(120px, 18%, 168px);
  aspect-ratio: 5/6; border-radius: 4px; overflow: hidden; background: var(--bg-sage);
  border: 5px solid var(--bg); box-shadow: 0 18px 40px -20px rgba(30, 45, 38, .5);
}
.origin__maker img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 719px) { .origin__maker { right: 8px; bottom: -20px; width: 108px; } .origin__stack { margin-bottom: 34px; } }

/* ---------- 季节 ---------- */
.season { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 60px); align-items: center; }
.season__copy { order: 2; }
.season__feature { order: 1; position: relative; display: block; border-radius: 4px; overflow: hidden; aspect-ratio: 5/6; background: var(--bg-sage); }
.season__feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.32, .72, 0, 1); }
.season__feature:hover img { transform: scale(1.03); }
.season__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 32, 26, .55), transparent 55%); }
.season__cap { position: absolute; left: 0; bottom: 0; padding: 26px; color: var(--bg); }
.season__kicker { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; opacity: .85; margin-bottom: 8px; }
.season__name { font-family: var(--serif); font-weight: 600; font-size: 26px; }
.season__line { font-size: 13px; opacity: .9; margin-top: 6px; }
.season__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 440px; }
.schip { display: flex; align-items: center; gap: 13px; background: var(--bg); border-radius: 5px; padding: 14px 16px; }
.schip:hover { background: #FBFAF6; }
.schip__dot { width: 26px; height: 26px; border-radius: 50%; flex: none; }
.schip__jp { display: block; font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--green); }
.schip__copy { display: block; font-size: 11px; color: var(--brown); margin-top: 2px; }

/* ---------- 礼赠（深绿） ---------- */
.on-dark { background: var(--green); color: #DEE4D9; }
.gift-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.gift-split h2 { color: var(--bg); font-size: clamp(26px, 3.4vw, 42px); line-height: 1.35; margin-bottom: 20px; }
.gift-split p { font-size: 14.5px; line-height: 2; color: #B9C4B6; margin: 0 0 28px; max-width: 420px; }
.gift-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.gift-pill { font-size: 12px; color: #DEE4D9; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; padding: 7px 14px; letter-spacing: .02em; }
.gift-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gift-mosaic figure { margin: 0; border-radius: 4px; overflow: hidden; background: var(--green-hover); }
.gift-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.gift-mosaic .tall { grid-row: span 2; aspect-ratio: 3/5; }
.gift-mosaic .sq { aspect-ratio: 1/1; }

/* ---------- 选茶问答 ---------- */
.quiz { background: var(--bg-mist); border-radius: 8px; padding: clamp(24px, 3.5vw, 44px); }
.quiz__qs { display: flex; flex-direction: column; gap: 26px; }
.quiz__q { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.quiz__n { font-family: var(--serif); font-size: 15px; color: var(--gold); }
.quiz__label { font-size: 15px; color: var(--green); font-weight: 500; }
.quiz__opts { display: flex; gap: 10px; flex-wrap: wrap; }
.quiz__opt {
  cursor: pointer; font-family: inherit; font-size: 14px; padding: 13px 18px; border-radius: 8px;
  transition: all .2s ease; flex: 1; min-width: 92px;
  border: 1px solid var(--line-strong); background: var(--bg-input); color: var(--ink);
}
.quiz__opt:hover { border-color: var(--green); }
.quiz__opt[aria-pressed="true"] { border-color: var(--green); background: var(--green); color: var(--bg); }
.quiz__result {
  margin-top: 30px; padding-top: 30px; border-top: 1px solid rgb(35 65 55 / .14);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap; animation: hkUp .5s ease both;
}
.quiz__result[hidden] { display: none; }
.quiz__result img { width: 96px; height: 120px; object-fit: cover; border-radius: 3px; background: var(--bg-sage); flex: none; }
.quiz__rbody { flex: 1; min-width: 200px; }
.quiz__rkicker { font-size: 11px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.quiz__rname { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--green); }
.quiz__rtype { font-size: 12px; color: var(--brown); font-family: var(--sans); }
.quiz__rline { font-size: 13px; line-height: 1.8; color: var(--ink-quiet); margin: 8px 0 0; }

/* ---------- 淹れ方 ---------- */
.brew-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px; background: var(--line); border-radius: 6px; overflow: hidden;
}
.brew-step { background: var(--bg-card); padding: 30px 26px; }
.brew-step__n { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.brew-step__t { font-size: 16px; color: var(--green); font-weight: 500; margin-bottom: 8px; }
.brew-step__d { font-size: 12.5px; line-height: 1.8; color: var(--ink-soft); }

/* ---------- 评价 ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.review { background: var(--bg-card); border-radius: 6px; padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars .icon { width: 14px; height: 14px; }
.review__meta { font-size: 11px; letter-spacing: .06em; color: var(--brown); }
.review__text { font-size: 13.5px; line-height: 1.95; color: #44443E; margin: 0; flex: 1; }
.review__foot { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid rgb(35 65 55 / .1); }
.review__avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-sage); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; flex: none;
}
.review__name { font-size: 12.5px; color: var(--green); flex: 1; }
.review__rp { font-size: 10.5px; color: var(--success); background: rgba(62, 107, 62, .1); border-radius: 3px; padding: 3px 8px; }
.rating-line { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); margin-bottom: 14px; }
.rating-line .icon { width: 16px; height: 16px; }
.rating-line__score { font-size: 14px; color: var(--green); font-weight: 500; }
.rating-line__count { font-size: 12px; color: var(--brown); }

/* ---------- 会员 ---------- */
.member { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.member__perks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.perk { background: var(--bg); border-radius: 6px; padding: 22px 20px; border-top: 2px solid var(--gold); }
.perk__t { font-size: 15px; color: var(--green); font-weight: 500; margin-bottom: 7px; }
.perk__d { font-size: 12px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- 组件：ProductCard（Horizon） ---------- */
.pcard { display: flex; flex-direction: column; }
.pcard[hidden] { display: none; }
.pcard__media { position: relative; }
.pcard__frame {
  display: block; aspect-ratio: 4/5; overflow: hidden;
  border-radius: 2px; background: var(--bg-sage);
}
.pcard__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease-out; }
.pcard:hover .pcard__frame img { transform: scale(1.015); }
.pcard__badge {
  position: absolute; top: 10px; right: 10px; background: rgba(247, 245, 239, .94); color: var(--green);
  font-size: 10.5px; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px;
}
.pcard__quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 40px; border: none; border-radius: 7px; cursor: pointer;
  background: rgba(247, 245, 239, .94); color: var(--green);
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .02em;
  opacity: 0; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, background-color .125s ease-in-out;
}
.pcard__quick .icon { width: 15px; height: 15px; }
.pcard__quick:hover { background: var(--green); color: var(--bg); }
.pcard:hover .pcard__quick, .pcard__quick:focus-visible { opacity: 1; transform: none; }
.pcard__body { padding-top: 14px; }
.pcard__vendor { font-size: 11px; color: var(--brown); letter-spacing: .04em; }
.pcard__title { display: block; font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--green); margin: 6px 0 8px; }
.pcard__price { font-size: 15px; font-weight: 500; color: var(--green); }
@media (hover: none) { .pcard__quick { opacity: 1; transform: none; } }

/* ---------- 商品一覧 ---------- */
.plp-head { background: var(--bg-mist); border-bottom: 1px solid var(--line-soft); }
.plp-head__inner { padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(24px, 3vw, 40px); }
.plp-head h1 { font-size: clamp(28px, 3.6vw, 44px); margin-top: 16px; }
.plp-head__note { font-size: 13.5px; color: var(--ink-soft); margin: 12px 0 0; }
.plp-context {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 18px;
  background: var(--bg); border: 1px solid rgb(35 65 55 / .16); border-radius: 999px; padding: 8px 8px 8px 16px;
}
.plp-context[hidden] { display: none; }
.plp-context__label { font-size: 12.5px; color: var(--green); }
.plp-context__clear {
  background: var(--green); color: var(--bg); border: none; border-radius: 999px;
  font-size: 11px; padding: 5px 12px; cursor: pointer; font-family: inherit;
}
.chips { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { width: 0; height: 0; }
.chip {
  white-space: nowrap; cursor: pointer; font-family: inherit; font-size: 13px; letter-spacing: .02em;
  padding: 9px 18px; border-radius: 999px; transition: all .2s ease;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
}
.chip:hover { border-color: var(--green); }
.chip[aria-pressed="true"] { border-color: var(--green); background: var(--green); color: var(--bg); }
.plp-body {
  display: flex; gap: clamp(28px, 3.5vw, 52px); align-items: flex-start;
  padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(72px, 9vw, 120px);
}
.facets { flex: 0 0 236px; position: sticky; top: calc(var(--header-h) + 24px); }
.facets__title { font-size: 12px; letter-spacing: .06em; color: var(--brown); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.facets__title .icon { width: 15px; height: 15px; }
.facet { padding: 18px 0; border-top: 1px solid var(--line); }
.facet__t { font-size: 13px; color: var(--green); font-weight: 500; margin-bottom: 12px; }
.facet label { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: var(--ink-body); cursor: pointer; }
.facet__box { width: 16px; height: 16px; border: 1px solid rgb(35 65 55 / .3); border-radius: 4px; flex: none; background: var(--bg-input); }
.plp-main { flex: 1; min-width: 0; }
.plp-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: clamp(18px, 2vw, 26px); padding-bottom: 14px; border-bottom: 1px solid rgb(35 65 55 / .1);
}
.plp-bar__count { font-size: 13px; color: var(--ink-soft); }
.plp-bar label { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); }
.plp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(18px, 2vw, 32px) clamp(14px, 1.6vw, 26px); }
.plp-empty { padding: 64px 0; text-align: center; color: var(--brown); font-size: 14px; }
.plp-empty[hidden] { display: none; }
select {
  font-family: inherit; font-size: 12.5px; color: var(--green); background: var(--bg-input);
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 7px 10px; cursor: pointer;
}
@media (max-width: 899px) {
  .facets { display: none; }
  .plp-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* ---------- 商品詳細 ---------- */
.pdp-top {
  display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 60px); align-items: flex-start;
  padding-top: clamp(20px, 3vw, 40px); padding-bottom: clamp(48px, 6vw, 80px);
}
.pdp-gallery { flex: 1 1 420px; min-width: min(100%, 300px); }
.pdp-main { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--bg-sage); }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.pdp-thumb {
  cursor: pointer; border-radius: 3px; overflow: hidden; aspect-ratio: 1/1; background: var(--bg-sage);
  border: 2px solid transparent; opacity: .7; transition: all .2s ease; padding: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb[aria-current="true"] { border-color: var(--green); opacity: 1; }
.pdp-buy { flex: 1 1 360px; min-width: min(100%, 300px); }
.pdp-buy__kicker { font-size: 11.5px; letter-spacing: .24em; color: var(--brown); text-transform: uppercase; margin-bottom: 14px; }
.pdp-buy h1 { font-size: clamp(30px, 3.8vw, 46px); line-height: 1.25; }
.pdp-buy__reading { font-size: 13px; color: var(--brown-light); letter-spacing: .08em; margin-top: 8px; }
.pdp-buy__oneliner { font-size: 15.5px; line-height: 1.9; color: #44443E; margin: 18px 0 16px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; color: var(--gold); margin-bottom: 22px; }
.pdp-rating .icon { width: 15px; height: 15px; }
.pdp-rating__score { font-size: 13px; color: var(--green); margin-left: 4px; }
.pdp-rating__count { font-size: 12px; color: var(--brown); }
.pdp-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.fact { font-size: 12px; color: #5E6B60; background: var(--chip-bg); border-radius: 3px; padding: 6px 12px; }
.pdp-price {
  display: flex; align-items: baseline; gap: 12px; padding: 20px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pdp-price__num { font-weight: 500; font-size: 30px; color: var(--green); }
.pdp-price__vol { font-size: 13px; color: var(--brown); }
.freq { display: flex; gap: 10px; margin: 22px 0 4px; }
.freq__opt {
  flex: 1; cursor: pointer; font-family: inherit; text-align: left; padding: 13px 15px; border-radius: 8px;
  transition: all .2s ease; border: 1.5px solid var(--line-strong); background: var(--bg-input);
}
.freq__opt[aria-pressed="true"] { border-color: var(--green); background: rgb(35 65 55 / .06); }
.freq__t { font-size: 13.5px; color: var(--green); font-weight: 500; }
.freq__d { font-size: 11px; color: var(--brown); margin-top: 3px; }
.freq__save { font-size: 10px; color: var(--success); background: rgba(62, 107, 62, .12); border-radius: 3px; padding: 2px 6px; margin-left: 4px; }
.buy-row { display: flex; gap: 12px; margin-top: 22px; align-items: stretch; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 7px; background: var(--bg-input); }
.stepper button { width: 44px; height: 52px; background: none; border: none; cursor: pointer; color: var(--green); font-size: 18px; font-family: inherit; }
.stepper output { min-width: 34px; text-align: center; font-size: 15px; color: var(--green); }
.ship-note { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 12.5px; color: var(--ink-body); }
.ship-note .icon { width: 16px; height: 16px; color: var(--success); }
.ship-note strong { font-weight: 500; color: var(--green); }
.gift-note { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 12.5px; color: var(--green); }
.gift-note .icon { width: 15px; height: 15px; }
.brew-quick { margin-top: 26px; background: var(--bg-mist); border-radius: 8px; padding: 18px 20px; }
.brew-quick__t { font-size: 12px; color: var(--brown); margin-bottom: 14px; letter-spacing: .04em; }
.brew-quick__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.brew-quick__k { font-size: 10.5px; color: var(--brown); margin-bottom: 5px; }
.brew-quick__v { font-size: 14px; color: var(--green); font-weight: 500; }
.brew-quick__cell { text-align: center; }

.flavor { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.bars { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.bar__head { display: flex; justify-content: space-between; font-size: 12.5px; color: #44443E; margin-bottom: 7px; }
.bar__val { color: var(--brown); }
.bar__track { height: 5px; border-radius: 3px; background: rgb(35 65 55 / .1); overflow: hidden; }
.bar__fill { height: 100%; background: var(--green); border-radius: 3px; }

.quality { background: var(--bg-paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgb(35 65 55 / .1); border-radius: 6px; overflow: hidden; }
.spec { background: var(--bg); padding: 18px 20px; }
.spec__k { font-size: 11px; color: var(--brown); margin-bottom: 6px; letter-spacing: .04em; }
.spec__v { font-size: 14px; color: var(--green); }

.methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.method { background: var(--bg-mist); border-radius: 8px; padding: 24px; }
.method__t { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--green); margin-bottom: 16px; }
.method__row { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.method__k { color: var(--brown); }
.method__v { color: var(--green); }

.buybar {
  position: sticky; bottom: 0; z-index: 45; display: none;
  background: rgba(247, 245, 239, .96); backdrop-filter: blur(10px);
  border-top: 1px solid rgb(35 65 55 / .14); padding: 11px 16px;
  align-items: center; gap: 12px;
}
.buybar__price { font-size: 15px; font-weight: 500; color: var(--green); }
.buybar__eta { font-size: 10px; color: var(--brown); }
@media (max-width: 899px) { .buybar { display: flex; } }

/* ---------- ギフト ---------- */
.gift-hero { position: relative; overflow: hidden; background: var(--bg-sage); }
.gift-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(247, 245, 239, .92) 0%, rgba(247, 245, 239, .62) 40%, rgba(247, 245, 239, .1) 72%, transparent);
}
.gift-hero__body { position: relative; padding-top: clamp(56px, 8vw, 120px); padding-bottom: clamp(56px, 8vw, 120px); }
.gift-hero h1 { font-size: clamp(30px, 4.4vw, 54px); line-height: 1.3; }
.gift-hero p { font-size: 15px; line-height: 1.9; color: #4A4A42; margin: 22px 0 0; max-width: 460px; }
@media (max-width: 599px) { .gift-hero__veil { background: linear-gradient(180deg, rgba(247, 245, 239, .94) 0%, rgba(247, 245, 239, .78) 50%, rgba(247, 245, 239, .4) 100%); } }

.branches { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.branch { border: 1px solid rgb(35 65 55 / .16); border-radius: 8px; padding: 26px; background: var(--bg-input); }
.branch--hero { border: 1.5px solid var(--green); background: var(--bg); position: relative; }
.branch__flag {
  position: absolute; top: -10px; left: 20px; background: var(--gold); color: var(--green-deep);
  font-size: 10.5px; padding: 3px 9px; border-radius: 3px; letter-spacing: .04em;
}
.branch__t { font-family: var(--serif); font-size: 19px; color: var(--green); margin-bottom: 8px; }
.branch p { font-size: 12.5px; line-height: 1.8; color: var(--ink-soft); margin: 0; }
.branch__ways { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.way { font-size: 11px; color: var(--green); border: 1px solid rgb(35 65 55 / .2); border-radius: 999px; padding: 5px 11px; }

.giftcats { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(32px, 4vw, 52px); }
.giftcat { font-size: 12.5px; color: var(--ink); border: 1px solid rgb(35 65 55 / .2); border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: all .2s ease; }
.giftcat:hover { border-color: var(--green); background: rgb(35 65 55 / .04); }
.bands { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.band-card { background: var(--bg-mist); border-radius: 8px; padding: 22px 24px; }
.band-card__r { font-weight: 500; font-size: 16px; color: var(--green); margin-bottom: 8px; }
.band-card__t { font-size: 12px; line-height: 1.7; color: var(--ink-soft); }

.sets { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.set__shot { position: relative; aspect-ratio: 5/4; border-radius: 4px; overflow: hidden; background: var(--bg-sage); }
.set__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.32, .72, 0, 1); }
.set:hover .set__shot img { transform: scale(1.03); }
.set__band { position: absolute; top: 14px; left: 14px; background: rgba(247, 245, 239, .92); color: var(--green); font-size: 11px; padding: 5px 11px; border-radius: 2px; }
.set__body { padding-top: 16px; }
.set__name { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--green); }
.set__items { font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); margin: 8px 0 12px; }
.set__price { font-weight: 500; font-size: 17px; color: var(--green); }
.set__tax { font-size: 11px; color: var(--brown-light); font-weight: 400; margin-left: 6px; }

.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.service { text-align: center; padding: 24px 16px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 8px; }
.service__t { font-size: 15px; color: var(--bg); margin-bottom: 6px; }
.service__d { font-size: 11.5px; color: #9DB09B; }

/* ---------- カート ---------- */
.cart-page { padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(72px, 9vw, 120px); }
.cart-page h1 { font-size: clamp(28px, 3.6vw, 42px); margin: 14px 0 clamp(28px, 3.5vw, 44px); }
.cart-split { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 44px); align-items: flex-start; }
.cart-split[hidden] { display: none; }
.cart-left { flex: 1 1 440px; min-width: min(100%, 300px); }
.cart-empty { text-align: center; padding: 72px 0; background: var(--bg-mist); border-radius: 8px; }
.cart-empty[hidden] { display: none; }
.cart-empty p { font-size: 15px; color: var(--ink-soft); margin: 0 0 22px; }
.freeship {
  display: flex; align-items: center; gap: 10px; background: var(--bg-mist); border-radius: 8px;
  padding: 14px 18px; margin-bottom: 20px; font-size: 12.5px; color: var(--green);
}
.freeship[hidden] { display: none; }
.freeship .icon { width: 16px; height: 16px; color: var(--success); }
.lines { border-top: 1px solid var(--line); }
.line { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.line img { width: 88px; height: 110px; object-fit: cover; border-radius: 3px; flex: none; background: var(--bg-sage); }
.line__body { flex: 1; min-width: 0; }
.line__top { display: flex; justify-content: space-between; gap: 12px; }
.line__name { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--green); }
.line__meta { font-size: 12px; color: var(--brown); margin: 5px 0 16px; }
.line__foot { display: flex; justify-content: space-between; align-items: center; }
.line__total { font-weight: 500; font-size: 16px; color: var(--green); }
.remove { background: none; border: none; color: var(--brown-light); font-size: 12px; cursor: pointer; flex: none; font-family: inherit; }
.remove:hover { color: var(--green); }
.stepper--sm button { width: 36px; height: 38px; font-size: 16px; }
.stepper--sm output { min-width: 30px; font-size: 14px; }
.stepper--xs { border-radius: 6px; }
.stepper--xs button { width: 30px; height: 30px; color: var(--ink); }
.stepper--xs output { min-width: 26px; font-size: 13px; }

.giftopts { margin-top: 32px; background: var(--bg-paper); border-radius: 8px; padding: 24px; }
.giftopts__t { font-family: var(--serif); font-size: 17px; color: var(--green); margin-bottom: 18px; }
.giftopts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.field { display: block; }
.field__label { display: block; font-size: 11.5px; color: var(--brown); margin-bottom: 6px; }
.field select { width: 100%; font-size: 13px; padding: 11px 12px; }

.addons { margin-top: 28px; }
.addons__t { font-size: 13px; color: var(--green); font-weight: 500; margin-bottom: 14px; }
.addons__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.addon { background: var(--bg-input); border: 1px solid var(--line); border-radius: 8px; padding: 12px; display: flex; gap: 12px; align-items: center; }
.addon img { width: 48px; height: 56px; object-fit: cover; border-radius: 3px; flex: none; background: var(--bg-sage); }
.addon__body { flex: 1; min-width: 0; }
.addon__name { font-size: 12.5px; color: var(--green); }
.addon__price { font-size: 11px; color: var(--brown); margin: 2px 0 6px; }
.addon__add {
  font-size: 11px; color: var(--green); background: none; border: 1px solid rgb(35 65 55 / .28);
  border-radius: 5px; padding: 4px 10px; cursor: pointer; font-family: inherit; transition: all .2s ease;
}
.addon__add:hover { background: var(--green); color: var(--bg); border-color: var(--green); }

.summary {
  flex: 0 1 360px; min-width: min(100%, 280px); position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--bg-mist); border-radius: 8px; padding: 28px;
}
.summary__t { font-family: var(--serif); font-size: 18px; color: var(--green); margin-bottom: 20px; }
.summary__row { display: flex; justify-content: space-between; font-size: 14px; color: #44443E; padding: 9px 0; }
.summary__row--rule { border-bottom: 1px solid rgb(35 65 55 / .14); }
.summary__row span:last-child { color: var(--green); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 22px; }
.summary__total-label { font-size: 15px; color: var(--green); }
.summary__total-num { font-weight: 500; font-size: 24px; color: var(--green); }
.summary__guest { display: flex; align-items: center; gap: 8px; justify-content: center; margin: 14px 0 4px; font-size: 11.5px; color: var(--brown); }
.summary__guest .icon { width: 14px; height: 14px; color: var(--success); }
.summary__cont { width: 100%; background: none; border: none; color: var(--green); font-size: 12.5px; padding: 10px 0; cursor: pointer; text-decoration: underline; font-family: inherit; }
.summary__pay { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgb(35 65 55 / .14); }
.summary__pay-note { font-size: 11px; color: var(--brown); line-height: 1.9; }
.paytags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.paytag { font-size: 10px; color: var(--ink-soft); background: var(--bg); border: 1px solid rgb(35 65 55 / .14); border-radius: 4px; padding: 4px 8px; }

/* ---------- 页脚 ---------- */
.footer { background: var(--green-deep); color: #C6CFC4; }
.footer__inner { padding-top: clamp(56px, 7vw, 88px); padding-bottom: 40px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 36px 28px; }
.footer__brand { grid-column: 1/-1; max-width: 320px; margin-bottom: 16px; }
.footer__jp { font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--bg); letter-spacing: .14em; }
.footer__en { font-size: 9.5px; letter-spacing: .42em; color: #8FA08D; margin: 7px 0 18px; padding-left: .42em; }
.footer__tagline { font-size: 12.5px; line-height: 1.9; color: #9DA99B; margin: 0; }
.footer__h { font-size: 11px; letter-spacing: .14em; color: #8FA08D; text-transform: uppercase; margin-bottom: 16px; }
.footer__grid a { display: block; font-size: 13px; color: #C6CFC4; padding: 6px 0; }
.footer__grid a:hover { color: var(--bg); }
.footer__news { min-width: 200px; }
/* 窄屏下 200px 会撑破 grid 轨道（2 列时轨道仅约 157px）→ 独占整行 */
@media (max-width: 959px) { .footer__news { min-width: 0; grid-column: 1 / -1; } }
.footer__news p { font-size: 12.5px; line-height: 1.8; color: #9DA99B; margin: 0 0 14px; }
.footer__form { display: flex; gap: 8px; }
.footer__form input {
  flex: 1; min-width: 0; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px; padding: 11px 12px; color: var(--bg); font-size: 12.5px; font-family: inherit;
}
.footer__form input::placeholder { color: #8FA08D; }
.footer__form button {
  background: var(--gold); color: var(--green-deep); border: none; border-radius: 5px;
  padding: 0 16px; font-size: 12.5px; font-family: inherit; cursor: pointer; white-space: nowrap;
}
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 11.5px; color: #8FA08D;
}
.footer__legal a { color: #8FA08D; display: inline; padding: 0; }
.footer__legal-l { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal-r { display: flex; gap: 14px; align-items: center; }
.footer__legal-r span:nth-child(even) { opacity: .5; }

/* ---------- 抽屉 / 菜单 ---------- */
.overlay { position: fixed; inset: 0; z-index: 150; }
.overlay[hidden] { display: none; }
.scrim { position: absolute; inset: 0; background: rgba(20, 30, 25, .32); animation: hkScrim .3s ease both; border: none; padding: 0; width: 100%; cursor: default; }
.drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: var(--bg);
  box-shadow: 0 0 60px -10px rgba(20, 30, 25, .5); display: flex; flex-direction: column;
  animation: hkDrawer .34s cubic-bezier(.32, .72, 0, 1) both;
}
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer__title { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--green); }
.drawer__count { font-size: 13px; color: var(--brown); font-family: var(--sans); }
.drawer__close { background: none; border: none; cursor: pointer; color: var(--ink); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.drawer__close .icon { width: 16px; height: 16px; }
.drawer__added {
  display: flex; align-items: center; gap: 9px; background: rgba(62, 107, 62, .1);
  color: var(--success); font-size: 12.5px; padding: 12px 24px;
}
.drawer__added[hidden] { display: none; }
.drawer__added .icon { width: 18px; height: 18px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; scrollbar-width: none; }
.drawer__body::-webkit-scrollbar { width: 0; }
.drawer__empty { text-align: center; padding: 64px 0; color: var(--brown); }
.drawer__empty[hidden] { display: none; }
.drawer__empty p { font-size: 14px; margin: 0 0 20px; }
.drawer__foot { padding: 20px 24px 24px; border-top: 1px solid rgb(35 65 55 / .14); background: var(--bg-paper); }
.drawer__foot[hidden] { display: none; }
.drawer__sub { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; }
.drawer__sub span:first-child { color: var(--ink-quiet); }
.drawer__sub span:last-child { font-weight: 500; color: var(--green); }
.drawer__tax { font-size: 11.5px; color: var(--brown); margin-bottom: 16px; }
.drawer__cont { width: 100%; background: none; border: none; color: var(--green); font-size: 12.5px; padding: 14px 0 2px; cursor: pointer; text-decoration: underline; font-family: inherit; }
.dline { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgb(35 65 55 / .1); }
.dline img { width: 66px; height: 82px; object-fit: cover; border-radius: 2px; flex: none; background: var(--bg-sage); }
.dline__body { flex: 1; min-width: 0; }
.dline__top { display: flex; justify-content: space-between; gap: 8px; }
.dline__name { font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--green); }
.dline__meta { font-size: 11px; color: var(--brown); margin: 3px 0 10px; }
.dline__foot { display: flex; justify-content: space-between; align-items: center; }
.dline__total { font-weight: 500; font-size: 14px; color: var(--green); }

.menu {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(320px, 84vw); background: var(--bg);
  display: flex; flex-direction: column; animation: hkMenu .34s cubic-bezier(.32, .72, 0, 1) both;
}
.menu__head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line); }
.menu__brand { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--green); letter-spacing: .1em; }
.menu__nav { padding: 12px 8px; flex: 1; overflow-y: auto; }
.menu__nav a {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 16px; color: var(--green);
  padding: 15px 16px; border-bottom: 1px solid rgb(35 65 55 / .07);
}
.menu__nav .icon { width: 16px; height: 16px; color: var(--brown-light); opacity: .6; }
