/* =========================================================================
   Blimor.no — "Soft gentle mom"
   Sage #7c9473 + blush #e8c9c1 on warm white. Rounded, calm, gentle serif
   accents. Caring and reassuring. ALL rules scoped under .blm.
   Fonts: Newsreader (soft literary serif, display) + Nunito Sans (rounded body).
   ========================================================================= */


.blm {
  /* Theme tokens (names the shared routes / mdx-render expect). */
  --color-primary:       #7c9473; /* sage */
  --color-primary-light: #7c94731a;
  --color-text:          #423d38;
  --color-bg:            #fbf7f3;
  --color-surface:       #ffffff;
  --color-border:        #ecdfd9;
  --color-muted:         #8f847b;

  /* Alias tokens used by shared routes (guide/review/comparison). */
  --bg:       #fbf7f3;
  --surface:  #ffffff;
  --ink:      #423d38;
  --ink-soft: #6f665f;
  --ink-dim:  #8f847b;
  --border:   #ecdfd9;
  --accent:   #7c9473;

  /* Blimor palette. */
  --sage:        #7c9473;
  --sage-deep:   #5f7659;
  --sage-soft:   #e7eee2;
  --blush:       #e8c9c1;
  --blush-soft:  #f6e7e2;
  --blush-deep:  #cf9e93;
  --cream:       #fbf7f3;
  --cream-warm:  #f4ece4;
  --gold:        #c9a86a;

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 2px 8px rgba(124, 148, 115, 0.08), 0 12px 32px -12px rgba(124, 148, 115, 0.14);
  --shadow-lift: 0 6px 18px rgba(124, 148, 115, 0.14), 0 24px 48px -18px rgba(124, 148, 115, 0.22);
  --radius:   18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  background: var(--cream);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.blm *, .blm *::before, .blm *::after { box-sizing: border-box; }
.blm a { color: inherit; }
.blm img { max-width: 100%; }
.blm ::selection { background: var(--blush); color: #5b3d36; }

.blm-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================================
   NAV
   ========================================================================= */
.blm-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.blm-nav.scrolled {
  background: rgba(251, 247, 243, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(236, 223, 217, 0.9);
}
.blm-nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.blm-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--sage-deep);
  text-decoration: none;
  line-height: 1;
}
.blm-brand .heart {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 3px;
  border-radius: 50% 50% 50% 0;
  background: var(--blush-deep);
  transform: rotate(45deg);
}
.blm-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.blm-nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.blm-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--blush-deep);
  transition: width 0.25s ease;
}
.blm-nav-links a:hover { color: var(--sage-deep); }
.blm-nav-links a:hover::after { width: 100%; }
.blm-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 14px -6px rgba(124, 148, 115, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.blm-nav-cta:hover { transform: translateY(-1px); background: var(--sage-deep); box-shadow: 0 10px 20px -8px rgba(124, 148, 115, 0.8); }

/* =========================================================================
   HERO
   ========================================================================= */
.blm-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
  background:
    radial-gradient(1100px 520px at 82% -10%, var(--blush-soft) 0%, rgba(246, 231, 226, 0) 62%),
    radial-gradient(760px 480px at 6% 108%, var(--sage-soft) 0%, rgba(231, 238, 226, 0) 60%),
    var(--cream);
}
.blm-hero::before {
  /* soft grain-free organic blob accent */
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle at 40% 40%, rgba(232, 201, 193, 0.55), rgba(232, 201, 193, 0) 70%);
  filter: blur(6px);
  pointer-events: none;
}
.blm-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.blm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.blm-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blush-deep); }
.blm-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #38443a;
  margin: 0 0 22px;
}
.blm-hero-title em {
  font-style: italic;
  color: var(--sage);
}
.blm-hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0 0 30px;
}
.blm-hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.blm-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.blm-btn.primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(124, 148, 115, 0.85);
}
.blm-btn.primary:hover { transform: translateY(-2px); background: var(--sage-deep); box-shadow: 0 16px 30px -12px rgba(124, 148, 115, 0.9); }
.blm-btn.ghost {
  background: rgba(255,255,255,0.6);
  color: var(--sage-deep);
  border-color: var(--border);
}
.blm-btn.ghost:hover { background: #fff; border-color: var(--blush-deep); }
.blm-hero-link {
  font-weight: 700;
  font-size: 15px;
  color: var(--sage-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--blush);
  padding-bottom: 2px;
}
.blm-hero-link:hover { border-color: var(--blush-deep); }

/* Hero art card */
.blm-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff 0%, var(--cream-warm) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  padding: 30px;
}
.blm-hero-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--sage-deep);
  margin: 0 0 4px;
}
.blm-hero-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; }
.blm-timeline { display: grid; gap: 12px; }
.blm-timeline-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
}
.blm-timeline-row .tri {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
}
.blm-timeline-row.t1 .tri { background: var(--sage); }
.blm-timeline-row.t2 .tri { background: var(--blush-deep); }
.blm-timeline-row.t3 .tri { background: var(--gold); }
.blm-timeline-row strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.blm-timeline-row span.sub { font-size: 12.5px; color: var(--ink-dim); }

