/*
Theme Name: Shiela's CafÃ©
Theme URI: https://www.shielas.dk
Description: Custom WordPress tema til Shiela's CafÃ© - "just something to eat since 2015". LyserÃ¸d, skandinavisk og funktionel med WooCommerce og bordbooking.
Author: Manus AI
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shielas
Tags: restaurant, cafe, woocommerce, booking, pink, scandinavian
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand colours */
  --color-primary:        #E75C9B;
  --color-primary-dark:   #C94A85;
  --color-primary-light:  #F2B8D4;
  --color-blush:          #FCE8F1;
  --color-dusty-rose:     #E8C4D4;
  --color-warm-white:     #FFF5F8;
  --color-white:          #FAFAFA;

  /* Neutrals */
  --color-charcoal:       #2C2C2C;
  --color-grey-mid:       #6B6B6B;
  --color-grey-light:     #F0F0F0;
  --color-border:         #E8C4D4;

  /* Status colours */
  --color-success:        #5CB85C;
  --color-warning:        #F0AD4E;
  --color-error:          #D9534F;
  --color-info:           #5BC0DE;

  /* Typography */
  --font-display:         'Playfair Display', Georgia, serif;
  --font-body:            'DM Sans', system-ui, -apple-system, sans-serif;
  --font-size-xs:         13px;
  --font-size-sm:         14px;
  --font-size-base:       17px;
  --font-size-md:         20px;
  --font-size-lg:         24px;
  --font-size-xl:         32px;
  --font-size-2xl:        44px;
  --font-size-3xl:        56px;
  --line-height-body:     1.7;
  --line-height-heading:  1.25;

  /* Spacing */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   48px;
  --space-xl:   80px;
  --space-2xl:  120px;

  /* Layout */
  --container-max:        1200px;
  --container-wide:       1400px;
  --container-narrow:     800px;

  /* Borders & radius */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-full:  50px;
  --border-width: 2px;

  /* Shadows */
  --shadow-card:  0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-btn:   0 4px 16px rgba(231, 92, 155, 0.28);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: var(--line-height-heading);
  color: var(--color-charcoal);
  font-weight: 700;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-md); font-family: var(--font-body); font-weight: 600; }
h6 { font-size: var(--font-size-base); font-family: var(--font-body); font-weight: 600; }

p {
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

p:last-child {
  margin-bottom: 0;
}

.text-lead {
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-grey-mid);
}

