:root {
  --bg: #faf8f4;
  --bg-2: #f2eee6;
  --ink: #17181c;
  --muted: #6f6a63;
  --hairline: #e5dfd3;
  --gold: #a5824b;
  --gold-soft: rgba(165,130,75,0.12);
  --serif: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-soft); }
img { display: block; max-width: 100%; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) { .wrap { padding: 0 32px; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 15px 32px;
  background: var(--ink); color: var(--bg);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--ink); cursor: pointer;
  transition: background .25s ease, color .25s ease;
  font-family: var(--sans); text-align: center;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn.small { padding: 11px 22px; }
.btn.line { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn.line:hover { background: var(--ink); color: var(--bg); }
.btn.inverse { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn.inverse:hover { background: transparent; color: var(--bg); }
.btn.on-dark { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn.on-dark:hover { background: transparent; color: var(--bg); }
.btn.on-dark.line { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn.on-dark.line:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ---------- nav ---------- */
nav.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(250,248,244,0.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.logo {
  font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.24em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.logo b { color: var(--gold); }
.nav-links {
  display: none; gap: 32px; align-items: center;
}
.nav-links a {
  color: var(--ink); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  background: none; border: none; cursor: pointer; position: relative;
  padding: 8px; color: var(--ink); display: grid; place-items: center;
}
.icon-btn svg { width: 22px; height: 22px; stroke: currentColor; }
.icon-btn img { width: 22px; height: 22px; display: block; }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: #fff; border-radius: 999px;
  font-size: 0.62rem; font-weight: 700; min-width: 16px; height: 16px;
  display: grid; place-items: center; padding: 0 4px;
}
.cart-count.empty { display: none; }
.burger { display: grid; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid var(--hairline); background: var(--bg);
}
.mobile-menu a {
  padding: 16px 24px; text-decoration: none; color: var(--ink);
  font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu.open { display: flex; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
}

.currency-select {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--ink); padding: 6px 2px; appearance: auto;
}
.currency-select:focus { outline: none; color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  isolation: isolate; overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-1.5%); }
}
.hero .veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top,
    rgba(13,14,18,0.92) 0%, rgba(13,14,18,0.55) 38%,
    rgba(13,14,18,0.15) 65%, rgba(13,14,18,0.25) 100%);
}
.hero-content {
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 20px 12svh; color: #f7f4ee;
}
.hero .kicker { color: #d9bd8b; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.5rem, 9vw, 4.8rem); line-height: 1.06;
  letter-spacing: 0.01em; margin-bottom: 16px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: #e3c07e; }
.hero p.sub {
  color: #d8d3c8; font-size: 1.02rem; max-width: 440px; margin-bottom: 28px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .cta-row .btn { flex: 1 1 auto; }
@media (min-width: 900px) {
  .hero { align-items: center; min-height: 480px; height: 58vh; }
  .hero-content { padding: 80px 32px 24px; }
  .hero h1 { font-size: clamp(2.2rem, 3.4vw, 3.1rem); margin-bottom: 14px; }
  .hero p.sub { font-size: 0.96rem; max-width: 420px; margin-bottom: 24px; }
  .hero .cta-row .btn { flex: 0 0 auto; padding: 12px 26px; }
  .hero .scroll-hint { display: none; }
}
.hero .scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(247,244,238,0.7); font-size: 1.4rem; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

.kicker {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.kicker::before { content: ""; width: 36px; height: 1px; background: currentColor; opacity: .8; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; white-space: nowrap; background: var(--bg); padding: 15px 0;
}
.marquee .track { display: inline-block; animation: marq 26s linear infinite; }
.marquee span {
  margin: 0 30px; color: var(--muted); font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.marquee b { color: var(--ink); font-weight: 600; }
.marquee i { color: var(--gold); font-style: normal; margin: 0 -18px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 72px 0; }
@media (min-width: 900px) { section { padding: 110px 0; } }
.head { margin-bottom: 44px; }
@media (min-width: 900px) { .head { margin-bottom: 64px; } }
.head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 5.4vw, 3rem); line-height: 1.15;
  text-wrap: balance;
}
.head p { color: var(--muted); margin-top: 14px; max-width: 560px; }

/* ---------- product cards ---------- */
.cards { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 36px; } }
/* home page: force exactly 4 across on desktop, 2 on tablet */
.cards.four { gap: 26px; }
@media (min-width: 600px) { .cards.four { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards.four { grid-template-columns: repeat(4, 1fr); } }

/* featured bundle block under the 4 cards */
.bundle-feature {
  margin-top: 26px; display: grid; grid-template-columns: 1fr;
  background: var(--ink); color: var(--bg); overflow: hidden;
}
@media (min-width: 760px) { .bundle-feature { grid-template-columns: 42% 1fr; } }
.bundle-feature-media { position: relative; display: block; min-height: 240px; }
.bundle-feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bundle-feature-media .badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--gold); color: #14100a; border: none;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 14px;
}
.bundle-feature-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.bundle-feature-body .kicker { color: #c9a86a; }
.bundle-feature-body h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 12px;
}
.bundle-feature-body h2 a { color: inherit; text-decoration: none; }
.bundle-feature-body p { color: #b8b3aa; margin-bottom: 24px; max-width: 460px; }
.bundle-feature-buy { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.bundle-feature .price-big { font-family: var(--serif); font-size: 1.9rem; }
.bundle-feature .price-big s { font-size: 1rem; color: #8b867d; margin-left: 10px; font-family: var(--sans); }
.card { display: flex; flex-direction: column; }
.card .frame {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid var(--hairline); padding: 10px;
  transition: box-shadow .35s ease;
}
.card:hover .frame { box-shadow: 0 26px 60px rgba(23,24,28,0.12); }
.card .frame img { width: 100%; transition: transform .8s ease; }
.card:hover .frame img { transform: scale(1.025); }
.card .badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: rgba(250,248,244,0.92); color: var(--ink);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--hairline);
}
.card .badge.gold { background: var(--ink); color: #e9d8b8; border-color: var(--ink); }
.card .body { padding: 24px 2px 0; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin-bottom: 8px; }
.card .desc { color: var(--muted); font-size: 0.82rem; line-height: 1.5; flex: 1; }
.card .row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--hairline);
}
.price { font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; }
.price s { color: var(--muted); font-size: 0.9rem; margin-left: 8px; font-family: var(--sans); }

/* ---------- features ---------- */
.feats-section { background: var(--bg-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.feats { display: grid; grid-template-columns: 1fr; }
.feat { padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.feat:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .feats { grid-template-columns: repeat(4, 1fr); }
  .feat { border-bottom: none; padding: 10px 36px 10px 0; }
  .feat + .feat { border-left: 1px solid var(--hairline); padding-left: 36px; }
}
.feat .num { font-family: var(--serif); font-size: 0.85rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 12px; }
.feat h4 { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 0.9rem; }

/* ---------- dark band ---------- */
.band {
  position: relative;
  background:
    radial-gradient(120% 140% at 20% 40%, transparent 40%, rgba(10,11,14,0.55) 100%),
    linear-gradient(100deg, rgba(14,15,19,0.82) 26%, rgba(14,15,19,0.4) 54%, rgba(14,15,19,0.38) 66%, rgba(14,15,19,0.66) 94%),
    url("bundle-bg.jpg") center / cover no-repeat;
  color: var(--bg); padding: 92px 0; margin-top: 24px;
  border-top: 1px solid rgba(201,168,106,0.5);
  border-bottom: 1px solid rgba(201,168,106,0.5);
}
.band h2, .band p, .band .price-big { text-shadow: 0 1px 16px rgba(0,0,0,0.75); }
.band-tag {
  display: inline-block; margin-bottom: 18px;
  background: var(--grad, linear-gradient(90deg, #d9b878, #c9a86a));
  background: linear-gradient(90deg, #e6c987, #c9a86a);
  color: #211a0e; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 15px;
}
.band h2 { margin-bottom: 14px; }
.band-buy { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
@media (min-width: 900px) { .band-buy { align-items: flex-end; } }
.band-buy .price-big { margin-bottom: 8px; }
.band-buy .btn { padding: 16px 40px; }
.band-buy-note {
  margin-top: 12px; font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #cfc8ba; text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.band-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; gap: 30px;
}
@media (min-width: 900px) {
  .band { padding: 90px 0; }
  .band-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 0 32px; }
}
.band .kicker { color: #c9a86a; }
.band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.15; margin-bottom: 12px; }
.band p { color: #b8b3aa; max-width: 460px; }
.band .price-big { font-family: var(--serif); font-size: 2.2rem; margin-bottom: 18px; }
.band .price-big s { font-size: 1.1rem; color: #8b867d; margin-left: 12px; font-family: var(--sans); }

/* ---------- faq ---------- */
.faq-list { max-width: 780px; }
details { border-bottom: 1px solid var(--hairline); padding: 20px 2px; }
details:first-of-type { border-top: 1px solid var(--hairline); }
summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.08rem;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; transition: transform .25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); font-size: 0.95rem; padding-top: 12px; max-width: 640px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 140px 0 40px; }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 7vw, 3.6rem); line-height: 1.1; }
.page-hero p { color: var(--muted); margin-top: 14px; max-width: 560px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 0.95rem;
  background: #fff; border: 1px solid var(--hairline); color: var(--ink);
  outline: none; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.contact-info h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; margin-bottom: 10px; }
.contact-info p { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; }
.contact-info a { color: var(--gold); text-decoration: none; }

/* ---------- product page ---------- */
.product-grid { display: grid; gap: 40px; grid-template-columns: 1fr; padding-top: 20px; padding-bottom: 80px; }
@media (min-width: 900px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; padding-bottom: 110px; } }
.product-frame { background: #fff; border: 1px solid var(--hairline); padding: 12px; }
.product-frame img { width: 100%; }
.product-info h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 2.9rem); line-height: 1.1; margin-bottom: 12px; }
.product-price { font-size: 1.5rem; margin-bottom: 20px; }
.product-desc { color: var(--muted); margin-bottom: 30px; }
.includes-title { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; margin-bottom: 12px; }
.includes { list-style: none; margin-bottom: 32px; }
.includes li {
  padding: 9px 0 9px 26px; position: relative;
  color: var(--muted); font-size: 0.93rem;
  border-bottom: 1px solid var(--hairline);
}
.includes li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.product-deal {
  display: inline-block; margin: 4px 0 22px; text-decoration: none;
  background: var(--gold-soft); color: var(--gold);
  border: 1px solid rgba(165,130,75,0.35);
  font-size: 0.78rem; letter-spacing: 0.04em; padding: 9px 15px;
  transition: background .2s;
}
a.product-deal:hover { background: rgba(165,130,75,0.2); }
.product-add { width: 100%; margin-bottom: 30px; }
@media (min-width: 900px) { .product-add { width: auto; } }

/* ---------- legal pages ---------- */
.legal { max-width: 760px; padding-bottom: 90px; }
.legal section { padding: 0; margin-bottom: 48px; scroll-margin-top: 90px; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.82rem; margin-bottom: 20px; }
.legal h3 { font-size: 0.95rem; margin: 20px 0 4px; }
.legal p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.legal a { color: var(--gold); text-decoration: none; }

/* ---------- build-your-bundle toggle ---------- */
.bundle-builder { margin: 4px 0 24px; }
.bb-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 12px; }
.bb-option {
  position: relative; display: grid;
  grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  border: 1px solid var(--hairline); background: #fff;
  padding: 16px 18px; margin-bottom: 11px; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.bb-option.selected { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.bb-radio {
  width: 19px; height: 19px; border-radius: 50%;
  border: 2px solid #bdb5a5; position: relative; flex: 0 0 auto;
}
.bb-option.selected .bb-radio { border-color: var(--ink); }
.bb-option.selected .bb-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--ink);
}
.bb-main { font-weight: 600; font-size: 0.98rem; }
.bb-sub { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.bb-off {
  display: inline-block; background: #e8c9a0; color: #6b4e26;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 8px; margin-left: 4px; vertical-align: middle;
}
.bb-price { font-family: var(--serif); font-size: 1.05rem; white-space: nowrap; text-align: right; }
.bb-price s { color: var(--muted); font-size: 0.82rem; font-family: var(--sans); display: block; }
.bb-flag {
  position: absolute; top: -10px; right: 14px;
  background: var(--ink); color: #e9d8b8;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px;
}
.bb-expand {
  display: none; grid-column: 1 / -1; margin-top: 12px;
  border-top: 1px solid var(--hairline); padding-top: 12px;
}
.bb-item { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; }
.bb-item img { width: 44px; height: 44px; object-fit: cover; border: 1px solid var(--hairline); }
.bb-item-name { font-size: 0.9rem; }
.bb-item-price { font-family: var(--serif); font-size: 0.92rem; text-align: right; white-space: nowrap; }
.bb-item-price s { color: var(--muted); font-size: 0.76rem; font-family: var(--sans); display: block; }
.bb-plus { text-align: center; color: var(--muted); font-size: 1.05rem; margin: 7px 0; }
.bb-item select {
  font-family: var(--sans); font-size: 0.9rem; padding: 8px 10px;
  background: #fff; border: 1px solid var(--hairline); color: var(--ink); cursor: pointer; width: 100%;
}
.bb-item select:focus { outline: none; border-color: var(--gold); }
.back-link {
  display: inline-block; margin-top: 20px; color: var(--muted); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.back-link:hover { color: var(--gold); }
.card a.plain { text-decoration: none; color: inherit; }

/* ---------- artwork list ---------- */
.artworks-section {
  border-top: 1px solid var(--hairline);
  background: var(--bg-2);
  padding: 64px 0 80px;
}
.artworks-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 40px;
}
.artworks-list {
  list-style: none; display: grid; gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .artworks-list { grid-template-columns: 1fr 1fr; column-gap: 56px; }
}
.artwork {
  display: flex; gap: 18px; align-items: baseline;
  padding: 20px 0; border-top: 1px solid var(--hairline);
}
.artwork-num {
  font-family: var(--serif); font-size: 0.95rem; color: var(--gold);
  letter-spacing: 0.05em; flex: 0 0 auto; min-width: 24px;
}
.artwork-name { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 4px; }
.artwork-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ---------- footer ---------- */
footer.site { padding: 46px 0; border-top: 1px solid var(--hairline); }
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; gap: 16px;
  color: var(--muted); font-size: 0.82rem; letter-spacing: 0.06em;
}
.footer-inner .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-inner .links a { color: var(--muted); text-decoration: none; }
.footer-inner .links a:hover { color: var(--gold); }
@media (min-width: 900px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; padding: 0 32px; }
}

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(23,24,28,0.45); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 92vw); background: var(--bg);
  border-left: 1px solid var(--hairline);
  transform: translateX(102%); transition: transform .35s cubic-bezier(.22,.8,.36,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--hairline);
}
.cart-head h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--hairline);
}
.cart-item img { width: 62px; height: 62px; object-fit: cover; border: 1px solid var(--hairline); }
.cart-item .ci-body { flex: 1; }
.cart-item .ci-name { font-family: var(--serif); font-size: 1rem; }
.cart-item .ci-price { color: var(--muted); font-size: 0.85rem; }
.cart-item .remove {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px;
}
.cart-item .remove:hover { color: #b0472f; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; font-size: 0.95rem; }
.cart-foot { padding: 20px 24px 26px; border-top: 1px solid var(--hairline); }
.cart-total {
  display: flex; justify-content: space-between; margin-bottom: 16px;
  font-family: var(--serif); font-size: 1.15rem;
}
.cart-foot .btn { width: 100%; }
.cart-note { text-align: center; color: var(--muted); font-size: 0.75rem; margin-top: 10px; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
  background: var(--ink); color: var(--bg); padding: 13px 26px;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; pointer-events: none; transition: all .35s ease; z-index: 120;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

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