/* =========================================================================
   SECTION SCAFFOLD
   ========================================================================= */
.blm-section { padding: 72px 0; }
.blm-section.tint { background: linear-gradient(180deg, var(--sage-soft) 0%, rgba(231,238,226,0) 100%); }
.blm-section.blush-tint { background: linear-gradient(180deg, var(--blush-soft) 0%, rgba(246,231,226,0) 100%); }
.blm-section-head { max-width: 640px; margin: 0 0 40px; }
.blm-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.blm-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 12px;
}
.blm-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #38443a;
  margin: 0 0 14px;
}
.blm-section h2 em { font-style: italic; color: var(--sage); }
.blm-section-head p { font-size: 17px; color: var(--ink-soft); margin: 0; }

/* Journey / categories */
.blm-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blm-journey {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blm-journey:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--blush); }
.blm-journey .ic {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 26px;
}
.blm-journey.j-graviditet .ic { background: var(--blush-soft); }
.blm-journey.j-fodsel .ic { background: var(--sage-soft); }
.blm-journey.j-baby .ic { background: #f3ecdd; }
.blm-journey h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--sage-deep);
  margin: 0 0 8px;
}
.blm-journey p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.6; }
.blm-journey .go { font-weight: 700; font-size: 14px; color: var(--sage); }
.blm-journey:hover .go { color: var(--sage-deep); }

/* Guides list */
.blm-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blm-guide {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blm-guide:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.blm-guide .tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 12px;
}
.blm-guide h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.blm-guide p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.blm-guide .meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-dim);
}
.blm-guide .meta .go { font-weight: 700; color: var(--sage); }

/* Offer cards (home + inline) */
.blm-offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blm-offer {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blm-offer:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.blm-offer-top {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 20px 0;
}
.blm-offer-logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-warm);
  display: grid; place-items: center;
  overflow: hidden; flex: 0 0 44px;
}
.blm-offer-logo img { width: 30px; height: 30px; object-fit: contain; }
.blm-offer-top strong { font-size: 16px; color: var(--ink); font-weight: 700; }
.blm-offer .badge {
  margin-left: auto;
  font-size: 12px; font-weight: 700;
  color: var(--sage-deep);
  background: var(--sage-soft);
  padding: 3px 10px; border-radius: var(--radius-pill);
}
.blm-offer p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 12px 0 0; padding: 0 20px; flex: 1; }
.blm-offer .go {
  margin: 16px 20px 20px;
  font-weight: 700; font-size: 14px; color: var(--sage);
}
.blm-offer:hover .go { color: var(--sage-deep); }