.text-small {
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-white   { color: #ffffff; }
.text-grey    { color: var(--color-grey-mid); }

/* Scroll-reveal fade-up (main.js adds/removes .reveal / .is-visible).
   Wrapped in prefers-reduced-motion so the hidden starting state can never
   apply for users who've asked for reduced motion — belt-and-suspenders
   alongside the same check in main.js. transition-delay for the stagger on
   card grids is set inline per-element by the JS.
   Placed early in the cascade deliberately: components with their own
   hover transform (fx .menu-card, .menu-item) must win over this generic
   resting transform at equal specificity — that only works if their rules
   come LATER in the file than this block. */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section label / eyebrow */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section--sm {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section--lg {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section--blush    { background-color: var(--color-blush); }
.section--warm     { background-color: var(--color-warm-white); }
.section--primary  { background-color: var(--color-primary); }
.section--charcoal { background-color: var(--color-charcoal); }

/* Grid */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex--center  { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--wrap    { flex-wrap: wrap; }

/* ============================================================
   5. BUTTONS

   Farve-system — hvilken farve en knap får afhænger af hvad den GØR,
   ikke hvor den sidder:

   - GRØN = bestillings-flowet (at kigge på menuen og at ringe/bestille)
     · .btn--outline = "kig"-trinnet, fx "Se menuen" (pastelgrøn baggrund)
     · .btn--green   = ring-knapper / tel:-links, fx "Ring nu",
       "Bestil bord", "Bestil takeaway" (solid grøn)
   - PINK = alt udenfor bestillings-flowet
     · .btn--primary   = solid pink, fx "Kontakt os", formular-submit
     · .btn--secondary = pink outline, fx "Læs mere om os", "Instagram"
   - .btn--ghost = kun til brug på mørke/farvede baggrunde (hvid outline)

   Ved nye knapper: spørg "hvad gør den?" — peger den mod at ringe eller
   bestille, brug grøn; ellers pink.
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: var(--border-width) solid transparent;
}

/* Primary */
.btn--primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(231, 92, 155, 0.38);
  transform: translateY(-1px);
}

/* Secondary / Outline */
.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Ghost (on dark/coloured backgrounds) */
.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn--ghost:hover,
.btn--ghost:focus {
  background-color: #ffffff;
  color: var(--color-primary);
}

/* Green outline (Se menuen) */
.btn--outline {
  background-color: #d4edda;
  color: #3a7d44;
  border-color: #3a7d44;
}

.btn--outline:hover,
.btn--outline:focus {
  background-color: #3a7d44;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Green solid (Ring nu / Bestil bord / Bestil takeaway — tel: links) */
.btn--green {
  background-color: #3a7d44;
  color: #ffffff;
  border-color: #3a7d44;
  box-shadow: var(--shadow-btn);
}

.btn--green:hover,
.btn--green:focus {
  background-color: #276233;
  border-color: #276233;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Sizes */
.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 17px;
}

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

/* Focus ring */
.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 0;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-xs);
}

.primary-nav a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.primary-nav a:hover {
  color: var(--color-primary);
}

.primary-nav .current-menu-item > a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Reset: a real WordPress menu assigned to the 'primary' location renders its
   <li> items with WP core's default class "menu-item" — which collides with
   this theme's unrelated food-dish-card styling of the same name (used on the
   menukort page). Scoped to .primary-nav only, so the actual dish cards
   elsewhere are untouched. */
.primary-nav .menu-item {
  display: block;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.primary-nav .menu-item:hover {
  border: none;
  box-shadow: none;
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* Desktop: vis 'Bestil bord', skjul 'Se menuen' */
.header-cta--mobile {
  display: none;
}

.header-cta--desktop {
  display: inline-flex;
}

/* Desktop: telefonnummer som diskret tekst-link, ingen knap-ramme */
.header-phone-link {
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header-phone-link:hover,
.header-phone-link:focus {
  color: var(--color-primary);
}

.header-phone-link i {
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1),
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3),
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tablet / narrow desktop: let nav links pack tighter so they never
   overlap the logo or the phone number — never wrap to a second line */
@media (max-width: 1023px) {
  .primary-nav ul {
    gap: 2px;
  }

  .primary-nav a {
    padding: 8px 9px;
  }
}

/* Hamburger only on mobile — same breakpoint as the rest of the header switch,
   so it never shows at the same time as the (now populated) primary nav */
@media (max-width: 767px) {
  .hamburger--always {
    display: flex;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background-color: var(--color-white);
  z-index: 999;
  padding: var(--space-md);
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.mobile-nav.open,
.mobile-nav.is-open {
  display: flex;
}

/* Nav links list */
.mobile-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__links li a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 20px var(--space-sm);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-grey-light);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.mobile-nav__links li a:hover {
  color: var(--color-primary);
}

/* Divider */
.mobile-nav__divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--space-sm) 0;
}

/* Diskret info: dagens åbningstid + adresse, i stedet for CTA-knapper der
   duplikerede "Menukort" (allerede et menupunkt) og headerens "Ring nu" */
.mobile-nav__info {
  padding: 0 var(--space-sm) var(--space-sm);
}

.mobile-nav__info-hours {
  font-size: 13px;
  color: var(--color-grey-mid);
  margin: 0 0 4px;
}

.mobile-nav__info-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-grey-mid);
  text-decoration: none;
}

.mobile-nav__info-address:hover {
  color: var(--color-primary);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background-color: var(--color-white);
  min-height: clamp(400px, 60vh, 620px);
}

.hero__content {
  padding: clamp(32px, 5vh, 80px) var(--space-xl) clamp(32px, 5vh, 80px) calc((100vw - var(--container-max)) / 2 + var(--space-md));
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero__title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-charcoal);
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  line-height: 1.6;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.hero__image {
  min-height: unset;
  height: 100%;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero with overlay (alternative full-width style) */
.hero--fullwidth {
  grid-template-columns: 1fr;
  position: relative;
}

.hero--fullwidth .hero__image {
  position: absolute;
  inset: 0;
  min-height: unset;
}

.hero--fullwidth .hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-md);
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero--fullwidth::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,245,248,0.85) 0%, rgba(255,245,248,0.4) 100%);
  z-index: 1;
}

