:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --ink: #1c2733;
  --muted: #7a8794;
  --brand: #1f6feb;
  --brand-dark: #1857b8;
  --ok: #1a7f4b;
  --fejl: #c0392b;
  --border: #e3e8ee;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a { color: var(--brand); }

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.fejl { color: var(--fejl); }

/* ---------- Login ---------- */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}
.login-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 340px;
  text-align: center;
}
.login-card h1 { margin: 0 0 0.25rem; }
.login-card input {
  width: 100%;
  padding: 0.7rem;
  margin: 1rem 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}
.login-card button {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.login-card button:hover { background: var(--brand-dark); }

/* ---------- Topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.topbar h1 { margin: 0; font-size: 1.3rem; }
.topbar .logo { height: 44px; width: auto; display: block; }
.btn-link {
  text-decoration: none;
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* ---------- Produkt-grid (frontend) ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spar-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e0392b;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-img {
  color: var(--muted);
  font-size: 0.9rem;
}
.card-navn {
  margin: 0;
  padding: 0.75rem 1rem 0;
  font-size: 1.05rem;
}
.card-info {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  display: grid;
  gap: 0.35rem;
}
.card-info > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.card-info dt {
  color: var(--muted);
  font-size: 0.9rem;
}
.card-info dd {
  margin: 0;
  font-weight: 600;
}
.card-info .pris { color: var(--brand); font-size: 1.15rem; }
.card-info .vejl { color: var(--muted); text-decoration: line-through; }
.card-info .spar { color: #e0392b; }

/* ---------- Admin ---------- */
.admin {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
}
.panel h2 { margin-top: 0; }
.url-form { display: flex; flex-direction: column; gap: 0.5rem; }
.url-form label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; color: var(--muted); }
.url-form input { padding: 0.55rem; border: 1px solid var(--border); border-radius: 8px; font-size: 0.95rem; }
.url-form button { padding: 0.6rem; border: none; border-radius: 8px; background: var(--ok); color: #fff; font-size: 1rem; cursor: pointer; }
.url-form button:hover { filter: brightness(0.93); }
.url-form button:disabled { opacity: 0.6; cursor: default; }
.skille { border: none; border-top: 1px solid var(--border); margin: 1rem 0 0.6rem; }
#form { display: flex; flex-direction: column; gap: 0.75rem; }
#form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
#form input {
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--ink);
}
#form button {
  margin-top: 0.5rem;
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
#form button:hover { background: var(--brand-dark); }
.status { margin: 0.5rem 0 0; font-weight: 600; }
.status.ok { color: var(--ok); }
.status.fejl { color: var(--fejl); }

