:root {
  --bg: #120b08;
  --surface: #2a1712;
  --surface-soft: #3c2218;
  --accent: #c79a4b;
  --accent-strong: #e7bf72;
  --leaf: #5e7f2a;
  --text: #f7efe4;
  --muted: #dcc7a5;
  --danger: #b4432f;
  --ok: #2c7b53;
  --shadow: rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #3b2217 0%, var(--bg) 46%),
    linear-gradient(180deg, #1f120f 0%, #0f0907 100%);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #ffdd99;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -999px;
  background: #fff;
  color: #111;
  padding: 0.6rem 0.9rem;
  z-index: 999;
}

.skip-link:focus {
  top: 0;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(10px);
  background: rgba(18, 11, 8, 0.86);
  border-bottom: 1px solid rgba(231, 191, 114, 0.25);
}

.nav-wrap {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
}

.brand span {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(231, 191, 114, 0.4);
  background: rgba(231, 191, 114, 0.1);
}

main {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  margin: 2rem 0 0;
  min-height: 62vh;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: 0 12px 32px var(--shadow);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0 0;
  margin-bottom: 0.5rem;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.66) 8%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
}

.hero p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  background: rgba(199, 154, 75, 0.2);
  color: #f6d698;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.84rem;
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button,
button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 700;
  font-family: inherit;
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.button-primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: #241405;
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(231, 191, 114, 0.5);
  color: var(--text);
}

section {
  margin: 2.6rem 0;
}

.card {
  background: linear-gradient(160deg, rgba(58, 34, 24, 0.95), rgba(42, 23, 18, 0.92));
  border: 1px solid rgba(231, 191, 114, 0.22);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 24px var(--shadow);
}

.card h2,
.card h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.status-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.open {
  background: rgba(44, 123, 83, 0.2);
  color: #9be7c0;
}

.closed {
  background: rgba(180, 67, 47, 0.2);
  color: #f4b3a7;
}

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

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table caption {
  text-align: left;
  padding-bottom: 0.5rem;
  color: var(--muted);
}

.menu-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.65rem;
}

.menu-item img {
  width: 92px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
}

.menu-item h3,
.menu-item h4 {
  margin: 0;
}

.menu-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-weight: 800;
  color: var(--accent-strong);
  white-space: normal;
  text-align: right;
  max-width: 18rem;
}

.category-intro {
  margin-top: -0.35rem;
  margin-bottom: 0.8rem;
}

.menu-text-grid {
  gap: 0.65rem;
}

.menu-item-text {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.6rem 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(231, 191, 114, 0.32);
  background: linear-gradient(160deg, rgba(42, 23, 18, 0.96), rgba(29, 16, 12, 0.96));
}

.menu-item-text h4 {
  margin: 0;
  color: #f8ddb0;
}

.menu-item-text p {
  margin: 0.2rem 0 0;
}

.menu-meta {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #f4dcae;
}

.menu-item select {
  margin-bottom: 0.5rem;
}

.spice-list {
  margin: 0;
  padding-left: 1.1rem;
}

.spice-list li {
  margin: 0.25rem 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.collage {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.collage figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 155px;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.collage img:hover {
  transform: scale(1.04);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: inherit;
}

small,
.muted {
  color: var(--muted);
}

.alert {
  margin-top: 0.8rem;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
}

.alert.info {
  background: rgba(199, 154, 75, 0.16);
  border: 1px solid rgba(231, 191, 114, 0.35);
}

.alert.success {
  background: rgba(44, 123, 83, 0.18);
  border: 1px solid rgba(155, 231, 192, 0.35);
}

.alert.error {
  background: rgba(180, 67, 47, 0.2);
  border: 1px solid rgba(244, 179, 167, 0.35);
}

.footer {
  width: min(var(--container), calc(100% - 2rem));
  margin: 2rem auto 1.5rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
}

.dragon-divider {
  margin: 0;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
}

.dragon-divider::before,
.dragon-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 191, 114, 0.5), transparent);
}

.dragon-icon {
  font-size: 1.2rem;
}