/* ============================================================
   8. USP STRIP
   ============================================================ */
.usp-strip {
  background-color: var(--color-blush);
  padding: var(--space-lg) 0;
}

.usp-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.usp-item__icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
}

.usp-item__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-charcoal);
}

.usp-item__text {
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
  line-height: 1.5;
}

/* ============================================================
   9. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header--left {
  text-align: left;
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header--left .section-header__subtitle {
  margin: 0;
}

/* ============================================================
   10. MENU CATEGORY CARDS
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.menu-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  display: block;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.menu-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-blush);
  position: relative;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.05);
}

.menu-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--color-blush), var(--color-primary-light));
}

.menu-card__body {
  padding: var(--space-sm) var(--space-md);
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.menu-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-grey-mid);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.menu-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.menu-card__link::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

.menu-card:hover .menu-card__link::after {
  transform: translateX(4px);
}

/* ============================================================
   11. ORDER / BESTILLING SECTION
   ============================================================ */
.order-section {
  background-color: var(--color-blush);
}

.order-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.order-split--reverse {
  direction: rtl;
}

.order-split--reverse > * {
  direction: ltr;
}

.order-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-hover);
}

.order-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-split__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.order-split__title {
  font-size: clamp(28px, 3vw, 42px);
}

.order-split__text {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  line-height: 1.7;
}

.order-split__options {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.option-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-border);
}

.option-badge__icon {
  color: var(--color-primary);
}

/* ============================================================
   12. BOOKING SECTION
   ============================================================ */
.booking-section {
  background-color: var(--color-white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-info__title {
  font-size: clamp(28px, 3vw, 42px);
}

.booking-info__text {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  line-height: 1.7;
}

.opening-hours {
  background-color: var(--color-blush);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.opening-hours__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.opening-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-dusty-rose);
}

.opening-hours__row:last-child {
  border-bottom: none;
}

.opening-hours__day {
  font-weight: 500;
  color: var(--color-charcoal);
}

.opening-hours__time {
  color: var(--color-grey-mid);
}

/* Compact variant: no card background, no row borders — airy stacked list.
   Used in the footer and on the Kontakt page, wherever the boxed
   "spreadsheet" card look would clash with the surrounding list of items. */
.opening-hours--compact {
  background: transparent;
  padding: 0;
}

.opening-hours--compact .opening-hours__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: none;
}

.opening-hours--compact .opening-hours__day {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-grey-mid);
  opacity: 0.75;
}

.opening-hours--compact .opening-hours__time {
  font-size: 15px;
  color: var(--color-charcoal);
  font-weight: 600;
}

.opening-hours--compact .opening-hours__time--closed {
  font-size: 15px;
  color: var(--color-grey-mid);
  font-weight: 500;
  opacity: 0.75;
}

.booking-widget {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1.5px solid var(--color-border);
}

.booking-widget__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  text-align: center;
}

/* ============================================================
   13. ABOUT SECTION
   ============================================================ */
