/* ============================================================
   I-TALO OY  –  style.css
   Warm, welcoming design inspired by the moving-truck illustration:
   sunny yellows, earthy reds, birch-white, and sky blue.

   Palette:
     --sun:       #F5C518  (sunny yellow – from the truck)
     --amber:     #E8920A  (deeper amber for buttons)
     --rust:      #B84030  (warm red accent – truck lettering)
     --blue:      #5B7F5E  (sky blue – trustworthy, Nordic)
     --birch:     #F2EDE4  (birch-white – warm off-white bg)
     --bark:      #4A3B2A  (dark warm brown – body text)
     --moss:      #5A7A3A  (leaf green – positive highlights)
     --cloud:     #FFFFFF
     --mist:      #E8E0D5  (warm light dividers)
     --alt:       #EDF2F7  (cool-light alternate sections)
============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #F2EDE4;
  color: #2E2A24;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background-color: #5B7F5E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 48px;
  border-bottom: 2px solid #F5C518;  /* sunny yellow gloss line */
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-link {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.88;
  transition: opacity 0.2s, transform 0.18s;
  line-height: 1;
  display: flex;
  align-items: center;
}

.topbar-link:hover {
  opacity: 1;
  transform: scale(1.22) rotate(-5deg);  /* tiny playful tilt */
}

/* ---------- LANGUAGE TOGGLE ---------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  border-radius: 20px;   /* pill shape – friendlier */
  padding: 4px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: #F5C518;
  border-color: #F5C518;
  color: #2E2A24;
}

.lang-divider {
  color: rgba(255,255,255,0.30);
  font-size: 0.85rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 3px solid #F5C518;   /* sunny yellow underline */
  box-shadow: 0 3px 14px rgba(60, 100, 65, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
}

/* Logo – a touch warmer and bolder */
.site-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #2E2A24;
}

