:root {
  --navy: #0a1f3d;
  --navy-2: #102b50;
  --night: #0e1116;
  --night-card: #171c23;
  --cream: #f4ecdb;
  --cream-2: #fbf7ee;
  --gold: #b8924a;
  --gold-deep: #8c6e2c;
  --ink: #0b1620;
  --muted: #6f716f;
  --teal: #42d3b2;
  --hairline: rgba(11, 22, 32, 0.12);
  --shadow-float: 0 24px 70px -32px rgba(3, 14, 28, 0.52);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--navy); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(ellipse at 18% 18%, #173761 0, var(--navy) 42%, #06162b 100%);
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button { color: inherit; }
button, [role="button"] { -webkit-tap-highlight-color: transparent; }
button:focus-visible, [role="button"]:focus-visible, input:focus-visible {
  outline: 3px solid #d5b36c;
  outline-offset: 3px;
}

::selection { color: var(--navy); background: #dcc586; }

.concept-shell {
  width: min(1380px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.93fr) minmax(520px, 1.07fr);
}

.concept-panel {
  min-height: 100vh;
  padding: clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  color: var(--cream);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.concept-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(244, 236, 219, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.concept-brand img { width: 72px; height: 72px; object-fit: contain; }

.concept-copy { margin: clamp(58px, 9vh, 112px) 0 52px; max-width: 630px; }
.script-line {
  margin: 0 0 2px;
  color: #d5b36c;
  font: 400 clamp(34px, 4vw, 54px)/1 Pinyon Script, cursive;
}

.concept-copy h1 {
  margin: 0;
  max-width: 610px;
  color: var(--cream-2);
  font: 500 clamp(42px, 5.2vw, 76px)/0.98 Playfair Display, Georgia, serif;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.concept-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(244, 236, 219, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.screen-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.screen-tab {
  min-height: 82px;
  padding: 14px 8px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(244, 236, 219, 0.76);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}
.screen-tab:last-child { border-right: 0; }
.screen-tab span { display: block; margin-bottom: 11px; color: #d5b36c; font-size: 11px; letter-spacing: 0.14em; }
.screen-tab:hover { color: var(--cream); }
.screen-tab.is-active { color: var(--navy); background: var(--cream); }
.screen-tab.is-active span { color: var(--gold-deep); }

.concept-notes { margin-top: 36px; }
.note-row {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.note-row > span {
  color: #d5b36c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.note-row p { margin: 0; color: rgba(244, 236, 219, 0.68); font-size: 12px; line-height: 1.55; }
.prototype-note { margin: auto 0 0; padding-top: 34px; color: rgba(244, 236, 219, 0.76); font-size: 12px; }

.device-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  padding: 24px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--cream);
}

.device-toolbar {
  display: flex;
  gap: 6px;
  margin: 0 0 14px;
  padding: 5px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(251, 247, 238, 0.94);
}
.mini-tab {
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b6d6b;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}
.mini-tab.is-active { color: var(--cream); background: var(--navy); }

.device {
  position: relative;
  width: min(390px, calc(46.21vh - 48px), 100%);
  height: auto;
  min-height: 0;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border: 8px solid #071429;
  border-radius: 46px;
  background: var(--cream-2);
  box-shadow: var(--shadow-float);
  isolation: isolate;
}

.device-sensor {
  position: absolute;
  z-index: 50;
  top: 10px;
  left: 50%;
  width: 88px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071429;
  pointer-events: none;
}

.app-screen {
  position: absolute;
  inset: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--cream-2);
  scrollbar-color: rgba(10, 31, 61, 0.28) transparent;
  scrollbar-width: thin;
}
.app-screen::-webkit-scrollbar { width: 5px; }
.app-screen::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(10, 31, 61, 0.28); }
.app-screen.is-active { display: block; }

.device button:not(.nav-profile-bear):not(.baer-hotspot):not(.sheet-backdrop):not(.baer-name-backdrop),
.device [role="button"] { transform-origin: center; transition: transform 140ms cubic-bezier(.2,.8,.2,1), filter 160ms ease; }
.device button:not(.nav-profile-bear):not(.baer-hotspot):not(.sheet-backdrop):not(.baer-name-backdrop):active,
.device [role="button"]:active { transform: scale(.982); transition-duration: 80ms; }

.screen-login {
  overflow: hidden;
  color: var(--cream);
  background: radial-gradient(ellipse at 50% 24%, #19385f 0, var(--navy) 50%, #061325 100%);
}
.login-atmosphere {
  position: absolute;
  inset: auto -60px -110px -30px;
  height: 52%;
  background: linear-gradient(to bottom, transparent 0, rgba(6,19,37,0.07) 20%, #061325 90%), url("assets/cookie-hero.png") 66% 16% / cover no-repeat;
  opacity: 0.74;
  pointer-events: none;
}
.login-brand { position: relative; z-index: 2; display: flex; justify-content: center; padding-top: 42px; }
.login-brand img { width: 76px; height: 76px; object-fit: contain; }
.login-copy { position: relative; z-index: 2; margin: 20px 28px 0; text-align: center; }
.login-script { margin: 0 0 -4px; color: #d5b36c; font: 400 32px/1 Pinyon Script, cursive; }
.login-copy h2 { margin: 0; color: var(--cream-2); font: 500 42px/0.92 Playfair Display, Georgia, serif; letter-spacing: -0.035em; }
.login-copy > p:last-child { margin: 18px 0 0; color: rgba(244,236,219,0.7); font-size: 12px; line-height: 1.55; }
.auth-stack { position: absolute; z-index: 3; right: 24px; bottom: 24px; left: 24px; display: grid; gap: 9px; }
.auth-button {
  min-height: 47px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(244,236,219,0.3);
  border-radius: 999px;
  background: rgba(10,31,61,0.72);
  color: var(--cream);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  transition: background 150ms ease, transform 150ms ease;
}
.auth-button:hover { background: #14345b; transform: translateY(-1px); }
.auth-primary { border-color: var(--cream); color: var(--navy); background: var(--cream); }
.auth-primary:hover { background: #fffaf0; }
.auth-outline { background: transparent; }
.auth-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.auth-primary svg { fill: currentColor; stroke: none; }
.google-mark { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #346edf; background: #fff; font-size: 12px; font-weight: 800; }
.guest-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 0; background: transparent; color: rgba(244,236,219,0.72); cursor: pointer; font-size: 11px; }
.guest-link svg { width: 17px; height: 17px; margin-left: 5px; vertical-align: middle; fill: none; stroke: var(--gold); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.screen-light { padding: 0 18px 94px; }
.app-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 42px 2px 18px; }
.app-header p { margin: 0 0 5px; color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: 0.19em; text-transform: uppercase; }
.app-header h2 { margin: 0; color: var(--navy); font: 500 25px/1.05 Playfair Display, Georgia, serif; letter-spacing: -0.025em; }
.avatar-button { width: 44px; height: 44px; border: 1px solid rgba(10,31,61,0.16); border-radius: 50%; color: var(--cream); background: var(--navy); cursor: pointer; }
.avatar-button span { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; }

.location-pill, .location-inline {
  border: 1px solid var(--hairline);
  background: #fffdf8;
  cursor: pointer;
}
.location-pill { width: 100%; min-height: 55px; padding: 9px 14px; display: grid; grid-template-columns: 22px 1fr 20px; align-items: center; gap: 10px; border-radius: 14px; text-align: left; }
.location-pill svg, .location-inline svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.location-pill span, .location-inline span { color: var(--navy); font-size: 12px; font-weight: 650; }
.location-pill small, .location-inline small { display: block; margin-bottom: 2px; color: #6e726e; font-size: 10px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.location-pill .chevron, .location-inline .chevron { width: 16px; opacity: 0.55; }

.member-pass { position: relative; margin-top: 13px; padding: 18px; overflow: hidden; border-radius: 17px; color: var(--cream); background: radial-gradient(circle at 84% 0, #244b76 0, var(--navy) 48%, #07182d 100%); box-shadow: 0 12px 32px -22px rgba(3,14,28,0.8); }
.member-pass::before { content: ""; position: absolute; z-index: 0; top: -45%; bottom: -45%; left: -52%; width: 34%; opacity: 0; transform: skewX(-17deg) translateX(-170%); background: linear-gradient(90deg, transparent, rgba(255,244,213,.22), rgba(255,255,255,.34), transparent); pointer-events: none; }
.member-pass::after { content: ""; position: absolute; top: -50px; right: -72px; width: 190px; height: 190px; border: 1px solid rgba(184,146,74,0.26); border-radius: 50%; box-shadow: 0 0 0 18px rgba(184,146,74,0.05), 0 0 0 42px rgba(184,146,74,0.03); }
.member-pass.is-revealing::before { animation: member-pass-sheen 920ms 170ms cubic-bezier(.22,1,.36,1) both; }
.member-pass.is-revealing .progress-track i { transform-origin: left center; animation: member-progress-reveal 760ms 220ms cubic-bezier(.22,1,.36,1) both; }
.member-pass.is-revealing .progress-track b { animation: member-marker-reveal 360ms 560ms cubic-bezier(.22,1,.36,1) both; }
@keyframes member-pass-sheen { 0% { opacity: 0; transform: skewX(-17deg) translateX(-170%); } 22% { opacity: .72; } 100% { opacity: 0; transform: skewX(-17deg) translateX(560%); } }
@keyframes member-progress-reveal { from { opacity: .45; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
@keyframes member-marker-reveal { from { opacity: 0; transform: translate(-50%,-50%) scale(.5); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.pass-topline, .balance-line, .passport-progress { position: relative; z-index: 1; }
.pass-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pass-topline img { width: 36px; height: 36px; object-fit: contain; }
.pass-topline span { color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.balance-line { display: flex; align-items: end; justify-content: space-between; margin-top: 10px; }
.balance-line > div { display: flex; align-items: baseline; gap: 8px; }
.balance-line strong { font: 500 43px/1 Playfair Display, Georgia, serif; }
.balance-line span { color: rgba(244,236,219,0.72); font-size: 11px; }
.balance-line button { min-height: 44px; padding: 0 14px; border: 1px solid rgba(213,179,108,0.52); border-radius: 999px; color: #e1c37f; background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; }
.passport-progress { margin-top: 18px; }
.progress-track { position: relative; display: block; height: 3px; border-radius: 99px; background: rgba(244,236,219,0.22); }
.progress-track i { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: #d5b36c; }
.progress-track b { position: absolute; top: 50%; width: 8px; height: 8px; transform: translate(-50%,-50%); border: 2px solid var(--navy); border-radius: 50%; background: #d5b36c; }
.passport-progress > div { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; color: rgba(244,236,219,0.64); font-size: 9px; }
.passport-progress > div small:last-child { max-width: 178px; text-align: right; }

.home-order-prompt { min-height: 94px; margin-top: 11px; padding: 15px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; border-radius: 16px; color: var(--cream); background: linear-gradient(105deg, #0a1f3d 0, #183b61 100%); box-shadow: 0 17px 32px -28px rgba(3,14,28,.9); }
.home-order-prompt span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home-order-prompt h3 { margin: 5px 0 0; overflow: hidden; color: #fffaf0; font: 500 16px/1.05 Playfair Display, Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.home-order-prompt p { max-width: 190px; margin: 5px 0 0; overflow: hidden; color: rgba(255,255,255,.62); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.home-order-prompt button { min-height: 44px; padding: 0 13px; display: inline-flex; align-items: center; gap: 7px; border: 0; border-radius: 999px; color: var(--navy); background: var(--gold); cursor: pointer; font-size: 10px; font-weight: 800; }
.home-order-prompt button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.home-section { margin-top: 22px; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 11px; }
.section-heading h3 { margin: 0; color: var(--navy); font: 500 20px/1.2 Playfair Display, Georgia, serif; }
.section-heading > div p { margin: 5px 0 0; color: #6b706c; font-size: 10px; line-height: 1.35; }
.section-heading button { min-height: 44px; border: 0; background: transparent; color: var(--gold-deep); cursor: pointer; font-size: 10px; font-weight: 700; }
.recommendation-scroll { margin-inline: -18px; padding: 0 18px 5px; display: grid; grid-auto-flow: column; grid-auto-columns: 258px; gap: 10px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
.recommendation-scroll::-webkit-scrollbar { display: none; }
.recommendation-card { height: 126px; position: relative; padding: 0; display: grid; grid-template-columns: 116px minmax(0,1fr); align-items: stretch; overflow: hidden; border: 1px solid var(--hairline); border-radius: 16px; background: #fffdf8; cursor: pointer; scroll-snap-align: start; text-align: left; }
.recommendation-card > img { width: 116px; height: 126px; display: block; object-fit: cover; background: var(--navy); }
.recommendation-card:nth-child(3) > img { object-fit: contain; padding: 9px; }
.recommendation-card > span { min-width: 0; padding: 15px 12px 12px; display: block; }
.recommendation-card small, .recommendation-card strong, .recommendation-card b { display: block; }
.recommendation-card small { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.recommendation-card strong { margin-top: 7px; overflow: hidden; color: var(--navy); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.recommendation-card b { margin-top: 7px; color: #666b67; font-size: 10px; font-weight: 600; white-space: nowrap; }
.recommendation-card > i { position: absolute; left: 64px; bottom: 9px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--cream); background: var(--navy); box-shadow: 0 8px 18px -12px rgba(3,14,28,.85); }
.recommendation-card > i svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.home-subscription-banner { width: 100%; min-height: 78px; margin-top: 13px; padding: 11px 13px; display: grid; grid-template-columns: 56px 1fr 22px; align-items: center; gap: 11px; border: 0; border-radius: 15px; color: #f7efe1; background: linear-gradient(110deg, #4b2d20 0, #6f4933 48%, #294c42 100%); cursor: pointer; text-align: left; box-shadow: 0 14px 28px -23px rgba(3,14,28,.9); }
.subscription-orbs { position: relative; width: 54px; height: 48px; display: block; }
.subscription-orbs i { position: absolute; top: 5px; width: 38px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 50%; }
.subscription-orbs i:first-child { left: 0; background: #80523a; }
.subscription-orbs i:last-child { right: 0; background: #698f79; }
.home-subscription-banner > span:nth-child(2) small, .home-subscription-banner strong, .home-subscription-banner b { display: block; }
.home-subscription-banner > span:nth-child(2) small { color: #e0c48b; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.home-subscription-banner strong { margin-top: 5px; font: 500 17px/1 Playfair Display, Georgia, serif; }
.home-subscription-banner b { margin-top: 5px; color: rgba(247,239,225,.66); font-size: 9px; font-weight: 600; }
.home-subscription-banner > svg { width: 20px; height: 20px; fill: none; stroke: #e0c48b; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.featured-pair { position: relative; min-height: 198px; overflow: hidden; border-radius: 16px; cursor: pointer; background: #07182d; box-shadow: 0 14px 30px -22px rgba(3,14,28,0.7); }
.featured-pair > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; }
.feature-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,19,37,0.95) 0, rgba(6,19,37,0.76) 48%, rgba(6,19,37,0.1) 100%); }
.feature-copy { position: relative; z-index: 1; width: 65%; padding: 25px 0 20px 20px; color: var(--cream); }
.feature-copy span { display: block; margin-top: 9px; color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.feature-copy h4 { margin: 0; font: 500 24px/1 Playfair Display, Georgia, serif; letter-spacing: -0.025em; }
.feature-copy p { margin: 8px 0 0; color: rgba(244,236,219,0.76); font-size: 10px; line-height: 1.45; }
.feature-arrow { position: absolute; z-index: 2; right: 16px; bottom: 16px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--cream); }
.feature-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.home-news { display: grid; gap: 9px; }
.home-news .section-heading { margin-bottom: 2px; }
.news-card { min-height: 122px; position: relative; padding: 15px 46px 15px 15px; display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 12px; overflow: hidden; border-radius: 16px; cursor: pointer; }
.news-card > svg { position: absolute; right: 15px; bottom: 15px; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.news-baer { color: #f7eadc; background: radial-gradient(circle at 90% 0, #8b5e47 0, #51352a 48%, #2b201c 100%); }
.news-date { width: 68px; height: 68px; display: grid; place-content: center; border: 1px solid rgba(247,234,220,.2); border-radius: 50%; text-align: center; }
.news-date span, .news-date b { display: block; }
.news-date span { color: #d9b58d; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-date b { margin-top: 5px; color: #fff6ed; font: 500 13px/1 Playfair Display, Georgia, serif; }
.news-copy small { display: block; color: #d9b58d; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-copy h4 { margin: 6px 0 0; color: inherit; font: 500 17px/1.05 Playfair Display, Georgia, serif; }
.news-copy p { margin: 7px 0 0; color: rgba(247,234,220,.68); font-size: 10px; line-height: 1.4; }
.news-passport { min-height: 132px; color: var(--navy); background: #eee6d7; }
.news-passport > img { width: 72px; height: 94px; object-fit: contain; }
.news-passport .news-copy small { color: var(--gold-deep); }
.news-passport .news-copy p { color: #676c68; }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.quick-actions button { min-height: 61px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--hairline); border-radius: 14px; background: transparent; cursor: pointer; text-align: left; }
.quick-actions svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.quick-actions strong, .quick-actions small { display: block; }
.quick-actions strong { color: var(--navy); font-size: 12px; }
.quick-actions small { margin-top: 3px; color: #666a66; font-size: 10px; }

.home-subscription-choice { margin-top: 22px; }
.home-subscription-choice > header { display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.home-subscription-choice h3 { margin: 0; color: var(--navy); font: 500 22px/1 Playfair Display, Georgia, serif; }
.home-subscription-choice header p { margin: 5px 0 0; color: #686d68; font-size: 11px; }
.home-subscription-choice header button { min-height: 44px; padding: 0; border: 0; color: var(--gold-deep); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.home-subscription-grid { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.home-subscription-option { min-height: 154px; position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 15px; color: #fffaf0; background: var(--navy); cursor: pointer; text-align: left; }
.home-subscription-option > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-subscription-option::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,16,28,.08) 15%, rgba(7,16,28,.9) 100%); }
.home-subscription-option.is-matcha::after { background: linear-gradient(180deg, rgba(18,45,35,.06) 10%, rgba(24,57,44,.94) 100%); }
.home-subscription-option > span { position: absolute; z-index: 1; right: 12px; bottom: 12px; left: 12px; }
.home-subscription-option strong, .home-subscription-option small, .home-subscription-option b { display: block; }
.home-subscription-option strong { font: 500 18px/1 Playfair Display, Georgia, serif; }
.home-subscription-option small { margin-top: 4px; color: rgba(255,250,240,.7); font-size: 10px; }
.home-subscription-option b { margin-top: 9px; display: flex; align-items: center; gap: 5px; color: #ead19a; font-size: 11px; }
.home-subscription-option b svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.home-subscription-choice > p { margin: 9px 2px 0; color: #777b76; font-size: 9px; line-height: 1.4; }
.home-news-teaser { width: 100%; min-height: 64px; margin-top: 18px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--hairline); border-radius: 14px; color: var(--navy); background: transparent; cursor: pointer; text-align: left; }
.home-news-teaser strong, .home-news-teaser small { display: block; }
.home-news-teaser strong { font: 500 16px/1 Playfair Display, Georgia, serif; }
.home-news-teaser small { margin-top: 4px; color: #6c716c; font-size: 10px; }
.home-news-teaser > svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }

.bottom-nav { position: relative; z-index: 3; right: auto; bottom: auto; left: auto; min-height: 67px; margin: 28px -8px 0; display: grid; grid-template-columns: 1fr 1fr 62px 1fr 1fr; align-items: center; border: 1px solid rgba(10,31,61,0.12); border-radius: 18px; background: #fffaf0; box-shadow: 0 16px 30px -22px rgba(3,14,28,0.75); }
.bottom-nav button { position: relative; height: 58px; border: 0; background: transparent; color: #979896; cursor: pointer; }
.bottom-nav button > svg { display: block; width: 20px; height: 20px; margin: 2px auto 4px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.bottom-nav span { display: block; font-size: 9px; font-weight: 600; }
.bottom-nav button.is-active { color: var(--navy); }
.bottom-nav .nav-order { width: 58px; height: 58px; transform: translateY(-12px); border-radius: 50%; color: var(--cream); background: var(--navy); box-shadow: 0 12px 20px -12px rgba(10,31,61,0.72); }
.bottom-nav .nav-order svg { margin: auto; }
.bottom-nav .nav-profile-bear { height: 62px; transform: translateY(-10px); }
.bottom-nav .nav-profile-bear .nav-baer-avatar { width: 48px; height: 48px; margin: 0 auto 1px; display: block; overflow: hidden; border: 2px solid #fff8eb; border-radius: 50%; background-color: #f5e7d6; background-repeat: no-repeat; background-position: center 36%; background-size: 280% auto; box-shadow: 0 10px 20px -13px rgba(10,31,61,.92), 0 0 0 1px rgba(10,31,61,.16); transition: background-image .25s ease, transform .25s var(--ease-out); }
.bottom-nav .nav-profile-bear span { color: #7b7d79; font-size: 9px; }
.bottom-nav .nav-profile-bear.is-active .nav-baer-avatar { border-color: var(--gold); box-shadow: 0 10px 22px -12px rgba(10,31,61,.9), 0 0 0 3px rgba(213,179,108,.2); transform: translateY(-1px); }
.bottom-nav .nav-profile-bear.is-active span { color: var(--navy); font-weight: 800; }
.bottom-nav-dark { border-color: rgba(255,255,255,.12); background: rgba(249,241,226,.97); }

.menu-header { display: flex; align-items: center; gap: 9px; padding-top: 42px; }
.menu-header > div:first-child { flex: 1; min-width: 0; }
.menu-header-actions { display: flex; align-items: center; gap: 7px; }
.menu-header-actions .round-icon { position: relative; flex: 0 0 auto; }
.menu-header > div { flex: 1; }
.location-inline { width: 100%; min-height: 49px; padding: 7px 11px; display: grid; grid-template-columns: 20px 1fr 16px; align-items: center; gap: 8px; border-radius: 14px; text-align: left; }
.round-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--hairline); border-radius: 50%; background: #fffdf8; cursor: pointer; }
.round-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.menu-search { min-height: 48px; margin-top: 10px; padding: 0 10px 0 13px; display: none; grid-template-columns: 19px 1fr 36px; align-items: center; gap: 8px; border: 1px solid var(--hairline); border-radius: 14px; background: #fffdf8; }
.menu-search.is-open { display: grid; }
.menu-search > svg, .menu-search button svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.menu-search input { min-width: 0; border: 0; outline: 0; color: var(--navy); background: transparent; font-size: 12px; }
.menu-search input::placeholder { color: #747874; opacity: 1; }
.menu-search button { width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.menu-mode { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); margin-top: 14px; border-bottom: 1px solid var(--hairline); }
.menu-mode button { min-height: 44px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #737673; cursor: pointer; font-size: 10px; font-weight: 700; }
.menu-mode button.is-active { border-bottom-color: var(--navy); color: var(--navy); }
.category-scroll { margin: 14px -18px 0; padding: 0 18px 4px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.category-scroll button { min-height: 44px; padding: 0 16px; flex: 0 0 auto; border: 1px solid var(--hairline); border-radius: 999px; background: #fffdf8; color: #666a66; cursor: pointer; font-size: 11px; font-weight: 700; }
.category-scroll button.is-active { border-color: var(--navy); color: var(--cream); background: var(--navy); }
.product-list { margin-top: 16px; }
.product-list-heading { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 9px; }
.product-list-heading h2 { margin: 0; color: var(--navy); font: 500 22px/1 Playfair Display, Georgia, serif; }
.product-list-heading span { color: #777a77; font-size: 10px; }
.product-row { min-height: 86px; display: grid; grid-template-columns: 58px minmax(0,1fr) auto 44px; align-items: center; gap: 11px; border-bottom: 1px solid var(--hairline); cursor: pointer; }
.product-row > img { width: 53px; height: 53px; object-fit: cover; border-radius: 12px; background: var(--navy); }
.product-row h3 { margin: 0; color: var(--navy); font: 500 14px/1.12 Playfair Display, Georgia, serif; }
.product-row p { margin: 5px 0 0; color: #747874; font-size: 10px; }
.product-row > strong { color: var(--gold-deep); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.product-row > button { width: 44px; height: 44px; border: 1px solid rgba(10,31,61,0.18); border-radius: 50%; color: var(--navy); background: transparent; cursor: pointer; font-size: 20px; line-height: 1; }
.product-row > button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.6; }
.product-empty { min-height: 235px; padding: 38px 22px; display: grid; place-items: center; align-content: center; text-align: center; }
.product-empty svg { width: 42px; height: 42px; margin-bottom: 14px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.product-empty h3 { margin: 0; color: var(--navy); font: 500 21px/1.1 Playfair Display, Georgia, serif; }
.product-empty p { max-width: 250px; margin: 10px 0 0; color: #676b67; font-size: 11px; line-height: 1.5; }

.screen-product { padding-bottom: 89px; background: var(--cream-2); }
.product-hero { position: relative; height: 39%; min-height: 250px; overflow: hidden; background: var(--navy); }
.product-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,19,37,0.18), transparent 32%, rgba(6,19,37,0.14)); pointer-events: none; }
.product-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.back-button, .favourite-button { position: absolute; z-index: 3; top: 35px; background: var(--cream-2); }
.back-button { left: 16px; }
.favourite-button { right: 16px; }
.favourite-button.is-active { color: var(--cream); background: var(--navy); }
.favourite-button.is-active svg { fill: currentColor; }
.product-config { padding: 20px 20px 30px; }
.product-label { color: var(--gold-deep); font-size: 8px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.product-title-line { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-top: 6px; }
.product-title-line h2 { flex: 1; margin: 0; color: var(--navy); font: 500 27px/0.98 Playfair Display, Georgia, serif; letter-spacing: -0.025em; }
.product-title-line strong { align-self: flex-start; padding-top: 4px; color: var(--gold-deep); font-size: 16px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.product-description { margin: 9px 0 0; color: #777a78; font-size: 11px; }
.gold-rule { display: flex; align-items: center; gap: 8px; margin: 20px 0; color: var(--gold); }
.gold-rule span { height: 1px; flex: 1; background: rgba(184,146,74,0.38); }
.gold-rule svg { width: 11px; height: 11px; fill: var(--gold); stroke: none; }
.option-group { margin: 0 0 20px; padding: 0; border: 0; }
.option-group legend { width: 100%; margin-bottom: 10px; color: var(--navy); font-size: 12px; font-weight: 700; }
.option-group legend small { float: right; color: #6f736f; font-size: 10px; font-weight: 500; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span { min-height: 44px; padding: 0 14px; display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--hairline); border-radius: 999px; color: #606460; background: transparent; font-size: 11px; }
.choice-grid input:checked + span { border-color: var(--navy); color: var(--cream); background: var(--navy); }
.choice-grid small { font-size: 9px; opacity: 0.76; }
.option-compact { padding-top: 3px; border-top: 1px solid var(--hairline); }
.option-compact legend { padding-top: 17px; }
.switch-row { min-height: 44px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.switch-row > span { color: var(--navy); font-size: 10px; font-weight: 600; }
.switch-row small { display: block; margin-top: 3px; color: #6f736f; font-size: 10px; font-weight: 500; }
.switch-row input { position: absolute; opacity: 0; }
.switch-row i { position: relative; width: 43px; height: 24px; border: 1px solid var(--hairline); border-radius: 999px; background: #deded9; transition: background 160ms ease; }
.switch-row i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: white; box-shadow: 0 2px 7px rgba(3,14,28,0.18); transition: transform 200ms var(--ease-out); }
.switch-row input:checked + i { background: var(--navy); }
.switch-row input:checked + i::after { transform: translateX(19px); }
.cart-bar { position: absolute; z-index: 20; right: 0; bottom: 0; left: 0; min-height: 82px; padding: 10px 14px 14px; display: grid; grid-template-columns: 96px 1fr; gap: 10px; border-top: 1px solid var(--hairline); background: var(--cream-2); }
.quantity-control { min-height: 48px; display: grid; grid-template-columns: 1fr 28px 1fr; place-items: center; border: 1px solid var(--hairline); border-radius: 999px; }
.quantity-control button { width: 100%; height: 100%; border: 0; background: transparent; cursor: pointer; font-size: 16px; }
.quantity-control span { color: var(--navy); font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }
.add-cart { min-height: 48px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.add-cart span { color: #d5b36c; }

.screen-rewards { padding: 0 18px 112px; color: #f3f5f5; background: radial-gradient(circle at 50% 5%, #27384c 0, var(--night) 41%, #090c10 100%); }
.screen-rewards::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); }
.rewards-header { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; padding-top: 36px; }
.rewards-header > img { justify-self: center; width: 54px; height: 54px; object-fit: contain; }
.dark-back, .dark-info { border-color: rgba(255,255,255,0.18); color: var(--cream); background: transparent; }
.rewards-copy { margin: 18px 2px 0; }
.rewards-copy h2 { margin: 0; color: #fff; font: italic 500 31px/1.08 Playfair Display, Georgia, serif; letter-spacing: -0.025em; }
.rewards-copy > span { display: inline-block; margin-top: 9px; color: rgba(255,255,255,0.58); font-size: 10px; }
.dark-pass { margin-top: 16px; padding: 17px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: linear-gradient(135deg, #171e27 0, #10151c 100%); box-shadow: 0 16px 32px -24px rgba(0,0,0,0.9); }
.dark-pass-top, .dark-pass-foot { display: flex; justify-content: space-between; gap: 15px; }
.dark-pass-top { color: rgba(255,255,255,0.62); font-size: 10px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.star-balance { margin: 16px 0 14px; display: flex; align-items: baseline; gap: 9px; }
.star-balance strong { font-size: 42px; line-height: 1; font-variant-numeric: tabular-nums; }
.star-balance span { color: #d5b36c; font-size: 10px; font-weight: 700; }
.teal-progress { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.08); box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); }
.teal-progress i { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: var(--teal); box-shadow: 0 0 13px rgba(66,211,178,0.44); }
.dark-pass-foot { margin-top: 9px; color: rgba(255,255,255,0.58); font-size: 9px; }
.reward-tabs { margin-top: 19px; padding: 4px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; }
.reward-tabs button { min-height: 44px; border: 0; border-radius: 999px; color: rgba(255,255,255,0.62); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.reward-tabs button.is-active { color: var(--night); background: #fff; }
.reward-list { margin-top: 14px; }
.reward-list article { min-height: 74px; display: grid; grid-template-columns: 39px 1fr auto 15px; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.reward-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; color: var(--night); background: #d5b36c; }
.reward-icon svg, .row-chevron { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.reward-list article > div:nth-child(2) span { display: block; margin-top: 5px; color: #d5b36c; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.reward-list h3 { margin: 0; font-size: 11px; font-weight: 600; }
.reward-list article > strong { padding: 7px 9px; display: inline-flex; align-items: center; gap: 4px; border-radius: 999px; color: #f0d498; background: #2a251c; font-size: 9px; white-space: nowrap; }
.reward-list article > strong svg { width: 11px; height: 11px; fill: currentColor; stroke: none; }
.row-chevron { width: 14px; opacity: 0.4; }
.reward-list .is-locked { opacity: 0.47; }
.reward-list .is-locked .reward-icon { color: rgba(255,255,255,0.55); background: #2a3038; }
.reward-cta { width: 100%; min-height: 48px; margin-top: 18px; border: 1px solid rgba(213,179,108,0.5); border-radius: 999px; color: #e0c27e; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }

.member-shortcuts { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.member-shortcuts button { min-height: 58px; padding: 9px 11px; display: grid; grid-template-columns: 26px 1fr; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: #fff; background: rgba(255,255,255,.035); cursor: pointer; text-align: left; }
.member-shortcuts svg { width: 22px; height: 22px; fill: none; stroke: #d5b36c; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.member-shortcuts strong, .member-shortcuts small { display: block; }
.member-shortcuts strong { font-size: 12px; }
.member-shortcuts small { margin-top: 4px; color: rgba(255,255,255,.56); font-size: 10px; }

.location-sheet, .cart-sheet { position: absolute; z-index: 80; inset: 0; display: none; }
.location-sheet.is-open, .cart-sheet.is-open { display: block; }
.sheet-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(4,12,23,0.6); cursor: pointer; }
.sheet-panel { position: absolute; right: 0; bottom: 0; left: 0; padding: 11px 18px 24px; border-radius: 18px 18px 0 0; color: var(--ink); background: var(--cream-2); animation: sheet-up 360ms var(--ease-out) both; }
@keyframes sheet-up { from { transform: translateY(24%); opacity: 0.7; } to { transform: translateY(0); opacity: 1; } }
.sheet-handle { width: 44px; height: 4px; margin: 0 auto 13px; border-radius: 99px; background: rgba(10,31,61,0.18); }
.sheet-heading { display: flex; align-items: center; justify-content: space-between; }
.sheet-heading h2 { margin: 0; color: var(--navy); font: 500 23px/1.1 Playfair Display, Georgia, serif; }
.sheet-heading button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: #ece7dd; cursor: pointer; font-size: 23px; font-weight: 300; }
.search-field { min-height: 44px; margin-top: 14px; padding: 0 12px; display: grid; grid-template-columns: 19px 1fr; align-items: center; gap: 8px; border: 1px solid var(--hairline); border-radius: 12px; background: white; }
.search-field svg { width: 17px; height: 17px; fill: none; stroke: #7a7d7a; stroke-linecap: round; stroke-width: 1.5; }
.search-field input { width: 100%; border: 0; outline: 0; color: var(--navy); background: transparent; font-size: 12px; }
.search-field input::placeholder { color: #8a8c89; opacity: 1; }
.store-row { width: 100%; min-height: 65px; padding: 9px 2px; display: flex; align-items: center; justify-content: space-between; border: 0; border-bottom: 1px solid var(--hairline); background: transparent; cursor: pointer; text-align: left; }
.store-row strong, .store-row small { display: block; }
.store-row strong { color: var(--navy); font-size: 12px; }
.store-row small { margin-top: 5px; color: #6e726e; font-size: 10px; }
.store-row i { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--hairline); border-radius: 50%; color: var(--cream); background: transparent; font-size: 10px; font-style: normal; }
.store-row i svg, .location-card > i svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.store-row.is-active i { border-color: var(--navy); background: var(--navy); }

.cart-count { position: absolute; top: -3px; right: -1px; min-width: 20px; height: 20px; padding: 0 4px; display: grid; place-items: center; border: 2px solid #fffaf0; border-radius: 999px; color: var(--navy); background: #d5b36c; font-size: 9px; font-style: normal; font-weight: 800; }
.cart-panel { padding-bottom: 28px; }
.cart-empty[hidden], .cart-filled[hidden], .cart-count[hidden] { display: none !important; }
.cart-empty { min-height: 245px; display: grid; justify-items: center; align-content: center; text-align: center; }
.cart-empty > svg { width: 46px; height: 46px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.cart-empty h3 { margin: 17px 0 0; color: var(--navy); font: 500 22px/1.1 Playfair Display, Georgia, serif; }
.cart-empty p { max-width: 255px; margin: 9px 0 18px; color: #666a66; font-size: 11px; line-height: 1.5; }
.cart-empty button, .checkout-button { min-height: 46px; padding: 0 20px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 700; }
.cart-filled { padding-top: 18px; }
.cart-line { min-height: 78px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid var(--hairline); }
.cart-line img { width: 54px; height: 54px; object-fit: cover; border-radius: 12px; }
.cart-line strong, .cart-line small { display: block; }
.cart-line strong { color: var(--navy); font: 500 14px/1.2 Playfair Display, Georgia, serif; }
.cart-line small { margin-top: 5px; color: #6d716d; font-size: 10px; }
.cart-line b, .cart-total strong { color: var(--gold-deep); font-size: 12px; }
.cart-total { min-height: 64px; display: flex; align-items: center; justify-content: space-between; }
.cart-total span { color: var(--navy); font-size: 12px; font-weight: 700; }
.checkout-button { width: 100%; }

/* Complete app flow */
.screen-rail { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.screen-tab { min-height: 56px; padding: 9px 7px; }
.screen-tab span { margin-bottom: 5px; }
.reward-open { cursor: pointer; }

.subpage-header {
  min-height: 94px;
  padding: 30px 18px 13px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--hairline);
}
.subpage-header .round-icon { width: 44px; height: 44px; }
.subpage-header h2 { margin: 0; color: var(--navy); font: 500 24px/1.05 Playfair Display, Georgia, serif; }
.subpage-header p { margin: 5px 0 0; color: #656a67; font-size: 12px; line-height: 1.35; }
.subpage-header svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.screen-checkout { padding: 0 18px 30px; }
.screen-checkout .subpage-header, .screen-history .subpage-header, .screen-favourites .subpage-header, .screen-locations .subpage-header { margin: 0 -18px; }
.checkout-progress { margin: 18px 4px 0; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 8px; color: #7b7f7b; font-size: 11px; font-weight: 700; }
.checkout-progress span { display: grid; justify-items: center; gap: 6px; }
.checkout-progress i { width: 11px; height: 11px; border: 2px solid #b7b8b3; border-radius: 50%; background: var(--cream-2); }
.checkout-progress b { height: 1px; margin-bottom: 22px; background: #d7d3ca; }
.checkout-progress .is-done, .checkout-progress .is-active { color: var(--navy); }
.checkout-progress .is-done i, .checkout-progress .is-active i { border-color: var(--gold-deep); background: var(--gold); }
.checkout-progress .is-done + b { background: var(--gold); }
.checkout-section { margin: 23px 0 0; padding: 0; border: 0; }
.checkout-heading { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.checkout-heading h3, .pickup-time legend { margin: 0; color: var(--navy); font: 500 19px/1.1 Playfair Display, Georgia, serif; }
.checkout-heading button { min-width: 44px; min-height: 44px; border: 0; color: var(--gold-deep); background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.pickup-store { width: 100%; min-height: 76px; padding: 11px 12px; display: grid; grid-template-columns: 38px 1fr 18px; align-items: center; gap: 11px; border: 1px solid var(--hairline); border-radius: 14px; background: #fffdf8; cursor: pointer; text-align: left; }
.pickup-store > svg:first-child { width: 22px; height: 22px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.pickup-store strong, .pickup-store small { display: block; }
.pickup-store strong { color: var(--navy); font-size: 13px; }
.pickup-store small { margin-top: 5px; color: #686d69; font-size: 11px; }
.pickup-store .row-chevron { color: var(--navy); opacity: 0.55; }
.pickup-time legend { width: 100%; margin-bottom: 8px; }
.pickup-time label { min-height: 68px; display: grid; grid-template-columns: 1fr 22px; align-items: center; gap: 12px; border-bottom: 1px solid var(--hairline); cursor: pointer; }
.pickup-time input { position: absolute; opacity: 0; }
.pickup-time strong, .pickup-time small { display: block; }
.pickup-time strong { color: var(--navy); font-size: 12px; }
.pickup-time small { margin-top: 5px; color: #6c716d; font-size: 11px; line-height: 1.35; }
.pickup-time i { width: 22px; height: 22px; border: 1px solid rgba(10,31,61,.28); border-radius: 50%; }
.pickup-time input:checked ~ i { border: 6px solid var(--navy); background: var(--cream); }
.checkout-product { min-height: 76px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 11px; border-bottom: 1px solid var(--hairline); }
.checkout-product img { width: 50px; height: 50px; object-fit: cover; border-radius: 12px; }
.checkout-product strong, .checkout-product small { display: block; }
.checkout-product strong { color: var(--navy); font: 500 13px/1.2 Playfair Display, Georgia, serif; }
.checkout-product small { margin-top: 5px; color: #6a6f6b; font-size: 11px; }
.checkout-product b { color: var(--gold-deep); font-size: 12px; }
.checkout-total { min-height: 50px; display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-size: 13px; font-weight: 700; }
.checkout-total strong { color: var(--gold-deep); font-size: 15px; }
.checkout-reward-note { margin-top: 18px; padding: 13px; display: grid; grid-template-columns: 26px 1fr; gap: 10px; border-radius: 14px; color: #f4ecdb; background: var(--navy); }
.checkout-reward-note svg { width: 23px; height: 23px; fill: none; stroke: #d5b36c; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.checkout-reward-note p { margin: 0; }
.checkout-reward-note strong, .checkout-reward-note span { display: block; }
.checkout-reward-note strong { color: #f4ecdb; font-size: 12px; }
.checkout-reward-note span { margin-top: 4px; color: rgba(244,236,219,.7); font-size: 11px; line-height: 1.4; }
.checkout-submit { width: 100%; min-height: 52px; margin-top: 18px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 14px 28px -18px rgba(3,14,28,.7); }
.checkout-submit span { color: #d5b36c; }
.demo-disclaimer { margin: 10px 0 0; color: #747976; font-size: 9px; line-height: 1.3; text-align: center; }

.screen-order { padding: 0 20px 30px; color: var(--cream); background: radial-gradient(circle at 50% 0, #1b3b64 0, var(--navy) 42%, #06162b 100%); }
.order-brand { min-height: 93px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.order-brand img { width: 58px; height: 58px; object-fit: contain; }
.order-brand .round-icon { width: 44px; height: 44px; }
.order-hero { text-align: center; }
.order-cookie-mark { width: 76px; height: 76px; margin: 0 auto 14px; display: grid; place-items: center; border: 1px solid rgba(213,179,108,.5); border-radius: 50%; color: #d5b36c; }
.order-cookie-mark svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }
.order-hero > span { display: block; margin-top: 11px; color: #d5b36c; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.order-hero h2 { margin: 0; color: #fbf7ee; font: 500 32px/.98 Playfair Display, Georgia, serif; letter-spacing: -.025em; }
.order-hero p { max-width: 310px; margin: 13px auto 0; color: rgba(244,236,219,.68); font-size: 12px; line-height: 1.52; }
.order-timeline { margin: 25px 4px 0; padding: 0; list-style: none; }
.order-timeline li { min-height: 70px; position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 13px; }
.order-timeline li:not(:last-child)::after { content: ""; position: absolute; top: 29px; bottom: -2px; left: 14px; width: 1px; background: rgba(255,255,255,.18); }
.order-timeline i { position: relative; z-index: 1; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: #0c2544; }
.order-timeline i svg { width: 17px; height: 17px; margin: 5px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.order-timeline .is-complete i { border-color: #d5b36c; background: #d5b36c; }
.order-timeline .is-current i { border: 7px solid #42d3b2; box-shadow: 0 0 16px rgba(66,211,178,.26); }
.order-timeline strong, .order-timeline small { display: block; }
.order-timeline strong { color: #fff; font-size: 13px; }
.order-timeline small { margin-top: 5px; color: rgba(244,236,219,.58); font-size: 11px; }
.order-pickup-card { min-height: 76px; margin-top: 4px; padding: 12px 13px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(4,18,34,.45); }
.order-pickup-card small, .order-pickup-card strong { display: block; }
.order-pickup-card small { color: #d5b36c; font-size: 11px; }
.order-pickup-card strong { margin-top: 5px; color: #fff; font-size: 13px; }
.order-pickup-card button { min-height: 44px; padding: 0 13px; border: 1px solid rgba(213,179,108,.45); border-radius: 999px; color: #e5c983; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.order-actions { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.order-actions button { min-height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--cream); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.order-actions button:first-child { border-color: #fff; color: var(--navy); background: #fff; }

.screen-reward-detail { padding: 0 18px 34px; color: #fff; background: radial-gradient(circle at 50% 0, #283847 0, #0e1116 48%, #080a0d 100%); }
.dark-subpage { margin: 0 -18px; border-bottom-color: rgba(255,255,255,.1); }
.dark-subpage h2 { color: #fff; }
.dark-subpage p { color: rgba(255,255,255,.58); }
.reward-ticket { margin-top: 20px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: #151a21; box-shadow: 0 18px 38px -26px #000; }
.ticket-crest { display: flex; justify-content: flex-end; }
.ticket-crest img { width: 50px; height: 50px; object-fit: contain; }
.ticket-copy { margin-top: -28px; }
.ticket-copy > span { display: block; margin-top: 10px; color: #d5b36c; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ticket-copy h2 { margin: 0; color: #fff; font: 500 31px/.98 Playfair Display, Georgia, serif; }
.ticket-copy p { max-width: 275px; margin: 12px 0 0; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.45; }
.ticket-stars { margin: 27px 0 12px; display: flex; align-items: baseline; gap: 8px; }
.ticket-stars strong { font-size: 36px; }
.ticket-stars span { color: #d5b36c; font-size: 11px; font-weight: 700; }
.reward-ticket > small { display: block; margin-top: 10px; color: rgba(255,255,255,.55); font-size: 11px; }
.reward-terms { margin-top: 24px; }
.reward-terms h3 { margin: 0 0 8px; color: #fff; font: 500 20px/1.1 Playfair Display, Georgia, serif; }
.reward-terms > div { min-height: 68px; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.reward-terms > div > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #d5b36c; background: #2b251c; font-size: 11px; font-weight: 800; }
.reward-terms p { margin: 0; }
.reward-terms strong, .reward-terms small { display: block; }
.reward-terms strong { color: #fff; font-size: 12px; }
.reward-terms small { margin-top: 4px; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.35; }
.reward-redeem { width: 100%; min-height: 48px; margin-top: 20px; border: 1px solid rgba(213,179,108,.35); border-radius: 999px; color: rgba(213,179,108,.55); background: transparent; font-size: 11px; font-weight: 700; }

.screen-membership, .screen-membership-upgrade, .screen-membership-review { padding: 0 18px 38px; }
.membership-hero { min-height: 258px; position: relative; margin-top: 18px; padding: 18px; overflow: hidden; border-radius: 18px; color: var(--cream); background: radial-gradient(circle at 88% 0, #a56e4a 0, #6f402d 46%, #30221d 100%); box-shadow: 0 18px 36px -27px rgba(3,14,28,.9); transition: background 260ms ease; }
.membership-hero[data-current-theme="gold"] { background: radial-gradient(circle at 88% 0, #d7b965 0, #765923 46%, #172238 100%); }
.membership-hero[data-current-theme="black"] { background: radial-gradient(circle at 88% 0, #424850 0, #171b21 45%, #080a0d 100%); }
.membership-hero::after { content: ""; position: absolute; top: -68px; right: -63px; width: 190px; height: 190px; border: 1px solid rgba(213,179,108,.28); border-radius: 50%; box-shadow: 0 0 0 18px rgba(213,179,108,.055), 0 0 0 42px rgba(213,179,108,.035); }
.membership-hero-top, .membership-hero-copy, .membership-hero-actions { position: relative; z-index: 2; }
.membership-hero-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.membership-hero-top img { width: 42px; height: 42px; object-fit: contain; }
.membership-hero-art { position: absolute; z-index: 1; top: 34px; right: -3px; width: 176px; height: 176px; display: block; border-radius: 50%; background-repeat: no-repeat; background-position: center 36%; background-size: 280% auto; filter: drop-shadow(0 18px 20px rgba(18,9,5,.32)); pointer-events: none; will-change: transform, opacity; }
.membership-hero-copy { width: 59%; min-width: 0; margin-top: 22px; }
.membership-hero-copy small { color: rgba(244,236,219,.66); font-size: 10px; }
.membership-hero-copy h2 { margin: 5px 0 0; color: #fff; font: italic 500 30px/1.05 Playfair Display, Georgia, serif; }
.membership-hero-copy p { margin: 7px 0 0; color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.membership-hero-actions { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.membership-hero-actions button { min-height: 45px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: var(--cream); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.membership-hero-actions button:first-child { border-color: var(--cream); color: var(--navy); background: var(--cream); }
.membership-progress { margin-top: 17px; padding: 15px; border: 1px solid var(--hairline); border-radius: 15px; background: #fffdf8; }
.membership-progress > div { display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-size: 12px; }
.membership-progress > i { height: 6px; margin-top: 11px; display: block; overflow: hidden; border-radius: 999px; background: #e3dfd6; }
.membership-progress > i b { width: var(--progress); height: 100%; display: block; border-radius: inherit; background: var(--gold); }
.membership-progress p { margin: 9px 0 0; overflow: hidden; color: #686d69; font-size: 10px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.baer-membership-card { height: 112px; margin-top: 20px; padding: 0 14px 0 0; display: grid; grid-template-columns: 96px minmax(0,1fr) 24px; align-items: center; gap: 12px; overflow: hidden; border-radius: 15px; color: #f5e9dc; background: linear-gradient(135deg, #3f2922 0, #6a4534 56%, #2d201c 100%); cursor: pointer; box-shadow: 0 14px 30px -24px rgba(47,28,21,.9); }
.baer-membership-image { width: 96px; height: 112px; display: block; background-color: rgba(255,255,255,.04); background-repeat: no-repeat; background-position: center 36%; background-size: 280% auto; }
.baer-membership-card span { color: #d8b78f; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.baer-membership-card h3 { margin: 4px 0 0; color: #fff8f0; font: 500 19px/1 Playfair Display, Georgia, serif; }
.baer-membership-card p { margin: 5px 0 0; overflow: hidden; color: rgba(245,233,220,.66); font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.baer-card-arrow { width: 21px; height: 21px; fill: none; stroke: #d8b78f; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.membership-section-heading { margin-top: 23px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.membership-section-heading h3 { margin: 0; color: var(--navy); font: 500 20px/1.1 Playfair Display, Georgia, serif; }
.membership-section-heading p { margin: 5px 0 0; color: #6c716d; font-size: 10px; line-height: 1.35; }
.membership-section-heading > span { color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tier-stack { margin-top: 13px; display: grid; grid-auto-rows: 118px; gap: 9px; }
.tier-card { height: 118px; padding: 0 12px 0 0; display: grid; grid-template-columns: 78px minmax(0,1fr) auto; align-items: center; gap: 10px; overflow: hidden; border: 1px solid var(--hairline); border-radius: 15px; background: #fffdf8; }
.tier-card.is-current { border-color: var(--gold); background: #f1eee6; box-shadow: inset 0 0 0 1px rgba(184,146,74,.35); }
.tier-card[data-membership-card-tier="Bronze Member"] { border-color: #cfaa8e; background: linear-gradient(135deg, #f5e7dc 0, #ead0bd 100%); }
.tier-card[data-membership-card-tier="Bronze Member"] .tier-visual b { color: #fff8f0; background: #9a6747; }
.tier-card.tier-gold { border-color: #d7b75e; background: linear-gradient(135deg, #fff7dd 0, #f0d889 100%); }
.tier-card.tier-gold .tier-visual b { color: #3d3117; background: #d8b65b; }
.tier-card.tier-gold button { border-color: #6f531d; color: #fff8e8; background: #6f531d; }
.tier-visual { width: 78px; height: 118px; position: relative; align-self: stretch; overflow: hidden; background: rgba(255,255,255,.18); }
.tier-visual i { width: 100%; height: 100%; display: block; background-repeat: no-repeat; background-position: center 36%; background-size: 280% auto; }
.tier-visual b { position: absolute; top: 9px; left: 9px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-deep); background: #efe6d1; font-size: 10px; font-weight: 800; }
.tier-card span { color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tier-card > div:nth-child(2) { min-width: 0; }
.tier-card h3 { margin: 4px 0 0; overflow: hidden; color: var(--navy); font: 500 15px/1.1 Playfair Display, Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.tier-card p { max-width: 205px; margin: 5px 0 0; overflow: hidden; color: #686d69; font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.tier-card button { min-width: 68px; min-height: 44px; padding: 0 9px; border: 1px solid var(--navy); border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 10px; font-weight: 700; }
.tier-card button:disabled { border-color: var(--hairline); color: #7b7e7b; background: transparent; cursor: default; }
.tier-black { color: #fff; background: #11161d; }
.tier-black.is-current { background: #11161d; box-shadow: inset 0 0 0 1px rgba(213,179,108,.56); }
.tier-black h3 { color: #fff; }
.tier-black p { color: rgba(255,255,255,.58); }
.tier-black button { border-color: #d5b36c; color: #e4c77f; background: transparent; }
.membership-disclaimer { margin: 16px 2px 0; color: #727672; font-size: 10px; line-height: 1.5; }

.upgrade-tier-switch { margin-top: 18px; padding: 4px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--hairline); border-radius: 999px; }
.upgrade-tier-switch button { min-height: 44px; border: 0; border-radius: 999px; color: #6b6f6b; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.upgrade-tier-switch button.is-active { color: var(--cream); background: var(--navy); }
.upgrade-tier-switch[data-upgrade-theme="gold"] button.is-active { color: #30250f; background: #d8b65b; }
.upgrade-tier-switch[data-upgrade-theme="black"] button.is-active { color: #f5e9da; background: #11161d; }
.upgrade-card { position: relative; min-height: 250px; margin-top: 15px; padding: 18px; overflow: hidden; border-radius: 18px; color: var(--cream); background: radial-gradient(circle at 80% 0, #5d4927 0, #172a43 42%, #07182d 100%); box-shadow: 0 20px 42px -30px rgba(3,14,28,.95); transition: background 240ms ease; }
.upgrade-card[data-upgrade-theme="black"] { background: radial-gradient(circle at 82% 0, #373b42 0, #15191f 40%, #080a0d 100%); }
.upgrade-card::after { content: ""; position: absolute; right: -70px; bottom: -92px; width: 240px; height: 240px; border: 1px solid rgba(213,179,108,.22); border-radius: 50%; box-shadow: 0 0 0 24px rgba(213,179,108,.04), 0 0 0 54px rgba(213,179,108,.025); }
.upgrade-card-brand, .upgrade-card-copy, .upgrade-card-id { position: relative; z-index: 2; }
.upgrade-card-brand { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.upgrade-card-brand img { width: 48px; height: 48px; object-fit: contain; }
.upgrade-card-bear { position: absolute; z-index: 1; top: 35px; right: -2px; width: 174px; height: 174px; display: block; border-radius: 50%; background-repeat: no-repeat; background-position: center 36%; background-size: 280% auto; filter: drop-shadow(0 18px 20px rgba(4,8,13,.38)); pointer-events: none; will-change: transform, opacity; }
.upgrade-card-copy { width: 60%; min-width: 0; margin-top: 27px; }
.upgrade-card-copy > span { color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.upgrade-card-copy h2 { margin: 7px 0 0; color: #fff; font: italic 500 34px/1 Playfair Display, Georgia, serif; }
.upgrade-card-copy p { max-width: 290px; margin: 11px 0 0; color: rgba(244,236,219,.68); font-size: 11px; line-height: 1.45; }
.upgrade-card-id { margin-top: 21px; display: flex; justify-content: space-between; gap: 12px; color: rgba(244,236,219,.55); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.upgrade-benefits ul { margin: 12px 0 0; padding: 0; list-style: none; }
.upgrade-benefits li { min-height: 66px; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px; border-bottom: 1px solid var(--hairline); }
.upgrade-benefits li > i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #eee2c8; }
.upgrade-benefits li svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.upgrade-benefits strong, .upgrade-benefits small { display: block; }
.upgrade-benefits strong { color: var(--navy); font-size: 12px; }
.upgrade-benefits small { margin-top: 4px; color: #6b706c; font-size: 10px; }
.upgrade-pricing-note { margin-top: 17px; padding: 13px; display: grid; grid-template-columns: 25px 1fr; gap: 10px; border-radius: 13px; color: var(--navy); background: #eee7d8; }
.upgrade-pricing-note svg { width: 21px; height: 21px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.upgrade-pricing-note strong, .upgrade-pricing-note span { display: block; }
.upgrade-pricing-note strong { font-size: 11px; }
.upgrade-pricing-note span { margin-top: 4px; color: #656a66; font-size: 10px; line-height: 1.4; }
.membership-primary, .membership-secondary { width: 100%; min-height: 49px; border-radius: 999px; cursor: pointer; font-size: 11px; font-weight: 700; }
.membership-primary { margin-top: 18px; border: 0; color: var(--cream); background: var(--navy); }
.membership-secondary { margin-top: 8px; border: 1px solid var(--hairline); color: var(--navy); background: transparent; }

.review-stepper { margin-top: 20px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 8px; color: #92958f; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.review-stepper i { height: 1px; background: #d5d1c8; }
.review-stepper .is-done, .review-stepper .is-active { color: var(--gold-deep); }
.review-membership-card { margin-top: 24px; padding: 19px; border-radius: 16px; color: var(--cream); background: radial-gradient(circle at 90% 0, #294c72 0, var(--navy) 55%, #07182d 100%); }
.review-membership-card > span { color: #d5b36c; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.review-membership-card h2 { margin: 9px 0 0; color: #fff; font: italic 500 30px/1 Playfair Display, Georgia, serif; }
.review-membership-card p { margin: 12px 0 0; color: rgba(244,236,219,.65); font-size: 10px; line-height: 1.45; }
.review-summary { margin-top: 22px; }
.review-summary h3 { margin: 0 0 7px; color: var(--navy); font: 500 20px/1.1 Playfair Display, Georgia, serif; }
.review-summary > div { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--hairline); color: #686d69; font-size: 11px; }
.review-summary strong { color: var(--navy); font-size: 11px; text-align: right; }
.review-consent { margin-top: 18px; padding: 13px; display: grid; grid-template-columns: 26px 1fr; align-items: start; gap: 10px; border: 1px solid var(--hairline); border-radius: 13px; cursor: pointer; }
.review-consent input { position: absolute; opacity: 0; pointer-events: none; }
.review-consent > i { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--navy); border-radius: 7px; color: var(--cream); background: var(--navy); }
.review-consent input:not(:checked) + i { color: transparent; background: transparent; }
.review-consent input:focus-visible + i { outline: 3px solid #d5b36c; outline-offset: 3px; }
.review-consent svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.review-consent strong, .review-consent small { display: block; }
.review-consent strong { color: var(--navy); font-size: 11px; }
.review-consent small { margin-top: 5px; color: #6a6f6a; font-size: 10px; line-height: 1.4; }

.screen-membership-success { min-height: 100%; padding: 0 26px 30px; color: var(--cream); background: radial-gradient(circle at 50% 17%, #274a70 0, var(--navy) 45%, #061325 100%); text-align: center; }
.success-brand { display: flex; justify-content: center; padding-top: 42px; }
.success-brand img { width: 66px; height: 66px; object-fit: contain; }
.success-orbit { width: 142px; height: 142px; margin: 48px auto 0; display: grid; place-items: center; border: 1px solid rgba(213,179,108,.28); border-radius: 50%; box-shadow: 0 0 0 18px rgba(213,179,108,.055), 0 0 0 42px rgba(213,179,108,.025); }
.success-orbit span { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #d5b36c; box-shadow: 0 13px 32px -18px rgba(0,0,0,.8); }
.success-orbit svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.success-copy { margin-top: 48px; }
.success-copy > span { color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.success-copy h2 { margin: 10px 0 0; color: #fff; font: 500 34px/.98 Playfair Display, Georgia, serif; }
.success-copy h2 b { color: #d5b36c; font-weight: 500; }
.success-copy p { max-width: 310px; margin: 18px auto 0; color: rgba(244,236,219,.66); font-size: 11px; line-height: 1.55; }
.success-actions { margin-top: 35px; display: grid; gap: 9px; }
.success-actions button { min-height: 49px; border: 1px solid rgba(244,236,219,.32); border-radius: 999px; color: var(--cream); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.success-actions button:first-child { border-color: var(--cream); color: var(--navy); background: var(--cream); }

.screen-member-pass { min-height: 100%; padding: 0 18px 34px; color: var(--cream); background: radial-gradient(circle at 50% 0, #283b50 0, #10151c 43%, #080a0d 100%); }
.screen-member-pass::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); }
.member-pass-header { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; padding-top: 36px; }
.member-pass-header > img { justify-self: center; width: 54px; height: 54px; object-fit: contain; }
.member-code-copy { margin-top: 20px; text-align: center; }
.member-code-copy > span { color: #d5b36c; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.member-code-copy h2 { margin: 7px 0 0; color: #fff; font: italic 500 34px/.95 Playfair Display, Georgia, serif; }
.member-code-copy p { max-width: 290px; margin: 12px auto 0; color: rgba(244,236,219,.62); font-size: 11px; line-height: 1.45; }
.member-code-card { margin-top: 20px; padding: 14px 16px 16px; border-radius: 20px; color: var(--navy); background: #fffaf0; box-shadow: 0 22px 46px -28px #000; }
.screen-member-pass[data-member-tier-theme="bronze"] .member-code-card { background: #f2dfd0; }
.screen-member-pass[data-member-tier-theme="gold"] .member-code-card { background: #f3dda0; }
.screen-member-pass[data-member-tier-theme="black"] .member-code-card { color: #f7efe2; background: #171b21; }
.screen-member-pass[data-member-tier-theme="black"] .member-code-meta small,
.screen-member-pass[data-member-tier-theme="black"] .member-code-id span { color: #d8b768; }
.screen-member-pass[data-member-tier-theme="black"] .member-code-timer { border-top-color: rgba(255,255,255,.12); color: #d7e8df; }
.member-code-identity { min-height: 104px; display: grid; grid-template-columns: 1fr 88px; align-items: center; gap: 12px; border-bottom: 1px solid rgba(10,31,61,.1); }
.screen-member-pass[data-member-tier-theme="black"] .member-code-identity { border-bottom-color: rgba(255,255,255,.12); }
.member-code-meta { min-width: 0; display: block; }
.member-code-meta span, .member-code-meta strong, .member-code-meta small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-code-meta span { font: 500 16px/1 Playfair Display, Georgia, serif; }
.member-code-meta strong { margin-top: 6px; font-size: 11px; }
.member-code-meta small { margin-top: 5px; color: var(--gold-deep); font-size: 9px; font-weight: 700; }
.member-pass-bear { width: 88px; height: 98px; display: block; justify-self: end; align-self: end; border-radius: 14px 14px 0 0; background-color: rgba(255,255,255,.18); background-repeat: no-repeat; background-position: center 42%; background-size: 154% auto; box-shadow: inset 0 0 0 1px rgba(10,31,61,.08); will-change: transform, opacity; }
.screen-member-pass[data-member-tier-theme="black"] .member-pass-bear { background-color: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.qr-stage { width: min(244px, 100%); aspect-ratio: 1; margin: 13px auto 0; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(10,31,61,.1); border-radius: 18px; background: #fff; }
.qr-code { width: 100%; height: 100%; transition: transform 360ms var(--ease-out), opacity 180ms ease; }
.member-code-card.is-refreshing .qr-code { transform: scale(.93) rotate(-2deg); opacity: .58; }
.member-code-id { margin-top: 13px; display: flex; justify-content: space-between; gap: 12px; font-size: 10px; }
.member-code-id span { color: #6a6f6a; }
.member-code-id strong { letter-spacing: .09em; }
.member-subscription-state { margin-top: 11px; padding: 10px; display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 9px; border-radius: 11px; color: var(--navy); background: rgba(10,31,61,.065); }
.member-subscription-state > i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #6e531f; background: #e4cd91; }
.member-subscription-state svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.member-subscription-state small, .member-subscription-state strong { display: block; }
.member-subscription-state small { color: #777a75; font-size: 9px; font-weight: 700; }
.member-subscription-state strong { margin-top: 3px; font-size: 10px; }
.screen-member-pass[data-member-tier-theme="black"] .member-subscription-state { color: #f7efe2; background: rgba(255,255,255,.075); }
.screen-member-pass[data-member-tier-theme="black"] .member-subscription-state small { color: #d8b768; }
.member-code-timer { margin-top: 12px; padding-top: 12px; display: flex; align-items: center; justify-content: center; gap: 7px; border-top: 1px solid var(--hairline); color: #4e635b; font-size: 10px; font-weight: 700; }
.member-code-timer i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(66,211,178,.14); }
.refresh-code { width: 100%; min-height: 48px; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(213,179,108,.46); border-radius: 999px; color: #e3c57e; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.refresh-code svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.qr-disclaimer { max-width: 330px; margin: 12px auto 0; color: rgba(244,236,219,.52); font-size: 9px; line-height: 1.45; text-align: center; }
.member-pass-links { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.member-pass-links button { min-height: 44px; border: 0; border-radius: 999px; color: rgba(244,236,219,.7); background: rgba(255,255,255,.06); cursor: pointer; font-size: 10px; font-weight: 700; }

.screen-baer-studio { min-height: 100%; padding: 0 18px 38px; color: #3a2721; background: #f4eadf; }
.baer-header { min-height: 94px; padding-top: 22px; display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 10px; }
.baer-header > span { color: #805941; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.baer-back, .baer-info { border-color: rgba(74,45,35,.18); color: #4a3027; background: rgba(255,255,255,.32); }
.baer-hero { min-height: 296px; position: relative; padding: 28px 22px; overflow: hidden; border-radius: 20px; color: #f7eadc; background: radial-gradient(circle at 82% 13%, #8b5e47 0, #51352a 43%, #2b201c 100%); box-shadow: 0 20px 42px -29px rgba(47,27,21,.88); }
.baer-hero::after { content: ""; position: absolute; right: -92px; bottom: -128px; width: 300px; height: 300px; border: 1px solid rgba(225,191,151,.18); border-radius: 50%; box-shadow: 0 0 0 26px rgba(225,191,151,.035), 0 0 0 60px rgba(225,191,151,.022); }
.baer-orbit { position: absolute; z-index: 1; top: 22px; right: 20px; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(225,191,151,.2); border-radius: 50%; background: rgba(255,255,255,.035); }
.baer-orbit svg { width: 58px; height: 58px; fill: none; stroke: #d9b58d; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.baer-hero > span, .baer-hero h2, .baer-hero p { position: relative; z-index: 2; }
.baer-hero > span { color: #d9b58d; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.baer-hero h2 { margin: 52px 0 0; color: #fff6ed; font: italic 500 48px/.84 Playfair Display, Georgia, serif; letter-spacing: -.04em; }
.baer-hero p { max-width: 270px; margin: 18px 0 0; color: rgba(247,234,220,.68); font-size: 11px; line-height: 1.5; }
.baer-access-card { min-height: 112px; margin-top: 14px; padding: 15px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; border: 1px solid rgba(87,56,43,.15); border-radius: 16px; background: rgba(255,255,255,.46); }
.baer-access-card > div > span { color: #9a6d4f; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.baer-access-card h3 { margin: 6px 0 0; color: #3a2721; font: 500 17px/1.1 Playfair Display, Georgia, serif; }
.baer-access-card h3 b { font-weight: 500; }
.baer-access-card p { max-width: 220px; margin: 7px 0 0; color: #765f54; font-size: 10px; line-height: 1.4; }
.baer-access-card button { min-height: 44px; padding: 0 13px; border: 0; border-radius: 999px; color: #f7eadc; background: #4a3027; cursor: pointer; font-size: 10px; font-weight: 700; }
.baer-content { margin-top: 24px; }
.baer-section-title { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.baer-section-title h3 { margin: 0; color: #3a2721; font: 500 22px/1 Playfair Display, Georgia, serif; }
.baer-section-title span { color: #9a6d4f; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.baer-module-grid { margin-top: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.baer-module-grid button { min-height: 92px; padding: 13px; display: grid; grid-template-columns: 29px 1fr; align-items: center; gap: 9px; border: 1px solid rgba(87,56,43,.14); border-radius: 15px; color: #3a2721; background: rgba(255,255,255,.38); cursor: pointer; text-align: left; }
.baer-module-grid svg { width: 24px; height: 24px; fill: none; stroke: #9b6a4e; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.baer-module-grid strong, .baer-module-grid small { display: block; }
.baer-module-grid strong { font-size: 12px; }
.baer-module-grid small { margin-top: 5px; color: #816c61; font-size: 9px; }
.baer-live-note { margin-top: 17px; padding: 14px; border-top: 1px solid rgba(87,56,43,.16); border-bottom: 1px solid rgba(87,56,43,.16); }
.baer-live-note span { color: #9a6d4f; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.baer-live-note p { margin: 7px 0 0; color: #765f54; font-size: 10px; line-height: 1.5; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-baer-studio {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #f8eee4;
}
.screen-baer-studio.app-screen.is-active { display: grid; place-items: center; }
.baer-studio-stage {
  position: relative;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 860 / 1864;
  overflow: hidden;
  background: #f8eee4;
}
.baer-studio-brand-overlay,
.baer-studio-claim-overlay {
  position: absolute;
  z-index: 4;
  right: 13%;
  left: 13%;
  overflow: hidden;
  color: #2f211b;
  background: #f8eee4;
  white-space: nowrap;
}
.baer-studio-brand-overlay {
  top: 4.35%;
  min-height: 4.65%;
  padding: 2px 4px;
  border: 0;
  cursor: pointer;
  text-align: center;
}
.baer-studio-brand-overlay span,
.baer-studio-brand-overlay small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.baer-studio-brand-overlay span { font-size: 13px; font-weight: 800; line-height: 1.15; }
.baer-studio-brand-overlay small { margin-top: 3px; color: #7a5c4c; font-size: 9px; line-height: 1.15; }
.baer-studio-brand-overlay small b { font-weight: 700; }
.baer-studio-claim-overlay {
  top: 9.1%;
  right: 8%;
  left: 8%;
  min-height: 4.2%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 6.7vw, 28px);
  font-weight: 800;
  letter-spacing: -.045em;
  text-overflow: ellipsis;
}
.baer-studio-claim-overlay strong { margin-right: .22em; overflow: hidden; text-overflow: ellipsis; }
.baer-name-sheet { position: absolute; z-index: 20; inset: 0; display: grid; align-items: end; opacity: 0; transition: opacity 220ms ease; }
.baer-name-sheet[hidden] { display: none !important; }
.baer-name-sheet.is-open { opacity: 1; }
.baer-name-backdrop { position: absolute; inset: 0; border: 0; background: rgba(30,19,14,.38); cursor: pointer; }
.baer-name-form { position: relative; z-index: 1; padding: 22px 18px 26px; border-radius: 22px 22px 0 0; color: #35231c; background: #fffaf4; box-shadow: 0 -22px 54px -28px rgba(39,22,15,.78); transform: translateY(104%); transition: transform 360ms cubic-bezier(.22,1,.36,1); }
.baer-name-sheet.is-open .baer-name-form { transform: translateY(0); }
.baer-name-form > span { color: #9b6a4e; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.baer-name-form h2 { margin: 7px 0 18px; font: 500 25px/1 Playfair Display, Georgia, serif; }
.baer-name-form label > span { display: block; margin: 0 0 7px 2px; color: #765f54; font-size: 11px; font-weight: 700; }
.baer-name-form input { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(74,48,39,.2); border-radius: 13px; color: #35231c; background: #f7ede2; font-size: 15px; }
.baer-name-form > div { margin-top: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.baer-name-form > div button { min-height: 48px; border: 1px solid rgba(74,48,39,.2); border-radius: 999px; color: #4a3027; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.baer-name-form > div button:last-child { border-color: #4a3027; color: #fff8f0; background: #4a3027; }
.baer-studio-layout {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.baer-studio-hotspots { position: absolute; inset: 0; z-index: 2; }
.baer-hotspot {
  position: absolute;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: transparent;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.baer-hotspot:hover { background: rgba(255,255,255,.05); }
.baer-hotspot:focus-visible { outline: 3px solid #d49c49; outline-offset: -3px; background: rgba(255,255,255,.13); }
.baer-hotspot:disabled { display: none; }
.baer-hotspot-back { top: 2.2%; left: 4.4%; width: 13.5%; height: 7.1%; }
.baer-hotspot-reset { top: 2.2%; right: 4.4%; width: 13.5%; height: 7.1%; }
.baer-hotspot-pose { top: 19%; left: 17%; width: 66%; height: 48%; border-radius: 44%; }
.baer-hotspot-reactions { top: 69.8%; left: 5.2%; width: 44.8%; height: 7.2%; }
.baer-hotspot-dress { top: 69.8%; right: 5.2%; width: 44.8%; height: 7.2%; }
.baer-category-hotspots,
.baer-slot-hotspots { position: absolute; inset: 0; pointer-events: none; }
.baer-category-hotspots .baer-hotspot,
.baer-slot-hotspots .baer-hotspot { pointer-events: auto; }
.baer-category-hotspots .baer-hotspot { top: 79.7%; width: 22%; height: 8.1%; }
.baer-category-hotspots .baer-hotspot:nth-child(1) { left: 5.2%; }
.baer-category-hotspots .baer-hotspot:nth-child(2) { left: 27.7%; }
.baer-category-hotspots .baer-hotspot:nth-child(3) { left: 50.2%; }
.baer-category-hotspots .baer-hotspot:nth-child(4) { left: 72.7%; }
.baer-slot-hotspots .baer-hotspot { top: 87%; width: 21.1%; height: 11.8%; }
.baer-slot-hotspots .baer-hotspot:nth-child(1) { left: 5.2%; }
.baer-slot-hotspots .baer-hotspot:nth-child(2) { left: 27.9%; }
.baer-slot-hotspots .baer-hotspot:nth-child(3) { left: 50.6%; }
.baer-slot-hotspots .baer-hotspot:nth-child(4) { left: 73.3%; }
.screen-baer-studio[data-baer-view="reactions"] .baer-category-hotspots { display: none; }
.screen-baer-studio[data-baer-view="reactions"] .baer-slot-hotspots .baer-hotspot { top: 79.7%; height: 18.8%; }

.screen-subscriptions, .screen-subscription-detail, .screen-subscription-review { padding: 0 18px 38px; }
.subscription-hub-hero { min-height: 268px; position: relative; margin-top: 18px; overflow: hidden; border-radius: 19px; color: #fff; background: #0d1e2b; box-shadow: 0 18px 38px -28px rgba(3,14,28,.92); }
.subscription-hub-images { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.subscription-hub-images img { width: 100%; height: 100%; object-fit: cover; }
.subscription-hub-images img:last-child { object-position: 62% 50%; }
.subscription-hub-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(54,31,22,.92) 0, rgba(28,36,33,.64) 52%, rgba(27,65,54,.72) 100%); }
.subscription-hub-copy { position: relative; z-index: 1; padding: 27px 22px; }
.subscription-hub-copy > span { color: #e1c98f; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.subscription-hub-copy h2 { margin: 35px 0 0; color: #fff; font: italic 500 38px/.93 Playfair Display, Georgia, serif; }
.subscription-hub-copy p { max-width: 285px; margin: 15px 0 0; color: rgba(255,255,255,.76); font-size: 11px; line-height: 1.5; white-space: nowrap; }
.active-subscription-card { min-height: 104px; margin-top: 14px; padding: 14px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; border: 1px solid var(--hairline); border-radius: 15px; background: #fffdf8; }
.active-subscription-card > div > span { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.active-subscription-card > div:first-child { min-width: 0; }
.active-subscription-card h3 { margin: 6px 0 0; overflow: hidden; color: var(--navy); font: 500 16px/1.1 Playfair Display, Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.active-subscription-card p { margin: 6px 0 0; overflow: hidden; color: #696e6a; font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.active-subscription-card button { min-width: 60px; min-height: 44px; border: 1px solid var(--navy); border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 10px; font-weight: 700; }
.subscription-heading { margin-top: 23px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.subscription-heading h3 { margin: 0; color: var(--navy); font: 500 21px/1 Playfair Display, Georgia, serif; }
.subscription-heading p { margin: 5px 0 0; color: #6a6f6b; font-size: 10px; }
.subscription-heading > span { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.subscription-plan-stack { margin-top: 13px; display: grid; gap: 10px; }
.subscription-plan { height: 158px; position: relative; padding: 16px 13px 13px 154px; overflow: hidden; border: 1px solid var(--hairline); border-radius: 17px; background: #fffdf8; }
.subscription-plan-image { position: absolute; inset: 0 auto 0 0; width: 140px; }
.subscription-plan-image img { width: 100%; height: 100%; object-fit: cover; }
.matcha-plan { border-color: rgba(62,100,78,.25); background: #edf3ea; }
.matcha-plan .subscription-plan-image img { object-position: 62% 50%; }
.subscription-plan > div:nth-child(2) > span { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.matcha-plan > div:nth-child(2) > span { color: #52725e; }
.subscription-plan > div:nth-child(2) { min-width: 0; }
.subscription-plan h3 { margin: 6px 0 0; overflow: hidden; color: var(--navy); font: 500 20px/1 Playfair Display, Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.subscription-plan p { margin: 7px 0 0; overflow: hidden; color: #686d69; font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.subscription-plan button { min-height: 44px; margin-top: 14px; padding: 0 15px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 10px; font-weight: 700; }
.matcha-plan button { background: #345d4a; }
.subscription-disclaimer { margin: 15px 2px 0; color: #707571; font-size: 10px; line-height: 1.5; }

.subscription-detail-hero { min-height: 276px; position: relative; margin-top: 18px; overflow: hidden; border-radius: 19px; color: #fff; background: #132133; box-shadow: 0 18px 38px -29px rgba(3,14,28,.9); }
.subscription-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subscription-detail-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(37,22,18,.94) 0, rgba(37,22,18,.68) 55%, rgba(37,22,18,.15) 100%); }
.matcha-subscription-hero .subscription-detail-shade { background: linear-gradient(90deg, rgba(21,44,34,.94) 0, rgba(21,44,34,.69) 56%, rgba(21,44,34,.18) 100%); }
.subscription-detail-hero > div:last-child { position: relative; z-index: 1; padding: 27px 22px; }
.subscription-detail-hero span { color: #e1c98f; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.matcha-subscription-hero span { color: #b9d0a7; }
.subscription-detail-hero h2 { margin: 55px 0 0; color: #fff; font: italic 500 36px/.94 Playfair Display, Georgia, serif; }
.subscription-detail-hero p { max-width: 285px; margin: 15px 0 0; color: rgba(255,255,255,.76); font-size: 11px; line-height: 1.5; white-space: nowrap; }
.subscription-options { margin: 19px 0 0; padding: 0; border: 0; }
.subscription-options legend { width: 100%; margin: 0 0 9px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--navy); font-size: 12px; font-weight: 700; }
.subscription-options legend small { color: var(--gold-deep); font-size: 9px; font-weight: 700; }
.subscription-options > label { min-height: 72px; position: relative; display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 10px; border-bottom: 1px solid var(--hairline); cursor: pointer; }
.subscription-options input { position: absolute; opacity: 0; }
.subscription-options label > i { width: 22px; height: 22px; border: 1px solid rgba(10,31,61,.28); border-radius: 50%; }
.subscription-options input:checked + i { border: 6px solid var(--navy); background: var(--cream); }
.matcha-options input:checked + i { border-color: #345d4a; }
.subscription-options input:focus-visible + i { outline: 3px solid #d5b36c; outline-offset: 3px; }
.subscription-options strong, .subscription-options label small { display: block; }
.subscription-options strong { color: var(--navy); font-size: 12px; }
.subscription-options label small { margin-top: 5px; color: #6b706c; font-size: 10px; }
.subscription-includes { margin-top: 22px; }
.subscription-includes h3 { margin: 0 0 4px; color: var(--navy); font: 500 20px/1.1 Playfair Display, Georgia, serif; }
.subscription-includes > div { min-height: 66px; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 10px; border-bottom: 1px solid var(--hairline); }
.subscription-includes svg { width: 23px; height: 23px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.matcha-includes svg { stroke: #52725e; }
.subscription-includes strong, .subscription-includes small { display: block; }
.subscription-includes strong { color: var(--navy); font-size: 12px; }
.subscription-includes small { margin-top: 4px; color: #6b706c; font-size: 10px; line-height: 1.35; }
.subscription-primary { width: 100%; min-height: 49px; margin-top: 19px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 700; }
.matcha-primary { background: #345d4a; }

.subscription-review-card { margin-top: 23px; padding: 19px; border-radius: 17px; color: #f7efe2; background: radial-gradient(circle at 88% 0, #8a5b3f 0, #4d3024 52%, #251b18 100%); }
.subscription-review-card[data-subscription-review-theme="matcha"] { background: radial-gradient(circle at 88% 0, #739a7f 0, #345d4a 52%, #183329 100%); }
.subscription-review-card > span { color: #e3c98f; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.subscription-review-card h2 { margin: 10px 0 0; color: #fff; font: italic 500 30px/1 Playfair Display, Georgia, serif; }
.subscription-review-card p { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 11px; }
.subscription-consent { margin-top: 20px; }
.screen-subscription-review .subscription-primary { margin-top: 17px; }

.screen-subscription-success { min-height: 100%; padding: 0 26px 30px; color: var(--cream); background: radial-gradient(circle at 50% 16%, #65432f 0, #17283d 48%, #061325 100%); text-align: center; }
.subscription-success-art { width: 146px; height: 146px; margin: 50px auto 0; display: grid; place-items: center; border: 1px solid rgba(213,179,108,.28); border-radius: 50%; box-shadow: 0 0 0 18px rgba(213,179,108,.05), 0 0 0 42px rgba(213,179,108,.025); }
.subscription-success-art span { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #d5b36c; }
.subscription-success-art svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.subscription-success-copy { margin-top: 48px; }
.subscription-success-copy p > span { color: #e3c57e; font-weight: 700; }
.subscription-success-actions { margin-top: 34px; }

.screen-history, .screen-favourites, .screen-locations { padding: 0 18px 32px; }
.history-filter { margin: 16px 0 0; padding: 4px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--hairline); border-radius: 999px; }
.history-filter button, .location-view-toggle button { min-height: 44px; border: 0; border-radius: 999px; color: #6b706c; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.history-filter button.is-active, .location-view-toggle button.is-active { color: var(--cream); background: var(--navy); }
.history-empty, .favourites-empty { min-height: 370px; display: grid; justify-items: center; align-content: center; text-align: center; }
.history-empty svg, .favourites-empty svg { width: 54px; height: 54px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }
.history-empty h3, .favourites-empty h3 { margin: 20px 0 0; color: var(--navy); font: 500 25px/1.05 Playfair Display, Georgia, serif; }
.history-empty p, .favourites-empty p { max-width: 285px; margin: 10px 0 18px; color: #666b67; font-size: 12px; line-height: 1.5; }
.history-empty button, .favourites-empty button { min-height: 46px; padding: 0 18px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 700; }
.history-empty[hidden], .history-list[hidden], .location-page-list[hidden], .location-map-state[hidden] { display: none !important; }
.history-list { margin-top: 18px; }
.example-label { margin: 0 0 10px; color: #757a76; font-size: 11px; text-align: center; }
.history-list article { padding: 16px; border: 1px solid var(--hairline); border-radius: 14px; background: #fffdf8; }
.history-list time { color: var(--gold-deep); font-size: 11px; font-weight: 700; }
.history-list article > div { min-height: 65px; margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--hairline); }
.history-list strong, .history-list small { display: block; }
.history-list strong { color: var(--navy); font: 500 14px/1.2 Playfair Display, Georgia, serif; }
.history-list small { margin-top: 5px; color: #6d716d; font-size: 11px; }
.history-list b { color: var(--gold-deep); font-size: 12px; }
.history-list footer { min-height: 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.history-list footer span { color: #717672; font-size: 11px; }
.history-list footer button { min-width: 70px; min-height: 44px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 700; }

.screen-favourites { padding-bottom: 30px; }
.favourites-empty { min-height: 300px; }
.favourite-card { min-height: 94px; margin-top: 18px; padding: 12px; display: grid; grid-template-columns: 70px 1fr 44px; align-items: center; gap: 12px; border: 1px solid var(--hairline); border-radius: 14px; background: #fffdf8; }
.favourite-card img { width: 68px; height: 68px; object-fit: cover; border-radius: 12px; }
.favourite-card h3 { margin: 0; color: var(--navy); font: 500 16px/1.15 Playfair Display, Georgia, serif; }
.favourite-card p { margin: 6px 0 0; color: #6d716d; font-size: 11px; }
.favourite-card strong { display: block; margin-top: 7px; color: var(--gold-deep); font-size: 12px; }
.favourite-card button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--hairline); border-radius: 50%; color: var(--navy); background: transparent; cursor: pointer; }
.favourite-card button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.favourite-inspiration { margin-top: 22px; }
.favourite-inspiration .checkout-heading > span { color: #777b77; font-size: 11px; }
.city-strip { margin: 12px -18px 0; padding: 0 18px 8px; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.city-strip::-webkit-scrollbar { display: none; }
.city-strip button { width: 132px; min-height: 168px; flex: 0 0 132px; padding: 0 0 12px; overflow: hidden; border: 0; border-radius: 14px; color: var(--cream); background: var(--navy); cursor: pointer; }
.city-strip img { width: 100%; height: 132px; object-fit: contain; }
.city-strip span { display: block; font-size: 11px; font-weight: 700; }

.location-page-search { min-height: 48px; margin-top: 16px; padding: 0 13px; display: grid; grid-template-columns: 21px 1fr; align-items: center; gap: 9px; border: 1px solid var(--hairline); border-radius: 14px; background: #fffdf8; }
.location-page-search svg { width: 20px; height: 20px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-width: 1.5; }
.location-page-search input { border: 0; outline: 0; color: var(--navy); background: transparent; font-size: 12px; }
.location-view-toggle { margin-top: 12px; padding: 4px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--hairline); border-radius: 999px; }
.location-page-list { margin-top: 13px; }
.location-card { width: 100%; min-height: 88px; padding: 10px 2px; display: grid; grid-template-columns: 46px 1fr 26px; align-items: center; gap: 11px; border: 0; border-bottom: 1px solid var(--hairline); background: transparent; cursor: pointer; text-align: left; }
.store-monogram { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #d5b36c; background: var(--navy); font: 500 13px/1 Playfair Display, Georgia, serif; }
.location-card strong, .location-card small, .location-card em { display: block; }
.location-card strong { color: var(--navy); font-size: 13px; }
.location-card small { margin-top: 4px; color: var(--gold-deep); font-size: 11px; font-weight: 700; }
.location-card em { margin-top: 4px; color: #737873; font-size: 10px; font-style: normal; }
.location-card > i { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--hairline); border-radius: 50%; color: var(--cream); font-size: 11px; font-style: normal; }
.location-card.is-active > i { border-color: var(--navy); background: var(--navy); }
.location-map-state { min-height: 390px; position: relative; margin-top: 14px; overflow: hidden; border: 1px solid var(--hairline); border-radius: 14px; background: #e9e4d9; }
.location-map-state > svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(10,31,61,.18); stroke-linecap: round; stroke-width: 4; }
.map-compass { position: absolute; z-index: 2; top: 94px; left: 50%; width: 72px; height: 72px; transform: translateX(-50%); border: 10px solid rgba(10,31,61,.14); border-radius: 50%; background: var(--navy); box-shadow: 0 12px 26px -16px rgba(3,14,28,.6); }
.map-compass::after { content: ""; position: absolute; top: 19px; left: 20px; width: 12px; height: 12px; border: 4px solid #d5b36c; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.location-map-state button { min-height: 46px; position: absolute; z-index: 2; right: 24px; bottom: 56px; left: 24px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 700; }
.location-map-state p { position: absolute; z-index: 2; right: 24px; bottom: 9px; left: 24px; margin: 0; color: #5f645f; font-size: 9px; line-height: 1.35; text-align: center; }

.screen-profile { padding: 0 18px 96px; }
.profile-header { min-height: 92px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.profile-header img { width: 62px; height: 62px; object-fit: contain; }
.profile-header .round-icon { width: 44px; height: 44px; }
.profile-identity { padding: 4px 0 20px; display: grid; grid-template-columns: 54px 1fr; gap: 12px; border-bottom: 1px solid var(--hairline); }
.profile-avatar { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: var(--cream); background: var(--navy); font: 500 15px/1 Playfair Display, Georgia, serif; }
.profile-identity span { display: block; margin-top: 8px; color: var(--gold-deep); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.profile-identity h2 { margin: 0; color: var(--navy); font: 500 24px/1 Playfair Display, Georgia, serif; }
.profile-identity p { margin: 7px 0 0; color: #666b67; font-size: 11px; line-height: 1.42; }
.profile-identity > button { min-height: 44px; grid-column: 2; justify-self: start; padding: 0 17px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 700; }
.profile-membership { min-height: 82px; margin-top: 18px; padding: 13px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 14px; color: var(--cream); background: var(--navy); }
.profile-membership small, .profile-membership strong { display: block; }
.profile-membership small { color: #d5b36c; font-size: 11px; font-weight: 700; }
.profile-membership strong { margin-top: 6px; font-size: 12px; }
.profile-membership button { min-height: 44px; padding: 0 10px; display: inline-flex; align-items: center; gap: 4px; border: 1px solid rgba(213,179,108,.4); border-radius: 999px; color: #e0c27e; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.profile-membership button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.profile-active-overview { margin-top: 18px; }
.profile-section-title { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.profile-section-title span { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.profile-section-title h3 { margin: 4px 0 0; color: var(--navy); font: 500 22px/1 Playfair Display, Georgia, serif; }
.profile-section-title > small { padding: 5px 8px; border-radius: 999px; color: #6b655a; background: #ece5d8; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.profile-status-grid { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.profile-status-grid button { min-height: 98px; padding: 12px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 9px; border: 1px solid var(--hairline); border-radius: 15px; color: var(--navy); background: #fffdf8; cursor: pointer; text-align: left; }
.profile-status-grid button:first-child { min-height: 84px; grid-column: 1 / -1; grid-template-columns: 58px 1fr; background: #f2e6d8; }
.profile-status-grid button > svg { width: 25px; height: 25px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.profile-baer-preview { width: 54px; height: 54px; display: block; border: 2px solid #fffaf1; border-radius: 50%; background-color: #f5e7d6; background-repeat: no-repeat; background-position: center 36%; background-size: 280% auto; box-shadow: 0 8px 18px -14px rgba(35,23,15,.9); }
.profile-status-grid span, .profile-status-grid small, .profile-status-grid strong, .profile-status-grid em { display: block; }
.profile-status-grid small { color: #7a746a; font-size: 9px; font-weight: 700; }
.profile-status-grid button > span { min-width: 0; }
.profile-status-grid strong { margin-top: 4px; overflow: hidden; font-size: 11px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.profile-status-grid em { margin-top: 5px; color: var(--gold-deep); font-size: 9px; font-style: normal; font-weight: 800; }
.profile-status-grid em b { font-weight: inherit; }
.profile-menu-heading { margin-top: 24px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.profile-menu-heading h3 { margin: 0; color: var(--navy); font: 500 20px/1 Playfair Display, Georgia, serif; }
.profile-menu-heading span { color: #777b76; font-size: 9px; font-weight: 700; }
.profile-menu { margin-top: 16px; }
.profile-menu > button { width: 100%; min-height: 70px; padding: 9px 0; display: grid; grid-template-columns: 38px 1fr 20px; align-items: center; gap: 10px; border: 0; border-bottom: 1px solid var(--hairline); background: transparent; cursor: pointer; text-align: left; }
.profile-menu > button > svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.profile-menu strong, .profile-menu small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.profile-menu strong { color: var(--navy); font-size: 12px; }
.profile-menu small { margin-top: 5px; color: #6d716d; font-size: 11px; }
.profile-menu i svg { width: 16px; height: 16px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; opacity: .55; }

.screen-news { padding: 0 18px 102px; }
.news-page-header { min-height: 206px; margin: 0 -18px; padding: 52px 24px 30px; color: #f9f0df; background: radial-gradient(circle at 88% 0, #294d74 0, var(--navy) 42%, #07172b 100%); }
.news-brand-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.news-brand-line > span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.news-brand-line img { width: 50px; height: 50px; object-fit: contain; filter: invert(1) sepia(.25); opacity: .72; }
.news-title-line { margin-top: 18px; display: block; }
.news-page-header h2 { margin: 0; color: #fffaf0; font: italic 500 37px/.92 Playfair Display, Georgia, serif; white-space: nowrap; }
.news-page-header p { max-width: none; margin: 9px 0 0; overflow: hidden; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.news-feature { min-height: 270px; position: relative; margin-top: -20px; padding: 24px 18px 19px 20px; display: grid; grid-template-columns: minmax(0,1fr) 106px; align-items: stretch; gap: 8px; overflow: hidden; border: 1px solid rgba(215,189,130,.28); border-radius: 17px; color: #fff; background: linear-gradient(145deg, #0b2444 0, #102f55 62%, #183d64 100%); box-shadow: 0 20px 38px -30px rgba(3,14,28,.95); cursor: pointer; }
.news-feature::before { content: ""; position: absolute; width: 190px; height: 190px; right: -62px; top: -72px; border: 1px solid rgba(215,189,130,.18); border-radius: 50%; }
.news-feature-copy { min-width: 0; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.news-feature span { color: #e2c88c; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-feature h3 { margin: 35px 0 0; color: #fffaf0; font: italic 500 27px/.93 Playfair Display, Georgia, serif; }
.news-feature p { max-width: 185px; margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.45; }
.news-feature b { min-height: 44px; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: #f2d69a; font-size: 10px; }
.news-feature b svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.news-feature-media { min-width: 0; position: relative; z-index: 1; display: grid; grid-template-rows: 1fr auto; align-items: center; justify-items: center; }
.news-feature-media img { width: 110px; max-width: none; height: 184px; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(0,0,0,.34)); transform: rotate(2.5deg); }
.news-feature-media small { color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .06em; white-space: nowrap; }
.news-feed-heading { margin-top: 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.news-feed-heading h3 { margin: 0; color: var(--navy); font: 500 22px/1 Playfair Display, Georgia, serif; }
.news-feed-heading span { color: #777b76; font-size: 11px; }
.news-feed { margin-top: 12px; display: grid; gap: 9px; }
.news-feed article { height: 112px; padding: 0; display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 14px; overflow: hidden; border: 1px solid var(--hairline); border-radius: 15px; background: #fffdf8; cursor: pointer; }
.news-feed article > img { width: 112px; height: 112px; border-radius: 0; object-fit: cover; }
.news-feed article:first-child > img { object-position: center 58%; }
.news-feed .news-feed-atelier > img { object-position: center 42%; }
.news-feed article > div { min-width: 0; align-self: center; padding-right: 14px; }
.news-feed span { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.news-feed h3 { margin: 5px 0 0; overflow: hidden; color: var(--navy); font: 500 15px/1.08 Playfair Display, Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.news-feed p { margin: 7px 0 0; overflow: hidden; color: #686d68; font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.news-cms-note { margin: 14px 5px 0; color: #777b76; font-size: 9px; line-height: 1.45; text-align: center; }

.device .passport-bear-status span,
.device .passport-bear-status p,
.device .baer-studio-brand-overlay small,
.device .baer-name-form > span,
.device .baer-name-form label > span { font-size: 12px; }

/* Readability floor carried through the dense app UI */
.guest-link { min-height: 44px; }
.menu-search button, .sheet-heading button { width: 44px; height: 44px; }
.location-pill small, .member-pass .pass-topline, .passport-progress small,
.feature-copy span, .feature-copy p, .quick-actions small, .bottom-nav span,
.menu-mode button, .product-list-heading span, .product-row p, .product-description,
.option-group legend small, .choice-grid span, .choice-grid small, .switch-row > span,
.switch-row small, .dark-pass-top, .dark-pass-foot, .star-balance span,
.reward-list article > div:nth-child(2) span, .reward-list h3,
.reward-list article > strong, .store-row small, .cart-line small, .toast {
  font-size: 12px;
}
.cart-count { font-size: 10px; }
.reward-list article { min-height: 82px; }
.reward-list article > div:nth-child(2) span { letter-spacing: .08em; }

.option-group[hidden], .location-card[hidden] { display: none !important; }
.product-image.is-pack { object-fit: contain; padding: 28px; background: var(--navy); }
.product-empty button { min-height: 44px; margin-top: 18px; padding: 0 16px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 12px; font-weight: 700; }
.toast { position: absolute; z-index: 100; right: 20px; bottom: 24px; left: 20px; padding: 12px 16px; transform: translateY(18px); border-radius: 12px; color: var(--cream); background: var(--navy); box-shadow: 0 15px 28px -16px rgba(3,14,28,0.8); opacity: 0; pointer-events: none; font-size: 12px; font-weight: 600; text-align: center; transition: opacity 180ms ease, transform 320ms var(--ease-out); }
.toast.is-visible { transform: translateY(0); opacity: 1; }

.device .guest-link,
.device .app-header p,
.device .avatar-button span,
.device .location-pill small,
.device .location-inline small,
.device .pass-topline span,
.device .balance-line span,
.device .balance-line button,
.device .passport-progress > div,
.device .section-heading button,
.device .section-heading > div p,
.device .recommendation-card small,
.device .recommendation-card b,
.device .home-subscription-banner > span:nth-child(2) small,
.device .home-subscription-banner b,
.device .news-date span,
.device .news-copy small,
.device .news-copy p,
.device .category-scroll button,
.device .product-empty p,
.device .quantity-control span,
.device .add-cart,
.device .rewards-copy > span,
.device .reward-tabs button,
.device .reward-cta,
.device .cart-empty p,
.device .cart-empty button,
.device .checkout-button,
.device .checkout-progress,
.device .pickup-store small,
.device .pickup-time small,
.device .checkout-product small,
.device .checkout-reward-note span,
.device .checkout-submit,
.device .demo-disclaimer,
.device .order-hero > span,
.device .order-timeline small,
.device .order-pickup-card small,
.device .order-pickup-card button,
.device .order-actions button,
.device .ticket-copy > span,
.device .ticket-stars span,
.device .reward-ticket > small,
.device .reward-terms > div > span,
.device .reward-terms small,
.device .reward-redeem,
.device .history-filter button,
.device .location-view-toggle button,
.device .history-empty button,
.device .favourites-empty button,
.device .example-label,
.device .history-list time,
.device .history-list small,
.device .history-list footer span,
.device .history-list footer button,
.device .favourite-card p,
.device .favourite-inspiration .checkout-heading > span,
.device .city-strip span,
.device .location-card small,
.device .location-card em,
.device .location-map-state button,
.device .location-map-state p,
.device .profile-identity span,
.device .profile-identity p,
.device .profile-identity > button,
.device .profile-membership small,
.device .profile-membership button,
.device .member-shortcuts small,
.device .baer-membership-card span,
.device .baer-membership-card p,
.device .membership-hero-top,
.device .membership-hero-copy small,
.device .membership-hero-copy p,
.device .membership-hero-actions button,
.device .membership-progress p,
.device .membership-section-heading p,
.device .membership-section-heading > span,
.device .tier-card span,
.device .tier-card p,
.device .tier-card button,
.device .membership-disclaimer,
.device .upgrade-tier-switch button,
.device .upgrade-card-brand,
.device .upgrade-card-copy > span,
.device .upgrade-card-copy p,
.device .upgrade-card-id,
.device .upgrade-benefits small,
.device .upgrade-pricing-note span,
.device .membership-primary,
.device .membership-secondary,
.device .review-stepper,
.device .review-membership-card > span,
.device .review-membership-card p,
.device .review-consent small,
.device .success-copy > span,
.device .success-copy p,
.device .success-actions button,
.device .member-code-copy > span,
.device .member-code-copy p,
.device .member-code-meta small,
.device .member-code-id,
.device .member-subscription-state small,
.device .member-subscription-state strong,
.device .member-code-timer,
.device .refresh-code,
.device .qr-disclaimer,
.device .member-pass-links button,
.device .baer-header > span,
.device .baer-hero > span,
.device .baer-hero p,
.device .baer-access-card > div > span,
.device .baer-access-card p,
.device .baer-access-card button,
.device .baer-section-title span,
.device .baer-module-grid small,
.device .baer-live-note span,
.device .baer-live-note p,
.device .subscription-hub-copy > span,
.device .subscription-hub-copy p,
.device .active-subscription-card > div > span,
.device .active-subscription-card p,
.device .active-subscription-card button,
.device .subscription-heading p,
.device .subscription-heading > span,
.device .subscription-plan > div:nth-child(2) > span,
.device .subscription-plan p,
.device .subscription-plan button,
.device .subscription-disclaimer,
.device .subscription-detail-hero span,
.device .subscription-detail-hero p,
.device .subscription-options legend small,
.device .subscription-options label small,
.device .subscription-includes small,
.device .subscription-primary,
.device .subscription-review-card > span,
.device .subscription-review-card p,
.device .home-order-prompt span,
.device .home-order-prompt p,
.device .home-order-prompt button,
.device .home-subscription-choice header p,
.device .home-subscription-choice header button,
.device .home-subscription-option small,
.device .home-subscription-option b,
.device .home-subscription-choice > p,
.device .home-news-teaser small,
.device .profile-section-title span,
.device .profile-section-title > small,
.device .profile-status-grid small,
.device .profile-status-grid em,
.device .profile-menu-heading span,
.device .news-page-header > div > span,
.device .news-page-header p,
.device .news-feature span,
.device .news-feature p,
.device .news-feature b,
.device .news-feed span,
.device .news-feed p,
.device .news-feed b,
.device .news-cms-note,
.device .profile-menu small { font-size: 12px; }

/* Image-led card language: one product, one title, one short status line. */
.recommendation-card small,
.subscription-plan > div:nth-child(2) > span,
.baer-membership-card span,
.baer-membership-card h3,
.tier-card span,
.home-subscription-option :is(strong, small, b),
.profile-identity :is(span, p),
.profile-membership :is(small, strong),
.news-feed span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 370px) {
  .home-order-prompt { grid-template-columns: minmax(0,1fr) auto; padding: 13px; gap: 8px; }
  .home-order-prompt h3 { max-width: 156px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .home-order-prompt p { max-width: 150px; }
  .home-order-prompt button { padding-inline: 11px; }
  .tier-card { grid-template-columns: 72px minmax(0,1fr) 70px; gap: 8px; padding-right: 8px; }
  .tier-visual { width: 72px; }
  .tier-card button { min-width: 70px; padding-inline: 7px; }
  .subscription-plan { padding-left: 138px; }
  .subscription-plan-image { width: 124px; }
  .profile-status-grid { grid-template-columns: 1fr; }
  .profile-status-grid button,
  .profile-status-grid button:first-child { min-height: 82px; grid-column: auto; grid-template-columns: 54px minmax(0,1fr); }
  .news-feed article { grid-template-columns: 126px minmax(0,1fr); }
  .news-feed article > img { width: 126px; }
}

.app-screen[data-screen="home"],
.app-screen[data-screen="menu"],
.screen-profile,
.screen-news,
.screen-rewards { padding-bottom: 26px; }

@media (max-width: 980px) {
  .concept-shell { grid-template-columns: 1fr; }
  .concept-panel { min-height: auto; padding: 42px 32px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .concept-copy { margin: 44px 0 34px; }
  .concept-notes { display: none; }
  .prototype-note { padding-top: 24px; }
  .device-stage { position: static; height: auto; min-height: 940px; }
  .device { width: min(390px, 100%); height: auto; aspect-ratio: 390 / 844; }
}

@media (max-width: 560px) {
  body { background: var(--cream); }
  .concept-panel { display: none; }
  .concept-shell { min-height: 100dvh; }
  .device-stage { min-height: 100dvh; padding: 12px; display: flex; background: var(--cream); }
  .device-toolbar { display: none; }
  .device {
    width: min(390px, calc(46.21vh - 12px), calc(100vw - 24px));
    height: auto;
    min-height: 0;
    aspect-ratio: 390 / 844;
    border: 7px solid #071429;
    border-radius: 46px;
    box-shadow: 0 28px 70px -38px rgba(7,20,41,.72);
  }
  .device-sensor { display: block; }
}

@media (max-height: 940px) and (min-width: 981px) {
  .concept-panel { min-height: 100vh; padding: 28px 48px; }
  .concept-brand img { width: 48px; height: 48px; }
  .concept-copy { margin: 24px 0 22px; }
  .script-line { font-size: 36px; }
  .concept-copy h1 { max-width: 520px; font-size: 49px; line-height: 0.96; }
  .concept-lead { margin-top: 16px; font-size: 12px; line-height: 1.55; }
  .screen-tab { min-height: 62px; padding: 8px 6px; }
  .screen-tab span { margin-bottom: 7px; }
  .concept-notes { display: none; }
  .prototype-note { margin-top: 18px; padding-top: 0; }
  .device-stage { padding-block: 18px; }
  .device-toolbar { margin-bottom: 10px; }
  .device { min-height: 0; }
}

/* Club return loop, passport and self-service flows */
button, input, textarea { font: inherit; }
textarea { resize: vertical; }

.pass-actions { display: flex; gap: 7px; }
.balance-line .pass-actions button { min-width: 0; min-height: 44px; padding: 0 11px; }
.balance-line .pass-actions button:first-child { color: var(--navy); background: #d7bd82; }

.home-order-live {
  width: 100%; min-height: 62px; margin: 12px 0 0; padding: 10px 12px; display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 10px;
  border: 1px solid rgba(66,211,178,.35); border-radius: 14px; color: #f8f0df; background: var(--navy); cursor: pointer; text-align: left;
}
.home-order-live[hidden], .gift-form[hidden], .gift-review[hidden] { display: none !important; }
.home-order-live > i { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(66,211,178,.12); }
.home-order-live small, .home-order-live strong { display: block; }
.home-order-live small { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-order-live strong { margin-top: 4px; font-size: 11px; }
.home-order-live > b { color: #d7bd82; font-size: 10px; }

.usual-order-strip, .saved-combination {
  width: calc(100% - 36px); min-height: 84px; margin: 13px 18px 1px; padding: 9px 10px; display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 10px;
  border: 1px solid rgba(184,146,74,.28); border-radius: 15px; color: var(--ink); background: #fffaf0; cursor: pointer; text-align: left;
}
.usual-order-strip img, .saved-combination img { width: 62px; height: 62px; border-radius: 11px; object-fit: cover; }
.usual-order-strip span > *, .saved-combination span > * { display: block; }
.usual-order-strip small, .saved-combination small { color: var(--gold-deep); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.usual-order-strip strong, .saved-combination strong { margin-top: 5px; color: var(--navy); font: 500 13px/1.1 Playfair Display, Georgia, serif; }
.usual-order-strip em, .saved-combination em { margin-top: 5px; color: #696e69; font-size: 9px; font-style: normal; line-height: 1.25; }
.usual-order-strip > b, .saved-combination > b { max-width: 58px; color: var(--navy); font-size: 9px; text-align: right; }
.saved-combination { width: 100%; margin: 16px 0 0; }

.member-shortcuts { grid-template-columns: 1fr 1fr; }
.member-shortcuts button { min-height: 64px; }

.checkout-reward-choice { margin: 22px 0 0; padding: 0; border: 0; }
.checkout-reward-choice legend { width: 100%; margin-bottom: 9px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.checkout-reward-choice legend span { color: var(--navy); font: 500 18px/1.1 Playfair Display, Georgia, serif; }
.checkout-reward-choice legend small { color: #757a76; font-size: 9px; text-align: right; }
.checkout-reward-choice label { min-height: 63px; padding: 10px 11px; display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 10px; border: 1px solid var(--hairline); background: #fffdf8; cursor: pointer; }
.checkout-reward-choice label:first-of-type { border-radius: 13px 13px 0 0; }
.checkout-reward-choice label:last-of-type { border-top: 0; border-radius: 0 0 13px 13px; }
.checkout-reward-choice input { position: absolute; opacity: 0; pointer-events: none; }
.checkout-reward-choice label > i { width: 18px; height: 18px; border: 1px solid #a7a8a4; border-radius: 50%; }
.checkout-reward-choice input:checked + i { border: 5px solid var(--navy); }
.checkout-reward-choice strong, .checkout-reward-choice small { display: block; }
.checkout-reward-choice strong { color: var(--navy); font-size: 11px; }
.checkout-reward-choice small { margin-top: 4px; color: #707570; font-size: 9px; line-height: 1.35; }
.order-actions { grid-template-columns: 1fr 1fr; }
.order-actions [data-save-usual] { grid-column: 1 / -1; color: var(--navy); background: #d7bd82; }

.active-subscription-actions { display: grid; gap: 6px; }
.active-subscription-actions button:last-child { color: var(--navy); background: transparent; }

.screen-subscription-manage, .screen-reorder, .screen-missions, .screen-send-cookie { padding: 0 18px 38px; }
.screen-subscription-manage .subpage-header, .screen-reorder .subpage-header, .screen-missions .subpage-header, .screen-send-cookie .subpage-header { margin: 0 -18px; }

.manage-pass { margin-top: 18px; padding: 18px; display: grid; grid-template-columns: 1fr auto; gap: 14px; border-radius: 18px; color: #f8efdc; background: var(--navy); box-shadow: 0 18px 38px -30px rgba(3,14,28,.92); }
.manage-pass > div:first-child span, .manage-pass > div:first-child strong { display: block; }
.manage-pass > div:first-child span { color: #d7bd82; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.manage-pass > div:first-child strong { margin-top: 7px; font: 500 17px/1.14 Playfair Display, Georgia, serif; }
.manage-pass > b { align-self: start; min-height: 28px; padding: 7px 9px; border-radius: 999px; color: var(--navy); background: var(--teal); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.manage-pass.is-paused > b { color: #4e3a13; background: #e2c981; }
.manage-meter { grid-column: 1 / -1; }
.manage-meter > i { height: 7px; display: block; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.14); }
.manage-meter > i span { width: var(--usage); height: 100%; display: block; border-radius: inherit; background: var(--teal); }
.manage-meter small { margin-top: 9px; display: block; color: rgba(255,255,255,.7); font-size: 11px; }
.manage-meter small b { color: #fff; }
.manage-facts { margin-top: 13px; display: grid; border: 1px solid var(--hairline); border-radius: 15px; background: #fffdf8; }
.manage-facts > div { min-height: 83px; padding: 13px; border-bottom: 1px solid var(--hairline); }
.manage-facts > div:last-child { border-bottom: 0; }
.manage-facts span, .manage-facts strong, .manage-facts small { display: block; }
.manage-facts span { color: var(--gold-deep); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.manage-facts strong { margin-top: 5px; color: var(--navy); font-size: 12px; }
.manage-facts small { margin-top: 5px; color: #6d726d; font-size: 11px; line-height: 1.4; }
.manage-actions { margin-top: 20px; display: grid; gap: 8px; }
.manage-actions button { min-height: 68px; padding: 11px 13px; display: grid; grid-template-columns: 1fr 28px; align-items: center; gap: 12px; border: 1px solid var(--hairline); border-radius: 14px; background: transparent; cursor: pointer; text-align: left; }
.manage-actions span > * { display: block; }
.manage-actions strong { color: var(--navy); font-size: 12px; }
.manage-actions small { margin-top: 5px; color: #727672; font-size: 11px; line-height: 1.4; }
.manage-actions svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.reorder-hero { min-height: 185px; margin-top: 18px; padding: 14px; display: grid; grid-template-columns: 142px 1fr; align-items: center; gap: 15px; border-radius: 18px; color: #fff; background: var(--navy); }
.reorder-hero img { width: 142px; height: 157px; border-radius: 14px; object-fit: cover; }
.reorder-hero span { color: #d7bd82; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.reorder-hero h2 { margin: 0; font: 500 25px/.98 Playfair Display, Georgia, serif; }
.reorder-hero p { margin: 10px 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.45; }
.reorder-hero strong { color: #d7bd82; font-size: 13px; }
.reorder-checks { margin-top: 13px; display: grid; border: 1px solid var(--hairline); border-radius: 15px; background: #fffdf8; }
.reorder-checks > div { min-height: 70px; padding: 10px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--hairline); }
.reorder-checks > div:last-child { border-bottom: 0; }
.reorder-checks > div > i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #efe7d8; }
.reorder-checks .is-ready > i { color: #0b5a47; background: #d9f3eb; }
.reorder-checks svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.reorder-checks strong, .reorder-checks small { display: block; }
.reorder-checks strong { color: var(--navy); font-size: 12px; }
.reorder-checks small { margin-top: 5px; color: #707570; font-size: 11px; }
.reorder-checks button { min-height: 44px; padding: 0 10px; border: 0; color: var(--gold-deep); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.reorder-quantity { min-height: 68px; margin-top: 13px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--hairline); border-radius: 14px; }
.reorder-quantity span > * { display: block; }
.reorder-quantity strong { color: var(--navy); font-size: 11px; }
.reorder-quantity small { margin-top: 4px; color: #747874; font-size: 11px; }
.reorder-quantity > div { display: flex; align-items: center; gap: 12px; }
.reorder-quantity button { width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 50%; color: var(--navy); background: #fffdf8; cursor: pointer; font-size: 20px; }
.reorder-primary { width: 100%; min-height: 52px; margin-top: 16px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 800; }
.reorder-primary span { color: #d7bd82; }

.screen-passport { padding: 0 18px 42px; color: #f8efdc; background: #081a32; }
.passport-header { min-height: 93px; margin: 0 -18px; padding: 30px 18px 12px; display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.passport-header img { width: 54px; height: 54px; justify-self: center; object-fit: contain; }
.passport-header > span { color: #d7bd82; font-size: 11px; font-weight: 800; text-align: right; }
.passport-intro { margin-top: 23px; }
.passport-intro h2 { margin: 0; font: italic 500 38px/.95 Playfair Display, Georgia, serif; }
.passport-intro p { max-width: 320px; margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.5; }
.passport-progress-line { margin-top: 18px; }
.passport-progress-line > i { height: 6px; display: block; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.passport-progress-line > i span { width: var(--passport-progress); height: 100%; display: block; background: #d7bd82; }
.passport-progress-line small { margin-top: 8px; display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.58); font-size: 10px; }
.passport-progress-line small b { color: #fff; }
.passport-bear-status { min-height: 112px; margin-top: 16px; padding: 4px 13px 4px 6px; display: grid; grid-template-columns: 94px minmax(0,1fr) 22px; align-items: center; gap: 12px; overflow: hidden; border: 1px solid rgba(206,157,123,.42); border-radius: 16px; background: linear-gradient(135deg, rgba(154,103,71,.34), rgba(255,255,255,.045)); cursor: pointer; }
.passport-bear-status[data-tier-theme="gold"] { border-color: rgba(215,183,94,.58); background: linear-gradient(135deg, rgba(111,83,29,.5), rgba(215,183,94,.08)); }
.passport-bear-status[data-tier-theme="black"] { border-color: rgba(255,255,255,.2); background: linear-gradient(135deg, #11161d, rgba(255,255,255,.05)); }
.passport-bear-status > i { width: 94px; height: 104px; display: block; border-radius: 13px; background-color: rgba(255,255,255,.055); background-repeat: no-repeat; background-position: center 42%; background-size: 154% auto; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); will-change: transform, opacity; }
.passport-bear-status > div { min-width: 0; }
.passport-bear-status span, .passport-bear-status h3, .passport-bear-status p { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.passport-bear-status span { color: #d7bd82; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.passport-bear-status h3 { margin: 5px 0 0; color: #fff; font: 500 18px/1 Playfair Display, Georgia, serif; }
.passport-bear-status p { margin: 6px 0 0; color: rgba(255,255,255,.58); font-size: 10px; }
.passport-bear-status > svg { width: 20px; height: 20px; fill: none; stroke: #d7bd82; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.passport-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.passport-grid button { min-width: 0; min-height: 198px; position: relative; padding: 8px 9px 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; color: #fff; background: rgba(255,255,255,.035); cursor: pointer; text-align: left; }
.passport-grid img { width: 100%; height: 132px; object-fit: contain; filter: saturate(.3); opacity: .56; }
.passport-grid span > * { display: block; }
.passport-grid small { color: #d7bd82; font-size: 10px; }
.passport-grid strong { margin-top: 3px; overflow: hidden; font: 500 14px/1.1 Playfair Display, Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.passport-grid em { margin-top: 4px; color: rgba(255,255,255,.52); font-size: 10px; font-style: normal; }
.passport-grid > button > i { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; display: none; place-items: center; border-radius: 50%; color: var(--navy); background: var(--teal); }
.passport-grid > button > i svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
.passport-grid .is-collected { border-color: rgba(215,189,130,.45); background: rgba(215,189,130,.08); }
.passport-grid .is-collected img { filter: none; opacity: 1; }
.passport-grid .is-collected > i { display: grid; }
.passport-grid .is-collected em { color: var(--teal); }
.passport-next { min-height: 132px; margin-top: 18px; padding: 12px; display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 12px; border: 1px solid rgba(215,189,130,.28); border-radius: 16px; background: rgba(255,255,255,.04); }
.passport-next img { width: 104px; height: 104px; object-fit: contain; object-position: center 28%; }
.passport-next span { color: #d7bd82; font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.passport-next h3 { margin: 7px 0 0; font: 500 16px/1.05 Playfair Display, Georgia, serif; }
.passport-next p { margin: 6px 0 8px; color: rgba(255,255,255,.58); font-size: 8px; line-height: 1.35; }
.passport-next button { min-height: 44px; padding: 0; border: 0; color: #d7bd82; background: transparent; cursor: pointer; font-size: 9px; font-weight: 800; }
.passport-note { margin: 14px 0 0; color: rgba(255,255,255,.42); font-size: 8px; line-height: 1.5; }

.mission-feature { min-height: 230px; margin-top: 18px; padding: 22px 18px; display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 15px; border-radius: 19px; color: #fff; background: var(--navy); }
.mission-feature-mark { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid rgba(215,189,130,.38); border-radius: 50%; background: rgba(215,189,130,.08); }
.mission-feature-mark svg { width: 34px; height: 34px; fill: none; stroke: #d7bd82; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }
.mission-feature span { color: #d7bd82; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mission-feature h2 { margin: 0; font: italic 500 29px/.98 Playfair Display, Georgia, serif; }
.mission-feature p { margin: 11px 0 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.45; }
.mission-dots { margin-top: 15px; display: flex; gap: 6px; }
.mission-dots i { width: 21px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.16); }
.mission-dots i:nth-child(-n+3) { background: var(--teal); }
.mission-list { margin-top: 13px; display: grid; gap: 8px; }
.mission-list button { min-height: 82px; padding: 10px; display: grid; grid-template-columns: 54px 1fr 22px; align-items: center; gap: 11px; border: 1px solid var(--hairline); border-radius: 14px; background: #fffdf8; cursor: pointer; text-align: left; }
.mission-number { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #efe4ce; font-size: 10px; font-weight: 800; }
.mission-list span > * { display: block; }
.mission-list small { color: var(--gold-deep); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.mission-list strong { margin-top: 5px; color: var(--navy); font-size: 12px; }
.mission-list em { margin-top: 5px; color: #737773; font-size: 10px; font-style: normal; }
.mission-list svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-deep); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.mission-note { margin: 16px 0 0; color: #747974; font-size: 8px; line-height: 1.5; }

.gift-hero { min-height: 220px; position: relative; margin-top: 18px; padding: 23px 18px; overflow: hidden; border-radius: 19px; color: #fff; background: var(--navy); }
.gift-hero img { position: absolute; right: -42px; bottom: -58px; width: 235px; height: 235px; object-fit: contain; opacity: .54; }
.gift-hero > div { position: relative; z-index: 1; max-width: 205px; }
.gift-hero span { color: #d7bd82; font-size: 8px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.gift-hero h2 { margin: 12px 0 0; font: italic 500 36px/.94 Playfair Display, Georgia, serif; }
.gift-hero p { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.45; }
.gift-form { margin-top: 16px; display: grid; gap: 13px; }
.gift-form fieldset { margin: 0; padding: 0; border: 0; }
.gift-form legend { margin-bottom: 9px; color: var(--navy); font: 500 18px/1.1 Playfair Display, Georgia, serif; }
.gift-form fieldset label { min-height: 60px; padding: 9px 11px; display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 10px; border: 1px solid var(--hairline); background: #fffdf8; cursor: pointer; }
.gift-form fieldset label:first-of-type { border-radius: 13px 13px 0 0; }
.gift-form fieldset label:last-of-type { border-top: 0; border-radius: 0 0 13px 13px; }
.gift-form fieldset input { position: absolute; opacity: 0; }
.gift-form fieldset label > i { width: 18px; height: 18px; border: 1px solid #a6aaa6; border-radius: 50%; }
.gift-form fieldset input:checked + i { border: 5px solid var(--navy); }
.gift-form fieldset strong, .gift-form fieldset small { display: block; }
.gift-form fieldset strong { color: var(--navy); font-size: 12px; }
.gift-form fieldset small { margin-top: 4px; color: #727672; font-size: 10px; }
.gift-field > span { margin: 0 0 6px 2px; display: block; color: var(--navy); font-size: 9px; font-weight: 800; }
.gift-field input, .gift-field textarea { width: 100%; min-height: 48px; padding: 12px; border: 1px solid var(--hairline); border-radius: 12px; color: var(--navy); background: #fffdf8; font-size: 11px; }
.gift-field textarea { min-height: 76px; }
.gift-form > button { min-height: 52px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); cursor: pointer; font-size: 11px; font-weight: 800; }
.gift-form fieldset input:focus-visible + i, .checkout-reward-choice input:focus-visible + i { outline: 3px solid #d5b36c; outline-offset: 3px; }
.gift-review { margin-top: 16px; padding: 18px; border: 1px solid rgba(184,146,74,.3); border-radius: 16px; background: #fffaf0; }
.gift-review > span { color: var(--gold-deep); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gift-review h3 { margin: 9px 0 0; color: var(--navy); font: 500 22px/1 Playfair Display, Georgia, serif; }
.gift-review p { margin: 10px 0 0; color: #6b706b; font-size: 9px; line-height: 1.45; }
.gift-review > div { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gift-review button { min-height: 46px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); background: transparent; cursor: pointer; font-size: 9px; font-weight: 800; }
.gift-review button:last-child { color: var(--cream); background: var(--navy); }

.history-list footer > div { display: flex; gap: 6px; }
.history-list footer > div button:first-child { color: var(--navy); background: transparent; border: 1px solid var(--hairline); }
.store-open { color: #0c765d; }
.store-busy { color: #936e1d; }
.store-closed { color: #a24c49; }
.location-card small b { font-size: inherit; }

/* Readability floor for the new operational flows */
.screen-subscription-manage .manage-facts span,
.screen-subscription-manage .manage-facts small,
.screen-subscription-manage .manage-actions small,
.screen-subscription-manage .subscription-disclaimer,
.screen-missions .mission-list small,
.screen-missions .mission-list em,
.screen-missions .mission-note,
.screen-send-cookie .gift-form fieldset small,
.screen-send-cookie .gift-field > span,
.screen-send-cookie .gift-review > span,
.screen-send-cookie .gift-review p { font-size: 12px; }
.screen-subscription-manage .manage-facts strong,
.screen-subscription-manage .manage-actions strong,
.screen-missions .mission-list strong,
.screen-send-cookie .gift-form fieldset strong { font-size: 13px; }
.screen-missions .mission-list button { min-height: 94px; }
.screen-send-cookie .gift-form fieldset label { min-height: 68px; }

.app-screen[data-screen="reorder"], .app-screen[data-screen="cookie-passport"], .app-screen[data-screen="club-missions"], .app-screen[data-screen="send-cookie"], .app-screen[data-screen="subscription-manage"] { padding-bottom: 38px; }

@media (max-width: 370px) {
  .reorder-hero { grid-template-columns: 118px 1fr; }
  .reorder-hero img { width: 118px; }
  .passport-grid button { min-height: 184px; }
  .passport-grid img { height: 118px; }
}

/* Shared control polish: one quiet field language across ordering, profile and settings. */
.menu-search, .search-field, .location-page-search,
.gift-field input, .gift-field textarea, .baer-name-form input {
  border-color: rgba(10,31,61,.14);
  border-radius: 14px;
  background: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.menu-search, .search-field, .location-page-search { min-height: 50px; }
.gift-field input, .baer-name-form input { min-height: 50px; font-size: 13px; }
.gift-field textarea { min-height: 82px; font-size: 13px; line-height: 1.45; resize: vertical; }
.device :is(button, [role="button"], input, textarea):focus-visible {
  outline: 3px solid rgba(184,146,74,.5);
  outline-offset: 2px;
}
.device :is(.location-pill, .recommendation-card, .home-subscription-option, .home-news-teaser, .news-feed article) {
  border-radius: 16px;
}

body.capture-mobile { width: 390px; min-width: 390px; min-height: 620px; overflow: hidden; background: var(--cream-2); }
.capture-mobile .concept-shell { width: 390px; min-height: 620px; display: block; }
.capture-mobile .concept-panel, .capture-mobile .device-toolbar { display: none; }
.capture-mobile .device-stage { width: 390px; min-height: 620px; padding: 0; display: block; background: var(--cream-2); }
.capture-mobile .device { width: 390px; height: 620px; min-height: 620px; border: 0; border-radius: 0; box-shadow: none; }
.capture-mobile .device-sensor { display: none; }
.capture-mobile .login-brand, .capture-mobile .app-header, .capture-mobile .menu-header, .capture-mobile .rewards-header { padding-top: 24px; }
.capture-mobile .back-button, .capture-mobile .favourite-button { top: 18px; }

/* Apple-style material pass: glass is reserved for floating chrome and controls. */
.apple-liquid {
  --glass-light: rgba(255, 252, 246, .76);
  --glass-light-strong: rgba(255, 252, 246, .9);
  --glass-dark: rgba(10, 31, 61, .82);
  --glass-border: rgba(255, 255, 255, .64);
  --glass-hairline: rgba(10, 31, 61, .1);
  --glass-shadow: 0 20px 48px -28px rgba(7, 20, 41, .58), inset 0 1px 0 rgba(255,255,255,.72);
}

.apple-liquid ::selection { color: #fffaf0; background: rgba(10,31,61,.86); }
.apple-liquid :is(input, textarea) { caret-color: var(--gold-deep); }
.apple-liquid .device {
  container: device-shell / inline-size;
  border-color: #071429;
  box-shadow: 0 30px 76px -38px rgba(7,20,41,.76), inset 0 0 0 1px rgba(255,255,255,.12);
}
.apple-liquid .device-sensor {
  background: rgba(7,20,41,.97);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 4px 14px rgba(7,20,41,.18);
}
.apple-liquid .app-screen {
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  background-color: var(--cream-2);
  background-image:
    radial-gradient(circle at 102% 6%, rgba(184,146,74,.11), transparent 29%),
    radial-gradient(circle at -12% 35%, rgba(41,86,121,.08), transparent 31%);
}
.apple-liquid .screen-login { background: radial-gradient(ellipse at 50% 24%, #19385f 0, var(--navy) 50%, #061325 100%); }
.apple-liquid .screen-rewards { background: radial-gradient(circle at 50% 5%, #27384c 0, var(--night) 41%, #090c10 100%); }
.apple-liquid .screen-order { background: radial-gradient(circle at 50% 0, #1b3b64 0, var(--navy) 42%, #06162b 100%); }
.apple-liquid .screen-reward-detail { background: radial-gradient(circle at 50% 0, #283847 0, #0e1116 48%, #080a0d 100%); }
.apple-liquid .screen-membership-success { background: radial-gradient(circle at 50% 17%, #274a70 0, var(--navy) 45%, #061325 100%); }
.apple-liquid .screen-member-pass { background: radial-gradient(circle at 50% 0, #283b50 0, #10151c 43%, #080a0d 100%); }
.apple-liquid .screen-subscription-success { background: radial-gradient(circle at 50% 16%, #65432f 0, #17283d 48%, #061325 100%); }
.apple-liquid .screen-passport { background: #081a32; }
.apple-liquid .app-screen::-webkit-scrollbar { width: 3px; }
.apple-liquid .app-screen::-webkit-scrollbar-thumb { background: rgba(10,31,61,.2); }
.apple-liquid .screen-login { contain: paint; }
.apple-liquid .login-atmosphere { right: 0; left: 0; transform: none; }

/* Persistent iPhone navigation; original per-screen copies remain hidden. */
.apple-liquid .app-screen .bottom-nav[hidden],
.apple-liquid .app-bottom-nav[hidden] { display: none !important; }
.apple-liquid .app-bottom-nav {
  position: absolute;
  z-index: 90;
  right: 11px;
  bottom: 10px;
  left: 11px;
  min-height: 72px;
  margin: 0;
  padding: 5px 6px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 25px;
  background: rgba(251,248,240,.78);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
  backdrop-filter: blur(28px) saturate(175%);
  box-shadow: 0 24px 52px -24px rgba(7,20,41,.66), inset 0 1px 0 rgba(255,255,255,.86), inset 0 -1px 0 rgba(10,31,61,.06);
}
.apple-liquid .app-bottom-nav::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 0;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  pointer-events: none;
}
.apple-liquid .app-bottom-nav button {
  height: 58px;
  border-radius: 17px;
  transition: color 160ms ease, background-color 180ms ease, transform 100ms ease-out;
}
.apple-liquid .app-bottom-nav button.is-active { color: var(--navy); background: rgba(10,31,61,.08); }
.apple-liquid .app-bottom-nav .nav-profile-bear { height: 62px; transform: translateY(-8px); background: transparent; }
.apple-liquid .app-bottom-nav .nav-profile-bear.is-active { background: transparent; }
.apple-liquid .app-bottom-nav .nav-profile-bear .nav-baer-avatar {
  width: 47px;
  height: 47px;
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 26px -13px rgba(10,31,61,.9), 0 0 0 1px rgba(10,31,61,.12);
}
.apple-liquid .app-screen[data-screen="home"],
.apple-liquid .app-screen[data-screen="menu"],
.apple-liquid .app-screen[data-screen="profile"],
.apple-liquid .app-screen[data-screen="rewards"],
.apple-liquid .app-screen[data-screen="news"] { padding-bottom: 112px !important; }

/* Safe-area aware, floating subpage bars. */
.apple-liquid .subpage-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 108px;
  margin: 0 -18px !important;
  padding: 42px 18px 12px;
  border-bottom: 0;
  background: rgba(250,247,239,.78);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  backdrop-filter: blur(24px) saturate(165%);
  box-shadow: 0 14px 24px -27px rgba(7,20,41,.85), inset 0 -1px 0 rgba(10,31,61,.07);
}
.apple-liquid .subpage-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  background: linear-gradient(to bottom, rgba(250,247,239,.22), transparent);
  pointer-events: none;
}
.apple-liquid .subpage-header h2 { font-size: 25px; letter-spacing: -.025em; text-wrap: balance; }
.apple-liquid .profile-header { min-height: 102px; padding-top: 34px; }
.apple-liquid .app-header { padding-top: 47px; }

/* Liquid controls: interactive and floating, never decorative glass-on-glass. */
.apple-liquid :is(.round-icon, .location-pill, .location-inline, .menu-search, .search-field, .location-page-search) {
  border-color: rgba(255,255,255,.7);
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  box-shadow: 0 12px 26px -22px rgba(7,20,41,.7), inset 0 1px 0 rgba(255,255,255,.8), inset 0 -1px 0 rgba(10,31,61,.06);
}
.apple-liquid .round-icon { border-radius: 15px; }
.apple-liquid :is(.screen-login, .screen-rewards, .screen-order, .screen-reward-detail, .screen-member-pass, .screen-passport, .screen-membership-success, .screen-subscription-success) .round-icon {
  color: var(--navy);
  background: rgba(255,252,246,.86);
  border-color: rgba(255,255,255,.76);
}
.apple-liquid :is(.location-pill, .location-inline) { border-radius: 18px; }
.apple-liquid .location-pill { min-height: 60px; }
.apple-liquid .sheet-backdrop { background: rgba(4,12,23,.42); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.apple-liquid .sheet-panel {
  border: 1px solid rgba(255,255,255,.7);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background: rgba(250,247,239,.88);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  backdrop-filter: blur(30px) saturate(170%);
  box-shadow: 0 -28px 64px -30px rgba(7,20,41,.72), inset 0 1px 0 rgba(255,255,255,.88);
}
.apple-liquid .sheet-handle { width: 38px; height: 5px; background: rgba(10,31,61,.16); }
.apple-liquid .toast {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(7,20,41,.84);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 20px 42px -24px rgba(7,20,41,.9), inset 0 1px 0 rgba(255,255,255,.16);
}

/* Home: stronger product focus, richer pacing, less dashboard flatness. */
.apple-liquid .member-pass {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: radial-gradient(circle at 84% -4%, #2d5278 0, #102b4d 37%, #071a31 100%);
  box-shadow: 0 24px 48px -31px rgba(7,20,41,.92), inset 0 1px 0 rgba(255,255,255,.13);
}
.apple-liquid .home-order-prompt {
  min-height: 102px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 21px;
  background: linear-gradient(120deg, rgba(10,31,61,.95), rgba(30,67,101,.88));
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 20px 42px -29px rgba(7,20,41,.86), inset 0 1px 0 rgba(255,255,255,.16);
}
.apple-liquid .home-order-prompt button {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 12px 24px -18px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.38);
}
.apple-liquid .home-section { margin-top: 26px; }
.apple-liquid .section-heading h3 { font-size: 24px; letter-spacing: -.025em; }
.apple-liquid .recommendation-scroll { grid-auto-columns: 282px; gap: 12px; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.apple-liquid .recommendation-card {
  height: 148px;
  grid-template-columns: 136px minmax(0,1fr);
  border-color: rgba(255,255,255,.72);
  border-radius: 21px;
  background: rgba(255,252,246,.76);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 20px 38px -29px rgba(7,20,41,.6), inset 0 1px 0 rgba(255,255,255,.84);
  scroll-snap-align: start;
}
.apple-liquid .recommendation-card > img { width: 136px; height: 148px; }
.apple-liquid .recommendation-card > span { padding: 18px 14px; }
.apple-liquid .recommendation-card strong { margin-top: 8px; font-size: 15px; }
.apple-liquid .recommendation-card b { margin-top: 9px; font-size: 12px; }
.apple-liquid .recommendation-card > i {
  left: 84px;
  bottom: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,31,61,.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.apple-liquid .home-subscription-option { border-radius: 21px; box-shadow: 0 18px 36px -28px rgba(7,20,41,.78); }
.apple-liquid .home-news-teaser {
  min-height: 70px;
  border-color: rgba(255,255,255,.7);
  border-radius: 19px;
  background: rgba(255,252,246,.68);
  -webkit-backdrop-filter: blur(17px) saturate(150%);
  backdrop-filter: blur(17px) saturate(150%);
  box-shadow: var(--glass-shadow);
}

/* Menu: familiar iOS segmented control, restrained product list. */
.apple-liquid .menu-mode {
  margin-top: 15px;
  padding: 4px;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  background: rgba(255,252,246,.66);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
  backdrop-filter: blur(16px) saturate(155%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 12px 26px -24px rgba(7,20,41,.68);
}
.apple-liquid .menu-mode button { min-height: 38px; border: 0; border-radius: 14px; font-size: 10px; }
.apple-liquid .menu-mode button.is-active { color: #fffaf0; background: var(--navy); box-shadow: 0 8px 16px -12px rgba(7,20,41,.82); }
.apple-liquid .category-scroll { gap: 6px; }
.apple-liquid .category-scroll button { padding-inline: 13px; border-color: rgba(10,31,61,.1); background: rgba(255,252,246,.72); }
.apple-liquid .category-scroll button.is-active { border-color: var(--navy); color: var(--cream); background: var(--navy); box-shadow: 0 10px 18px -15px rgba(7,20,41,.82); }
.apple-liquid .product-row { transition: background-color 160ms ease, transform 100ms ease-out; }

/* Membership: show the character, not another oversized face crop. */
.apple-liquid .membership-hero {
  min-height: 278px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 23px;
  box-shadow: 0 26px 52px -34px rgba(7,20,41,.9), inset 0 1px 0 rgba(255,255,255,.14);
}
.apple-liquid .membership-hero-art {
  top: 56px;
  right: 12px;
  width: 132px;
  height: 154px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background-color: rgba(255,255,255,.12);
  background-position: center 42%;
  background-size: 154% auto;
  box-shadow: 0 18px 30px -22px rgba(12,7,5,.78), inset 0 1px 0 rgba(255,255,255,.2);
}
.apple-liquid .membership-hero-copy { width: 53%; }
.apple-liquid .membership-hero-copy h2 { font-size: 29px; letter-spacing: -.025em; }
.apple-liquid .membership-progress,
.apple-liquid .tier-card,
.apple-liquid .active-subscription-card,
.apple-liquid .subscription-plan,
.apple-liquid .profile-status-grid button,
.apple-liquid :is(.pickup-store, .review-consent, .checkout-reward-choice label) {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,252,246,.72);
  -webkit-backdrop-filter: blur(17px) saturate(150%);
  backdrop-filter: blur(17px) saturate(150%);
  box-shadow: 0 16px 34px -29px rgba(7,20,41,.64), inset 0 1px 0 rgba(255,255,255,.82);
}
.apple-liquid .baer-membership-card { height: 120px; border: 1px solid rgba(255,255,255,.14); border-radius: 19px; }
.apple-liquid .baer-membership-card p { white-space: normal; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.apple-liquid .tier-card { border-radius: 18px; }

/* Subscriptions and profile become composed surfaces instead of card grids. */
.apple-liquid :is(.subscription-hub-hero, .subscription-detail-hero) { border-radius: 23px; box-shadow: 0 26px 52px -34px rgba(7,20,41,.86); }
.apple-liquid .active-subscription-card { border-radius: 19px; }
.apple-liquid .subscription-plan { border-radius: 20px; }
.apple-liquid .profile-membership {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 19px;
  background: linear-gradient(120deg, rgba(10,31,61,.96), rgba(28,59,91,.9));
  box-shadow: 0 20px 42px -30px rgba(7,20,41,.88), inset 0 1px 0 rgba(255,255,255,.15);
}
.apple-liquid .profile-status-grid { grid-template-columns: 1fr; gap: 9px; }
.apple-liquid .profile-status-grid button,
.apple-liquid .profile-status-grid button:first-child {
  min-height: 84px;
  grid-column: auto;
  grid-template-columns: 58px minmax(0,1fr) auto;
  border-radius: 18px;
}
.apple-liquid .profile-status-grid button:not(:first-child)::after {
  content: "›";
  color: rgba(10,31,61,.42);
  font-size: 22px;
  font-weight: 400;
}
.apple-liquid .profile-status-grid strong { overflow: visible; text-overflow: clip; white-space: normal; }
.apple-liquid .profile-section-title > small { border: 1px solid rgba(255,255,255,.72); background: rgba(255,252,246,.7); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.apple-liquid .profile-menu {
  margin-top: 12px;
  padding: 0 13px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255,252,246,.68);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--glass-shadow);
}
.apple-liquid .profile-menu > button { padding-inline: 2px; }

/* News: more image space and no accidental ellipsis in editorial copy. */
.apple-liquid .news-page-header { min-height: 216px; background: radial-gradient(circle at 90% -4%, #345f89 0, #102b4d 38%, #07172b 100%); }
.apple-liquid .news-feature { border-radius: 22px; box-shadow: 0 26px 52px -32px rgba(7,20,41,.92), inset 0 1px 0 rgba(255,255,255,.12); }
.apple-liquid .news-feed { gap: 10px; }
.apple-liquid .news-feed article {
  grid-template-columns: 104px minmax(0,1fr);
  gap: 12px;
  border-color: rgba(255,255,255,.72);
  border-radius: 19px;
  background: rgba(255,252,246,.72);
  -webkit-backdrop-filter: blur(17px) saturate(145%);
  backdrop-filter: blur(17px) saturate(145%);
  box-shadow: 0 17px 34px -29px rgba(7,20,41,.58), inset 0 1px 0 rgba(255,255,255,.82);
}
.apple-liquid .news-feed article > img { width: 104px; }
.apple-liquid .news-feed article > div { padding-right: 12px; }
.apple-liquid .news-feed p { text-overflow: clip; }

/* Real device-width adaptation: the phone may be 340px inside a wider browser. */
@container device-shell (max-width: 370px) {
  .apple-liquid .home-order-prompt { grid-template-columns: minmax(0,1fr) auto; gap: 8px; padding: 14px; }
  .apple-liquid .home-order-prompt h3 { max-width: none; font-size: 15px; }
  .apple-liquid .home-order-prompt p { max-width: 150px; }
  .apple-liquid .home-order-prompt button { padding-inline: 12px; }
  .apple-liquid .recommendation-scroll { grid-auto-columns: 270px; }
  .apple-liquid .recommendation-card { grid-template-columns: 126px minmax(0,1fr); }
  .apple-liquid .recommendation-card > img { width: 126px; }
  .apple-liquid .recommendation-card > i { left: 75px; }
  .apple-liquid .tier-card { grid-template-columns: 76px minmax(0,1fr) 70px; gap: 8px; padding-right: 8px; }
  .apple-liquid .tier-visual { width: 76px; }
  .apple-liquid .tier-card button { min-width: 70px; padding-inline: 7px; }
  .apple-liquid .membership-hero-art { width: 122px; right: 10px; }
  .apple-liquid .membership-hero-copy { width: 52%; }
  .apple-liquid .subscription-plan { padding-left: 132px; }
  .apple-liquid .subscription-plan-image { width: 120px; }
  .apple-liquid .news-feed article { grid-template-columns: 96px minmax(0,1fr); }
  .apple-liquid .news-feed article > img { width: 96px; }
  .apple-liquid .reorder-hero { grid-template-columns: 112px minmax(0,1fr); }
  .apple-liquid .reorder-hero img { width: 112px; }
  .apple-liquid .passport-grid button { min-height: 184px; }
  .apple-liquid .passport-grid img { height: 118px; }
}

@media (prefers-reduced-transparency: reduce) {
  .apple-liquid :is(.app-bottom-nav, .subpage-header, .round-icon, .location-pill, .location-inline, .menu-search, .search-field, .location-page-search, .sheet-panel, .recommendation-card, .profile-menu, .news-feed article) {
    background: #fffaf0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* 15-screen design comparison — open with ?compare=1 */
body.compare-mode {
  width: 100%;
  min-width: 320px;
  height: auto;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #07172e;
  overscroll-behavior-y: auto;
}

.compare-mode .concept-shell { display: none !important; }
.compare-shell[hidden] { display: none !important; }
.compare-shell {
  --cmp-navy: #0a1f3d;
  --cmp-navy-2: #102c50;
  --cmp-cream: #f4ecdb;
  --cmp-paper: #fffaf0;
  --cmp-gold: #b8924a;
  --cmp-ink: #0b1620;
  display: block;
  width: 100%;
  min-height: 100dvh;
  color: var(--cmp-cream);
  background:
    radial-gradient(circle at 88% 2%, rgba(184,146,74,.2), transparent 30rem),
    linear-gradient(180deg, #07172e 0%, #0a1f3d 68%, #061327 100%);
}

.compare-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(244,236,219,.15);
  background: rgba(7,23,46,.9);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  backdrop-filter: blur(22px) saturate(1.15);
}

.compare-brand,
.compare-header-actions,
.compare-controls,
.compare-intro-note,
.compare-stage-heading,
.compare-footer { display: flex; align-items: center; }
.compare-brand { gap: 11px; color: inherit; text-decoration: none; }
.compare-brand img { width: 49px; height: 49px; object-fit: contain; }
.compare-brand span { display: grid; gap: 2px; }
.compare-brand small,
.compare-stage-heading span,
.compare-intro > p {
  font: 700 9px/1.2 Inter, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d6bc82;
}
.compare-brand strong { font: 600 18px/1.1 "Playfair Display", serif; }
.compare-header-actions { gap: 12px; }
.compare-count {
  min-width: 74px;
  font: 700 11px/1 Inter, sans-serif;
  letter-spacing: .12em;
  color: rgba(244,236,219,.72);
}
.compare-open-app {
  padding: 11px 16px;
  color: var(--cmp-navy);
  background: var(--cmp-cream);
  border-radius: 999px;
  text-decoration: none;
  font: 700 11px/1 Inter, sans-serif;
}

.compare-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0 40px;
}
.compare-intro > p { grid-column: 1 / -1; margin: 0 0 16px; }
.compare-intro h1 {
  max-width: 780px;
  margin: 0;
  font: 500 clamp(52px, 8vw, 104px)/.84 "Playfair Display", serif;
  letter-spacing: -.055em;
}
.compare-intro h1 em { color: var(--cmp-gold); font-weight: 500; }
.compare-intro-note { gap: 12px; padding-bottom: 8px; font: 700 9px/1 Inter, sans-serif; letter-spacing: .2em; text-transform: uppercase; }
.compare-intro-note i { width: 62px; height: 1px; background: var(--cmp-gold); }

.compare-index {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 20px;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.compare-index::-webkit-scrollbar { display: none; }
.compare-index button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(244,236,219,.56);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(244,236,219,.12);
  border-radius: 999px;
  cursor: pointer;
  scroll-snap-align: center;
  font: 600 11px/1 Inter, sans-serif;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.compare-index button span { font-size: 9px; letter-spacing: .1em; color: var(--cmp-gold); }
.compare-index button:hover { color: var(--cmp-cream); border-color: rgba(244,236,219,.3); }
.compare-index button.is-active { color: var(--cmp-navy); background: var(--cmp-cream); border-color: var(--cmp-cream); }
.compare-index button.is-active span { color: #8c6e2c; }

.compare-stage {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  color: var(--cmp-ink);
  background: var(--cmp-cream);
  border-radius: 4px;
  box-shadow: 0 32px 110px -54px rgba(0,0,0,.92);
}
.compare-stage-heading { justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.compare-stage-heading > div { min-width: 0; }
.compare-stage-heading span { display: block; margin-bottom: 9px; color: #8c6e2c; }
.compare-stage-heading h2 { margin: 0; font: 600 clamp(36px, 5vw, 64px)/.95 "Playfair Display", serif; letter-spacing: -.04em; }
.compare-stage-heading p { width: min(360px, 40%); margin: 0; color: rgba(11,22,32,.62); font: 500 14px/1.5 Inter, sans-serif; }

.compare-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}
.compare-side { min-width: 0; }
.compare-side-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px;
  color: rgba(11,22,32,.55);
  font: 700 9px/1 Inter, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.compare-side-label b { color: var(--cmp-ink); font-weight: 700; letter-spacing: .08em; }
.compare-phone {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 7px;
  background: #0a0d11;
  border-radius: 43px;
  box-shadow: 0 25px 55px -28px rgba(4,15,30,.48);
}
.compare-phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 50%;
  width: 78px;
  height: 21px;
  transform: translateX(-50%);
  background: #080b0e;
  border-radius: 999px;
}
.compare-side.is-new .compare-phone { background: #07172e; }
.cc-screen {
  position: relative;
  height: min(650px, 68vw);
  min-height: 540px;
  overflow: hidden;
  border-radius: 36px;
  isolation: isolate;
  font-family: Inter, sans-serif;
}
.cc-screen::after {
  content: "";
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0,0,0,.12));
}
.cc-old { --ui-accent: #57d5ba; color: #f6f7f8; background: #0e1116; }
.cc-new { --ui-accent: #b8924a; color: #0b1620; background: #f8f1e4; }
.cc-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 8px 19px 0;
  font-size: 9px;
  font-weight: 700;
}
.cc-status i { width: 34px; height: 5px; border-radius: 99px; background: currentColor; opacity: .22; }
.cc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 10px;
}
.cc-top img { width: 34px; height: 34px; object-fit: contain; }
.cc-old .cc-top img { filter: grayscale(1) brightness(3); }
.cc-top small { display: block; font-size: 7px; letter-spacing: .16em; text-transform: uppercase; opacity: .58; }
.cc-top strong { display: block; margin-top: 2px; font-size: 13px; }
.cc-round {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}
.cc-body { padding: 4px 20px 76px; }
.cc-eyebrow { display: block; margin: 0 0 7px; color: var(--ui-accent); font-size: 7px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.cc-title { margin: 0 0 8px; font-size: 28px; line-height: .98; letter-spacing: -.035em; }
.cc-new .cc-title { font-family: "Playfair Display", serif; font-weight: 600; }
.cc-sub { margin: 0; color: currentColor; opacity: .58; font-size: 10px; line-height: 1.45; }
.cc-card {
  position: relative;
  margin-top: 13px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: #171b22;
}
.cc-new .cc-card { border-color: rgba(10,31,61,.09); border-radius: 4px; background: #fffaf0; box-shadow: 0 1px 0 rgba(11,22,32,.05); }
.cc-card small { display: block; margin-bottom: 5px; font-size: 7px; letter-spacing: .13em; text-transform: uppercase; opacity: .55; }
.cc-card h4 { margin: 0; font-size: 15px; line-height: 1.12; }
.cc-new .cc-card h4 { font-family: "Playfair Display", serif; font-size: 18px; }
.cc-card p { margin: 5px 0 0; font-size: 9px; line-height: 1.4; opacity: .62; }
.cc-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cc-list { display: grid; gap: 8px; margin-top: 13px; }
.cc-list > div,
.cc-list > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  padding: 9px 11px;
  color: inherit;
  text-align: left;
  background: #171b22;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.cc-new .cc-list > div,
.cc-new .cc-list > button { background: #fffaf0; border-color: rgba(10,31,61,.09); border-radius: 4px; }
.cc-list strong { display: block; font-size: 10px; }
.cc-list small { display: block; margin-top: 3px; font-size: 7px; opacity: .5; }
.cc-list b { flex: none; color: var(--ui-accent); font-size: 9px; }
.cc-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 43px;
  margin-top: 12px;
  color: #07172e;
  background: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.cc-new .cc-button { color: #f4ecdb; background: #0a1f3d; }
.cc-new .cc-button.is-gold { color: #0a1f3d; background: #b8924a; }
.cc-outline { background: transparent; border: 1px solid rgba(255,255,255,.22); color: inherit; }
.cc-new .cc-outline { color: #0a1f3d; background: transparent; border-color: rgba(10,31,61,.22); }
.cc-progress { height: 6px; margin-top: 10px; overflow: hidden; background: rgba(255,255,255,.11); border-radius: 999px; }
.cc-progress i { display: block; width: 64%; height: 100%; background: var(--ui-accent); border-radius: inherit; box-shadow: 0 0 10px var(--ui-accent); }
.cc-new .cc-progress { background: rgba(10,31,61,.1); }
.cc-new .cc-progress i { box-shadow: none; }
.cc-bottom {
  position: absolute;
  z-index: 6;
  right: 7px;
  bottom: 7px;
  left: 7px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 60px;
  padding: 7px 8px 5px;
  background: #15191f;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px 20px 31px 31px;
}
.cc-new .cc-bottom { background: rgba(255,250,240,.92); border-color: rgba(10,31,61,.1); box-shadow: 0 -10px 28px -22px rgba(10,31,61,.75); }
.cc-bottom i { display: grid; place-items: center; color: currentColor; opacity: .38; font-style: normal; font-size: 8px; }
.cc-bottom i::before { content: ""; width: 15px; height: 15px; margin-bottom: 3px; border: 1.5px solid currentColor; border-radius: 5px; }
.cc-bottom i.is-current { opacity: 1; }
.cc-old .cc-bottom i.is-current { color: #fff; background: #fff; border-radius: 13px; color: #0e1116; }
.cc-new .cc-bottom i.is-current { color: #0a1f3d; }

/* comparison screen modules */
.cc-login { min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 58px 22px 26px; }
.cc-login-logo { position: absolute; top: 60px; left: 50%; width: 74px; height: 74px; transform: translateX(-50%); object-fit: contain; }
.cc-old .cc-login-logo { filter: grayscale(1) brightness(3); opacity: .8; }
.cc-login h3 { margin: 0 0 8px; text-align: center; font-size: 28px; line-height: 1; }
.cc-new .cc-login h3 { color: #f4ecdb; font-family: "Playfair Display", serif; font-size: 35px; }
.cc-login p { margin: 0 0 19px; text-align: center; font-size: 9px; opacity: .58; }
.cc-new.cc-login-bg { color: #f4ecdb; background: radial-gradient(circle at 50% 28%, #173c65, #07172e 70%); }
.cc-login-script { display: block; margin-bottom: -3px; color: #d8b86d; text-align: center; font: 28px/1 "Pinyon Script", cursive; }
.cc-hero-media { position: relative; height: 166px; margin: 13px 0; overflow: hidden; border-radius: 18px; }
.cc-new .cc-hero-media { border-radius: 4px; }
.cc-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cc-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(3,12,24,.82)); }
.cc-hero-media > div { position: absolute; z-index: 2; right: 13px; bottom: 12px; left: 13px; color: #fff; }
.cc-hero-media small { font-size: 7px; letter-spacing: .15em; text-transform: uppercase; }
.cc-hero-media strong { display: block; margin-top: 3px; font: 600 18px/1 "Playfair Display", serif; }
.cc-chips { display: flex; gap: 6px; margin-top: 12px; overflow: hidden; }
.cc-chips span { flex: none; padding: 7px 10px; color: inherit; background: rgba(255,255,255,.08); border-radius: 999px; font-size: 8px; }
.cc-new .cc-chips span { background: #fffaf0; border: 1px solid rgba(10,31,61,.09); }
.cc-chips span.is-active { color: #07172e; background: var(--ui-accent); }
.cc-new .cc-chips span.is-active { color: #f4ecdb; background: #0a1f3d; }
.cc-product-art { height: 238px; margin: -4px -20px 13px; overflow: hidden; background: #17202b; }
.cc-product-art img { width: 100%; height: 100%; object-fit: cover; }
.cc-new .cc-product-art { height: 248px; background: #0a1f3d; }
.cc-price { color: var(--ui-accent); font-size: 13px; font-weight: 700; }
.cc-stepper { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; }
.cc-stepper i { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }
.cc-timeline { position: relative; display: grid; gap: 15px; margin: 18px 0 0 7px; padding-left: 26px; }
.cc-timeline::before { content: ""; position: absolute; top: 5px; bottom: 8px; left: 7px; width: 1px; background: rgba(127,127,127,.3); }
.cc-timeline div { position: relative; }
.cc-timeline div::before { content: ""; position: absolute; top: 1px; left: -25px; width: 11px; height: 11px; background: currentColor; border: 3px solid #0e1116; border-radius: 50%; }
.cc-new .cc-timeline div::before { border-color: #f8f1e4; }
.cc-timeline div.is-done::before { background: var(--ui-accent); }
.cc-timeline strong { display: block; font-size: 10px; }
.cc-timeline small { font-size: 8px; opacity: .5; }
.cc-ticket { margin-top: 13px; padding: 16px; color: #f4ecdb; background: #0a1f3d; border-radius: 4px; }
.cc-ticket .cc-row { align-items: flex-start; }
.cc-ticket img { width: 48px; height: 48px; object-fit: contain; }
.cc-ticket h4 { margin: 3px 0; color: #d8b86d; font: 600 21px/1 "Playfair Display", serif; }
.cc-qr { display: grid; width: 186px; height: 186px; margin: 15px auto; place-items: center; color: #10151d; background: #fff; border-radius: 14px; }
.cc-qr-grid {
  width: 152px; height: 152px;
  background:
    repeating-linear-gradient(0deg, currentColor 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px);
  background-blend-mode: multiply;
  clip-path: polygon(0 0,34% 0,34% 12%,46% 12%,46% 0,100% 0,100% 38%,91% 38%,91% 53%,100% 53%,100% 100%,57% 100%,57% 88%,42% 88%,42% 100%,0 100%,0 62%,9% 62%,9% 44%,0 44%);
  opacity: .9;
}
.cc-new .cc-qr { border-radius: 4px; box-shadow: 0 10px 30px -22px #000; }
.cc-passport { margin-top: 12px; padding: 18px; color: #f4ecdb; background: linear-gradient(145deg,#0a1f3d,#163657); border: 1px solid rgba(184,146,74,.55); border-radius: 4px; }
.cc-passport-head { display: flex; align-items: center; gap: 10px; }
.cc-passport-head img { width: 48px; height: 48px; object-fit: contain; }
.cc-passport-head small { display: block; color: #d8b86d; font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.cc-passport-head strong { display: block; font: 600 17px/1 "Playfair Display", serif; }
.cc-bears { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.cc-bears div { position: relative; min-height: 94px; padding: 8px; text-align: center; background: #fffaf0; border: 1px solid rgba(10,31,61,.08); border-radius: 4px; }
.cc-bears img { width: 62px; height: 62px; object-fit: contain; }
.cc-bears small { display: block; margin-top: 1px; font-size: 7px; font-weight: 700; }
.cc-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.cc-plan { min-height: 120px; padding: 10px 8px; background: #171b22; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; }
.cc-new .cc-plan { color: #0a1f3d; background: #fffaf0; border-radius: 4px; border-color: rgba(10,31,61,.1); }
.cc-plan.is-selected { border-color: var(--ui-accent); box-shadow: inset 0 0 0 1px var(--ui-accent); }
.cc-plan i { display: block; width: 22px; height: 22px; margin-bottom: 14px; background: var(--ui-accent); border-radius: 50%; }
.cc-plan small { display: block; font-size: 6px; letter-spacing: .08em; text-transform: uppercase; opacity: .55; }
.cc-plan strong { display: block; margin: 4px 0; font-size: 11px; }
.cc-plan b { display: block; color: var(--ui-accent); font-size: 9px; }
.cc-new .cc-plan:nth-child(1) { border-top: 4px solid #9c633b; }
.cc-new .cc-plan:nth-child(2) { border-top: 4px solid #7d8994; }
.cc-new .cc-plan:nth-child(3) { border-top: 4px solid #b8924a; }
.cc-profile-hero { margin: 5px 0 14px; text-align: center; }
.cc-profile-hero img { width: 100px; height: 100px; object-fit: contain; }
.cc-profile-hero strong { display: block; font: 600 22px/1 "Playfair Display", serif; }
.cc-profile-hero small { display: block; margin-top: 5px; color: #8c6e2c; font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.cc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }
.cc-split .cc-card { margin: 0; min-height: 104px; }
.cc-sub-card { position: relative; min-height: 150px; padding: 14px; overflow: hidden; color: #fff; border-radius: 4px; background: #0a1f3d; }
.cc-sub-card img { position: absolute; right: -12px; bottom: -20px; width: 118px; height: 135px; object-fit: cover; opacity: .8; }
.cc-sub-card h4 { position: relative; z-index: 2; margin: 2px 0; font: 600 19px/1 "Playfair Display", serif; }
.cc-sub-card small { position: relative; z-index: 2; font-size: 7px; color: #d8b86d; letter-spacing: .1em; text-transform: uppercase; }
.cc-news-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8px; margin-top: 13px; }
.cc-news-feature,
.cc-news-mini { position: relative; min-height: 230px; overflow: hidden; color: #fff; border-radius: 4px; background: #0a1f3d; }
.cc-news-mini { min-height: 111px; }
.cc-news-stack { display: grid; gap: 8px; }
.cc-news-grid img { width: 100%; height: 100%; object-fit: cover; }
.cc-news-grid article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 25%,rgba(4,14,27,.86)); }
.cc-news-grid div { position: absolute; z-index: 2; right: 10px; bottom: 10px; left: 10px; }
.cc-news-grid small { font-size: 6px; letter-spacing: .12em; text-transform: uppercase; }
.cc-news-grid strong { display: block; margin-top: 3px; font: 600 14px/1.05 "Playfair Display", serif; }
.cc-stamp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 13px; }
.cc-stamp-row div { display: grid; min-height: 82px; padding: 8px; place-items: center; text-align: center; background: #fffaf0; border: 1px solid rgba(10,31,61,.1); border-radius: 4px; }
.cc-stamp-row img { width: 44px; height: 44px; object-fit: contain; }
.cc-stamp-row small { font-size: 6px; }
.cc-old-placeholder { display: grid; min-height: 270px; margin-top: 16px; padding: 30px; place-items: center; text-align: center; border: 1px dashed rgba(255,255,255,.18); border-radius: 16px; }
.cc-old-placeholder i { display: grid; width: 74px; height: 74px; margin: 0 auto 13px; place-items: center; background: #171b22; border-radius: 50%; font-style: normal; font-size: 24px; opacity: .65; }
.cc-old-placeholder strong { display: block; font-size: 14px; }
.cc-old-placeholder p { max-width: 180px; margin: 7px auto 0; font-size: 9px; opacity: .48; }

.compare-screen-note {
  min-height: 40px;
  margin: 12px auto 0;
  width: min(100%, 390px);
  color: rgba(11,22,32,.6);
  font: 500 11px/1.45 Inter, sans-serif;
}
.compare-screen-note strong { color: var(--cmp-ink); }
.compare-controls { justify-content: space-between; gap: 16px; margin-top: 34px; }
.compare-controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--cmp-navy);
  background: transparent;
  border: 1px solid rgba(10,31,61,.18);
  border-radius: 999px;
  cursor: pointer;
  font: 700 10px/1 Inter, sans-serif;
}
.compare-controls button:last-child { justify-content: flex-end; color: var(--cmp-cream); background: var(--cmp-navy); border-color: var(--cmp-navy); }
.compare-controls button:disabled { opacity: .28; cursor: default; }
.compare-controls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.compare-progress { width: min(330px, 38vw); height: 2px; overflow: hidden; background: rgba(10,31,61,.12); }
.compare-progress i { display: block; width: 6.66%; height: 100%; background: var(--cmp-gold); transition: width .45s cubic-bezier(.2,.8,.2,1); }
.compare-footer { justify-content: space-between; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 44px; color: rgba(244,236,219,.55); font: 600 9px/1 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.compare-footer a { color: var(--cmp-cream); text-decoration-color: var(--cmp-gold); text-underline-offset: 4px; }

.compare-pair.is-changing .compare-side { animation: compare-reveal .42s cubic-bezier(.2,.75,.2,1) both; }
.compare-pair.is-changing .compare-side.is-new { animation-delay: .06s; }
@keyframes compare-reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 760px) {
  .compare-header { min-height: 70px; padding: 9px 16px; }
  .compare-brand img { width: 42px; height: 42px; }
  .compare-brand small { font-size: 7px; }
  .compare-brand strong { font-size: 15px; }
  .compare-count { display: none; }
  .compare-open-app { padding: 10px 12px; font-size: 9px; }
  .compare-intro { display: block; width: calc(100% - 32px); padding: 44px 0 28px; }
  .compare-intro h1 { font-size: clamp(48px, 18vw, 72px); }
  .compare-intro-note { margin-top: 28px; }
  .compare-index { width: calc(100% - 16px); padding-left: 8px; }
  .compare-stage { width: calc(100% - 16px); padding: 26px 12px; border-radius: 3px; }
  .compare-stage-heading { display: block; margin: 0 8px 24px; }
  .compare-stage-heading h2 { font-size: 42px; }
  .compare-stage-heading p { width: 100%; margin-top: 12px; font-size: 12px; }
  .compare-pair { display: flex; gap: 12px; padding: 0 8px 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .compare-pair::-webkit-scrollbar { display: none; }
  .compare-side { flex: 0 0 min(100%, 390px); scroll-snap-align: center; }
  .compare-phone { width: 100%; }
  .cc-screen { height: 650px; min-height: 650px; }
  .compare-screen-note { padding-inline: 4px; }
  .compare-controls { margin: 22px 8px 0; }
  .compare-controls button { min-width: 44px; width: 44px; padding: 0; justify-content: center; }
  .compare-controls button span { display: none; }
  .compare-progress { width: calc(100% - 120px); }
  .compare-footer { width: calc(100% - 32px); gap: 14px; font-size: 7px; }
}

@media (max-width: 370px) {
  .compare-open-app { display: none; }
  .compare-side { flex-basis: 100%; }
  .cc-screen { height: 590px; min-height: 590px; }
  .cc-body { padding-inline: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .compare-pair.is-changing .compare-side { animation: none; }
  .compare-progress i { transition: none; }
}

/* Club expansion: real destinations, image-led storytelling and causal iOS-style motion. */
.home-header-actions { display: flex; align-items: center; gap: 8px; }
.home-inbox-button { position: relative; width: 44px; height: 44px; }
.home-inbox-button > i { position: absolute; top: 7px; right: 7px; width: 8px; height: 8px; border: 2px solid #fffaf0; border-radius: 50%; background: #a24335; transition: opacity 180ms ease, transform 180ms cubic-bezier(.23,1,.32,1); }
.home-inbox-button.is-seen > i { opacity: 0; transform: scale(.45); }

.profile-menu-group {
  margin: 0;
  padding: 15px 16px 7px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.profile-menu-group:first-child { padding-top: 9px; }
.profile-menu-group + button { border-top-color: rgba(10,31,61,.08); }

.reward-earn-panel { display: grid; gap: 10px; }
.reward-earn-panel[hidden], [data-reward-panel][hidden] { display: none !important; }
.reward-earn-feature,
.reward-earn-row {
  width: 100%;
  border: 0;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
}
.reward-earn-feature {
  min-height: 116px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--cream);
  background: #0f2e37;
}
.reward-earn-feature span :is(small,strong,em) { display: block; }
.reward-earn-feature small { color: #bfd4c4; font-size: 12px; font-weight: 700; }
.reward-earn-feature strong { margin-top: 7px; font: 500 23px/1 Playfair Display, Georgia, serif; }
.reward-earn-feature em { margin-top: 8px; color: rgba(244,236,219,.7); font-size: 12px; font-style: normal; }
.reward-earn-feature > b { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #0f2e37; background: #bfd4c4; font-size: 13px; }
.reward-earn-row { min-height: 76px; padding: 9px 12px; display: grid; grid-template-columns: 52px minmax(0,1fr) 20px; align-items: center; gap: 11px; color: var(--cream); background: #181d24; }
.reward-earn-row > img,
.reward-earn-row > i { width: 50px; height: 58px; object-fit: contain; }
.reward-earn-row > i { display: grid; height: 50px; place-items: center; border-radius: 12px; background: rgba(255,255,255,.07); }
.reward-earn-row > i svg { width: 24px; }
.reward-earn-row span :is(strong,small) { display: block; }
.reward-earn-row span strong { font-size: 13px; }
.reward-earn-row span small { margin-top: 5px; color: rgba(255,255,255,.57); font-size: 12px; }
.reward-earn-row > svg { width: 18px; fill: none; stroke: rgba(255,255,255,.45); stroke-width: 1.5; }

.pickup-pass {
  margin: 14px 18px 0;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--cream);
  box-shadow: 0 16px 34px -26px rgba(0,0,0,.8);
}
.pickup-pass span :is(small,strong,em), .pickup-pass > b :is(small) { display: block; }
.pickup-pass span > small { color: var(--gold-deep); font-size: 12px; font-weight: 750; }
.pickup-pass span > strong { margin-top: 4px; font: 600 25px/1 Playfair Display, Georgia, serif; font-variant-numeric: tabular-nums; letter-spacing: .025em; }
.pickup-pass span > em { max-width: 190px; margin-top: 7px; color: #5d625e; font-size: 12px; font-style: normal; line-height: 1.35; }
.pickup-pass > b { flex: 0 0 74px; color: var(--navy); font: 600 19px/1.15 Playfair Display, Georgia, serif; text-align: right; }
.pickup-pass > b small { margin-bottom: 5px; color: #5d625e; font: 700 12px/1 Inter, sans-serif; }

.screen-order-receipt,
.screen-club-inbox,
.screen-account-settings,
.screen-journal-story { padding-bottom: max(30px, env(safe-area-inset-bottom)); background: #fffaf0; }

.receipt-card { margin: 8px 18px 0; padding: 17px; border-radius: 14px; background: #fff; box-shadow: 0 17px 34px -28px rgba(10,31,61,.6); }
.receipt-card > header { display: flex; align-items: center; justify-content: space-between; }
.receipt-card > header img { width: 42px; height: 42px; object-fit: contain; }
.receipt-card > header span { padding: 7px 10px; border-radius: 999px; color: #264f42; background: #dce9df; font-size: 12px; font-weight: 750; }
.receipt-title { padding: 12px 0 15px; border-bottom: 1px solid rgba(10,31,61,.1); }
.receipt-title small { color: var(--gold-deep); font-size: 12px; font-weight: 700; }
.receipt-title h3 { margin-top: 5px; color: var(--navy); font: 500 23px/1.1 Playfair Display, Georgia, serif; }
.receipt-title p { margin-top: 5px; color: #5d625e; font-size: 12px; }
.receipt-line { padding: 14px 0; display: grid; grid-template-columns: 50px minmax(0,1fr) auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(10,31,61,.1); }
.receipt-line img { width: 50px; height: 58px; border-radius: 10px; object-fit: cover; }
.receipt-line span :is(strong,small) { display: block; }
.receipt-line span strong { color: var(--navy); font-size: 13px; }
.receipt-line span small { margin-top: 5px; color: #676b68; font-size: 12px; }
.receipt-line > b { color: var(--navy); font-size: 13px; }
.receipt-reward { padding: 14px 0; display: flex; align-items: center; gap: 10px; }
.receipt-reward svg { width: 24px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.receipt-reward span :is(strong,small) { display: block; }
.receipt-reward strong { color: var(--navy); font-size: 13px; }
.receipt-reward small { margin-top: 4px; color: #676b68; font-size: 12px; }
.receipt-total { padding-top: 13px; display: flex; justify-content: space-between; border-top: 1px solid rgba(10,31,61,.16); color: var(--navy); font-size: 15px; }
.receipt-total strong { font-variant-numeric: tabular-nums; }
.receipt-status { margin: 14px 18px 0; padding: 16px; border-radius: 14px; background: #efe8da; }
.receipt-status h3 { color: var(--navy); font: 500 17px/1.2 Playfair Display, Georgia, serif; }
.receipt-status ol { margin-top: 13px; display: grid; gap: 12px; }
.receipt-status li { display: grid; grid-template-columns: 14px 1fr; align-items: center; gap: 9px; }
.receipt-status li > i { width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: #497264; box-shadow: 0 0 0 1px #497264; }
.receipt-status li span { display: flex; justify-content: space-between; color: var(--navy); }
.receipt-status li strong { font-size: 12px; }
.receipt-status li small { color: #676b68; font-size: 12px; }
.receipt-actions { margin: 14px 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.receipt-actions button { min-height: 48px; border: 1px solid rgba(10,31,61,.16); border-radius: 999px; color: var(--navy); background: transparent; font-weight: 750; }
.receipt-actions button:first-child { color: var(--cream); background: var(--navy); }

.apple-liquid .screen-store-detail { padding: 0 18px max(30px, env(safe-area-inset-bottom)); color: var(--cream); background: var(--navy); background-image: none; }
.store-detail-header { min-height: 78px; padding-top: max(14px, env(safe-area-inset-top)); display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; }
.store-detail-header > img { justify-self: center; width: 48px; height: 48px; object-fit: contain; }
.store-detail-hero { min-height: 250px; position: relative; overflow: hidden; border-radius: 16px; background: #0f2e37; box-shadow: 0 22px 46px -34px rgba(0,0,0,.92); }
.store-detail-copy { position: relative; z-index: 2; width: 66%; padding: 24px 0 22px 20px; }
.store-detail-copy > span { display: flex; align-items: center; gap: 7px; color: #bfd4c4; font-size: 12px; font-weight: 750; }
.store-detail-copy > span i { width: 7px; height: 7px; border-radius: 50%; background: #8eb69f; }
.store-detail-copy h2 { margin-top: 18px; font: 500 32px/.98 Playfair Display, Georgia, serif; letter-spacing: -.02em; }
.store-detail-copy p { max-width: 190px; margin-top: 12px; color: rgba(244,236,219,.72); font-size: 13px; line-height: 1.45; }
.store-pack-scene { position: absolute; right: -9px; bottom: -12px; width: 158px; height: 220px; }
.store-pack-scene img { position: absolute; width: 118px; filter: drop-shadow(0 22px 24px rgba(0,0,0,.38)); }
.store-pack-scene img:first-child { right: 36px; bottom: -12px; transform: rotate(-8deg); }
.store-pack-scene img:last-child { right: -20px; bottom: 16px; transform: rotate(9deg); }
.store-primary-actions { margin-top: 14px; display: grid; grid-template-columns: 1fr 108px; gap: 9px; }
.store-primary-actions button { min-height: 50px; border: 1px solid rgba(244,236,219,.24); border-radius: 999px; color: var(--cream); background: transparent; font-size: 13px; font-weight: 750; }
.store-primary-actions button:first-child { border: 0; color: var(--navy); background: var(--gold); }
.store-primary-actions button:first-child:disabled { color: rgba(244,236,219,.55); background: rgba(244,236,219,.14); cursor: not-allowed; }
.store-primary-actions svg { width: 18px; margin-right: 7px; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.6; }
.store-facts { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.store-facts > div { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.store-facts > div:last-child { border-bottom: 0; }
.store-facts span { color: rgba(244,236,219,.58); font-size: 12px; }
.store-facts strong { font-size: 12px; text-align: right; }
.store-picks { margin-top: 21px; }
.store-picks > header { display: flex; align-items: center; justify-content: space-between; }
.store-picks h3 { font: 500 18px/1.2 Playfair Display, Georgia, serif; }
.store-picks header button { border: 0; color: #d7c186; background: transparent; font-size: 12px; font-weight: 700; }
.store-picks > div { margin-top: 11px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.store-picks > div button { min-width: 0; overflow: hidden; border: 0; border-radius: 14px; text-align: left; background: #f4ecdb; }
.store-picks > div img { width: 100%; height: 104px; object-fit: cover; }
.store-picks > div button:last-child img { object-fit: contain; background: #bfd4c4; }
.store-picks > div span { padding: 10px; display: block; color: var(--navy); }
.store-picks > div span :is(strong,small) { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.store-picks > div strong { font-size: 12px; }
.store-picks > div small { margin-top: 4px; color: #5d625e; font-size: 12px; }
.screen-store-detail .demo-disclaimer { color: rgba(244,236,219,.48); }

.inbox-header { grid-template-columns: 42px minmax(0,1fr) auto; }
.inbox-read-all { min-height: 44px; padding: 0 3px; border: 0; color: var(--gold-deep); background: transparent; font-size: 12px; font-weight: 750; }
.inbox-tabs { margin: 0 18px 15px; padding: 3px; display: grid; grid-template-columns: .7fr 1.35fr .7fr; gap: 3px; border-radius: 12px; background: #e8e0d2; }
.inbox-tabs button { min-height: 38px; border: 0; border-radius: 9px; color: #666b67; background: transparent; font-size: 12px; font-weight: 700; }
.inbox-tabs button.is-active { color: var(--navy); background: #fffaf0; box-shadow: 0 5px 14px -12px rgba(10,31,61,.75); }
.inbox-feed { margin: 0 18px; display: grid; gap: 9px; }
.inbox-card { min-height: 91px; position: relative; padding: 14px 12px 14px 16px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; border: 0; border-radius: 14px; color: var(--navy); text-align: left; background: #f0e9dc; }
.inbox-card.is-live { color: var(--cream); background: var(--navy); }
.inbox-card > i { position: absolute; top: 15px; left: 7px; width: 6px; height: 6px; border-radius: 50%; background: #a24335; }
.inbox-card span :is(small,strong,em) { display: block; }
.inbox-card span small { color: var(--gold-deep); font-size: 12px; font-weight: 750; }
.inbox-card.is-live span small { color: #d7c186; }
.inbox-card span strong { margin-top: 6px; font-size: 13px; line-height: 1.28; }
.inbox-card span em { margin-top: 6px; color: #6b6f6c; font-size: 12px; font-style: normal; line-height: 1.3; }
.inbox-card.is-live span em { color: rgba(244,236,219,.62); }
.inbox-card > b { color: var(--gold-deep); font-size: 12px; }
.inbox-card.is-live > b { color: #d7c186; }
.inbox-card:not(.is-unread) > i { display: none; }

.settings-identity { margin: 7px 18px 17px; padding: 13px; display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 11px; border-radius: 14px; color: var(--cream); background: var(--navy); }
.settings-identity .profile-avatar { width: 48px; height: 48px; }
.settings-identity span :is(strong,small) { display: block; }
.settings-identity strong { font: 500 17px/1.2 Playfair Display, Georgia, serif; }
.settings-identity small { margin-top: 5px; color: rgba(244,236,219,.62); font-size: 12px; }
.settings-identity button { border: 0; color: #d7c186; background: transparent; font-size: 12px; font-weight: 750; }
.settings-group { margin: 0 18px 15px; overflow: hidden; border-radius: 14px; background: #f0e9dc; }
.settings-group h3 { padding: 13px 15px 8px; color: var(--gold-deep); font-size: 12px; letter-spacing: .075em; text-transform: uppercase; }
.settings-group > button { width: 100%; min-height: 60px; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; border-top: 1px solid rgba(10,31,61,.09); color: var(--navy); text-align: left; background: transparent; }
.settings-group > button span :is(strong,small) { display: block; }
.settings-group > button strong { font-size: 13px; }
.settings-group > button small { margin-top: 4px; color: #686d69; font-size: 12px; }
.settings-group > button > svg { width: 19px; fill: none; stroke: #747a76; stroke-width: 1.5; }
.setting-switch { width: 45px; height: 27px; position: relative; flex: 0 0 auto; border-radius: 999px; background: #aeb2af; transition: background-color 160ms ease; }
.setting-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: white; box-shadow: 0 3px 9px rgba(10,31,61,.2); transition: transform 180ms cubic-bezier(.23,1,.32,1); }
[data-setting-toggle][aria-pressed="true"] .setting-switch { background: #497264; }
[data-setting-toggle][aria-pressed="true"] .setting-switch::after { transform: translateX(18px); }
.settings-signout { width: calc(100% - 36px); min-height: 48px; margin: 2px 18px 0; border: 1px solid rgba(146,55,45,.28); border-radius: 999px; color: #92372d; background: transparent; font-weight: 750; }

.story-header { min-height: 76px; padding: max(14px, env(safe-area-inset-top)) 18px 8px; display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; }
.story-header > img { justify-self: center; width: 46px; height: 46px; object-fit: contain; }
.story-hero { min-height: 302px; position: relative; margin: 0 18px; overflow: hidden; border-radius: 16px; color: var(--cream); background: #0f2e37; }
.story-hero > div { position: relative; z-index: 2; width: 63%; padding: 24px 0 22px 20px; }
.story-hero span { color: #bfd4c4; font-size: 12px; font-weight: 750; }
.story-hero h2 { margin-top: 18px; font: 500 31px/.98 Playfair Display, Georgia, serif; letter-spacing: -.025em; }
.story-hero p { margin-top: 14px; color: rgba(244,236,219,.7); font-size: 13px; }
.story-hero > img { position: absolute; right: -27px; bottom: -30px; width: 190px; filter: drop-shadow(0 24px 26px rgba(0,0,0,.4)); transform: rotate(7deg); }
.story-meta { margin: 14px 18px 0; display: flex; justify-content: space-between; color: #6a6f6b; font-size: 12px; }
.story-body { margin: 18px 18px 0; color: #343c3b; }
.story-body > p { font-size: 14px; line-height: 1.6; }
.story-body figure { margin: 20px 0; display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 15px; overflow: hidden; border-radius: 14px; background: #e8a8ae; }
.story-body figure img { width: 112px; height: 130px; object-fit: contain; }
.story-body figcaption { padding-right: 14px; color: #2e2e96; font: 500 15px/1.35 Playfair Display, Georgia, serif; }
.story-body h3 { margin: 22px 0 8px; color: var(--navy); font: 500 22px/1.2 Playfair Display, Georgia, serif; }
.story-cta { width: calc(100% - 36px); min-height: 50px; margin: 20px 18px 0; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); font-size: 13px; font-weight: 750; }
.story-cta svg { width: 19px; margin-left: 8px; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.6; }
.story-related { width: calc(100% - 36px); min-height: 96px; margin: 10px 18px 0; padding: 5px 14px 5px 5px; display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 12px; border: 0; border-radius: 14px; color: var(--navy); text-align: left; background: #ede4d4; }
.story-related img { width: 76px; height: 86px; object-fit: contain; }
.story-related span :is(small,strong) { display: block; }
.story-related small { color: var(--gold-deep); font-size: 12px; font-weight: 750; }
.story-related strong { margin-top: 7px; font: 500 17px/1.2 Playfair Display, Georgia, serif; }

/* Floating chrome is glass; content stays solid and calm. */
.location-sheet,
.cart-sheet { z-index: 130; display: block; visibility: hidden; pointer-events: none; opacity: 0; transition: opacity 160ms ease, visibility 0s linear 230ms; }
.location-sheet.is-open,
.cart-sheet.is-open { visibility: visible; pointer-events: auto; opacity: 1; transition: opacity 180ms ease; }
.location-sheet.is-closing,
.cart-sheet.is-closing { visibility: visible; }
.sheet-backdrop { opacity: 0; transition: opacity 160ms ease; }
.is-open > .sheet-backdrop { opacity: 1; }
.sheet-panel { transform: translateY(100%); animation: none; transition: transform 220ms cubic-bezier(.32,.72,0,1); will-change: transform; }
.is-open > .sheet-panel { transform: translateY(0); transition-duration: 280ms; }

.apple-liquid .app-screen[data-screen="home"].is-active .home-baer-avatar,
.apple-liquid .app-screen[data-screen="home"].is-active .member-pass::after,
.apple-liquid .app-bottom-nav button.is-active > svg,
.apple-liquid .app-bottom-nav .nav-profile-bear.is-active .nav-baer-avatar { animation: none !important; }
.apple-liquid .recommendation-card,
.apple-liquid .recommendation-card > img,
.apple-liquid .recommendation-card > i { transition-duration: 180ms; }
.apple-liquid .recommendation-card.is-focus { box-shadow: none; }
.apple-liquid .recommendation-card.is-focus > img { transform: scale(1.015); }
.app-bottom-nav button { transition: color 150ms ease, background-color 150ms ease; }
.toast { bottom: calc(92px + env(safe-area-inset-bottom)); }

.apple-liquid :is(.membership-progress, .active-subscription-card, .subscription-plan, .profile-status-grid button, .pickup-store, .review-consent, .checkout-reward-choice label, .profile-menu, .news-feed article) {
  background: #fffaf0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 14px 28px -26px rgba(7,20,41,.55);
}
.apple-liquid .profile-membership { background: var(--navy); }

@media (hover: hover) and (pointer: fine) {
  .apple-liquid :is(.home-order-prompt button, .home-news-teaser):hover svg,
  .apple-liquid .home-subscription-option:hover b svg { transform: translateX(3px); }
}

@media (prefers-reduced-transparency: reduce) {
  .apple-liquid :is(.app-bottom-nav, .subpage-header, .story-header, .store-detail-header, .round-icon, .sheet-panel, .toast) { background-color: #fffaf0; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .screen-store-detail :is(.store-detail-header, .round-icon), .screen-order :is(.round-icon) { color: var(--cream); background-color: var(--navy); }
}

@media (prefers-reduced-motion: reduce) {
  .home-inbox-button > i,
  .setting-switch,
  .setting-switch::after,
  .location-sheet,
  .cart-sheet,
  .sheet-backdrop,
  .sheet-panel { transition: opacity 160ms ease, color 160ms ease, background-color 160ms ease !important; transform: none !important; }
}

@media (max-height: 720px) {
  .pickup-pass { margin-top: 9px; padding-block: 11px; }
  .store-detail-hero { min-height: 218px; }
  .story-hero { min-height: 260px; }
}

/* Five-point club upgrade: accessible chrome, calmer Home, Club Duo and passport levels. */
.apple-liquid .app-screen:focus { outline: none; }
.apple-liquid .app-bottom-nav button { color: #5d625e; }
.apple-liquid .app-bottom-nav button[aria-current="page"] { color: var(--navy); }
.apple-liquid .menu-mode button { min-height: 44px; font-size: 12px; }

.apple-liquid .member-pass .pass-actions button:first-child {
  border-color: rgba(244,236,219,.76);
  color: var(--cream);
  background: rgba(244,236,219,.08);
}
.apple-liquid .home-order-prompt {
  min-height: 82px;
  border: 1px solid rgba(10,31,61,.1);
  border-radius: 16px;
  color: var(--navy);
  background: #fffaf0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 14px 28px -25px rgba(7,20,41,.52);
}
.apple-liquid .home-order-prompt h3 { color: var(--navy); }
.apple-liquid .home-order-prompt p { color: #5e635f; }
.apple-liquid .home-order-prompt button {
  border-color: rgba(140,110,44,.2);
  background: var(--gold);
  box-shadow: 0 10px 20px -16px rgba(7,20,41,.5);
}

.club-duo {
  min-height: 92px;
  margin-top: 12px;
  padding: 9px 9px 9px 7px;
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(15,46,55,.18);
  border-radius: 14px;
  background: #e4eee6;
  box-shadow: 0 12px 26px -24px rgba(7,20,41,.58);
}
.club-duo[hidden] { display: none; }
.club-duo > img { width: 68px; height: 76px; object-fit: contain; filter: drop-shadow(0 9px 9px rgba(10,31,61,.17)); }
.club-duo > span { min-width: 0; }
.club-duo > span :is(small, strong, b) { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.club-duo > span small { color: #476159; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.club-duo > span strong { margin-top: 5px; color: var(--navy); font: 500 15px/1.1 Playfair Display, Georgia, serif; }
.club-duo > span b { margin-top: 6px; color: var(--gold-deep); font-size: 12px; }
.club-duo > button {
  min-width: 78px;
  min-height: 48px;
  padding: 6px 10px;
  border: 1px solid rgba(10,31,61,.18);
  border-radius: 999px;
  color: var(--cream);
  background: var(--navy);
  cursor: pointer;
}
.club-duo > button :is(span, b) { display: block; font-size: 12px; line-height: 1.25; white-space: nowrap; }
.club-duo > button b { margin-top: 2px; color: #dfc783; }
.club-duo.is-added { border-color: rgba(140,110,44,.42); background: #f1e7cd; }
.club-duo.is-added > button { color: var(--navy); background: transparent; }
.club-duo.is-added > button b { color: var(--gold-deep); }

.apple-liquid .tier-stack { grid-auto-rows: 132px; gap: 11px; }
.apple-liquid .tier-card {
  height: 132px;
  position: relative;
  grid-template-columns: 92px minmax(0,1fr) auto;
  gap: 12px;
  border-radius: 14px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 12px 28px -24px rgba(7,20,41,.55);
}
.apple-liquid .tier-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 13px;
  bottom: 13px;
  left: 91px;
  width: 1px;
  background: rgba(10,31,61,.1);
  pointer-events: none;
}
.apple-liquid .tier-card[data-membership-card-tier="Bronze Member"] { border-color: #b78d70; background: #ead5c3; }
.apple-liquid .tier-card[data-membership-card-tier="Bronze Member"] .tier-visual { background: #d8bca5; }
.apple-liquid .tier-card.tier-gold { border-color: #b8924a; background: #f0dfa7; }
.apple-liquid .tier-card.tier-gold .tier-visual { background: #d9bd68; }
.apple-liquid .tier-card.tier-black { border-color: #b8924a; background: #11161d; }
.apple-liquid .tier-card.tier-black .tier-visual { background: #202832; }
.apple-liquid .tier-card.tier-black::before { background: rgba(244,236,219,.16); }
.apple-liquid .tier-visual { width: 92px; height: 132px; }
.apple-liquid .tier-visual i { background-position: center 48%; background-size: 158% auto; filter: drop-shadow(0 10px 10px rgba(7,20,41,.18)); }
.apple-liquid .tier-visual b { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.54); font-size: 11px; }
.apple-liquid .tier-card h3 { font-size: 17px; }
.apple-liquid .tier-card p { margin-top: 5px; font-size: 12px; }
.apple-liquid .tier-passport-code {
  display: block;
  margin-top: 9px;
  overflow: hidden;
  color: rgba(10,31,61,.56);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.apple-liquid .tier-black .tier-passport-code { color: rgba(244,236,219,.55); }
.apple-liquid .upgrade-card-bear {
  top: 42px;
  right: 5px;
  width: 142px;
  height: 188px;
  border-radius: 0;
  background-position: center 48%;
  background-size: 158% auto;
}

.apple-liquid .app-screen[data-screen="home"].is-active .home-baer-avatar,
.apple-liquid .app-screen[data-screen="home"].is-active .member-pass::after { animation: none; }
.member-pass.is-club-event::before { animation: member-pass-sheen 780ms cubic-bezier(.22,1,.36,1) both; }

@container device-shell (max-width: 350px) {
  .club-duo { grid-template-columns: 62px minmax(0,1fr) 72px; gap: 7px; }
  .club-duo > img { width: 58px; }
  .club-duo > button { min-width: 70px; padding-inline: 7px; }
  .apple-liquid .tier-card { grid-template-columns: 76px minmax(0,1fr) 68px; gap: 8px; padding-right: 7px; }
  .apple-liquid .tier-card::before { left: 75px; }
  .apple-liquid .tier-visual { width: 76px; }
  .apple-liquid .tier-card h3 { font-size: 15px; }
  .apple-liquid .tier-passport-code { letter-spacing: .02em; }
}

@media (max-height: 720px) {
  .app-live .app-screen[data-screen="home"],
  .app-live .app-screen[data-screen="menu"],
  .app-live .app-screen[data-screen="rewards"],
  .app-live .app-screen[data-screen="profile"],
  .app-live .app-screen[data-screen="news"] {
    bottom: calc(90px + env(safe-area-inset-bottom));
    padding-bottom: 26px !important;
    scroll-padding-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .member-pass.is-club-event::before { animation: none !important; }
}

/* Motion-alive home polish: one authored bear moment, calm supporting movement. */
.apple-liquid .home-welcome { min-width: 0; }
.apple-liquid .home-welcome > small {
  display: block;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .085em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.apple-liquid .home-baer-button {
  position: relative;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  overflow: visible;
  border-color: rgba(255,255,255,.82);
  background: rgba(238,228,211,.82);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);
  box-shadow: 0 16px 28px -19px rgba(7,20,41,.76), inset 0 1px 0 rgba(255,255,255,.92), 0 0 0 1px rgba(10,31,61,.07);
}
.apple-liquid .home-baer-avatar {
  position: absolute;
  inset: 1px;
  display: block;
  border-radius: 50%;
  background-position: center 34%;
  background-repeat: no-repeat;
  background-size: 260% auto;
  transform-origin: 50% 78%;
  will-change: transform;
}
.apple-liquid .home-baer-status {
  position: absolute;
  right: -1px;
  bottom: 3px;
  width: 11px;
  height: 11px;
  border: 2px solid #fffaf0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 3px 8px rgba(7,20,41,.18);
}
.apple-liquid .app-screen[data-screen="home"].is-active .home-baer-avatar {
  animation: none;
}
.apple-liquid .app-screen[data-screen="home"].is-active .member-pass::after {
  animation: none;
  will-change: transform;
}
.apple-liquid .recommendation-card {
  opacity: .86;
  transition: opacity 240ms ease, border-color 240ms ease, box-shadow 320ms ease;
}
.apple-liquid .recommendation-card > img {
  transform: scale(1.001);
  transition: transform 520ms cubic-bezier(.22,1,.36,1), filter 320ms ease;
}
.apple-liquid .recommendation-card > i {
  transition: transform 260ms cubic-bezier(.2,.75,.25,1), background-color 220ms ease;
}
.apple-liquid .recommendation-card.is-focus {
  opacity: 1;
  border-color: rgba(184,146,74,.36);
  box-shadow: 0 22px 42px -28px rgba(7,20,41,.72), inset 0 1px 0 rgba(255,255,255,.9);
}
.apple-liquid .recommendation-card.is-focus > img { transform: scale(1.035); }
.apple-liquid .recommendation-card.is-focus > i { transform: translateY(-2px) scale(1.04); background: rgba(10,31,61,.95); }
.apple-liquid :is(.home-order-prompt button, .home-news-teaser) svg,
.apple-liquid .home-subscription-option b svg { transition: transform 180ms ease-out; }
.apple-liquid :is(.home-order-prompt button, .home-news-teaser):is(:hover, :focus-visible) svg,
.apple-liquid .home-subscription-option:is(:hover, :focus-visible) b svg { transform: translateX(3px); }
.apple-liquid .app-bottom-nav button.is-active > svg { animation: none; }
.apple-liquid .app-bottom-nav .nav-profile-bear.is-active .nav-baer-avatar { animation: none; }

@keyframes home-bear-idle {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  46% { transform: translate3d(0,-2px,0) rotate(-.55deg); }
  54% { transform: translate3d(0,-2px,0) rotate(.45deg); }
}
@keyframes member-rings-drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-5px,4px,0) scale(1.025); }
}
@keyframes nav-glyph-settle {
  0% { opacity: .55; transform: translateY(2px) scale(.88); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes nav-bear-settle {
  0% { opacity: .65; transform: translateY(3px) scale(.91); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .apple-liquid .app-screen[data-screen="home"].is-active .home-baer-avatar,
  .apple-liquid .app-screen[data-screen="home"].is-active .member-pass::after,
  .apple-liquid .app-bottom-nav button.is-active > svg,
  .apple-liquid .app-bottom-nav .nav-profile-bear.is-active .nav-baer-avatar { animation: none !important; }
  .apple-liquid .recommendation-card,
  .apple-liquid .recommendation-card > img,
  .apple-liquid .recommendation-card > i { transition: none !important; }
}

@media (prefers-contrast: more) {
  .apple-liquid :is(.app-bottom-nav, .subpage-header, .round-icon, .location-pill, .location-inline, .menu-search, .search-field, .location-page-search, .sheet-panel, .recommendation-card, .profile-menu, .news-feed article) {
    border-color: rgba(10,31,61,.46);
    background: #fffaf0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .member-pass::before { display: none !important; }
  .member-pass .progress-track i { transform: none !important; }
}

/* Live app mode: fill the actual browser viewport. The desktop concept board
   stays available with ?concept=1 when a presentation view is useful. */
body.app-live {
  width: 100%;
  min-width: 320px;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--cream-2);
}

.app-live .concept-shell {
  display: block;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
}

.app-live .concept-panel,
.app-live .device-toolbar {
  display: none;
}

.app-live .device-stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  padding: 0;
  background: #e8dfcf;
}

.app-live .device {
  width: min(100%, 430px);
  height: 100dvh;
  min-height: 100dvh;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--cream-2);
}

.app-live .device-sensor {
  display: none;
}

.app-live .app-screen {
  scroll-padding-bottom: calc(104px + env(safe-area-inset-bottom));
  scrollbar-width: none;
}

.app-live .app-screen::-webkit-scrollbar {
  display: none;
}

.app-live .app-screen[data-screen="home"],
.app-live .app-screen[data-screen="menu"],
.app-live .app-screen[data-screen="rewards"],
.app-live .app-screen[data-screen="profile"],
.app-live .app-screen[data-screen="news"] {
  padding-bottom: calc(104px + env(safe-area-inset-bottom)) !important;
}

.app-live .app-bottom-nav {
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: calc(76px + env(safe-area-inset-bottom));
  padding: 5px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -18px 44px -30px rgba(7,20,41,.72), inset 0 1px 0 rgba(255,255,255,.9);
  touch-action: manipulation;
}

.app-live .app-bottom-nav button {
  min-width: 0;
  height: 64px;
  padding-inline: 2px;
}

.app-live .app-bottom-nav button > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-live .app-bottom-nav .nav-profile-bear {
  height: 64px;
  transform: translateY(-3px);
}

.app-live .app-bottom-nav .nav-profile-bear .nav-baer-avatar {
  width: 44px;
  height: 44px;
}

.app-live .app-header {
  padding-top: max(28px, calc(env(safe-area-inset-top) + 12px));
}

.app-live .menu-header,
.app-live .rewards-header,
.app-live .profile-header {
  padding-top: max(26px, calc(env(safe-area-inset-top) + 10px));
}

.app-live .subpage-header {
  padding-top: max(30px, calc(env(safe-area-inset-top) + 10px));
}

.app-live .news-page-header {
  padding-top: max(36px, calc(env(safe-area-inset-top) + 14px));
}

@media (max-width: 560px) {
  .app-live .device-stage {
    padding: 0;
    background: var(--cream-2);
  }

  .app-live .device {
    width: 100%;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
