/* Du Lịch Cali — Marketplace CSS
   Standalone stylesheet for marketplace pages
   ──────────────────────────────────────────── */

:root {
  --navy-900: #0d2f50;
  --navy-800: #123b62;
  --navy-700: #194a78;
  --gold: #f5a623;
  --gold-lt: #ffc857;
  --gold-dim: rgba(245,166,35,0.16);
  --cream: #fff8ee;
  --text: #c8e4f8;
  --muted: #6ab0d4;
  --border: rgba(255,255,255,0.13);
  --border-g: rgba(245,166,35,0.38);
  --sky: #38bdf8;
  --sky-lt: #7dd3fc;
  --sky-dim: rgba(56,189,248,0.14);
  --sunset: #fb923c;
  --coral: #f97316;
  --font-d: 'Bodoni Moda', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
}

/* ── Base & Reset ──────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-b);
  background: var(--navy-900);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-b);
  background: var(--navy-900);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-lt);
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-b);
}

.mp-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── App Bar ───────────────────────────────────────────────────────────────── */

.mp-bar {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: rgba(13,47,80,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-g);
  position: sticky;
  top: 0;
  z-index: 40;
}

.mp-bar__back {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--sky-lt);
  font-size: .82rem;
  font-weight: 600;
  border: none;
  background: none;
  padding: 0;
  text-decoration: none;
}

.mp-bar__back svg {
  width: 18px;
  height: 18px;
}

.mp-bar__title {
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--cream);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.mp-bar__call {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  height: 34px;
  padding: 0 .85rem;
  background: var(--gold);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.mp-bar__call svg {
  width: 13px;
  height: 13px;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.mp-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.25rem 2.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.mp-hero__bg {
  position: absolute;
  inset: 0;
  opacity: .9;
}

.mp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,47,80,.2) 0%,
    rgba(13,47,80,.75) 60%,
    rgba(13,47,80,.97) 100%
  );
}

.mp-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
}

.mp-hero__eyebrow {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sky-lt);
  margin-bottom: .5rem;
}

.mp-hero__title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: .5rem;
}

.mp-hero__sub {
  font-size: .78rem;
  color: rgba(200,230,250,.8);
  margin-bottom: 1.25rem;
}

.mp-hero__ctas {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */

.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  height: 46px;
  padding: 0 1.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}

.mp-btn--primary {
  background: linear-gradient(105deg, var(--coral) 0%, var(--sunset) 55%, var(--gold-lt) 100%);
  color: #1a0800;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}

.mp-btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.mp-btn--ghost {
  background: rgba(255,255,255,.07);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.16);
}

.mp-btn--ghost:hover {
  background: rgba(255,255,255,.12);
}

.mp-btn--sky {
  background: rgba(56,189,248,.15);
  color: var(--sky-lt);
  border: 1px solid rgba(56,189,248,.3);
}

.mp-btn--sky:hover {
  background: rgba(56,189,248,.25);
}

.mp-btn--full {
  width: 100%;
}

.mp-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Main Content ──────────────────────────────────────────────────────────── */

.mp-main {
  flex: 1;
  padding: 0 0 2rem;
}

/* ── Section ───────────────────────────────────────────────────────────────── */

.mp-section {
  padding: 1.5rem 1rem 0;
}

.mp-section-hdr {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mp-section-title {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 400;
  background: linear-gradient(90deg, var(--sky-lt) 0%, var(--cream) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Business Card Grid ────────────────────────────────────────────────────── */

.mp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 1rem;
}

@media (min-width: 520px) {
  .mp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Business Card ─────────────────────────────────────────────────────────── */

.mp-biz-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  -webkit-tap-highlight-color: transparent;
}

.mp-biz-card:hover {
  border-color: var(--border-g);
  transform: translateY(-3px);
}

.mp-biz-card__hero {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.mp-biz-card__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.mp-biz-card__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(13,47,80,.9) 100%);
}

.mp-biz-card__badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .2rem .5rem;
  background: rgba(0,0,0,.35);
  border-radius: 3px;
  border: 1px solid rgba(245,166,35,.3);
}

.mp-biz-card__body {
  padding: .9rem 1rem 1.1rem;
}

.mp-biz-card__name {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: .25rem;
}

.mp-biz-card__tagline {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: .65rem;
}

.mp-biz-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.mp-biz-card__city {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  color: var(--muted);
}

.mp-biz-card__city svg {
  width: 12px;
  height: 12px;
  color: var(--sky);
}

.mp-biz-card__cta {
  font-size: .7rem;
  font-weight: 600;
  color: var(--sky-lt);
  display: flex;
  align-items: center;
  gap: .2rem;
}

.mp-biz-card__cta svg {
  width: 12px;
  height: 12px;
}

/* ── Detail Page Hero ──────────────────────────────────────────────────────── */

