/* ================================================
   Lindesbergs Handelsträdgård — Demo stylesheet
   Mobile-first, ren CSS utan frameworks
   ================================================ */

/* Self-hostade fonter (variabla, latin-subset — åäö ingår). Ingen extern
   GDPR-pingad tjänst och ingen render-blockerande @import-kedja.
   optional (inte swap): finns typsnittet inte redo vid första uppritningen
   används reservtypsnittet för just den sidvisningen i stället för att byta
   mitt i – annars rycker all text i sidled. Förladdas i <head>, så i
   praktiken hinner det nästan alltid. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('../fonts/playfair-latin-var.woff2') format('woff2');
}

/* --- SVG-ikoner --- */
.icon {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.icon-sm  { width: 1.1rem;  height: 1.1rem;  }
.icon-md  { width: 1.5rem;  height: 1.5rem;  }
.icon-lg  { width: 2rem;    height: 2rem;    }
.icon-xl  { width: 2.5rem;  height: 2.5rem;  }
.icon-2xl { width: 3rem;    height: 3rem;    }

/* Containers — font-size styr ikonens storlek via 1em */
.cat-body h3 .icon { color: var(--green-dark); }
.feature-icon     { font-size: 2.5rem;  margin-bottom: 1rem;    color: var(--green-dark); }
.value-icon       { font-size: 2rem;    margin-bottom: 0.875rem; color: var(--green-dark); }
.info-card-icon   { font-size: 1.4rem;  flex-shrink: 0; margin-top: 2px; color: var(--green-dark); }
.s-icon           { font-size: 2rem;    flex-shrink: 0; color: rgba(255,255,255,0.9); }

/* Inline ikon i rubrik */
h2 .icon, h3 .icon { vertical-align: -0.2em; margin-right: 0.3em; }

/* --- Variabler --- */
:root {
  --green-dark:   #2D5016;
  --green-mid:    #3d6b1f;
  --green-light:  #7aab4a;
  --gold:         #8B6914;
  --gold-light:   #b8891c;
  --cream:        #F7F3ED;
  --cream-dark:   #EDE8DF;
  --text:         #1C1C1C;
  --text-muted:   #636363;
  --border:       #D4CBBF;
  --white:        #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --max-w:     1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Reservera rullningslistens plats från start – annars dyker den upp medan
   sidan laddas och allt centrerat hoppar ~8px i sidled vid varje sidbyte. */
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4rem 0; }

/* --- Typografi --- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
p { color: var(--text-muted); line-height: 1.75; }

/* --- Knappar --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  min-height: 44px;
  white-space: nowrap;
  text-align: center;
}
.btn-gold   { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-green  { background: var(--green-dark); color: var(--white); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green-dark); }
.btn-outline-dark { border: 2px solid var(--green-dark); color: var(--green-dark); }
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }

/* ================================================
   HEADER & NAV
   ================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo-img { width: 44px; height: 44px; flex-shrink: 0; border-radius: 6px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.875rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; color: var(--text);
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); background: var(--cream); }
.nav-links .nav-cta {
  background: var(--green-dark); color: var(--white);
  padding: 0.5rem 1.25rem; margin-left: 0.5rem;
}
/* Samma hovereffekt som .btn-green (t.ex. "Skicka meddelande").
   color måste upprepas här – annars vinner .nav-links a:hover/.active
   och texten blir mörkgrön på mörkgrön knapp. */
.nav-links .nav-cta.active { background: var(--green-dark); color: var(--white); }
.nav-links .nav-cta:hover, .nav-links .nav-cta:focus-visible {
  background: var(--green-mid); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow);
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil-meny */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem 1.5rem; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem; border-radius: var(--radius);
  font-weight: 500; color: var(--text); transition: all 0.15s;
  min-height: 44px; display: flex; align-items: center;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--cream); color: var(--green-dark); }
.mobile-menu .nav-cta,
.mobile-menu .nav-cta.active {
  background: var(--green-dark); color: var(--white);
  justify-content: center; margin-top: 0.5rem;
}
.mobile-menu .nav-cta:hover, .mobile-menu .nav-cta:focus-visible {
  background: var(--green-mid); color: var(--white);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.92); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.82); }
.footer-contact {
  font-style: normal; font-size: 0.85rem; line-height: 1.7;
  color: rgba(255,255,255,0.82); margin-top: 0.875rem;
}
.footer-contact a { color: rgba(255,255,255,0.92); transition: color 0.15s; }
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.88); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.88); line-height: 1.9; }
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
}

