/* Campino — concept site
   Palette: varma grå, brunt, guld
*/
:root {
  --bg:        #1f1a16;
  --bg-2:      #2a231d;
  --surface:   #34291f;
  --line:      #4a3a2c;
  --ink:       #efe7dc;
  --ink-soft:  #c9bfb1;
  --muted:     #9a8f80;
  --gold:      #c9a24a;
  --gold-2:    #e6c279;
  --gold-soft: rgba(201,162,74,.18);
  --brown:     #6e4f31;
  --radius:    14px;
  --shadow:    0 30px 60px -30px rgba(0,0,0,.55), 0 10px 30px -15px rgba(0,0,0,.45);
  --serif:     "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.25rem 0; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .005em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05; font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--gold-2); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 1.5rem 0 .8rem; font-family: var(--sans); font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .75rem;
  color: var(--gold);
  margin: 0 0 1rem;
}
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2a1f10;
  box-shadow: 0 12px 30px -12px rgba(201,162,74,.55);
}
.btn-gold:hover { transform: translateY(-1px); color: #1a1208; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(239,231,220,.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn.full { width: 100%; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(31,26,22,.78);
  border-bottom: 1px solid rgba(74,58,44,.55);
}
.nav { display: flex; align-items: center; gap: 2rem; padding: .9rem 0; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 56px; width: auto; }
.primary-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.primary-nav a {
  color: var(--ink-soft); font-size: .92rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 400; padding: .25rem 0; position: relative;
}
.primary-nav a.active { color: var(--gold-2); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }
.nav-cta { padding: .65rem 1.2rem; font-size: .85rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 38px; height: 38px; padding: 0;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--ink); margin: 6px auto; width: 22px;
}

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(201,162,74,.18), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(110,79,49,.35), transparent 60%),
    linear-gradient(180deg, #2a231d 0%, #1f1a16 60%, #1a1612 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.04) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.03) 0 1px, transparent 2px);
  background-size: 6px 6px, 9px 9px;
  opacity: .4; mix-blend-mode: overlay;
}
.hero-inner {
  position: relative; padding: 5rem 0 4rem;
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.hero-inner.narrow { max-width: 720px; }
.hero .lede {
  font-size: 1.1rem; max-width: 580px;
  margin: 1.2rem auto 2rem;
}
.hero-cta {
  display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center;
}
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-2);
  font-size: 1.15rem;
  margin: 1rem 0 .25rem;
  letter-spacing: .02em;
}
.hero-meta {
  margin-top: 2.5rem; color: var(--ink-soft);
  font-size: .95rem;
}
.hero-logo-img {
  width: clamp(260px, 38vw, 420px);
  margin: 0 auto;
  filter: drop-shadow(0 25px 60px rgba(0,0,0,.6))
          drop-shadow(0 0 30px rgba(201,162,74,.18));
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  color: var(--gold); font-size: 1.4rem; opacity: .8;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

.hero-catering { min-height: 78vh; }
.hero-catering .hero-bg {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(201,162,74,.22), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(110,79,49,.4), transparent 60%),
    linear-gradient(180deg, #2a231d 0%, #1f1a16 60%, #1a1612 100%);
}

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-foot { text-align: center; margin-top: 2.5rem; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

/* Menu tabs */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: 3rem;
}
.menu-tab {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.2rem; font-family: var(--sans);
  letter-spacing: .12em; font-size: .76rem; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
}
.menu-tab:hover { color: var(--ink); border-color: var(--gold); }
.menu-tab.active {
  background: var(--gold-soft); color: var(--gold-2); border-color: var(--gold);
}

/* Menu grid */
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem;
}
.menu-grid.hidden { display: none; }
.menu-group.wide { grid-column: 1 / -1; max-width: 760px; margin: 0 auto; width: 100%; }

.group-head {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: .6rem;
  margin-bottom: 1.1rem;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
}
.group-head span {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.line {
  display: flex; gap: 1rem; align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px dotted rgba(74,58,44,.55);
}
.line:last-of-type { border-bottom: 0; }
.line span:first-child {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  flex: 1;
}
.line span:last-child {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: .9rem;
  text-align: right;
  max-width: 60%;
}
.line span:last-child:not(:has(*)) { /* numeric prices */ }
.line span:last-child:where(:not(.muted)) {
  /* numeric pricing emphasis when content is short */
}
.line.full span { flex: 1; max-width: 100%; text-align: left; color: var(--ink-soft); font-family: var(--sans); font-size: .95rem; }

/* Make rightmost short prices look gold */
.line span:last-child {
  color: var(--ink-soft);
}
.menu-group .line:has(span:last-child:where(:not(:empty))) span:last-child {
  /* fallback handled inline via class .price */
}
/* Force gold style on lines whose right column is purely numeric (handled via JS-free heuristic: most short) */
.line span:last-child {
  font-variant-numeric: tabular-nums;
}

.line-desc {
  margin: -.2rem 0 .9rem;
  color: var(--muted);
  font-size: .88rem;
}

.price {
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold-2);
  font-weight: 500; letter-spacing: .03em;
}
.price.big { font-size: 3.2rem; }