.mp-detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mp-detail-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.mp-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,47,80,.15) 0%,
    rgba(18,8,3,.92) 100%
  );
}

.mp-detail-hero__content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem 2rem;
}

.mp-detail-hero__region {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sky-lt);
  margin-bottom: .35rem;
}

.mp-detail-hero__name {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: .35rem;
}

.mp-detail-hero__tagline {
  font-size: .8rem;
  color: rgba(200,230,250,.85);
}

/* ── Info Strip ────────────────────────────────────────────────────────────── */

.mp-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  padding: 1rem;
  background: var(--navy-800);
  border-bottom: 1px solid var(--border);
}

.mp-info-strip__item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text);
}

.mp-info-strip__item svg {
  width: 14px;
  height: 14px;
  color: var(--sky);
  flex-shrink: 0;
}

.mp-info-strip__item a {
  color: var(--gold-lt);
  font-weight: 500;
}

/* ── Services Grid ─────────────────────────────────────────────────────────── */

.mp-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.mp-svc-item {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem;
}

.mp-svc-item__name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .18rem;
}

.mp-svc-item__meta {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-bottom: .3rem;
  flex-wrap: wrap;
}

.mp-svc-item__price {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--gold-lt);
}

.mp-svc-item__dur {
  font-size: .68rem;
  padding: .12rem .4rem;
  background: var(--sky-dim);
  border-radius: 10px;
  color: var(--sky-lt);
}

.mp-svc-item__desc {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Hours Table ───────────────────────────────────────────────────────────── */

.mp-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.mp-hours-table td {
  padding: .4rem 0;
  font-size: .82rem;
  border-bottom: 1px solid var(--border);
}

.mp-hours-table td:first-child {
  color: var(--muted);
  padding-right: 1rem;
}

.mp-hours-table td:last-child {
  color: var(--cream);
  font-weight: 500;
  text-align: right;
}

/* ── Booking Card ──────────────────────────────────────────────────────────── */

.mp-booking-card {
  background: var(--navy-800);
  border: 1px solid var(--border-g);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

.mp-form-row {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.mp-label {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.mp-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: .88rem;
}

.mp-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200,146,42,.07);
}

.mp-input::placeholder {
  color: var(--muted);
}

textarea.mp-input {
  height: auto;
  padding: 10px 14px;
  resize: vertical;
  min-height: 80px;
}

select.mp-input {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236ab0d4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: rgba(255,255,255,.05);
}

select.mp-input option {
  background: var(--navy-800);
  color: var(--cream);
}

.mp-form-note {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: .25rem;
}

.mp-form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--sky-lt);
  font-size: .9rem;
}

.mp-form-success.show {
  display: block;
}

.mp-form-success svg {
  width: 40px;
  height: 40px;
  color: var(--sky-lt);
  margin-bottom: .75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ── AI Receptionist ───────────────────────────────────────────────────────── */

.mp-ai {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-g);
}

.mp-ai__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: var(--navy-800);
  border-bottom: 1px solid var(--border-g);
}

.mp-ai__avatar {
  width: 38px;
  height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}

.mp-ai__info strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--cream);
}

.mp-ai__status {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  color: var(--muted);
}

.mp-ai__dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.mp-ai__chips {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  padding: .6rem 1rem .4rem;
  scrollbar-width: none;
  background: var(--navy-900);
}

.mp-ai__chips::-webkit-scrollbar {
  display: none;
}

.mp-ai__chip {
  flex: 0 0 auto;
  height: 32px;
  padding: 0 .85rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  border-radius: 16px;
  color: var(--gold-lt);
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}

.mp-ai__chip:hover {
  background: var(--sky-dim);
  border-color: var(--sky);
  color: var(--sky-lt);
}

.mp-ai__messages {
  height: 240px;
  overflow-y: auto;
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  background: var(--navy-900);
}

.mp-ai__msg {
  display: flex;
  align-items: flex-end;
  gap: .4rem;
  max-width: 88%;
}

.mp-ai__msg--user {
  flex-direction: row-reverse;
  align-self: flex-end;
}

.mp-ai__msg--bot {
  align-self: flex-start;
}

.mp-ai__bubble {
  padding: .55rem .85rem;
  border-radius: 12px;
  font-size: .84rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.mp-ai__msg--user .mp-ai__bubble {
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  color: var(--cream);
  border-bottom-right-radius: 3px;
}

.mp-ai__msg--bot .mp-ai__bubble {
  background: var(--navy-800);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 3px;
}

.mp-ai__msg--typing .mp-ai__bubble {
  letter-spacing: .15em;
  color: var(--muted);
}

.mp-ai__input-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .85rem;
  background: var(--navy-800);
  border-top: 1px solid var(--border);
}

.mp-ai__input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  color: var(--cream);
  font-family: var(--font-b);
  font-size: .85rem;
}