/* ================================================
   HERO (startsida)
   ================================================ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  background: #1c2a10; /* mörk oliv – platshållare tills hero-bilden laddat */
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-final.jpg');
  background-size: cover; background-position: center 20%;
  opacity: 0;
}
html.hero-ready .hero-bg { opacity: 1; }
html.hero-fade .hero-bg { transition: opacity 0.6s ease; }
.hero-overlay {
  position: absolute; inset: 0;
  /* Varm mörk olivgrön — behåller naturkänslan utan det starka gröna */
  background: linear-gradient(140deg,
    rgba(28,42,16,0.65) 0%,
    rgba(28,42,16,0.42) 55%,
    rgba(28,42,16,0.16) 100%
  );
}
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 680px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold-light);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem; max-width: 500px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: rgba(255,255,255,0.75);
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown { to { top: 100%; } }

/* ================================================
   PAGE HERO (undersidor)
   ================================================ */
.page-hero {
  background: #1c2a10; /* mörk oliv – platshållare tills bilden laddat, som på startsidan */
  padding: 4rem 0 3rem;
  position: relative; overflow: hidden;
}
/* Samma upplägg som startsidans hero: mörk oliv som platshållare, bilden
   tonas in först när den är helt laddad (klassen sätts av skriptet i <head>). */
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/greenhouse-interior.jpg');
  background-size: cover; background-position: center;
  opacity: 0;
}
html.page-hero-ready .page-hero::before { opacity: 1; }
html.page-hero-fade .page-hero::before { transition: opacity 0.6s ease; }
.page-hero::after {
  /* Samma overlayf ärg som main hero — konsekvent */
  content: ''; position: absolute; inset: 0;
  background: rgba(28,42,16,0.70);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.72); margin-top: 0.75rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  margin-bottom: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ================================================
   SECTION HELPERS
   ================================================ */
