*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

:root {
  --navy: #071833;
  --navy-2: #0c2348;
  --navy-3: #14305f;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.22);
  --font-sans: "Montserrat", sans-serif;
  --font-script: "Great Vibes", cursive;
  --nav-h: 5.4rem;
}

body.cafe {
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.cafe .page {
  background: transparent;
}

.cafe-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 24, 51, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.cafe-nav-inner,
.cafe-footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.cafe-nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cafe-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.cafe-brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.cafe-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.cafe-brand-name small {
  letter-spacing: 0.42em;
  font-size: 0.58rem;
  font-weight: 500;
}

.cafe-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cafe-links a:hover,
.cafe-foot-links a:hover {
  opacity: 0.7;
}

.cafe-call {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.cafe-call:hover {
  background: #fff;
  color: var(--navy);
}

.cafe-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
}

.cafe-toggle span,
.cafe-toggle span::before,
.cafe-toggle span::after {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  position: relative;
  margin-inline: auto;
  transition: transform .25s ease, top .25s ease, background .25s ease;
}

.cafe-toggle span::before,
.cafe-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.cafe-toggle span::before { top: -7px; }
.cafe-toggle span::after { top: 7px; }
.cafe-toggle[aria-expanded="true"] span { background: transparent; }
.cafe-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(40deg); }
.cafe-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-40deg); }

.cafe-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}
.cafe-mobile.open { visibility: visible; pointer-events: auto; }
.cafe-mobile-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity .35s ease;
}
.cafe-mobile.open .cafe-mobile-backdrop { opacity: 1; }
.cafe-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 91;
  width: min(300px, 82vw);
  top: 0;
  bottom: 0;
  height: 100dvh;
  background-color: #0c2348;
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.28);
  transform: translateX(104%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.cafe-mobile.open .cafe-mobile-panel { transform: none; }
.cafe-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.cafe-mobile-head img { height: 64px; width: auto; }
.cafe-mobile-head button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}
.cafe-mobile-head,
.cafe-mobile nav a {
  background-color: #0c2348;
}
.cafe-mobile nav a {
  display: block;
  padding: 1.05rem 1rem;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cafe-hero,
.cafe-menu,
.cafe-visit {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.cafe-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.cafe-slider {
  position: relative;
  width: 100%;
  margin: 0;
  min-width: 0;
}
.cafe-slides {
  position: relative;
  height: calc(100svh - var(--nav-h));
  min-height: 520px;
  overflow: hidden;
  background: #071833;
}
.cafe-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.cafe-slide.is-on { opacity: 1; z-index: 1; pointer-events: auto; }
.cafe-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cafe-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 24, 51, 0.82) 0%, rgba(7, 24, 51, 0.35) 34%, rgba(7, 24, 51, 0) 62%);
}
.cafe-slide-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: max(6vw, 4rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}
.cafe-slide h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.cafe-slide-copy span {
  display: block;
  margin-top: 1rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}