/* ── CATEGORY DOCK (bestallning.html) ── */
.cat-dock {
  position: sticky;
  top: 0; /* overridden by JS to match actual header height */
  z-index: 90;
  background: rgba(12, 7, 4, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(199, 154, 75, 0.28);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 18px rgba(199, 154, 75, 0.08);
  padding: 0;
  margin: 0 0.75rem;
}

.cat-dock-inner {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--container);
  margin: 0 auto;
}

.cat-dock-inner::-webkit-scrollbar {
  display: none;
}

.cat-dock-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 154, 75, 0.28);
  color: var(--muted);
  background: transparent;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cat-dock-btn:hover {
  background: rgba(199, 154, 75, 0.12);
  color: var(--accent-strong);
  border-color: var(--accent);
}

.cat-dock-btn.active {
  background: var(--accent);
  color: #1c0c05;
  border-color: var(--accent);
  font-weight: 700;
}

/* ── ORDER CATEGORY SECTIONS ── */
.order-cat-section {
  margin-bottom: 2.25rem;
  scroll-margin-top: 120px;
}

.order-cat-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(199, 154, 75, 0.2);
}

.order-cat-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 0.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-cat-desc {
  color: var(--muted);
  font-size: 0.81rem;
  margin: 0;
  line-height: 1.4;
}

.order-cat-items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

/* ── ORDER ITEMS (bestallning.html) ── */
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(160deg, rgba(42, 23, 18, 0.9), rgba(26, 13, 8, 0.85));
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.order-item-desc {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.4;
}

.order-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}

.order-variant-select {
  font-size: 0.82rem;
  padding: 0.3rem 0.5rem;
}

.order-item-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.order-item-price {
  font-weight: 800;
  color: var(--accent-strong);
  white-space: nowrap;
  font-size: 0.9rem;
}

.order-add-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-width: 5.5rem;
}

.order-add-btn--added {
  background: rgba(114, 201, 122, 0.18) !important;
  border-color: #72c97a !important;
  color: #72c97a !important;
}

@keyframes cartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-count--pop {
  animation: cartPop 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes cartGoldGlow {
  0%   { box-shadow: 0 0 0 0 rgba(231,191,114,0); }
  25%  { box-shadow: 0 0 14px 5px rgba(231,191,114,0.7); }
  60%  { box-shadow: 0 0 22px 8px rgba(231,191,114,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(231,191,114,0); }
}

.cart-toggle--glow {
  animation: cartGoldGlow 1.1s ease-out;
}

@media (max-width: 520px) {
  .order-item {
    flex-direction: column;
    gap: 0.65rem;
  }

  .order-item-controls {
    align-items: flex-start;
    width: 100%;
  }

  .order-variant-select {
    width: 100% !important;
  }

  .order-item-footer {
    width: 100%;
  }

  .order-item-footer .order-add-btn {
    margin-left: auto;
  }
}

.order-layout {
  display: block;
  gap: 1rem;
}

#order-menu-root {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-menu-item {
  grid-template-columns: 108px 1fr;
  align-items: start;
}

.order-menu-item > div:last-child {
  grid-column: 2;
  margin-top: 0.3rem;
}

.order-menu-item .price {
  text-align: left;
  margin: 0.4rem 0;
}

.cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 22;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(880px, calc(100% - 1.5rem));
  max-height: calc(100dvh - 2rem);
  overflow: auto;
}

.cart-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.cart-list {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.cart-list tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-list tr:last-child {
  border-bottom: none;
}

.cart-list td {
  padding: 0.45rem 0.35rem;
  vertical-align: middle;
  font-size: 0.93rem;
}

.cart-col-qty {
  color: var(--muted);
  white-space: nowrap;
  width: 2rem;
  text-align: right;
}

.cart-col-name {
  width: 100%;
  padding-left: 0.5rem !important;
}

.cart-col-price {
  white-space: nowrap;
  text-align: right;
  font-weight: 600;
  color: var(--accent-strong);
  padding-right: 0.5rem !important;
}

.cart-col-btn {
  width: 2rem;
  text-align: right;
}

.cart-col-btn .button {
  padding: 0.2rem 0.55rem;
  font-size: 1rem;
  line-height: 1;
  min-width: unset;
}

/* ── ORDER AWAIT / RESULT STATES ── */
.order-await {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 2.5rem 1rem;
  text-align: center;
}

.order-await-gif {
  width: 220px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 0.25rem;
}

.order-await-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0;
}