/* Cards */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.05)), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
}
.catering-card h3 { color: var(--gold-2); }

/* Section catering teaser */
.section-catering h2 em { display: inline-block; }

/* Ticks */
.ticks { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.ticks li {
  position: relative; padding-left: 1.8rem; margin-bottom: .6rem;
}
.ticks li::before {
  content: "✦"; color: var(--gold); position: absolute; left: 0; top: 0;
}

.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: .8rem; }

/* Booking form */
.booking-form .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.booking-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.booking-form .full { grid-column: 1 / -1; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: .8rem 1rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: normal; text-transform: none;
  transition: border-color .2s, background .2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,.35);
}
.form-status { margin: 1rem 0 0; min-height: 1.2em; color: var(--gold-2); }

/* Om */
.om-img {
  height: 480px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(31,26,22,.1), rgba(31,26,22,.55)),
    radial-gradient(circle at 50% 40%, #6e4f31, #2a1f15 70%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.om-img::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(201,162,74,.25), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(110,79,49,.55), transparent 50%);
}
.stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.stats div { display: flex; flex-direction: column; gap: .25rem; }
.stats strong {
  font-family: var(--serif); font-size: 2rem; color: var(--gold-2); font-weight: 500;
}
.stats span {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

/* Map */
.map { padding: 0; overflow: hidden; height: 420px; }
.map iframe { width: 100%; height: 100%; border: 0; }

.socials { display: flex; gap: 1.4rem; margin-top: 1.2rem; }
.socials a {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: #15110e; padding: 3rem 0; border-top: 1px solid var(--line);
}
.foot {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.foot-logo { height: 64px; margin-bottom: .8rem; }
.foot nav { display: flex; gap: 1.6rem; }
.foot nav a {
  color: var(--ink-soft); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
}

/* ---------- Catering page ---------- */
.package-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: stretch;
}
.package {
  display: flex; flex-direction: column;
  position: relative;
  padding: 2.5rem 2rem;
}
.package.featured {
  border-color: rgba(201,162,74,.55);
  background:
    linear-gradient(180deg, rgba(201,162,74,.06), rgba(0,0,0,.05)),
    var(--surface);
  box-shadow: 0 30px 80px -30px rgba(201,162,74,.35), var(--shadow);
}
.package .badge {
  position: absolute; top: -12px; right: 1.5rem;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2a1f10;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
  font-weight: 600;
}
.package-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; margin-bottom: 1rem;
  gap: 1rem;
}
.package-head h3 {
  font-size: 1.8rem; font-weight: 500; color: var(--ink); margin: 0;
}
.package-price { margin: 0; text-align: right; line-height: 1; display: flex; align-items: baseline; gap: .35rem; }
.package-price .muted { font-size: .8rem; }

.package-body { flex: 1; }
.meza, .spett {
  margin: 0 0 .5rem; padding-left: 1.2rem;
}
.meza li, .spett li {
  padding: .25rem 0;
  color: var(--ink-soft);
}
.meza li::marker { color: var(--gold); font-family: var(--serif); }
.spett { list-style: none; padding-left: 0; }
.spett li {
  position: relative; padding-left: 1.5rem;
}
.spett li::before {
  content: "🔥"; position: absolute; left: 0; font-size: .85rem;
  filter: grayscale(.2);
}

.package .btn { margin-top: 1.5rem; }

/* ---------- Order page / cart ---------- */

.order-hero {
  position: relative;
  padding: 5rem 0 3rem;
  overflow: hidden;
  text-align: center;
}
.order-hero .hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(201,162,74,.18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(110,79,49,.4), transparent 60%),
    linear-gradient(180deg, #2a231d 0%, #1f1a16 100%);
}
.order-hero .hero-inner { padding: 4rem 0 1rem; }
.order-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

.inline-plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.4em; height: 1.4em; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold-2);
  font-weight: 600; font-size: .85em;
  vertical-align: middle;
}

.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  background: rgba(0,0,0,.25); color: #2a1f10;
  border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  margin-left: .35rem;
}

/* Add buttons (only on order page) */

/* Use center alignment so chips don't try to share a text baseline. */
.page-order .line { align-items: center; }

/* Kill the global negative top margin on description paragraphs — it was tuned
   for plain text rows and overlaps the taller chip buttons. */
.page-order .line-desc { margin-top: .5rem; }

/* Inline variant: replaces the price span in a .line. */
.page-order .line > .add-row.inline {
  display: inline-flex; gap: .4rem;
  flex-wrap: wrap; justify-content: flex-end;
  align-items: center;
  font-family: var(--sans);
  max-width: none;
  text-align: right;
}
.page-order .line > .add-row.inline .add-btn { font-size: .85rem; }