.logo-i    { color: #5B7F5E; }
.logo-talo { color: #2E2A24; }
.logo-oy   { font-weight: 400; font-size: 0.88rem; color: #B84030; margin-left: 3px; }

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: #5B7F5E;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav — altid synlig som dropdown kolonne når .open,
   hamburger vises på alle skærme under 1024px inkl. iPad stående */
.main-nav {
  display: none;
  flex-direction: column;  /* eksplicit kolonne så det aldrig arver row */
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E8E0D5;
  border-bottom: 3px solid #F5C518;
  box-shadow: 0 8px 20px rgba(60, 100, 65, 0.13);
  padding: 8px 0;
  z-index: 99;
}

.main-nav.open {
  display: flex;
  flex-direction: column;  /* gentages eksplicit for at vinde over evt. arv */
}

.nav-link {
  padding: 13px 24px;
  font-size: 0.96rem;
  font-weight: 500;
  color: #2E2A24;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-link:hover {
  border-left-color: #B84030;
  color: #5B7F5E;
  background: #FDF8EE;
}

/* Desktop nav — kun over 1024px */
@media (min-width: 1024px) {
  .hamburger { display: none; }

  .main-nav {
    display: flex;
    flex-direction: row;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 2px;
    overflow: hidden;
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
  }

  .nav-link {
    padding: 8px 9px;
    font-size: 0.82rem;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 4px 4px 0 0;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-link:hover {
    border-left-color: transparent;
    border-bottom-color: #B84030;
    background: #FDF8EE;
    color: #5B7F5E;
  }
}

@media (min-width: 1200px) {
  .nav-link { padding: 8px 12px; font-size: 0.88rem; }
}

@media (min-width: 1400px) {
  .nav-link { padding: 8px 14px; font-size: 0.92rem; }
}

/* ---------- HERO ---------- */
/* Varm crème så Eriks solnedgang i italopyorea ikke drukner */
.hero {
  background-color: #FAF5EC;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  border-bottom: 3px solid #F5C518;
  gap: 40px;
  flex-wrap: wrap;
}

/* Illustrationen i hero skjules — solnedgangen vises i Varastotilat i stedet */
.hero-illustration {
  display: none;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: multiply;
}

@media (min-width: 900px) {
  .hero { text-align: left; }
  .hero-content { max-width: 580px; }
  .hero-buttons { justify-content: flex-start; }
}

@media (min-width: 1100px) {
  .hero-illustration { width: 360px; }
}

.hero-content {
  max-width: 620px;
  color: #2E2A24;   /* mørk tekst mod lys crème baggrund */
}

/* Sesonki: kort + illustration side om side */
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 860px;
  align-items: center;
}

@media (min-width: 1024px) {
  .sesonki-with-image {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .sesonki-with-image .sesonki-single-card { flex: 1; }
}

/* Stort firmanavn i hero */
.hero-brand {
  font-size: clamp(3.6rem, 12vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #F5C518;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.40), 0 4px 24px rgba(0,0,0,0.22);
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  color: #5B7F5E;   /* salviagrøn mod crème baggrund */
}

/* Hero outline-knap tilpasset lys baggrund */
.btn-hero-outline {
  background-color: transparent;
  color: #2E2A24;
  border: 2px solid rgba(46,42,36,0.45);
  border-radius: 30px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: background 0.2s, border-color 0.2s, transform 0.12s;
  display: inline-block;
  text-align: center;
}

.btn-hero-outline:hover {
  background-color: rgba(46,42,36,0.07);
  border-color: #2E2A24;
  transform: translateY(-2px);
}

/* Illustrationer generelt */
img.illustration {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
  width: 100%;
  mix-blend-mode: multiply;
}

/* Illustration centreret under tekst — pienvarastointi og toimitilat.
   Større på desktop end tidligere. */
.illustration-below {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.illustration-below img {
  max-height: 440px;
}

@media (min-width: 1024px) {
  .illustration-below { max-width: 700px; }
  .illustration-below img { max-height: 520px; }
}

/* Motorcykel-note over sesonki-kortet */
.sesonki-info-note {
  max-width: 860px;
  width: 100%;
  text-align: center;
  font-size: 0.92rem;
  color: #4A3B2A;
  font-style: italic;
  margin-bottom: 8px;
}

/* Sesonki: illustration frit over tekstkortet, ingen egen boks.
   På mobil: centreret over kortet.
   På desktop: illustration til højre, tekst til venstre — men uden at
   illustrationen sidder inde i selve kortet. */
.sesonki-with-image {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  align-items: center;
}

.sesonki-illustration-free {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.sesonki-illustration-free img {
  max-height: 360px;
  width: 100%;
  mix-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .sesonki-with-image {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .sesonki-illustration-free {
    flex: 1;
    max-width: none;
    margin: 0;
    order: 2;
  }
  .sesonki-illustration-free img { max-height: 480px; }
  .sesonki-with-image .sesonki-single-card {
    flex: 1;
    order: 1;
  }
}

.hinnasto-with-image {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  align-items: center;
}

.hinnasto-illustration-free {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hinnasto-illustration-free img {
  max-height: 360px;
  width: 100%;
  mix-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .hinnasto-with-image {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .hinnasto-with-image .price-main-card {
    flex: 1;
  }
  .hinnasto-illustration-free {
    flex: 1;
    max-width: none;
    margin: 0;
  }
  .hinnasto-illustration-free img { max-height: 480px; }
}

/* Varastotilat: solnedgangen må gerne være en anelse større */
.varastotilat-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.varastotilat-illustration img {
  max-height: 540px;
  width: 100%;
  mix-blend-mode: multiply;
}

/* Pris-illustration fjernes — håndteres nu af hinnasto-with-image */
.price-illustration { display: none; }

.hero-title {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.08rem;
  opacity: 0.88;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 30px;    /* rounded pill – warm and friendly */
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s, box-shadow 0.2s;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn:hover  { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background-color: #F5C518;
  color: #2E2A24;
  border-color: #F5C518;
}

.btn-primary:hover {
  background-color: #E8A800;
  border-color: #E8A800;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.80);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.18);
  border-color: #fff;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

/* ---------- INTRO STRIP ---------- */
.intro-strip {
  background-color: #5B7F5E;
  padding: 20px 24px;
  border-top: 2px solid #3A5C3D;
  border-bottom: 2px solid #F5C518;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}

.strip-item:hover {
  border-bottom-color: #F5C518;
  opacity: 1;
}

.strip-icon { font-size: 1.3rem; }

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
  padding: 76px 24px;
  background-color: #F2EDE4;
  border-top: 1px solid #DDD5C8;
}

.section-alt {
  background-color: #EDF2F7;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
}

@media (min-width: 1024px) {
  .section-inner:not(.single) {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }

  .section-inner.reverse { flex-direction: row-reverse; }

  .section-text,
  .section-image { flex: 1; }
}

/* Eyebrow: short rust rule + warm blue label */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5B7F5E;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2.5px;
  background-color: #B84030;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-text h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #2E2A24;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-text p {
  color: #4A3B2A;
  margin-bottom: 26px;
  line-height: 1.75;
}

.section-image img {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(60, 100, 65, 0.14);
  border: 2px solid #DDD5C8;
}

/* ---------- PRICING – MAIN CARD ---------- */
/* Kortet sidder nu i højre tekstkolonne ved siden af bananameteret,
   så det er altid lodret stablet uanset skærmbredde.               */
.price-main-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 2px solid #DDD5C8;
  border-top: 5px solid #5B7F5E;
  border-radius: 14px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(60, 100, 65, 0.10);
  margin-top: 20px;
}

.price-main-label {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9A8878;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-main-size {
  font-size: 0.9rem;
  color: #6A5A4A;
  margin-bottom: 16px;
}

.price-main-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #5B7F5E;
  line-height: 1;
  margin-bottom: 8px;
}

.price-main-amount span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #9A8878;
}

.price-main-note {
  font-size: 0.82rem;
  color: #9A8878;
  line-height: 1.5;
}

.price-includes-title {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6A5A4A;
  margin-bottom: 14px;
}

.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: #2E2A24;
  line-height: 1.5;
}

.price-includes li::before {
  content: '✓';
  color: #5A7A3A;    /* moss green – positive */
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- PRICING – INFO BOX ---------- */
.price-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FDF8EE;
  border: 2px solid #DDD5C8;
  border-left: 5px solid #F5C518;
  border-radius: 14px;
  padding: 20px 24px;
  width: 100%;
  margin-top: 4px;
}

.price-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.price-info-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: #5B7F5E;
  flex-shrink: 0;
  min-width: 58px;
}

.price-info-refund { color: #5A7A3A; }   /* mossy green for the good news */

.price-info-label {
  font-size: 0.93rem;
  color: #4A3B2A;
  line-height: 1.55;
  padding-top: 5px;
}

.price-info-divider {
  height: 1px;
  background: #DDD5C8;
}

.price-info-note {
  font-size: 0.82rem;
  color: #9A8878;
  line-height: 1.55;
  border-top: 1px solid #DDD5C8;
  padding-top: 14px;
  margin-top: 2px;
}

/* ---------- CONTACT CARDS ---------- */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid #DDD5C8;
  border-top: 4px solid #B84030;    /* warm rust top accent */
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  flex: 1 1 180px;
  max-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #2E2A24;
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(60, 100, 65, 0.15);
  transform: translateY(-4px);
}

.contact-icon { font-size: 1.9rem; }

.contact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #9A8878;
  font-weight: 700;
}

.contact-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: #5B7F5E;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrap {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
}

.contact-form-wrap h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2E2A24;
  padding-bottom: 10px;
  border-bottom: 2px solid #DDD5C8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #DDD5C8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: #2E2A24;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5B7F5E;
  box-shadow: 0 0 0 3px rgba(60, 100, 65, 0.12);
}

.contact-form .btn { align-self: flex-start; margin-top: 4px; }

.form-feedback {
  font-size: 0.9rem;
  color: #5B7F5E;
  min-height: 1.4em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: #1E2E1A;
  color: rgba(255,255,255,0.72);
  padding: 44px 24px;
  text-align: center;
  border-top: 4px solid #F5C518;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Footer logo – mere specifikke regler så de altid vinder over de globale logo-farver */
.site-footer .footer-logo { font-size: 1.5rem; font-weight: 900; color: #fff; }
.site-footer .footer-logo .logo-i    { color: #fff; }
.site-footer .footer-logo .logo-talo { color: #fff; }
.site-footer .footer-logo .logo-oy   { color: #fff; font-weight: 400; font-size: 0.88rem; }

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: #F5C518; }

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.40;
  margin-top: 8px;
}

.footer-credit {
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 4px;
}

.footer-credit a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.footer-credit a:hover {
  color: #F5C518;
  opacity: 1;
}

/* Deleknapper i footer */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.share-label {
  font-size: 0.78rem;
  opacity: 0.55;
  color: #fff;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.share-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.50);
}

.share-whatsapp:hover { background: rgba(37,211,102,0.25); border-color: #25D366; }
.share-email:hover    { background: rgba(245,197,24,0.20);  border-color: #F5C518; }

/* ---------- FLYDENDE KONTAKTKNAP ---------- */
/* Altid synlig i nederste venstre hjørne.
   Klik åbner et lille panel med kontaktformularen.
   Let at lukke: klik på ✕, tryk Escape, eller klik udenfor panelet. */

.float-contact {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  /* Skjult som standard — toner frem ved scroll ligesom tilbage-til-toppen */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.float-contact.visible {
  opacity: 1;
  pointer-events: auto;
}

.float-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #5B7F5E;
  color: #fff;
  border: 2px solid #7AA67D;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.15s;
}

.float-contact-btn:hover {
  background-color: #3A5C3D;
  transform: translateY(-2px);
}

.float-contact-icon { font-size: 1rem; }

/* Panelet er skjult som standard */
.float-contact-panel {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 2px solid #C8D8E8;
  border-radius: 14px;
  padding: 18px 20px;
  width: 300px;
  box-shadow: 0 8px 32px rgba(60, 100, 65, 0.20);
  order: -1; /* panelet vises over knappen */
}

@media (max-width: 360px) {
  .float-contact-panel { width: 260px; }
}

.float-contact-panel.open {
  display: flex;
}

.float-contact-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  color: #2E2A24;
  border-bottom: 1px solid #DDD5C8;
  padding-bottom: 10px;
  margin-bottom: 2px;
}

.float-contact-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #9A8878;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.float-contact-close:hover {
  color: #B84030;
  background: #FDF0EE;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #F5C518;
  color: #2E2A24;
  font-size: 1.3rem;
  line-height: 46px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  border: 2px solid #E8A800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background-color 0.2s, transform 0.15s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #E8A800;
  transform: translateY(-3px);
}

/* ---------- SCROLL FADE-IN ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .back-to-top { transition: none; }
}

/* ---------- OFFER CARDS (tarjouksia) ---------- */
.offer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.offer-card {
  background: #fff;
  border: 2px solid #DDD5C8;
  border-top: 5px solid #5B7F5E;
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.offer-card:hover {
  box-shadow: 0 8px 24px rgba(60, 100, 65, 0.13);
  transform: translateY(-4px);
}

/* Fremhævet midterkort */
.offer-card-featured {
  border-top-color: #E8920A;
}

.offer-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background-color: #5B7F5E;
  border-radius: 20px;
  padding: 3px 10px;
  align-self: flex-start;
}

.offer-card-featured .offer-card-badge {
  background-color: #E8920A;
}

.offer-card-icon {
  font-size: 1.8rem;
  margin-top: 4px;
}

.offer-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2E2A24;
}

.offer-card-deal {
  font-size: 1.15rem;
  font-weight: 900;
  color: #5B7F5E;
  line-height: 1.2;
}

.offer-card-featured .offer-card-deal {
  color: #E8920A;
}

.offer-card p:last-child {
  font-size: 0.88rem;
  color: #4A3B2A;
  line-height: 1.65;
}

/* Kombinationseksempel-boks */
.offer-example {
  max-width: 760px;
  width: 100%;
  background: #FDF8EE;
  border: 2px solid #DDD5C8;
  border-left: 5px solid #F5C518;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.91rem;
  color: #4A3B2A;
  line-height: 1.65;
}

.offer-example-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #2E2A24;
}

/* ---------- EXTRA INFO BOXES (hinnasto) ---------- */
/* Bruges til fleksibel prissætning og temperaturmuligheder */
.extra-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F2EDE4;
  border: 2px solid #DDD5C8;
  border-left: 5px solid #5B7F5E;
  border-radius: 12px;
  padding: 20px 22px;
  width: 100%;
  margin-top: 12px;
  font-size: 0.91rem;
  color: #4A3B2A;
  line-height: 1.65;
}

/* Varm variant til temperatur-boksen */
.extra-box-warm {
  background: #FDF8EE;
  border-left-color: #E8920A;
}

.extra-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #2E2A24;
  margin-bottom: 2px;
}

.extra-box-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- DISTANCE TABLE ---------- */
.distance-table {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.distance-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44,100,65,0.10);
  border: 2px solid #DDD5C8;
}

.distance-table thead tr {
  background-color: #5B7F5E;
  color: #fff;
}

.distance-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.distance-table tbody tr {
  border-bottom: 1px solid #EEE8E0;
  transition: background 0.15s;
}

.distance-table tbody tr:hover {
  background: #F7F3EC;
}

.distance-table td {
  padding: 11px 18px;
  color: #2E2A24;
}

.distance-table td:last-child {
  font-weight: 600;
  color: #5B7F5E;
  text-align: right;
}

.distance-divider td {
  padding: 0 !important;
  height: 2px;
  background: #DDD5C8;
}

.distance-fun td {
  color: #9A8878 !important;
  font-style: italic;
}

.distance-fun td:last-child {
  color: #9A8878 !important;
}

.distance-fun-note td {
  font-size: 0.80rem;
  color: #9A8878 !important;
  font-style: italic;
  text-align: center !important;
  padding: 8px 18px 14px !important;
  font-weight: 400 !important;
}
.sesonki-single-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border: 2px solid #DDD5C8;
  border-top: 5px solid #5B7F5E;
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(60, 100, 65, 0.10);
}

@media (min-width: 600px) {
  .sesonki-single-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .sesonki-single-price {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
    padding-top: 4px;
  }
}

.sesonki-single-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid #DDD5C8;
  padding-bottom: 16px;
}

@media (min-width: 600px) {
  .sesonki-single-price {
    border-bottom: none;
    border-right: 1px solid #DDD5C8;
    padding-bottom: 0;
    padding-right: 32px;
  }
}

.sesonki-single-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: #5B7F5E;
  line-height: 1;
}