.order-await-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.order-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2.25rem 1rem;
  text-align: center;
  animation: fadeSlideUp 0.4s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.order-result-icon {
  font-size: 3rem;
  line-height: 1;
}

.order-result-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0;
}

.order-result--ok .order-result-title  { color: #72c97a; }
.order-result--reject .order-result-title { color: #e07070; }

.order-result-detail {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.order-result-detail a {
  color: var(--accent);
  text-decoration: underline;
}

.order-result-email {
  background: rgba(199, 154, 75, 0.1);
  border: 1px solid rgba(199, 154, 75, 0.28);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  word-break: break-all;
}

.admin-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Page intro — used on bestallning + admin */
.page-intro {
  padding: 2rem 0 0.5rem;
}

.drawer-toggle {
  position: fixed;
  right: 0.6rem;
  top: 6rem;
  z-index: 18;
}

.drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: #21120d;
  border-left: 1px solid rgba(231, 191, 114, 0.35);
  box-shadow: -10px 0 24px var(--shadow);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 20;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer header,
.drawer .drawer-content {
  padding: 1rem;
}

.drawer-content {
  overflow: auto;
}

.order-card {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.2);
}

@keyframes order-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(114, 201, 122, 0); border-color: #72c97a; }
  50%       { box-shadow: 0 0 0 6px rgba(114, 201, 122, 0.22); border-color: #a0e0a6; }
}

.order-card--new {
  border-left: 4px solid #72c97a;
  background: rgba(114, 201, 122, 0.06);
  animation: order-pulse 1.6s ease-in-out infinite;
}

.order-card--cooking {
  border-left: 4px solid var(--accent);
  background: rgba(199, 154, 75, 0.06);
}

.order-card--ready {
  border-left: 4px solid rgba(199, 154, 75, 0.4);
}

.ocard-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.ocard-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.ocard-time {
  font-size: 0.8rem;
  color: var(--muted);
}

.ocard-total {
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 0.95rem;
}

.ocard-chevron {
  margin-left: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
}

.ocard-items {
  list-style: none;
  margin: 0 0 0.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ocard-items li {
  font-size: 0.93rem;
  color: var(--text);
}

.ocard-note {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0.25rem 0 0;
}

.ocard-contact {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.15rem 0 0;
}

.ocard-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.ocard-actions--time {
  align-items: center;
  gap: 0.4rem;
}

.ocard-time-label {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 0.1rem;
}

.ocard-time-chip {
  padding: 0.3rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(199, 154, 75, 0.12);
  border: 1px solid rgba(199, 154, 75, 0.4);
  color: var(--accent-strong);
  border-radius: 8px;
  min-width: unset;
  transition: background 0.15s, border-color 0.15s;
}

.ocard-time-chip:hover {
  background: rgba(199, 154, 75, 0.28);
  border-color: var(--accent-strong);
}

.ocard-reject {
  margin-left: auto;
}

.ocard-summary {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  color: inherit;
}

.ocard-expand {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-section {
  margin-bottom: 1.25rem;
}

.admin-kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 680px) {
  .admin-kitchen-grid {
    grid-template-columns: 1fr;
  }
}

.admin-kitchen-grid .admin-section {
  margin-bottom: 0;
}

.blocked-summary {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.blocked-summary::before {
  content: "▸";
  font-size: 0.85rem;
  transition: transform 0.2s;
}

#blocked-details[open] .blocked-summary::before {
  transform: rotate(90deg);
}

.blocked-summary::-webkit-details-marker {
  display: none;
}

.admin-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-status-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0.75rem;
}

.restaurant-status-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.buffet-status-display {
  margin-top: 0.75rem;
}

.closed-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(12, 7, 4, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.closed-overlay[hidden] { display: none; }

.closed-overlay-card {
  background: var(--surface);
  border: 1.5px solid rgba(199, 154, 75, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.closed-overlay-icon {
  font-size: 3rem;
  line-height: 1;
}

.closed-overlay-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0;
}

.closed-overlay-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.rest-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  background: none;
  font-family: inherit;
}

.rest-status-badge--open {
  background: rgba(199, 154, 75, 0.13);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.rest-status-badge--closed {
  background: rgba(180, 55, 55, 0.11);
  border-color: rgba(220, 80, 80, 0.45);
  color: #f08888;
}

@media (max-width: 920px) {
  .hero {
    min-height: 48vh;
  }

  .order-menu-item {
    grid-template-columns: 88px 1fr;
  }

  #order-menu-root {
    display: flex;
  }

  .cart-panel {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS — editorial gold title + bar
═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--accent-strong);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 0.55rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-sub {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.btn-print-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.5rem 1.15rem;
  background: transparent;
  color: #b8973a;
  border: 1.5px solid #b8973a;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.btn-print-menu svg { flex-shrink: 0; }
.btn-print-menu:hover {
  background: #b8973a;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   INFO STRIP — 3-column band: contact | hours | buffet
═══════════════════════════════════════════════════════════ */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(231, 191, 114, 0.2);
  box-shadow: 0 12px 32px var(--shadow);
}

.info-cell {
  padding: 2rem 1.6rem;
  background: linear-gradient(160deg, rgba(52, 30, 18, 0.98), rgba(26, 13, 8, 0.96));
  border-right: 1px solid rgba(231, 191, 114, 0.14);
}

.info-cell:last-child {
  border-right: none;
}

.info-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.info-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--accent-strong);
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
}

.info-cell address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.info-cell address p {
  margin: 0;
}

.info-cell address a {
  color: var(--accent-strong);
  text-decoration: none;
}

.info-cell address a:hover {
  text-decoration: underline;
}

.map-wrap {
  margin-top: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.25);
  line-height: 0;
}

.map-frame {
  width: 100%;
  height: 180px;
  border: none;
  display: block;
  filter: none;
}

.map-nav-btn {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  text-decoration: none;
}

.hours-compact {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.hours-compact tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-compact tr:last-child {
  border-bottom: none;
}

.hours-compact th {
  text-align: left;
  padding: 0.26rem 0.8rem 0.26rem 0;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  width: 4.2rem;
}

.hours-compact td {
  padding: 0.26rem 0;
  color: var(--muted);
  text-align: right;
}

.row-closed th,
.row-closed td {
  color: rgba(200, 145, 120, 0.55);
}

.hours-compact thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 700;
  padding-bottom: 0.4rem;
}

.hours-compact .hours-buffet {
  padding-left: 0.75rem;
  color: var(--accent-strong);
}

.buffet-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.buffet-schedule-table th {
  text-align: left;
  padding: 0.3rem 0.6rem 0.3rem 0;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.buffet-schedule-table td {
  padding: 0.35rem 0.6rem 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
}

.buffet-schedule-table input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  accent-color: var(--accent);
}

.buffet-schedule-table input[type="time"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--text);
  padding: 0.25rem 0.4rem;
  font-size: 0.85rem;
  font-family: inherit;
  width: 6.5rem;
}

.buffet-schedule-table input[type="time"]:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Buffét-pill (öppet/stängt) i info-kortet ─────────────── */
.buffet-pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
}
.buffet-pill--open {
  background: rgba(94, 127, 42, 0.18);
  border-color: rgba(94, 127, 42, 0.55);
  color: #a5c96e;
}
.buffet-pill--closed {
  background: rgba(180, 55, 55, 0.11);
  border-color: rgba(220, 80, 80, 0.35);
  color: #f08888;
}
.buffet-next-open {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
}