.mp-ai__input:focus {
  outline: none;
  border-color: var(--gold);
}

.mp-ai__input::placeholder {
  color: var(--muted);
}

.mp-ai__send {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  flex-shrink: 0;
  transition: background .2s;
}

.mp-ai__send:hover {
  background: var(--gold-lt);
}

.mp-ai__send svg {
  width: 16px;
  height: 16px;
}

/* ── Contact Card ──────────────────────────────────────────────────────────── */

.mp-contact-card {
  background: var(--navy-800);
  border: 1px solid var(--border-g);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

.mp-contact-card__title {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.mp-contact-card__host {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}

.mp-contact-card__host:last-child {
  border-bottom: none;
}

.mp-contact-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--sky-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-lt);
  font-family: var(--font-d);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mp-contact-card__info {
  flex: 1;
}

.mp-contact-card__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--cream);
}

.mp-contact-card__role {
  font-size: .7rem;
  color: var(--muted);
}

.mp-contact-card__phone {
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--gold-lt);
  display: block;
  margin-top: .1rem;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */

.mp-footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.mp-footer__brand {
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: .35rem;
}

.mp-footer__sub {
  font-size: .72rem;
  color: var(--muted);
}

/* ── Food Vendor Loading State ─────────────────────────────────────────────── */

.mp-fv-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  color: var(--muted);
  font-size: .82rem;
  gap: .9rem;
}

.mp-fv-spinner {
  width: 30px;
  height: 30px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: dlc-spin .7s linear infinite;
}

@keyframes dlc-spin {
  to { transform: rotate(360deg); }
}

/* ── Food Vendor Hero ──────────────────────────────────────────────────────── */

.mp-food-hero {
  min-height: 300px;
}

.mp-food-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,47,80,.2) 0%,
    rgba(10,4,0,.95) 100%
  );
}

/* ── Product Cards ─────────────────────────────────────────────────────────── */

.mp-products-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.mp-product-card {
  background: var(--navy-800);
  border: 1px solid var(--border-g);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.mp-product-card__media-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #111;
}

.mp-product-card__img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.mp-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.mp-product-card:hover .mp-product-card__img {
  transform: scale(1.03);
}

.mp-product-card__promo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-product-card__video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.65);
  color: #f59e0b;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
}

/* ── Product image placeholder (shown when URL empty or image fails to load) ── */
.mp-product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(135deg, #0a1e30 0%, #0f2d47 100%);
}
.mp-product-img-placeholder__icon {
  width: 40px;
  height: 40px;
  stroke: rgba(255,255,255,.18);
}
.mp-product-img-placeholder__text {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

.mp-product-card__body {
  padding: 1rem 1.15rem 1.3rem;
}

.mp-product-card__name {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .25rem;
}

.mp-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .55rem;
}

.mp-product-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(245,158,11,.10);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,.22);
  white-space: nowrap;
}

.mp-product-card__desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: .8rem;
}

.mp-product-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .9rem;
}

.mp-product__variant {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 .75rem;
  background: var(--sky-dim);
  border: 1px solid rgba(56,189,248,.3);
  border-radius: 13px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--sky-lt);
  letter-spacing: .04em;
}

.mp-product-card__pricing {
  border-top: 1px solid var(--border);
  padding-top: .8rem;
}

.mp-product-card__price {
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--gold-lt);
  margin-bottom: .25rem;
  line-height: 1;
}

.mp-product-card__minorder {
  font-size: .72rem;
  color: var(--muted);
}

.mp-product-card__minorder strong {
  color: var(--sunset);
}

/* ── Product Instructions (collapsible <details>) ────────────────────────────── */

.mp-instr-details {
  margin-top: .85rem;
  border-top: 1px solid var(--border);
}