/* Reassurance / values band */
.blm-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blm-value { text-align: center; padding: 0 10px; }
.blm-value .vic {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 18px; background: #fff; border: 1px solid var(--border);
  display: grid; place-items: center; font-size: 26px;
  box-shadow: var(--shadow-soft);
}
.blm-value h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--sage-deep); margin: 0 0 8px; }
.blm-value p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* Disclaimer band (home) */
.blm-careline {
  max-width: 760px; margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-soft);
}
.blm-careline strong { color: var(--sage-deep); }
.blm-careline p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* Newsletter */
.blm-news {
  background: linear-gradient(150deg, var(--sage-soft) 0%, var(--blush-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.blm-news h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 34px); color: #38443a; margin: 0 0 8px; }
.blm-news h2 em { font-style: italic; color: var(--sage); }
.blm-news p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.blm-news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.blm-news-form input {
  flex: 1; min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.blm-news-form input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--color-primary-light); }
.blm-news-form button {
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blm-news-form button:hover { background: var(--sage-deep); transform: translateY(-1px); }

/* FAQ (forside) */
.blm-faq { max-width: 760px; }
.blm-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blm-faq details[open] { border-color: var(--blush); box-shadow: var(--shadow-soft); }
.blm-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.blm-faq summary::-webkit-details-marker { display: none; }
.blm-faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blush-deep);
  transition: transform 0.2s ease;
}
.blm-faq details[open] summary::after { content: "–"; color: var(--sage-deep); }
.blm-faq details p {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.blm-footer {
  background: #f4ece4;
  border-top: 1px solid var(--border);
  padding: 56px 0 34px;
  margin-top: 8px;
}
.blm-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.blm-footer-brand .blm-brand { font-size: 24px; }
.blm-footer-brand p { font-size: 14px; color: var(--ink-soft); margin: 14px 0 0; max-width: 26em; line-height: 1.6; }
.blm-footer h2 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sage-deep); margin: 4px 0 14px;
}
.blm-footer ul { list-style: none; margin: 0; padding: 0; }
.blm-footer li { margin-bottom: 10px; }
.blm-footer a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; transition: color 0.2s ease; }
.blm-footer a:hover { color: var(--sage-deep); }
.blm-footer-bot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--ink-dim); flex-wrap: wrap; gap: 8px;
}

/* =========================================================================
   CONTENT PAGES (.container) — guide / review / comparison
   ========================================================================= */
.blm .container { color: var(--color-text); }
.blm .container h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(31px, 5vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #38443a;
}
.blm .container h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 27px;
  color: #3c483c;
  margin: 40px 0 14px;
}
.blm .container h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--ink); }
.blm .container p { margin: 0 0 16px; color: var(--ink); }
.blm .container a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-decoration-color: var(--blush);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.blm .container a:hover { text-decoration-color: var(--blush-deep); }
.blm .container ul, .blm .container ol { padding-left: 24px; margin: 0 0 18px; }
.blm .container li { margin-bottom: 8px; }
.blm .container strong { color: #3c483c; }
.blm .container blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--sage-soft);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #4b5745;
  font-size: 15px;
}
.blm .container blockquote p { margin: 0 0 8px; color: #4b5745; }
.blm .container blockquote p:last-child { margin-bottom: 0; }
.blm .container blockquote strong { color: var(--sage-deep); }
.blm .container table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.blm .container thead { background: var(--sage-soft); }
.blm .container th { font-weight: 700; color: var(--sage-deep); text-align: left; }
.blm .container th, .blm .container td { border-bottom: 1px solid var(--border); padding: 12px 16px; }
.blm .container tbody tr:last-child td { border-bottom: none; }
.blm .container hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* Inline offer CTA usable inside MDX */
.blm .container .blm-cta-box {
  margin: 28px 0;
  padding: 24px 26px;
  background: linear-gradient(150deg, #fff 0%, var(--cream-warm) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.blm .container .blm-cta-box .eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blush-deep); margin-bottom: 6px; }
.blm .container .blm-cta-box h4 { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--sage-deep); margin: 0 0 8px; }
.blm .container .blm-cta-box p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 16px; }
.blm .container .blm-cta-box a.blm-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; text-decoration: none;
}
.blm .container .blm-cta-box a.blm-cta-btn:hover { background: var(--sage-deep); }