.cafe-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.cafe-slide-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #fff;
  font-size: 0.92rem;
  font-weight: 600;
}
.cafe-slide-actions a.is-fill {
  background: #fff;
  color: var(--navy);
}
.cafe-slide-actions a:hover { background: rgba(255, 255, 255, 0.12); }
.cafe-slide-actions a.is-fill:hover { background: #e7eef8; }
.cafe-dots {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}
.cafe-dots button {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
}
.cafe-dots button.is-on { width: 22px; background: #fff; }

.cafe-script {
  position: absolute;
  top: 8%;
  right: 6%;
  width: min(240px, 46%);
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  text-align: right;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cafe-script i {
  font-style: normal;
}

.cafe-menu {
  padding: 2.2rem 0 1rem;
}

.cafe-menu-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.cafe-menu-head h2 {
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 0.95rem;
}

.cafe-menu-head p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cat-rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 0.1rem 1rem;
  margin-bottom: 0.6rem;
  scrollbar-width: none;
}
.cat-rail::-webkit-scrollbar { display: none; }
.cat-rail { cursor: grab; }
.cat-rail.is-drag { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.cat-chip {
  flex: 0 0 auto;
  min-width: 176px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-align: left;
  scroll-snap-align: start;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.cat-orb {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  flex: none;
}
.cat-orb svg { width: 24px; height: 24px; }
.cat-copy { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.cat-copy strong { font-size: 0.92rem; font-weight: 650; line-height: 1.15; }
.cat-copy small { font-size: 0.72rem; color: rgba(255, 255, 255, 0.62); font-weight: 500; }
.cat-chip.is-on,
.cat-chip:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-1px);
}
.cat-chip.is-on .cat-orb { background: var(--navy); color: #fff; }
.cat-chip.is-on .cat-copy small,
.cat-chip:hover .cat-copy small { color: rgba(7, 24, 51, 0.62); }
.cafe-search {
  position: relative;
  display: block;
  max-width: 460px;
  margin: 0.35rem auto 1.15rem;
}
.cafe-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}
.cafe-search input {
  width: 100%;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1.1rem 0.75rem 2.75rem;
  color: #fff;
}
.cafe-search input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cafe-group {
  margin-bottom: 1.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.cafe-group h3 {
  letter-spacing: 0.22em;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.menu-tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.2rem 0 1.1rem;
}
.menu-tools p { color: var(--muted); font-size: 0.92rem; margin-right: auto; }
.menu-views { display: flex; gap: 0.35rem; }
.menu-views button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
}
.menu-views button svg { width: 18px; height: 18px; }
.menu-views button.is-on { color: #fff; }
.menu-tools select {
  margin-left: auto;
  min-width: 180px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}
.cafe-menu.is-list .cafe-grid { grid-template-columns: 1fr; }
.cafe-menu.is-list .cafe-card { display: grid; grid-template-columns: 148px 1fr; }
.cafe-menu.is-list .cafe-card-photo { aspect-ratio: auto; min-height: 148px; }
.cafe-menu.is-list .cafe-card p { min-height: 0; }
.cafe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.cafe-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.cafe-card-photo {
  position: relative;
  background: radial-gradient(circle at center, #243e68, #0c1a33);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.cafe-photo-actions {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  display: flex;
  gap: 0.3rem;
}
.cafe-photo-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 24, 51, 0.78);
  color: #fff;
}
.cafe-photo-btn svg { width: 16px; height: 16px; }
.cafe-photo-btn.is-added { background: #fff; color: var(--navy); }
.cafe-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .35rem;
}
.cafe-card-row { gap: .4rem; }
.cafe-detail {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .4rem .7rem;
  font-size: .72rem;
  letter-spacing: .04em;
}
.cafe-card-body { padding: 0.85rem 0.9rem 1rem; }
.cafe-card h4 { font-size: 1rem; }
.cafe-card p { color: var(--muted); font-size: 0.84rem; margin-top: 0.25rem; min-height: 2.4em; }
.cafe-likes { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; }
.cafe-vote {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  font-size: 0.78rem;
}
.cafe-vote svg { width: 16px; height: 16px; }
.cafe-vote.is-on[data-vote="good"] { color: #7dcea0; }
.cafe-vote.is-on[data-vote="bad"] { color: #e5989b; }
.cafe-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
}
.cafe-wish {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
}
.cafe-wish svg { width: 20px; height: 20px; }
.cafe-wish.is-on svg { fill: #fff; }
.cafe-buy {
  width: 36px;
  height: 36px;
  margin-left: 0.15rem;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
}
.cafe-buy svg { width: 20px; height: 20px; }
.cafe-buy.is-added { color: #fff; }
.cafe-add {
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.cafe-cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}
.cafe-cart-btn svg { width: 22px; height: 22px; }
.cafe-cart-btn span {
  position: absolute;
  top: 2px;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
}
.cafe-empty { text-align: center; color: var(--muted); margin-bottom: 1rem; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.is-open { pointer-events: auto; visibility: visible; }
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity .35s ease;
}
.cart-drawer.is-open .cart-backdrop { opacity: 1; }
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 71;
  width: min(420px, 100%);
  height: 100%;
  background: var(--navy-2);
  border-left: 1px solid var(--line);
  padding: 1.1rem;
  overflow: auto;
  transform: translateX(104%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.cart-drawer.is-open .cart-panel { transform: none; }
.product-modal[hidden] { display: none; }
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.product-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.62); }
.product-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: #0d2244;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  overflow: hidden;
  animation: pop .28s ease;
}
.product-dialog img { width: 100%; height: 100%; object-fit: contain; background: #10284a; min-height: 280px; }
.product-copy { padding: 1.4rem; display: grid; align-content: center; gap: .55rem; }
.product-copy p { color: var(--muted); }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.product-actions .cafe-likes { margin-left: 0; }
.product-copy .cafe-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.product-copy .cafe-add svg { width: 18px; height: 18px; }
.product-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7,24,51,.7);
  border: 1px solid rgba(255,255,255,.3);
}
@keyframes pop { from { transform: translateY(10px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.cart-head, .cart-line, .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.cart-head { margin-bottom: 0.8rem; }
.cart-head button, .cart-remove {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}
.cart-line {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img, .cart-ph {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--navy-3);
  flex: none;
}
.cart-copy { flex: 1; min-width: 0; }
.wish-actions { display: flex; align-items: center; gap: 0.15rem; }
.wish-cart {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
}
.wish-cart svg { width: 18px; height: 18px; }
.cart-line strong { display: block; font-size: 0.92rem; }
.cart-each { color: var(--muted); font-size: 0.8rem; }
.cart-qty { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.3rem; }
.cart-qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}
.cart-sum { margin: 0.9rem 0; display: grid; gap: 0.35rem; }
.cart-sum p {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}
.cart-sum p[hidden] { display: none; }
.cart-total { font-size: 1.05rem; color: #fff; }
.cart-order { display: grid; gap: 0.45rem; }
.cart-pay {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: grid;
  gap: 0.4rem;
}
.cart-pay legend {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  margin-bottom: 0.1rem;
}
.cart-pay label {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.62rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.2;
  cursor: pointer;
}
.cart-pay label:has(input:checked) {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.cart-pay label:focus-within {
  outline: 1px solid #fff;
  outline-offset: 2px;
}
.cart-where {
  border: 0;
  margin: 0.35rem 0 0;
  padding: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}
.cart-where legend {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
}
.cart-where label {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.75rem 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: center;
}
.cart-where label:has(input:checked) {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.cart-where input[type="radio"],
.cart-pay input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}
.pay-marks { display: flex; gap: 0.28rem; }
.pay-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
}
.pay-mark svg { width: 18px; height: 18px; }
.pay-cafe, .pay-dine { background: rgba(255, 255, 255, 0.16); }
.pay-togo { background: #c4a574; color: #071833; }
.pay-delivery { background: #1f6f8b; }
.cart-pickup { color: var(--muted); font-size: 0.8rem; line-height: 1.4; }
.cart-pickup[hidden] { display: none; }
.cart-where label { font-size: 0.78rem; padding: 0.65rem 0.25rem 0.6rem; }
.pay-wa { background: #25d366; }
.pay-zelle { background: #6d1ed4; }
.pay-venmo { background: #3d95ce; }
.pay-cash { background: #00c244; color: #071833; }
.pay-paypal { background: #003087; }
.cart-map { display: grid; gap: 0.4rem; position: relative; }
.cart-map[hidden] { display: none; }
.cart-map p { color: var(--muted); font-size: 0.8rem; line-height: 1.4; }
.cart-map iframe { width: 100%; height: 180px; border: 0; border-radius: 12px; }
.cart-map iframe[hidden] { display: none; }
.cart-address-list {
  display: grid;
  background: #0c2348;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.cart-address-list[hidden] { display: none; }
.cart-address-list button {
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
}
.cart-address-list button + button { border-top: 1px solid var(--line); }
.cart-pay-note { color: var(--muted); font-size: 0.8rem; line-height: 1.4; }
.cart-pay-go {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.cart-pay-go[hidden] { display: none; }
.cart-pay-go img { background: #fff; border-radius: 8px; }
.cart-pay-go a {
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.cart-order [data-pay-field][hidden] { display: none; }
.cart-order select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #fff;
  padding: 0.65rem 0.75rem;
}
.cart-order input, .cart-order textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}
.cart-order textarea { min-height: 70px; }
.cart-order button, .cart-clear {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
}
.cart-order button { background: #fff; color: var(--navy); font-weight: 700; }
.cart-clear {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}
.cart-empty, .form-note { color: var(--muted); font-size: 0.85rem; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 2.5rem 0 1rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.cart-empty svg { width: 42px; height: 42px; }
.cart-drawer.is-empty .cart-sum,
.cart-drawer.is-empty .cart-order,
.cart-drawer.is-empty .cart-clear { display: none; }

.cafe-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem 0;
}

.cafe-item img,
.cafe-item-fallback {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--navy-3);
}

.cafe-item-fallback {
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cafe-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

.cafe-item p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

.cafe-price {
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cafe-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0 3rem;
}

.cafe-visit-kicker {
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
}

.cafe-visit-sub {
  margin: 0.45rem 0 1.1rem;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
}

.cafe-facts {
  display: grid;
  gap: 0.7rem;
}

.cafe-facts a,
.cafe-facts span {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.cafe-facts svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.15rem;
}

.cafe-facts small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.cafe-quote {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 1.3rem 0 0.4rem;
}

.cafe-visit-photo {
  border-radius: 24px;
  overflow: hidden;
  background: #10284a;
  min-height: 280px;
}
.cafe-visit-photo img { width: 100%; height: 320px; object-fit: contain; }
.cafe-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.cafe-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.cafe-form input,
.cafe-form select,
.cafe-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
}

.cafe-form textarea { min-height: 90px; resize: vertical; }

.cafe-form button {
  justify-self: start;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cafe-alert {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(7, 24, 51, 0.55);
}
.cafe-alert[hidden] { display: none; }
.cafe-alert-card {
  width: min(380px, 100%);
  background: #fff;
  color: var(--navy);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.2rem;
  text-align: center;
}
.cafe-alert-card h3 { font-size: 1.25rem; }
.cafe-alert-card p { margin: 0.55rem 0 1rem; color: #3d4d66; line-height: 1.45; }
.cafe-alert-card button {
  min-width: 96px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
}
.cafe-form .form-note { color: var(--muted); font-size: 0.85rem; }
.hp-field { position: absolute; left: -9999px; }

.cafe-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 5.5rem;
}

.cafe-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  align-items: start;
}

.cafe-foot-intro .cafe-visit-kicker { margin-top: 1.15rem; }
.cafe-foot-intro .cafe-quote { margin-top: 1.5rem; }
.cafe-foot-intro .cafe-tagline { margin-top: 0.55rem; }

.cafe-footer .cafe-legal {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

.cafe-foot-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
}

.cafe-foot-brand img {
  width: auto;
  height: 76px;
  object-fit: contain;
}

.cafe-foot-links {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.cafe-legal {
  width: 100%;
  color: var(--muted);
  font-size: 0.78rem;
}

.cafe-top {
  position: fixed;
  z-index: 46;
  right: 1.15rem;
  bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
}
.cafe-top[hidden] { display: none; }
.cafe-top-line {
  width: 1px;
  height: 2.6rem;
  background: currentColor;
}
.cafe-top span:last-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.34em;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cafe-dock { display: none; }
body.cafe .mobile-dock {
  background: rgba(7, 24, 51, 0.96);
  border-top: 1px solid var(--line);
}

body.cafe .back-to-top { color: #fff; }

@media (max-width: 860px) {
  .cafe-dock {
    position: fixed;
    z-index: 55;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 0.15rem;
    padding: 0.45rem 0.25rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(7, 24, 51, 0.96);
  }
  .cafe-dock a, .cafe-dock button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .cafe-dock svg { width: 20px; height: 20px; }
  .cafe-dock .is-main {
    background: #fff;
    color: var(--navy);
    border-radius: 10px;
    margin-top: -0.85rem;
    padding: 0.4rem 0.15rem 0.35rem;
  }
  .cafe-footer { padding-bottom: 6.5rem; }
  .cafe-top { right: 0.45rem; bottom: 6.4rem; }
  .cafe-links, .cafe-call { display: none; }
  .cafe-toggle { display: grid; place-items: center; }
  .cafe-footer-inner { grid-template-columns: 1fr; }
  .cafe-slides {
    height: min(78svh, 560px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .cafe-slide img { object-position: 78% center; }
  .cafe-slide::after {
    background: linear-gradient(180deg, rgba(7, 24, 51, 0) 28%, rgba(7, 24, 51, 0.92) 70%);
  }
  .cafe-slide-copy {
    margin-left: 0;
    max-width: none;
    justify-content: flex-end;
    padding: 0 1.1rem 2.8rem;
  }
  .cafe-slide h2 { font-size: 1.75rem; max-width: 14ch; }
  .cafe-slide-copy span { margin-top: 0.45rem; font-size: 0.9rem; }
  .cafe-slide-actions { margin-top: 0.85rem; }
  .cafe-slide-actions a { min-height: 40px; padding: 0.45rem 0.85rem; font-size: 0.82rem; }
  .cafe-dots { bottom: 0.85rem; }
  .product-dialog { grid-template-columns: 1fr; }
  .cafe-item { grid-template-columns: 56px 1fr; }
  .cafe-price { grid-column: 2; }
  .cafe-form-row { grid-template-columns: 1fr; }
  .cafe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .cafe-card { display: block; }
  .cafe-card-photo { aspect-ratio: 1; min-height: 0; }
  .cafe-menu.is-list .cafe-grid { grid-template-columns: 1fr; }
  .cafe-menu.is-list .cafe-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: stretch;
  }
  .cafe-menu.is-list .cafe-card-photo { aspect-ratio: auto; min-height: 104px; }
  .cafe-photo-btn { width: 28px; height: 28px; }
  .cafe-photo-actions { right: 0.25rem; bottom: 0.25rem; }
  .cafe-card p { min-height: 0; }
  .cafe-card-body { display: flex; flex-direction: column; justify-content: center; padding: 0.65rem 0.55rem 0.7rem; }
  .cafe-card-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.35rem;
  }
  .cafe-card-row .cafe-price { grid-column: 1 / -1; }
  .cafe-likes { margin-left: 0; gap: 0.2rem; }
  .cafe-wish, .cafe-buy { width: 30px; height: 30px; flex: none; }
  .cafe-buy { margin-left: 0; justify-self: end; }
}