/* ── Öppettider modal ──────────────────────────────────────── */
.hours-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(12, 7, 4, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.hours-modal-backdrop[hidden] { display: none; }
.hours-panel[hidden] { display: none; }
.hours-modal-card {
  background: var(--surface);
  border: 1.5px solid rgba(199, 154, 75, 0.28);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 88dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hours-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.hours-modal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0;
}
.hours-modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  transition: color 0.2s;
}
.hours-modal-close:hover { color: var(--text); }
.hours-modal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.hours-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.hours-tab:hover { color: var(--text); }
.hours-tab--active {
  color: var(--accent-strong);
  border-bottom-color: var(--accent);
}
.hours-modal-body {
  overflow-y: auto;
  padding: 1.2rem 1.4rem 1.4rem;
  flex: 1;
}
.hours-panel { display: block; }

.buffet-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.87rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.buffet-includes li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   MENU SECTION — restaurant-style rows, two-column grid
═══════════════════════════════════════════════════════════ */
.menu-section {
  margin: 4rem 0;
}

.menu-root {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4.5rem;
}

.menu-cat-header {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(231, 191, 114, 0.3);
  margin-bottom: 0;
}

.menu-cat-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-cat-desc {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-row {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}

.menu-row-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.91rem;
  line-height: 1.35;
}