/* Breadcrumbs tint (shared component uses inline styles; light touch here) */
.blm .container nav[aria-label] a { color: var(--sage-deep); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .blm-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .blm-hero-card { order: 2; }
  .blm-journey-grid, .blm-guides-grid, .blm-offers-grid, .blm-values { grid-template-columns: repeat(2, 1fr); }
  .blm-news { grid-template-columns: 1fr; }
  .blm-footer-top { grid-template-columns: 1fr 1fr; }
  .blm-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .blm-nav-links { display: none; }
  .blm-nav-cta { display: none; }
  .blm-journey-grid, .blm-guides-grid, .blm-offers-grid, .blm-values { grid-template-columns: 1fr; }
  .blm-footer-top { grid-template-columns: 1fr; }
  .blm-hero { padding: 44px 0 60px; }
  .blm-section { padding: 54px 0; }
  .blm-news { padding: 32px 24px; }
}

/* Shared MobileNav generic classes styled for blm (burger + panel) */
.blm .nav-burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.blm .nav-burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--sage-deep); }
.blm .nav-mobile-panel {
  position: fixed; inset: 76px 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 26px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lift);
  z-index: 60;
}
.blm .nav-mobile-panel a {
  padding: 13px 4px;
  font-size: 17px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.blm .nav-mobile-panel a:last-of-type { border-bottom: none; }
.blm .nav-mobile-cta {
  margin-top: 12px; text-align: center;
  background: var(--sage); color: #fff !important;
  border-radius: var(--radius-pill) !important;
  border-bottom: none !important;
  font-weight: 700;
}
@media (max-width: 620px) {
  .blm .nav-burger { display: flex; }
}

/* spesifisitets-fiks (kontekst-bevarende): .blm a{color:inherit} (0-1-1) slår
   enkeltklasse-knapper (0-1-0). Speiler color-deklarasjoner med a.-selektor i samme
   selektor-kontekst. */
.blm a.blm-nav-cta { color: #fff; }
.blm .container .blm-cta-box a a.blm-cta-btn { color: #fff; }

/* =========================================================================
   MIN SIDE + LISTE-EDITOR + GJESTESIDE  (ønskeliste-feature)
   ========================================================================= */

/* ── Felles form-primitiver ─────────────────────────────────────────────── */
.blm-ms-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.blm-ms-input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blm-ms-input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.blm-ms-select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  appearance: none;
}
.blm-ms-textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blm-ms-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.blm-ms-submit-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blm-ms-submit-btn:hover:not(:disabled) {
  background: var(--sage-deep);
  transform: translateY(-1px);
}
.blm-ms-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.blm-ms-error {
  padding: 10px 14px;
  background: #fff0ed;
  border: 1px solid #f5c6bc;
  border-radius: var(--radius);
  color: #9b3626;
  font-size: 14px;
  margin-bottom: 12px;
}
.blm-ms-loading { color: var(--ink-soft); font-size: 15px; }
.blm-ms-empty { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ── Min side ───────────────────────────────────────────────────────────── */
.blm-ms-outer { max-width: 700px; margin: 0 auto; }
.blm-ms-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
}
.blm-ms-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.015em;
  color: #38443a;
  margin: 0 0 16px;
}
.blm-ms-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.blm-ms-vipps-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  background: #ff5b24;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(255,91,36,0.7);
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
}
.blm-ms-vipps-btn:hover {
  background: #e84e19;
  transform: translateY(-1px);
  color: #fff;
}
.blm-ms-privacy {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.6;
}
.blm-ms-privacy a { color: var(--sage-deep); }
.blm-ms-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blm-ms-logout-btn {
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.blm-ms-logout-btn:hover { border-color: var(--blush-deep); color: var(--ink); }
.blm-ms-section { margin-bottom: 36px; }
.blm-ms-section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--sage-deep);
  margin: 0 0 18px;
}
.blm-ms-lists { display: flex; flex-direction: column; gap: 10px; }
.blm-ms-list-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.blm-ms-list-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-soft);
  transform: translateX(2px);
}
.blm-ms-list-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.blm-ms-list-title { font-weight: 700; font-size: 16px; color: var(--ink); }
.blm-ms-list-meta { font-size: 13px; color: var(--ink-dim); }
.blm-ms-list-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  background: var(--sage-soft);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.blm-ms-list-arrow { color: var(--ink-dim); font-size: 18px; }
.blm-ms-form { display: flex; flex-direction: column; }
.blm-ms-delete-account {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 24px;
  text-align: center;
}
.blm-ms-delete-account a { color: var(--sage-deep); }