.about-section {
  background-color: var(--color-warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image__badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow-btn);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-content__title {
  font-size: clamp(28px, 3vw, 44px);
}

.about-content__text {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  line-height: 1.8;
}

.about-content__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.about-feature__icon {
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background-color: var(--color-blush);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.testimonial-card__stars {
  color: var(--color-primary);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-charcoal);
}

.testimonial-card__date {
  font-size: 13px;
  color: var(--color-grey-mid);
}

/* Dots: skjult pÃ¥ desktop, synlig pÃ¥ mobil via breakpoint */
.testimonials-dots {
  display: none;
}

/* ============================================================
   15. INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  background-color: var(--color-white);
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xs);
}

.instagram-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: var(--color-blush);
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

/* Instagram Feed plugin (Smash Balloon) overrides — scoped to .instagram-section
   so nothing outside this one section is affected. Do not edit the plugin's own
   files; these rules override its default styling from the theme instead. */

/* Photos: plugin's JS sets an inline px height on .sbi_photo to force a square
   crop — !important is required to win over that inline style so our 4:5
   aspect-ratio actually governs the box size. */
.instagram-section #sb_instagram .sbi_photo {
  height: auto !important;
  aspect-ratio: 4 / 5;
}

.instagram-section #sb_instagram .sbi_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* "Se mere" (load more) and "Følg os på Instagram" (follow) buttons — match the
   site's pill-shaped .btn design instead of the plugin's default square grey/blue buttons. */
.instagram-section #sb_instagram #sbi_load .sbi_load_btn,
.instagram-section #sb_instagram .sbi_follow_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 10px 22px;
  margin: var(--space-sm) 5px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: var(--border-width) solid transparent;
  box-shadow: none;
  transition: all var(--transition-base);
}

/* "Se mere" — sekundær (outline) */
.instagram-section #sb_instagram #sbi_load .sbi_load_btn {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.instagram-section #sb_instagram #sbi_load .sbi_load_btn:hover,
.instagram-section #sb_instagram #sbi_load .sbi_load_btn:focus {
  background-color: var(--color-primary);
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

/* "Følg os på Instagram" — primær (udfyldt) */
.instagram-section #sb_instagram .sbi_follow_btn a {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-btn);
}

.instagram-section #sb_instagram .sbi_follow_btn a:hover,
.instagram-section #sb_instagram .sbi_follow_btn a:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
  outline: none;
  box-shadow: 0 6px 20px rgba(231, 92, 155, 0.38);
}

.instagram-section #sb_instagram .sbi_follow_btn a:active,
.instagram-section #sb_instagram #sbi_load .sbi_load_btn:active {
  box-shadow: none;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-blush);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.85fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-dusty-rose);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-brand__logo img {
  height: 52px;
  width: auto;
}

.footer-brand__tagline {
  font-size: 15px;
  color: var(--color-grey-mid);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.footer-social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social__link:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  color: #ffffff;
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 15px;
  color: var(--color-grey-mid);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 15px;
  color: var(--color-grey-mid);
  margin-bottom: 8px;
}

.footer-contact-item__icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom__copy {
  font-size: 14px;
  color: var(--color-grey-mid);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom__links a {
  font-size: 14px;
  color: var(--color-grey-mid);
}

.footer-bottom__links a:hover {
  color: var(--color-primary);
}

/* ============================================================
   17. MENU PAGE
   ============================================================ */
.menu-page-hero {
  background-color: var(--color-blush);
  padding: var(--space-xl) 0;
  text-align: center;
}

.menu-tabs {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 72px;
  background-color: var(--color-white);
  z-index: 10;
}

.menu-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-grey-mid);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1.5px solid transparent;
  background: none;
}

.menu-tab:hover,
.menu-tab.active {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.menu-category {
  margin-bottom: var(--space-xl);
}

.menu-category__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-blush);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.menu-category__title::before {
  content: '';
  display: block;
  width: 6px;
  height: 36px;
  background-color: var(--color-primary);
  border-radius: 3px;
  flex-shrink: 0;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-grey-light);
  transition: transform var(--transition-base), border-color var(--transition-fast), box-shadow var(--transition-base);
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-hover);
}