.admin-liste { display: flex; flex-direction: column; gap: 0.6rem; }
.rad {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}
.rad-img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rad-img img { width: 100%; height: 100%; object-fit: cover; }
.rad-tekst { display: flex; flex-direction: column; flex: 1; gap: 0.15rem; }
.rad-tekst span { color: var(--muted); font-size: 0.85rem; }
.slet {
  border: 1px solid var(--fejl);
  color: var(--fejl);
  background: transparent;
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}
.slet:hover { background: var(--fejl); color: #fff; }

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

/* ===================== Salgstavle (board) ===================== */
:root {
  --navy: #16253f;
  --navy-2: #1d3454;
  --green: #5aa829;
  --green-2: #6cb33f;
  --red: #e23b2d;
}

body.board {
  background: #e9edf2;
}

.topbar-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.topbar-mini .logo { height: 40px; width: auto; display: block; }

/* Hero-bånd */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-text h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.hero-text p {
  margin: 0.35rem 0 0;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #c7d3e6;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}
.hero-badge .warn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 3px solid #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.hero-badge strong { display: block; font-size: 1.05rem; font-weight: 800; }
.hero-badge span { font-size: 0.85rem; opacity: 0.95; }

/* Produkt-grid */
.board-main {
  padding: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
}
.bcard {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.9rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.bcard-title {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bcard-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3f5f8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard-img img { width: 100%; height: 100%; object-fit: contain; }

/* Grøn mærkat (tag) */
.pill {
  align-self: center;
  margin: 0.8rem auto 0.2rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
}

/* Stor pris: "PRIS  149 KR" */
.bcard-price {
  margin-top: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  color: var(--navy);
}
.bcard-price .lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7785;
  align-self: center;
}
.bcard-price .amount { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.bcard-price .kr { font-size: 1rem; font-weight: 800; }
.bcard-sub {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #6b7785;
}
.bcard-sub s { color: #aab2bd; }

/* Rød SPAR-badge på billedet */
.spar-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Bund-bånd */
.board-footer {
  background: var(--navy);
  color: #fff;
  margin-top: 1.5rem;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.features { display: flex; gap: 2rem; flex-wrap: wrap; }
.feature b { display: block; font-size: 0.95rem; }
.feature span { font-size: 0.8rem; color: #c7d3e6; }
.cta {
  background: var(--green-2);
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  letter-spacing: 0.5px;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .hero { flex-direction: column; align-items: flex-start; }
  .board-footer { flex-direction: column; align-items: flex-start; }
}

/* ---------- Admin: bulk + rediger ---------- */
.bulk-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.bulk-bar .spacer { flex: 1; }
.bulk-bar label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; }
.bulk-bar .sletalle { background: var(--fejl); color: #fff; border-color: var(--fejl); }
.bulk-bar .sletalle:hover { background: #a93226; }

.rad .drag {
  flex: 0 0 auto;
  cursor: grab;
  color: #9aa4b1;
  width: 22px;
  height: 22px;
  display: block;
}
.rad .drag:hover { color: var(--brand); }
.rad .drag:active { cursor: grabbing; }
.rad.dragging { opacity: 0.55; background: #eef3fb; }
.rad .vaelg { flex: 0 0 auto; width: 18px; height: 18px; }
.rad-body { flex: 1; min-width: 0; }
.rad-knapper { display: flex; gap: 0.4rem; flex: 0 0 auto; }
.rad-knapper button {
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
}
.rad-knapper .rediger:hover { background: #f0f2f5; }
.rad-knapper .gem { border-color: var(--ok); color: var(--ok); }
.rad-knapper .gem:hover { background: var(--ok); color: #fff; }
.rad-knapper .slet { border-color: var(--fejl); color: var(--fejl); }
.rad-knapper .slet:hover { background: var(--fejl); color: #fff; }

.rad-form { flex-direction: column; gap: 0.4rem; }
.rad-form:not([hidden]) { display: flex; }
.rad-form input {
  padding: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
}
.rad-form .f-billede-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* ============================================================
   Lagersalg-landingsside (body.ls)
   ============================================================ */
:root {
  --ls-green: #3f9d2f;
  --ls-green-d: #338026;
  --ls-navy: #16253f;
  --ls-red: #e23b2d;
  --ls-ink: #1c2733;
  --ls-bg: #ffffff;
}
body.ls { background: var(--ls-bg); color: var(--ls-ink); }
body.ls h1, body.ls h2, body.ls h3 { color: var(--ls-navy); }

.btn-green {
  display: inline-block;
  background: var(--ls-green);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  white-space: nowrap;
}
.btn-green:hover { background: var(--ls-green-d); }
.btn-green.big { font-size: 1.05rem; padding: 0.9rem 1.6rem; }
.btn-outline {
  display: inline-block;
  background: #fff;
  color: var(--ls-navy) !important;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.3rem;
  border: 2px solid #cfd7e2;
  border-radius: 8px;
}
.btn-outline:hover { border-color: var(--ls-navy); }

/* Nav */
.ls-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid #eef1f5;
  flex-wrap: wrap;
}
.ls-logo img { height: 42px; width: auto; display: block; }
.ls-logo { font-weight: 800; color: var(--ls-navy); text-decoration: none; }
.ls-menu { display: flex; gap: 1.4rem; margin-left: 1rem; flex: 1; }
.ls-menu a { color: var(--ls-navy); text-decoration: none; font-weight: 600; }
.ls-menu a:hover { color: var(--ls-green); }
.ls-nav-right { display: flex; align-items: center; gap: 1rem; }
.ls-logout { color: #8a97a5; text-decoration: none; font-size: 0.9rem; }

/* Hero */
.ls-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}
.ls-hero-tag {
  display: inline-block;
  background: var(--ls-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
}
.ls-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  margin: 1rem 0 0.5rem;
}
.ls-hero-sub { color: var(--ls-red); font-weight: 800; letter-spacing: 0.5px; margin: 0 0 0.8rem; }
.ls-hero-body { color: #51606f; line-height: 1.5; margin: 0 0 1.3rem; max-width: 34rem; }
.ls-hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.ls-hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  padding: 0;
  margin: 1.4rem 0 0;
  color: var(--ls-green-d);
  font-weight: 600;
  font-size: 0.9rem;
}
.ls-hero-points li::before { content: "✓ "; font-weight: 900; }
.ls-hero-media {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, #dfe9f2, #eef4ea);
  overflow: hidden;
  min-height: 280px; /* fallback hvis teksten er meget kort */
}
.ls-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ls-hero-round {
  position: absolute;
  top: 14px; right: 14px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--ls-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ls-hero-round small { display: block; font-size: 0.62rem; margin-top: 0.3rem; opacity: 0.95; }

/* Feature-bånd */
.ls-band {
  background: var(--ls-navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.1rem 2rem;
}
.ls-band-item b { display: block; font-size: 0.92rem; }
.ls-band-item span { font-size: 0.8rem; color: #b9c6da; }

/* Produkter */
.ls-main { max-width: 1200px; margin: 0 auto; padding: 2.2rem 2rem; }
.ls-main-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ls-main-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 1rem; }
.ls-note { color: var(--ls-red); font-weight: 700; font-size: 0.9rem; }
.ls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 0.6rem;
}
.ls-card {
  border: 1px solid #e7ebf0;
  border-radius: 10px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.ls-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f3f5f8;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ls-card-img img { width: 100%; height: 100%; object-fit: cover; }
.ls-stk {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--ls-red); color: #fff;
  font-weight: 800; font-size: 0.72rem;
  padding: 0.22rem 0.55rem; border-radius: 5px;
}
.ls-card-navn { font-size: 1rem; margin: 0.7rem 0 0.3rem; }
.ls-vejl { color: #8a97a5; font-size: 0.82rem; }
.ls-lager-lbl { color: #51606f; font-size: 0.8rem; margin-top: 0.35rem; font-weight: 600; }
.ls-lager { color: var(--ls-green-d); font-size: 1.8rem; font-weight: 900; line-height: 1; }
.ls-spar {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--ls-red); color: #fff;
  font-weight: 800; font-size: 0.78rem;
  padding: 0.22rem 0.55rem; border-radius: 5px;
}
.ls-insp-line { font-size: 0.8rem; color: #51606f; margin-top: 0.5rem; }
.ls-antal {
  margin-top: 0.6rem;
  color: var(--ls-red);
  font-weight: 800;
  font-size: 0.95rem;
}
.ls-actions { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.8rem; }
.ls-bestil-label {
  text-align: center;
  color: var(--ls-navy);
  font-weight: 700;
  font-size: 0.9rem;
}
.ls-icons { display: flex; gap: 0.45rem; }
.ls-icon {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem;
  background: #fff;
  text-decoration: none;
  border: 2px solid var(--ls-navy);
  color: var(--ls-navy) !important;
  border-radius: 7px;
}
.ls-icon svg { width: 20px; height: 20px; }
.ls-icon.mail { border-color: var(--ls-green); color: var(--ls-green) !important; }
.ls-icon.mail:hover { background: var(--ls-green); color: #fff !important; }
.ls-icon.ring:hover { background: var(--ls-navy); color: #fff !important; }

/* Inspiration */
.ls-inspiration { max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem 2.5rem; }
.ls-inspiration h2 { text-align: center; font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
.ls-insp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.3rem; }
.ls-insp-card { display: flex; gap: 1rem; }
.ls-insp-img { width: 110px; height: 80px; border-radius: 8px; flex: 0 0 110px; background-size: cover; }
.ls-insp-img.i1 { background: linear-gradient(135deg,#cfe0c6,#a9cf99); }
.ls-insp-img.i2 { background: linear-gradient(135deg,#cfdcea,#9fb9d6); }
.ls-insp-img.i3 { background: linear-gradient(135deg,#e7ddc6,#cdba8f); }
.ls-insp-card b { color: var(--ls-navy); }
.ls-insp-card p { margin: 0.3rem 0 0; font-size: 0.85rem; color: #51606f; }

/* Steps */
.ls-steps { background: #f5f7fa; padding: 2rem; }
.ls-steps h2 { text-align: center; font-size: clamp(1.2rem,2.5vw,1.7rem); }
.ls-steps-list {
  list-style: none; padding: 0; margin: 1.4rem auto 0; max-width: 1100px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.ls-steps-list li { text-align: center; }
.ls-steps-list span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ls-navy); color: #fff; font-weight: 800; margin-bottom: 0.5rem;
}
.ls-steps-list b { display: block; color: var(--ls-navy); font-size: 0.92rem; }
.ls-steps-list p { font-size: 0.8rem; color: #51606f; margin: 0.25rem 0 0; }

/* Punkt-bånd */
.ls-points {
  background: var(--ls-navy); color: #fff;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding: 1.3rem 2rem;
}
.ls-point b { display: block; font-size: 0.9rem; }
.ls-point span { font-size: 0.78rem; color: #b9c6da; }

/* Kontakt-CTA */
.ls-contact {
  position: relative;
  background: var(--ls-navy); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 1.6rem 2rem; border-top: 4px solid var(--ls-green);
}
.ls-contact h2 { color: #fff; margin: 0; font-size: clamp(1.2rem,2.5vw,1.7rem); }
.ls-contact p { margin: 0.3rem 0 0; color: #b9c6da; }
.ls-contact-actions { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.ls-contact-info { font-size: 0.85rem; color: #b9c6da; }
.ls-handl {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--ls-red); color: #fff; font-weight: 900; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  flex: 0 0 auto;
}

/* Footer */
.ls-footer {
  background: #0f1b2e; color: #c7d3e6;
  display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem;
  padding: 2rem; font-size: 0.85rem;
}
.ls-foot-logo {
  height: 38px; width: auto; max-width: 200px;
  align-self: flex-start;
  filter: brightness(0) invert(1); opacity: 0.9;
}
.ls-foot-col { display: flex; flex-direction: column; gap: 0.3rem; }
.ls-foot-col b { color: #fff; margin-bottom: 0.3rem; }
.ls-foot-col a { color: #c7d3e6; text-decoration: none; }
.ls-foot-col a:hover { color: #fff; }

@media (max-width: 900px) {
  .ls-hero { grid-template-columns: 1fr; }
  .ls-band, .ls-points { grid-template-columns: repeat(2, 1fr); }
  .ls-steps-list { grid-template-columns: repeat(2, 1fr); }
  .ls-insp-grid { grid-template-columns: 1fr; }
  .ls-footer { grid-template-columns: 1fr 1fr; }
  .ls-menu { display: none; }
}

/* Svævende urgency-badge */
.ls-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.88rem;
  background: var(--ls-red);
  color: #fff;
  text-decoration: none;
  padding: 0.94rem 1.38rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  animation: ls-float-bob 2.4s ease-in-out infinite;
}
.ls-float:hover { filter: brightness(1.06); }
.ls-float-tekst { display: flex; flex-direction: column; line-height: 1.15; }
.ls-float-tekst b { font-weight: 800; font-size: 1.15rem; }
.ls-float-tekst small { font-size: 0.92rem; opacity: 0.95; }
.ls-float-dot {
  flex: 0 0 auto;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  animation: ls-float-blink 1.2s ease-in-out infinite;
}
@keyframes ls-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes ls-float-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
@media (max-width: 600px) {
  .ls-float { bottom: 12px; right: 12px; padding: 0.75rem 1.1rem; }
  .ls-float-tekst b { font-size: 1.02rem; }
  .ls-float-tekst small { font-size: 0.85rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ls-float, .ls-float-dot { animation: none; }
}