/* ── Liste-editor ───────────────────────────────────────────────────────── */
.blm-le-outer { max-width: 800px; margin: 0 auto; }
.blm-le-nav { margin-bottom: 16px; }
.blm-le-back-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-deep);
  text-decoration: none;
}
.blm-le-back-link:hover { text-decoration: underline; }
.blm-le-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.015em;
  color: #38443a;
  margin: 0 0 6px;
}
.blm-le-meta {
  margin-bottom: 28px;
}
.blm-le-meta-details {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.blm-le-edit-meta-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blm-le-meta-form { margin-bottom: 28px; }
.blm-le-meta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.blm-le-cancel-btn {
  padding: 13px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.blm-le-cancel-btn:hover { border-color: var(--blush-deep); }
.blm-le-archived-banner {
  background: var(--blush-soft);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.blm-le-share-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}
.blm-le-share-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin: 0 0 8px;
}
.blm-le-share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blm-le-share-url {
  font-size: 14px;
  color: var(--ink-soft);
  word-break: break-all;
  flex: 1;
}
.blm-le-copy-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--sage-deep);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.blm-le-copy-btn:hover { background: var(--sage-soft); border-color: var(--sage); }
.blm-le-share-note {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.55;
}
.blm-le-items-section { margin-bottom: 36px; }
.blm-le-items-list { display: flex; flex-direction: column; gap: 12px; }
.blm-le-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}
.blm-le-item--editing {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.blm-le-item-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 12px;
  background: var(--cream-warm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blm-le-item-body { flex: 1; }
.blm-le-item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.blm-le-item-title a {
  color: inherit;
  text-decoration: none;
}
.blm-le-item-title a:hover { text-decoration: underline; text-decoration-color: var(--blush); }
.blm-le-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 4px;
}
.blm-le-item-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 4px;
  line-height: 1.55;
}
.blm-le-item-qty {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted, var(--ink-dim));
}
.blm-le-item-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
}
.blm-le-item-sort { display: flex; gap: 4px; }
.blm-le-sort-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font-size: 15px;
  cursor: pointer;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.blm-le-sort-btn:hover:not(:disabled) { border-color: var(--sage); color: var(--sage-deep); }