/* Block variant: name + ingredients to the left, buttons right on the SAME row. */
.page-order .line.has-buttons {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.page-order .line.has-buttons .line-main { flex: 1 1 220px; min-width: 0; }
.page-order .line-name {
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
}
.page-order .line-ing {
  color: var(--muted); font-size: .85rem; margin-top: .1rem;
}
.page-order .line.has-buttons > .add-row.block {
  display: flex; gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  flex: 0 0 auto;
}
/* When the previous line had a description, sit close beneath it. */
.page-order .line-desc + .add-row.block { margin-top: 0; }
.add-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: .35rem 1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: center;
  vertical-align: middle;
}
.add-btn:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-2);
}
.add-btn.solo {
  border-color: var(--gold);
  color: var(--gold-2);
}
.add-btn.solo:hover {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2a1f10;
}

/* Floating cart FAB */
.cart-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 70;
  width: 64px; height: 64px; border-radius: 50%;
  border: 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2a1f10;
  cursor: pointer;
  box-shadow: 0 18px 40px -12px rgba(201,162,74,.55), 0 6px 20px rgba(0,0,0,.4);
  display: none;
  align-items: center; justify-content: center;
  transition: transform .2s;
}
.cart-fab:hover { transform: translateY(-2px); }
.cart-fab.visible { display: inline-flex; }
.cart-fab-icon { font-size: 1.5rem; }
.cart-fab-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 24px; height: 24px; padding: 0 6px;
  background: #1f1a16; color: var(--gold-2);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Cart drawer */
.cart-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(420px, 100%);
  background: #1a1612;
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 80px rgba(0,0,0,.5);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
body.cart-open .cart-drawer { transform: translateX(0); }
body.cart-open .cart-backdrop { opacity: 1; pointer-events: auto; }

.cart-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; font-size: 1.5rem; color: var(--ink); }
.cart-head .eyebrow { margin-bottom: .25rem; }
.cart-close {
  background: transparent; border: 0; color: var(--ink-soft);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
}
.cart-close:hover { background: rgba(255,255,255,.05); color: var(--ink); }

.cart-body {
  flex: 1; overflow-y: auto;
  padding: 1.25rem 1.5rem 1.5rem;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
}
.cart-items {
  display: flex; flex-direction: column;
  margin-bottom: 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem .75rem;
  padding: .85rem 0;
  border-bottom: 1px dotted var(--line);
}
.ci-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.ci-price {
  font-family: var(--serif);
  color: var(--gold-2);
  text-align: right;
  white-space: nowrap;
}
.ci-qty {
  display: inline-flex; align-items: center; gap: .25rem;
  margin-top: .25rem;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1rem; line-height: 1;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold-2); }
.qty-num {
  min-width: 28px; text-align: center;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
}
.ci-remove {
  background: transparent; border: 0; color: var(--muted);
  cursor: pointer; font-size: .76rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 0; margin-top: .35rem;
  align-self: end; justify-self: end;
}
.ci-remove:hover { color: #e88a8a; }
.ci-note {
  grid-column: 1 / -1;
  margin-top: .5rem;
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--sans, inherit);
  font-size: .85rem;
  padding: .5rem .65rem;
}
.ci-note::placeholder { color: var(--muted); }
.ci-note:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.05); }

.cart-summary { padding-top: .5rem; }
.cart-summary .cart-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif); font-size: 1.4rem; color: var(--ink);
  padding: .8rem 0;
  border-top: 1px solid var(--line);
}
.checkout-form {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.checkout-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: .7rem .9rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: normal; text-transform: none;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,.4);
}

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 6rem; transform: translateX(-50%);
  z-index: 100;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2a1f10;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-size: .9rem; font-weight: 500;
  box-shadow: 0 18px 40px -12px rgba(201,162,74,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }

/* Responsive */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-grid { grid-template-columns: 1fr; gap: 2rem; }
  .package-grid { grid-template-columns: 1fr; }
  .booking-form .grid-2 { grid-template-columns: 1fr; }
  .om-img { height: 280px; order: -1; }
  .nav-cta { display: none; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(31,26,22,.98);
    flex-direction: column; gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .primary-nav a { padding: .9rem 5%; }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; margin-left: auto; }
  .section { padding: 4.5rem 0; }
  .hero-inner { padding: 4rem 0 3rem; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .stats strong { font-size: 1.5rem; }
  .group-head { font-size: 1.3rem; }
  .group-head span { font-size: .68rem; letter-spacing: .16em; }
  .price.big { font-size: 2.4rem; }
  .cart-fab { right: 1rem; bottom: 1rem; width: 56px; height: 56px; }
  .page-order .nav-cta { display: inline-flex; padding: .55rem 1rem; font-size: .8rem; }
  .foot { flex-direction: column; text-align: center; gap: 1.4rem; }
  .foot nav { flex-wrap: wrap; justify-content: center; gap: .6rem 1.2rem; }
}

/* Stängt-banner ovanför beställningsformuläret */
.shop-closed-banner {
  background: rgba(217, 116, 79, .12);
  border: 1px solid rgba(217, 116, 79, .5);
  border-left: 4px solid #d9744f;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.5;
}
.shop-closed-banner strong { color: #e8a07f; }
.shop-closed-banner a { color: var(--gold-2); font-weight: 600; white-space: nowrap; }