.sesonki-single-period {
  font-size: 0.80rem;
  color: #9A8878;
  line-height: 1.4;
  text-align: center;
}

.sesonki-single-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.91rem;
  color: #4A3B2A;
  line-height: 1.65;
}

.sesonki-note {
  font-size: 0.82rem;
  color: #9A8878;
  line-height: 1.55;
  border-top: 1px solid #DDD5C8;
  padding-top: 12px;
  font-style: italic;
}

/* ---------- TRANSPORT CARDS ---------- */
.transport-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.transport-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 2px solid #DDD5C8;
  border-left: 5px solid #5B7F5E;
  border-radius: 12px;
  padding: 20px 22px;
}

.transport-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.transport-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.transport-title {
  font-weight: 700;
  font-size: 1rem;
  color: #2E2A24;
}

.transport-desc {
  font-size: 0.88rem;
  color: #4A3B2A;
  line-height: 1.6;
}

.transport-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #5B7F5E;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  transition: color 0.2s;
}

.transport-link:hover {
  color: #B84030;
}

/* Map caption below the map image link */
.map-caption {
  font-size: 0.80rem;
  color: #9A8878;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

/* Map fallback if static map image fails */
.map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #EEF3F8;
  border: 2px solid #C8D8E8;
  border-radius: 10px;
  height: 200px;
  font-size: 2rem;
  color: #5B7F5E;
  font-weight: 600;
}

/* ---------- DESTINATION CARDS ---------- */
.destination-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

.destination-card {
  background: #fff;
  border: 2px solid #DDD5C8;
  border-top: 4px solid #F5C518;
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.destination-card:hover {
  box-shadow: 0 8px 24px rgba(60, 100, 65, 0.13);
  transform: translateY(-4px);
}

.destination-card-icon {
  font-size: 2rem;
}

.destination-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2E2A24;
}

.destination-card p {
  font-size: 0.88rem;
  color: #4A3B2A;
  line-height: 1.65;
  margin-bottom: 0;
}