.blm-le-sort-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.blm-le-edit-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blm-le-delete-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blm-le-delete-btn:hover { color: #9b3626; }
.blm-le-item-form { width: 100%; }
.blm-le-import { margin-bottom: 32px; }
.blm-le-url-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.blm-le-url-input { flex: 1; min-width: 200px; }
.blm-le-import-notice { margin-top: 0; }
.blm-le-preview-form {
  background: var(--surface);
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
}
.blm-le-preview-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 0 0 16px;
}
.blm-le-preview-thumb {
  width: 120px; height: 120px;
  border-radius: 12px;
  background: var(--cream-warm);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.blm-le-archive-section {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 8px;
}
.blm-le-archive-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.blm-le-archive-btn:hover:not(:disabled) { border-color: var(--blush-deep); color: var(--ink); }
.blm-le-archive-note {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 8px 0 0;
}

/* ── Gjesteside ─────────────────────────────────────────────────────────── */
.blm-gjest-outer { max-width: 740px; margin: 0 auto; }
.blm-gjest-header { margin-bottom: 24px; }
.blm-gjest-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 10px 0 0;
  white-space: pre-line;
}
.blm-gjest-items { display: flex; flex-direction: column; gap: 14px; }
.blm-gjest-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.blm-gjest-item--reserved {
  opacity: 0.6;
  background: var(--cream-warm);
}
.blm-gjest-thumb {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 12px;
  background: var(--cream-warm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blm-gjest-item-body { flex: 1; }
.blm-gjest-item-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.blm-gjest-price {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.blm-gjest-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 6px;
  line-height: 1.55;
}
.blm-gjest-qty {
  display: block;
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 600;
  margin-bottom: 10px;
}
.blm-gjest-item-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.blm-gjest-buy-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage);
  text-decoration: none;
}
.blm-gjest-buy-link:hover { color: var(--sage-deep); text-decoration: underline; }
.blm-gjest-reserve-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blm-gjest-reserve-btn:hover { background: var(--sage-deep); transform: translateY(-1px); }
.blm-gjest-reserved-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #e0e0e0;
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 700;
}
.blm-gjest-my-res { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.blm-gjest-my-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 700;
}
.blm-gjest-angre-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blm-gjest-angre-btn:hover { color: var(--ink); }
.blm-gjest-reserve-form {
  width: 100%;
  margin-top: 10px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

/* Responsive — ønskeliste-sider */
@media (max-width: 620px) {
  .blm-ms-card { padding: 24px 20px; }
  .blm-le-url-form { flex-direction: column; }
  .blm-le-url-input { min-width: 0; }
  .blm-gjest-item { flex-direction: column; gap: 12px; }
  .blm-gjest-thumb { width: 80px; height: 80px; }

  /* Ønske-kort: thumb+info øverst, handlinger på egen full-bredde-rad under.
     90 % av trafikken er mobil — touch-mål ≥40px og ingenting utenfor kortet. */
  .blm-le-item { flex-wrap: wrap; padding: 14px; }
  .blm-le-item-body { flex: 1 1 0; min-width: 0; }
  .blm-le-item-title { overflow-wrap: anywhere; }
  .blm-le-item-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
  }
  .blm-le-item-sort { order: 2; margin-left: auto; }
  .blm-le-sort-btn { width: 40px; height: 40px; font-size: 16px; }
  .blm-le-edit-btn,
  .blm-le-delete-btn {
    min-height: 40px;
    padding: 8px 18px;
  }
  .blm-le-delete-confirm { flex-wrap: wrap; gap: 8px; }
  .blm-le-delete-confirm button { min-height: 40px; padding: 8px 14px; }

  /* Delelenke: URL på én linje med ellipsis + full-bredde kopiér-knapp */
  .blm-le-share-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .blm-le-share-url {
    word-break: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .blm-le-copy-btn { width: 100%; justify-content: center; text-align: center; min-height: 44px; }
}
.blm a.nav-mobile-cta { color: #fff !important; }

/* =========================================================================
   BLIMOR UX-LØFT 2026-07 — nye klasser
   ========================================================================= */

/* ── ListeEditor: Thumbnail fallback ───────────────────────────────────── */
.blm-le-item-thumb { position: relative; }
.blm-le-item-thumb--fallback {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 12px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
/* Override: items med bilde bruker 96px */
.blm-le-item-thumb { width: 96px; height: 96px; }

/* ── ListeEditor: inline slett-bekreftelse ──────────────────────────────── */
.blm-le-delete-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blm-le-delete-confirm span {
  font-size: 12px;
  color: var(--ink-soft);
}
.blm-le-delete-confirm-yes {
  font-size: 12px;
  font-weight: 700;
  color: #9b3626;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blm-le-delete-confirm-no {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── ListeEditor: empty-state ───────────────────────────────────────────── */
.blm-le-empty-state {
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-warm);
}
.blm-le-empty-state p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.blm-le-empty-state .blm-le-empty-arrow {
  font-size: 28px;
  display: block;
  margin-top: 8px;
  animation: blm-bounce 1.2s ease-in-out infinite;
}
@keyframes blm-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── ListeEditor: stor kopiér-knapp ──────────────────────────────────────── */
.blm-le-copy-btn--large {
  padding: 12px 24px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-pill);
  background: var(--sage-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--sage-deep);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.blm-le-copy-btn--large:hover { background: var(--sage); color: #fff; transform: translateY(-1px); }
.blm-le-copy-btn--large.copied {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage-deep);
}

/* ── ListeEditor: «Hent info på nytt»-knapp ─────────────────────────────── */
.blm-le-refetch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.blm-le-refetch-btn:hover:not(:disabled) {
  border-color: var(--sage);
  background: var(--sage-soft);
}
.blm-le-refetch-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Gjesteside: grid-layout ─────────────────────────────────────────────── */
.blm-gjest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .blm-gjest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blm-gjest-grid { grid-template-columns: 1fr; }
}

.blm-gjest-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blm-gjest-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.blm-gjest-card--reserved {
  opacity: 0.55;
  background: var(--cream-warm);
}
.blm-gjest-card--reserved:hover { transform: none; box-shadow: var(--shadow-soft); }

.blm-gjest-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-size: 48px; /* fallback emoji */
}
.blm-gjest-card-img img { width: 100%; height: 100%; object-fit: contain; }

.blm-gjest-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 6px;
}
.blm-gjest-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.blm-gjest-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage-deep);
  padding: 3px 10px;
  background: var(--sage-soft);
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.blm-gjest-card-note {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.blm-gjest-card-qty {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-dim);
}
.blm-gjest-card-footer {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blm-gjest-card-buy {
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
  text-decoration: none;
}
.blm-gjest-card-buy:hover { color: var(--sage-deep); text-decoration: underline; }

.blm-gjest-reserved-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: #e0e0e0;
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 700;
}
.blm-gjest-my-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 700;
}