.menu-item__image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--color-blush);
}

.menu-item__content {
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.menu-item__desc {
  font-size: 14px;
  color: var(--color-grey-mid);
  line-height: 1.5;
  margin-bottom: 6px;
}

.menu-item__tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.menu-tag {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--color-blush);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
}

.menu-tag--vegetar {
  background-color: #d4edda;
  color: #276233;
}

.menu-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 92px;
  text-align: right;
  flex-shrink: 0;
  align-self: center;
}

.menu-item__price-amount {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

.menu-item__price-unit {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-grey-mid);
  margin-top: 1px;
}

/* ============================================================
   18. WOOCOMMERCE BASE STYLES
   ============================================================ */
.woocommerce-page .woocommerce,
.woocommerce {
  font-family: var(--font-body);
}

/* Product cards */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: var(--space-sm) var(--space-md) 4px;
  margin: 0;
}

.woocommerce ul.products li.product .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 0 var(--space-md) var(--space-sm);
  display: block;
}

.woocommerce ul.products li.product .button {
  margin: 0 var(--space-md) var(--space-md);
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  transition: background-color var(--transition-fast);
  text-align: center;
  display: block;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.woocommerce ul.products li.product .button:hover {
  background-color: var(--color-primary-dark);
  color: #ffffff;
}

/* Single product */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  border-radius: var(--radius-lg);
}

.woocommerce div.product .entry-summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin: 0;
}

.woocommerce div.product .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  line-height: 1.7;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-btn);
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Cart */
.woocommerce-cart .woocommerce-cart-form table.cart {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-cart .woocommerce-cart-form table.cart th,
.woocommerce-cart .woocommerce-cart-form table.cart td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-grey-light);
  vertical-align: middle;
}

.woocommerce-cart .woocommerce-cart-form table.cart th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-grey-mid);
}

.woocommerce .cart-collaterals .cart_totals {
  background-color: var(--color-blush);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

/* Checkout */
.woocommerce-checkout .woocommerce {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.woocommerce form .form-row label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 6px;
  display: block;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(231, 92, 155, 0.12);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 18px 44px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-btn);
}

.woocommerce #payment #place_order:hover {
  background-color: var(--color-primary-dark);
}

/* WooCommerce notices */
.woocommerce-message {
  background-color: var(--color-blush);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 15px;
  color: var(--color-charcoal);
}

/* ============================================================
   19. FORMS (BOOKING & CONTACT)
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(231, 92, 155, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-grey-mid);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-row {
  display: flex;
  gap: var(--space-sm);
}

/* ============================================================
   20. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background-color: var(--color-blush);
  padding: var(--space-lg) 0;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-grey-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-grey-mid);
  margin-bottom: var(--space-sm);
  justify-content: center;
}

.breadcrumb a {
  color: var(--color-grey-mid);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__sep {
  color: var(--color-dusty-rose);
}

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item__content {
  flex: 1;
}

.contact-info-item__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-grey-mid);
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 16px;
  color: var(--color-charcoal);
  font-weight: 500;
}

.contact-info-item__value a {
  color: var(--color-charcoal);
}

.contact-info-item__value a:hover {
  color: var(--color-primary);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
  aspect-ratio: 16 / 9;
  background-color: var(--color-blush);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-embed__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-xs);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.map-embed__link:hover {
  color: var(--color-primary-dark);
}

/* Kontakt-siden: to niveauer i venstre kolonne — primær info (adresse,
   telefon, e-mail, åbningstider) i normal stil, sekundær praktisk info
   grupperet under en diskret overskrift med mindre skrift */
.contact-info__secondary {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info__subheading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-grey-mid);
}

.contact-info-item--secondary .contact-info-item__label {
  font-size: 12px;
}