.section-eyebrow {
  display: block; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.section-header h2 { color: var(--text); }
.section-header p { margin-top: 0.75rem; }
.section-header.centered p { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ================================================
   SORTIMENT — kategori-kort
   ================================================ */
.category-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.category-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-img { height: 200px; overflow: hidden; background: #e9eee3; } /* platshållarton medan bilden laddar */
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover .cat-img img { transform: scale(1.06); }
.cat-body { padding: 1.5rem; }
.cat-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.cat-body h3 { margin-bottom: 0.5rem; }
.cat-body p { font-size: 0.875rem; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.tag {
  font-size: 0.72rem; padding: 0.25rem 0.625rem;
  border-radius: 100px; background: var(--cream);
  color: var(--green-dark); font-weight: 500;
}

/* ================================================
   FEATURES / USP:ar
   ================================================ */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; }

/* ================================================
   ÖPPETTIDER
   ================================================ */
.hours-section { background: var(--cream); }
.hours-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.hours-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
}
.hours-card h3 { margin-bottom: 1.25rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.625rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { color: var(--green-dark); font-weight: 600; text-align: right; }
/* Stängd dag – tonad tid istället för klockslag */
.hours-row.is-closed .time { color: var(--text-muted); font-weight: 500; }
/* "Öppet nu"-status. Räknas i svensk tid på servern, inte i besökarens klocka. */
.hours-status {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1rem; padding: 0.3rem 0.75rem;
  border-radius: 999px; background: var(--cream);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.hours-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
.hours-status.is-open { color: var(--green-mid); background: #eef5e9; }
.hours-note { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ================================================
   SEASONAL BANNER
   ================================================ */
.seasonal-section {
  background: linear-gradient(135deg, #5a7a38 0%, #3e5c22 100%);
  color: var(--white); text-align: center;
}
.seasonal-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.seasonal-section > .container > p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.seasonal-section .section-eyebrow { color: rgba(255,255,255,0.65); }
.seasonal-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 2rem 0; text-align: left; }
.seasonal-item {
  background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.seasonal-item .s-icon { font-size: 2rem; flex-shrink: 0; }
.seasonal-item strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.seasonal-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ================================================
   KONTAKT
   ================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.45rem; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.875rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.925rem; color: var(--text); background: var(--white);
  transition: border-color 0.15s; outline: none; min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-dark); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

/* Honeypot – dolt fält mot spam */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Felmeddelande vid misslyckat formulärutskick */
.form-error {
  background: #fdecea; border: 1.5px solid #f5c2c0; color: #a3271f;
  border-radius: var(--radius); padding: 0.875rem 1.1rem; margin-bottom: 1.25rem; font-size: 0.9rem;
}
.form-error a { color: #a3271f; font-weight: 600; text-decoration: underline; }

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--cream); padding: 1.25rem; border-radius: var(--radius-lg);
}
.info-card-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-card h4 { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; font-family: var(--font-body); font-weight: 600; }
.info-card p, .info-card a { font-size: 0.9rem; color: var(--text); }
.info-card a:hover { color: var(--green-dark); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 240px; box-shadow: var(--shadow); margin-top: 1.5rem; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ================================================
   OM OSS
   ================================================ */
.about-split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 340px; background: #e9eee3; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-num {
  font-family: var(--font-heading); font-size: 2rem;
  color: var(--green-dark); font-weight: 700; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.value-card {
  padding: 1.75rem; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
}
.value-icon { font-size: 2rem; margin-bottom: 0.875rem; }
.value-card h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.value-card p { font-size: 0.875rem; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section { background: var(--cream); text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { margin: 0 auto 2rem; max-width: 480px; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FAQ
   ================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem; background: var(--white); transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--green-light); }
.faq-item summary {
  font-family: var(--font-heading); font-size: 1.05rem; color: var(--text);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--green-dark); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 0.75rem; font-size: 0.95rem; }

/* ================================================
   RESPONSIVE — Tablet 768px+
   ================================================ */
@media (min-width: 768px) {
  section { padding: 5.5rem 0; }

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

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-img-wrap { height: 460px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .seasonal-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .map-wrap { height: 300px; }
  .cat-img { height: 220px; }
}

/* ================================================
   RESPONSIVE — Desktop 1024px+
   ================================================ */
@media (min-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  /* Öppettidskortet dolt => tre kort delar raden istället för att lämna lucka */
  .features-grid.is-three { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tre kort i tvåkolumnsläget: centrera det ensamma på rad två.
   :nth-child(3) – inte :last-child, som är det dolda kortet.
   Egen brytpunkt, annars läcker span 2 in i trekolumnsläget. */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .features-grid.is-three > :nth-child(3) {
    grid-column: span 2; justify-self: center; width: calc(50% - 0.75rem);
  }
}

/* ================================================
   GALLERI
   ================================================ */
.gallery-grid { columns: 2; column-gap: 0.75rem; }
.gallery-grid a { display: block; margin-bottom: 0.75rem; border-radius: var(--radius-lg); overflow: hidden; background: #e9eee3; break-inside: avoid; }
.gallery-grid img { width: 100%; height: auto; display: block; transition: transform 0.35s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }
@media (min-width: 768px)  { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: rgba(10,14,8,0.92); max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(10,14,8,0.92); }
.lightbox img { max-width: 94vw; max-height: 86vh; width: auto; height: auto; margin: auto; display: block; border-radius: 6px; }
.lightbox .lb-inner { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; position: relative; }
.lightbox button { position: absolute; background: rgba(255,255,255,0.12); color: #fff; border-radius: 50%; width: 44px; height: 44px; font-size: 1.3rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.lightbox button:hover { background: rgba(255,255,255,0.28); }
.lightbox .lb-close { top: 14px; right: 14px; }
.lightbox .lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 10px; top: 50%; transform: translateY(-50%); }

/* Galleri-teaser (kollage + CTA på andra sidor) */
.gallery-teaser { text-align: center; }
.gallery-teaser .teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin: 1.5rem 0; }
.gallery-teaser .teaser-grid a { display: block; border-radius: var(--radius-lg); overflow: hidden; background: #e9eee3; aspect-ratio: 1; }
.gallery-teaser .teaser-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-teaser .teaser-grid a:hover img { transform: scale(1.05); }
@media (max-width: 640px) { .gallery-teaser .teaser-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================
   AKTUELLT-RAD (tillfälligt meddelande under menyn,
   styrs från /admin/ – renderas bara när aktiverad)
   ================================================ */
.notice-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
/* Bara första besöket (inget sparat meddelande): glid in istället för att rycka */
.notice-bar.is-new { overflow: hidden; animation: notice-in 0.35s ease-out; }
@keyframes notice-in {
  from { max-height: 0; opacity: 0; }
  to   { max-height: 12rem; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .notice-bar.is-new { animation: none; }
}
.notice-inner {
  display: flex;
  align-items: baseline;     /* etikettens text ligger på samma baslinje som meddelandet */
  justify-content: center;   /* centrerar etikett + text i raden */
  gap: 0.75rem;
  padding: 0.6rem 0;
}
.notice-badge {
  flex-shrink: 0;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.notice-text {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  min-width: 0;             /* låter texten radbrytas i flex-raden */
  overflow-wrap: anywhere;  /* aldrig horisontell scroll, ens vid långa ord */
  white-space: normal;      /* desktop: kundens radbryt blir mellanslag – allt på en rad */
}
/* Mobil: etiketten centrerad på egen rad ovanför texten */
@media (max-width: 640px) {
  .notice-inner { flex-direction: column; align-items: center; gap: 0.4rem; padding: 0.75rem 0; }
  .notice-text  { text-align: center; white-space: pre-line; } /* mobil: kundens radbryt visas */
}