/* ── Gjesteside: occasion-pill i header ──────────────────────────────────── */
.blm-gjest-occasion-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--blush-soft);
  border: 1px solid var(--blush);
  font-size: 13px;
  font-weight: 700;
  color: var(--blush-deep);
  margin-bottom: 10px;
}

/* ── Gjesteside: intro-box ───────────────────────────────────────────────── */
.blm-gjest-intro-box {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── MinSide: liste-kort med emoji + slett ───────────────────────────────── */
.blm-ms-list-occasion-emoji {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
}
.blm-ms-list-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  flex-wrap: nowrap;
}
.blm-ms-list-card-row:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-soft);
  transform: translateX(2px);
}
.blm-ms-list-delete-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease;
}
.blm-ms-list-delete-btn:hover { color: #9b3626; background: #fff0ed; }

.blm-ms-list-delete-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff0ed;
  border: 1px solid #f5c6bc;
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.blm-ms-list-delete-confirm span {
  font-size: 13px;
  color: #9b3626;
  flex: 1;
  min-width: 120px;
}
.blm-ms-list-delete-yes {
  font-size: 13px;
  font-weight: 700;
  color: #9b3626;
  background: none;
  border: 1px solid #f5c6bc;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.blm-ms-list-delete-yes:hover { background: #f5c6bc; }
.blm-ms-list-delete-no {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

/* ── MinSide: empty-state ────────────────────────────────────────────────── */
.blm-ms-empty-state {
  text-align: center;
  padding: 32px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-warm);
  margin-bottom: 24px;
}
.blm-ms-empty-state p { font-size: 16px; color: var(--ink-soft); margin: 0 0 6px; }
.blm-ms-empty-state .blm-ms-empty-arrow {
  font-size: 26px;
  display: block;
  margin-top: 6px;
  animation: blm-bounce 1.2s ease-in-out infinite;
}

/* ─── blimor nit-fixes ────────────────────────────────────────────────────── */
/* Listelenke uten understreking (erstatter inline style={{ textDecoration: "none" }}) */
.blm-ms-list-info--link { text-decoration: none; }

/* Gjestekort-bilde: samme effekt som .blm-gjest-card-img img, men via klasse */
.blm-gjest-card-img-photo { width: 100%; height: 100%; object-fit: contain; }

.blm-le-meta-desc {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  white-space: pre-line;
  max-width: 60ch;
}

/* =========================================================================
   COVER-BILDE — ønskelister (blimor.no)
   ========================================================================= */

/* ── ListeEditor: cover-seksjon ─────────────────────────────────────────── */
.blm-le-cover-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blm-le-cover-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-warm);
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blm-le-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blm-le-cover-fallback {
  font-size: 36px;
  line-height: 1;
}

.blm-le-cover-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

/* Skjult file-input — trigged av label */
.blm-le-cover-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Label fungerer som knapp for file-input */
.blm-le-cover-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-pill);
  background: var(--sage-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--sage-deep);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  /* Touch-mal >=44px */
  min-height: 44px;
}
.blm-le-cover-upload-btn:hover { background: var(--sage); color: #fff; }
.blm-le-cover-upload-btn[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; }

.blm-le-cover-remove-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  min-height: 36px;
  transition: color 0.2s ease;
}
.blm-le-cover-remove-btn:hover:not(:disabled) { color: #9b3626; }
.blm-le-cover-remove-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Gjesteside: cover-banner (bred, oerst) ─────────────────────────────── */
.blm-gjest-cover-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  background: var(--cream-warm);
}