.mp-instr-summary {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 0 .5rem;
  cursor: pointer;
  list-style: none;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.mp-instr-summary::-webkit-details-marker { display: none; }
.mp-instr-summary__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.mp-instr-details[open] .mp-instr-summary {
  color: var(--gold);
}
.mp-instr-details[open] .mp-instr-summary__chevron {
  transform: rotate(180deg);
}

.mp-instr-block {
  padding-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.mp-instr-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.mp-instr-icon {
  font-size: .95rem;
  flex-shrink: 0;
  line-height: 1.45;
}

.mp-instr-label {
  font-size: .62rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: .18rem;
}

.mp-instr-text {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.62;
}

/* ── Order Form Extras ─────────────────────────────────────────────────────── */

.mp-minorder-badge {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 .45rem;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 9px;
  font-size: .58rem;
  font-weight: 700;
  color: var(--sunset);
  letter-spacing: .07em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .35rem;
}

.mp-subtotal {
  display: none;
  margin-top: .5rem;
  padding: .55rem .85rem;
  background: rgba(245,166,35,.09);
  border: 1px solid var(--border-g);
  border-radius: var(--r-sm);
  font-size: .8rem;
  color: var(--text);
}

.mp-subtotal strong {
  color: var(--gold-lt);
  font-family: var(--font-d);
  font-size: 1.1rem;
}

.mp-subtotal--warn {
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.38);
}

.mp-minorder-warn {
  display: none;
  margin-top: .35rem;
  font-size: .72rem;
  color: var(--sunset);
  font-weight: 600;
}

/* ── Utility ───────────────────────────────────────────────────────────────── */

.mp-spacer {
  height: 1rem;
}

.mp-divider {
  height: 1px;
  background: var(--border);
  margin: .75rem 0;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (min-width: 640px) {
  .mp-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mp-detail-hero {
    min-height: 300px;
  }
}

/* ── Tablet 768px+ ─────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  body { background: #07213a; }

  /* Full-width — no phone cap */
  .mp-app { max-width: none !important; border: none !important; }

  /* Wider bar */
  .mp-bar { padding: 0 2.5rem; height: 60px; }
  .mp-bar__title { font-size: 1.15rem; }

  /* Taller, wider hero */
  .mp-hero { min-height: 300px; padding: 5rem 3rem 3.5rem; }
  .mp-hero__content { max-width: 900px; }
  .mp-hero__title { font-size: clamp(2.2rem, 5vw, 3.5rem); }

  /* Business card grid: 3-col */
  .mp-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2rem;
    gap: 1.25rem;
  }

  /* Services grid: 3-col */
  .mp-services-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  /* Detail hero taller */
  .mp-detail-hero { min-height: 320px; }

  /* Section padding */
  .mp-section { padding: 2rem 2rem 0; }

  /* Max-width content centering */
  .mp-main { max-width: 1100px; margin: 0 auto; }
}

/* ── Desktop 1200px+ ────────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
  .mp-bar { padding: 0 3.5rem; }
  .mp-hero { padding: 6rem 4rem 4rem; }

  /* Business card grid: 4-col */
  .mp-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 3rem;
  }

  /* Services grid: 4-col */
  .mp-services-grid { grid-template-columns: repeat(4, 1fr); }

  .mp-main { max-width: 1400px; }
  .mp-section { padding: 2.5rem 3rem 0; }
}

/* ── Detail Page Two-Column Layout ────────────────────────────────────────── */

.mp-detail-body {
  display: flex;
  flex-direction: column;
}

/* Left col: services / menu / about */
.mp-detail-col--left {}

/* Right col: booking / order / AI / contact */
.mp-detail-col--right {}

@media (min-width: 1024px) {
  /* Two-column detail layout */
  .mp-detail-body {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: start;
  }

  /* Subtle divider between columns */
  .mp-detail-col--left {
    border-right: 1px solid var(--border);
  }

  /* Right col gets slight indent */
  .mp-detail-col--right .mp-section {
    padding-left: 2.5rem;
  }

  /* Taller heroes on desktop */
  .mp-detail-hero  { min-height: 420px; }
  .mp-food-hero    { min-height: 460px; }

  /* More breathing room in hero content */
  .mp-detail-hero__content { padding: 2rem 2.5rem 2.5rem; }
}

@media (min-width: 1280px) {
  .mp-detail-body {
    grid-template-columns: 1fr 440px;
  }
  .mp-detail-hero  { min-height: 480px; }
  .mp-food-hero    { min-height: 520px; }
  .mp-detail-hero__content { padding: 2.5rem 3rem 3rem; }
  .mp-detail-hero__name    { font-size: clamp(2.4rem, 4vw, 3.5rem); }
}

/* ── About Prose ───────────────────────────────────────────────────────────── */

.mp-about-prose {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 680px;
}

/* ── Panel Form (lighter booking / order container) ────────────────────────── */

.mp-panel-form {
  background: rgba(18,59,98,.35);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

/* ── Form Row Duo (name + phone side-by-side) ──────────────────────────────── */

.mp-form-row-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-bottom: 1rem;
}

.mp-form-row-duo .mp-form-row {
  margin-bottom: 0;
}

@media (min-width: 420px) {
  .mp-form-row-duo {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Sticky right column on desktop ───────────────────────────────────────── */

@media (min-width: 1024px) {
  .mp-detail-col--right {
    position: sticky;
    top: 60px;
    align-self: start;
  }
}

/* ── Capacity Info (order form) ────────────────────────────────────────────── */

.mp-capacity-info {
  margin-top: .4rem;
  font-size: .78rem;
  padding: .38rem .65rem;
  border-radius: 4px;
  line-height: 1.4;
}
.mp-capacity-info--ok {
  color: #4ade80;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.22);
}
.mp-capacity-info--low {
  color: #fb923c;
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.22);
}
.mp-capacity-info--full {
  color: #f87171;
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.22);
}