.menu-row-price {
  font-weight: 800;
  color: var(--accent-strong);
  white-space: nowrap;
  font-size: 0.89rem;
  flex-shrink: 0;
}

.menu-row-desc {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.45;
}

.menu-row-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem 0.65rem;
  margin-top: 0.22rem;
}

.menu-row-variants span {
  font-size: 0.79rem;
  color: var(--accent);
  font-weight: 600;
}

.menu-spice {
  font-size: 0.7rem;
  vertical-align: middle;
  margin-left: 0.2rem;
  opacity: 0.85;
}

.spice-note {
  margin-top: 2.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(231, 191, 114, 0.16);
  color: var(--muted);
  font-size: 0.81rem;
  text-align: center;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════════ */
.gallery-section {
  margin: 4rem 0;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════════════════════ */
.booking-section {
  margin: 4rem 0 5rem;
}

.booking-card {
  max-width: 680px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
}

.footer-sep {
  color: rgba(231, 191, 114, 0.3);
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — info strip + menu collapse
═══════════════════════════════════════════════════════════ */
/* ── hamburger button (hidden on desktop) ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(231, 191, 114, 0.3);
  border-radius: 8px;
  padding: 0.42rem 0.52rem;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  line-height: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

@media (max-width: 820px) {
  .info-strip {
    grid-template-columns: 1fr;
  }

  .info-cell {
    border-right: none;
    border-bottom: 1px solid rgba(231, 191, 114, 0.12);
  }

  .info-cell:last-child {
    border-bottom: none;
  }

  .menu-root {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  /* Brand — shrink tagline on small screens */
  .brand strong {
    font-size: 1.4rem;
  }

  .brand span {
    display: none;
  }

  /* Nav hamburger */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .site-nav ul {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    flex-direction: column;
    gap: 0;
    background: rgba(14, 8, 5, 0.98);
    border: 1px solid rgba(231, 191, 114, 0.25);
    border-radius: var(--radius);
    padding: 0.4rem 0;
    margin: 0;
    z-index: 30;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .site-nav ul.open {
    display: flex;
  }

  .site-nav li a {
    border-radius: 0;
    padding: 0.7rem 1.1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
  }

  .site-nav li:last-child a {
    border-bottom: none;
  }

  /* Hero */
  .hero {
    min-height: 52vw;
    border-radius: 12px;
  }

  .hero-cta {
    justify-content: center;
  }

  /* Section spacing */
  section {
    margin: 1.5rem 0;
  }

  .menu-section,
  .gallery-section,
  .booking-section {
    margin: 2.2rem 0;
  }

  .section-header {
    margin-bottom: 1.4rem;
  }

  /* Info strip — tighter cells on mobile */
  .info-cell {
    padding: 1.3rem 1.1rem;
  }

  /* Collage — 2 cols */
  .collage {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking form — always 1 col */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* CTA buttons utanför hero — stapla vertikalt */
  .booking-section .cta-row {
    flex-direction: column;
  }

  .booking-section .button {
    justify-content: center;
    text-align: center;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .footer-sep {
    display: none;
  }
}

/* ── Redo-overlay (admin) ─────────────────────────────────── */
.ready-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 6, 4, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.ready-overlay[hidden] { display: none; }

.ready-overlay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 340px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ready-overlay-icon {
  font-size: 3rem;
  line-height: 1;
}

.ready-overlay-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0;
}

.ready-overlay-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.ready-overlay-btn {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
}

.ready-overlay-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  outline: none;
  box-sizing: border-box;
}
.ready-overlay-input:focus {
  border-color: var(--accent);
}

.ready-overlay-error {
  color: #e07070;
  font-size: 0.88rem;
  margin: 0;
}