/* Uskarpt fyll-lag bak — samme bilde, dekker hele flaten */
.blm-gjest-cover-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.05);
  transform: scale(1.15);
}

/* Forgrunnen vises ALLTID hel (contain) — aldri beskåret motiv */
.blm-gjest-cover-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Gjesteside: rundt cover-bilde ved tittel ────────────────────────────── */
.blm-gjest-cover-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.blm-gjest-cover-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Litt ekstra luft i headeren nar cover er til stede */
.blm-gjest-header--has-cover {
  padding-top: 4px;
}

/* ── MinSide: cover-thumbnail i liste-kort ──────────────────────────────── */
.blm-ms-list-cover-thumb {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

/* ── Responsivt (mobil-forst) ───────────────────────────────────────────── */
@media (max-width: 620px) {
  .blm-le-cover-wrap { gap: 12px; }
  .blm-le-cover-preview { width: 80px; height: 80px; }
  .blm-le-cover-upload-btn { width: 100%; justify-content: center; }

  .blm-gjest-cover-banner { height: 340px; }
  .blm-gjest-cover-circle { width: 64px; height: 64px; }
}

/* ── Forside: ønskeliste-promo ───────────────────────────────────────────── */
.blm-wl-promo {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(120deg, var(--surface), var(--cream-warm));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}
.blm-wl-promo-emoji {
  font-size: 56px;
  line-height: 1;
  flex-shrink: 0;
}
.blm-wl-promo-title {
  font-family: var(--font-display, inherit);
  font-size: 1.5rem;
  margin: 6px 0 10px;
}
.blm-wl-promo-text {
  margin: 0 0 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}
.blm-wl-promo-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.blm-wl-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  background: var(--sage-deep);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}
.blm-wl-promo-link {
  font-weight: 700;
  color: var(--sage-deep);
}
@media (max-width: 620px) {
  .blm-wl-promo { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 20px; }
  .blm-wl-promo-emoji { font-size: 40px; }
  .blm-wl-promo-btn { width: 100%; }
}

/* ── Hero: ønskeliste-flaggskip (demo-kort) ─────────────────────────────── */
.blm-hero-wl-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.blm-hero-wl-head strong { display: block; }
.blm-hero-wl-head .sub { font-size: 12.5px; color: var(--ink-soft); }
.blm-hero-wl-emoji { font-size: 32px; }
.blm-hero-wl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 8px;
  font-size: 14px;
}
.blm-hero-wl-item .thumb { font-size: 20px; }
.blm-hero-wl-item .name { flex: 1; font-weight: 600; }
.blm-hero-wl-item .state {
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.blm-hero-wl-item .state.taken { background: var(--cream-warm); color: var(--ink-soft); }
.blm-hero-wl-item .state.free { background: rgba(107, 142, 107, 0.14); color: var(--sage-deep); }
.blm-hero-wl-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* ── Fellesskap-promo på forsiden ── */
.blm .blm-fellesskap-kort {
  background: var(--cream, #FBF7F2);
  border: 1px solid var(--sand, #EAE1D7);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.blm .blm-fellesskap-emoji { font-size: 40px; margin: 0 0 8px; }
.blm .blm-fellesskap-kort h2 { margin: 0 0 12px; }
.blm .blm-fellesskap-kort p { margin: 0 auto 20px; max-width: 52ch; }
.blm .blm-fellesskap-ctaer { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.blm .blm-fellesskap-cta {
  display: inline-block;
  background: var(--blush, #C4907A);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  text-decoration: none;
}
.blm .blm-fellesskap-cta.sekundar {
  background: transparent;
  color: inherit;
  border: 1.5px solid var(--sand, #EAE1D7);
}