.contact-info-item--secondary .contact-info-item__value {
  font-size: 14px;
  font-weight: 400;
}

/* ============================================================
   22. ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 500;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: #ffffff;
}

*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* ============================================================
   23. UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--space-lg) 0;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge--primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.badge--blush {
  background-color: var(--color-blush);
  color: var(--color-primary);
}

.badge--success {
  background-color: #e8f5e9;
  color: var(--color-success);
}

/* Bruges af <span class="pink"> i menukort-kategori-noter (Customizer-felter) */
.pink {
  color: var(--color-primary);
}

/* ============================================================
   24. RESPONSIVE â TABLET (max 1023px)
   ============================================================ */
@media (max-width: 1023px) {
  :root {
    --font-size-3xl: 44px;
    --font-size-2xl: 36px;
    --space-xl: 60px;
    --space-2xl: 80px;
  }

  .primary-nav { display: none; }
  .hamburger  { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: var(--space-xl) var(--space-md);
    order: 2;
  }

  .hero__image {
    min-height: 50vh;
    order: 1;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-split,
  .booking-inner,
  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .order-split--reverse {
    direction: ltr;
  }

  /* Centrér CTA-knap(per) i Om os-sektionen, når layoutet stables (matcher
     sitets øvrige centrerede knapper på mobil/tablet) */
  .about-content__cta {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .woocommerce {
    grid-template-columns: 1fr;
  }

  .usp-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(n+2) {
    display: none;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   25. RESPONSIVE â MOBILE (max 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --font-size-3xl: 36px;
    --font-size-2xl: 28px;
    --font-size-xl:  24px;
    --font-size-lg:  20px;
    --space-xl:  48px;
    --space-2xl: 64px;
  }

  /* Kompakt side-hero på mobil — samme værdier på alle sider
     (Menukort, Om os, Kontakt, politik-sider m.fl.) */
  .page-hero {
    padding: 16px 0;
  }

  .page-hero__title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .page-hero__subtitle {
    font-size: 14px;
    line-height: 1.35;
  }

  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .usp-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  /* testimonials: show only 1 card on mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .testimonials-grid .testimonial-card:nth-child(n+2) {
    display: none;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Tættere lodret rytme i footeren på mobil — kortere samlet længde */
  .site-footer {
    padding-top: var(--space-md);
    padding-bottom: var(--space-sm);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding-bottom: var(--space-md);
  }

  .footer-col__title {
    margin-bottom: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .order-split__options {
    flex-direction: column;
  }

  /* Grid i stedet for flex: logo- og hamburger-siden får hver deres
     ligestore (1fr) zone, så "Ring nu"-knappen i midten altid centreres i
     viewportets ægte midte — uanset at logo og hamburger har forskellig
     bredde (space-between kunne ikke give det, kun ligestore flanker kan) */
  .header-inner {
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-logo {
    justify-self: start;
  }

  .header-cta {
    justify-self: center;
  }

  .hamburger {
    justify-self: end;
  }

  .site-logo img {
    height: 40px;
  }

  /* Mobil: skjul 'Bestil bord', vis 'Se menuen' */
  .header-cta--desktop {
    display: none;
  }

  .header-cta--mobile {
    display: inline-flex;
  }

  /* Testimonials: dots hidden (only 1 card shown on mobile) */
  .testimonials-dots {
    display: none;
  }

  .booking-widget {
    padding: var(--space-md);
  }
}

/* Meget smalle skærme (fx iPhone SE, 375px): giv logoet og "Ring nu"-
   knappen lidt mindre plads at fylde, så de tre header-zoner aldrig
   trænges så tæt sammen at de overlapper eller tvinger vandret scroll */
@media (max-width: 380px) {
  .header-inner {
    gap: var(--space-xs);
  }

  .site-logo img {
    height: 32px;
  }

  .header-cta--mobile {
    padding: 10px 14px;
  }
}
