/* ============================================================
   HjertingFun – Stylesheet
   Farveskema baseret på logo: navy, cyan (#00d4ff), pink (#e91e8c), guld (#ffd700)
   ============================================================ */

:root {
  --navy:        #080d38;
  --navy-card:   #0d1450;
  --navy-mid:    #101860;
  --cyan:        #00d4ff;
  --cyan-dark:   #009ec0;
  --pink:        #e91e8c;
  --pink-dark:   #b01068;
  --gold:        #ffd700;
  --white:       #ffffff;
  --muted:       #7a84c0;
  --border:      rgba(0, 212, 255, 0.14);

  --glow-cyan:   0 0 18px rgba(0, 212, 255, 0.55), 0 0 40px rgba(0, 212, 255, 0.2);
  --glow-pink:   0 0 18px rgba(233, 30, 140, 0.55), 0 0 40px rgba(233, 30, 140, 0.2);
  --glow-gold:   0 0 14px rgba(255, 215, 0, 0.6);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.cyan  { color: var(--cyan);  text-shadow: var(--glow-cyan); }
.pink  { color: var(--pink);  text-shadow: var(--glow-pink); }
.gold  { color: var(--gold);  text-shadow: var(--glow-gold); }

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(8, 13, 56, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
button.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 201;
  padding: 6px;
  background-color: transparent !important;
  background-image: none;
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
button.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}

/* Background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: drift linear infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,.35), transparent 70%);
  top: -150px; left: -150px;
  animation-duration: 22s;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(233,30,140,.32), transparent 70%);
  top: 10%; right: -100px;
  animation-duration: 28s;
  animation-direction: reverse;
}
.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,215,0,.22), transparent 70%);
  bottom: 15%; left: 25%;
  animation-duration: 19s;
}
.orb-4 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(233,30,140,.25), transparent 70%);
  bottom: -60px; right: 15%;
  animation-duration: 24s;
  animation-direction: reverse;
}

@keyframes drift {
  0%   { transform: translate(0, 0)   scale(1);    }
  25%  { transform: translate(25px, -25px) scale(1.04); }
  50%  { transform: translate(-18px,  18px) scale(0.96); }
  75%  { transform: translate(18px,  25px) scale(1.02); }
  100% { transform: translate(0, 0)   scale(1);    }
}

/* Starfield */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at  8% 15%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px   1px   at 22% 45%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(2px   2px   at 35%  8%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 55% 70%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 68% 22%, rgba(255,255,255,.65) 0%, transparent 100%),
    radial-gradient(1px   1px   at 78% 55%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(2px   2px   at 90% 10%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1px   1px   at 12% 80%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 46% 92%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 85% 75%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px   1px   at 30% 30%, rgba(0,212,255,.4) 0%, transparent 100%),
    radial-gradient(1px   1px   at 72% 40%, rgba(233,30,140,.35) 0%, transparent 100%);
}

/* Floating confetti shapes */
.confetti-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.confetti-shape {
  position: absolute;
  border-radius: 3px;
  opacity: 0;
  animation: confetti-fall linear infinite;
}
.confetti-shape:nth-child(1)  { width:10px; height:10px; background:var(--cyan);  left:10%; animation-duration:8s;  animation-delay:0s;   transform:rotate(20deg); }
.confetti-shape:nth-child(2)  { width: 8px; height: 8px; background:var(--pink);  left:25%; animation-duration:10s; animation-delay:1.5s; border-radius:50%; }
.confetti-shape:nth-child(3)  { width:12px; height: 6px; background:var(--gold);  left:42%; animation-duration:7s;  animation-delay:3s;   }
.confetti-shape:nth-child(4)  { width: 7px; height: 7px; background:var(--cyan);  left:58%; animation-duration:11s; animation-delay:0.8s; border-radius:50%; }
.confetti-shape:nth-child(5)  { width:10px; height: 5px; background:var(--pink);  left:74%; animation-duration:9s;  animation-delay:2.2s; transform:rotate(-15deg); }
.confetti-shape:nth-child(6)  { width: 6px; height: 6px; background:var(--gold);  left:88%; animation-duration:8s;  animation-delay:4s;   border-radius:50%; }
.confetti-shape:nth-child(7)  { width: 9px; height: 9px; background:var(--cyan);  left:18%; animation-duration:12s; animation-delay:5s;   transform:rotate(45deg); }
.confetti-shape:nth-child(8)  { width: 8px; height: 4px; background:var(--pink);  left:63%; animation-duration:9s;  animation-delay:6.5s; }
.confetti-shape:nth-child(9)  { width:11px; height:11px; background:var(--gold);  left:82%; animation-duration:7s;  animation-delay:1s;   border-radius:50%; }
.confetti-shape:nth-child(10) { width: 7px; height: 7px; background:var(--cyan);  left:35%; animation-duration:10s; animation-delay:3.5s; transform:rotate(30deg); }

@keyframes confetti-fall {
  0%   { opacity: 0;   top: -5%;  transform: translateX(0) rotate(0deg);    }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.6; }
  100% { opacity: 0;   top: 105%; transform: translateX(60px) rotate(360deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.75rem;
  animation: bob 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0,212,255,.45)) drop-shadow(0 0 60px rgba(233,30,140,.25));
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.3);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 1.07;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  font-weight: 600;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll caret */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: caret-bounce 2s ease-in-out infinite;
}
.scroll-down span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 3px solid rgba(0,212,255,.6);
  border-bottom: 3px solid rgba(0,212,255,.6);
  transform: rotate(45deg);
  margin-top: -10px;
}
@keyframes caret-bounce {
  0%, 100% { translate: -50% 0; }
  50%       { translate: -50% 8px; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 22px rgba(0,212,255,.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,212,255,.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233,30,140,.25);
}

/* ── Section scaffolding ─────────────────────────────────── */
section { padding: 6rem 0; }

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 580px;
  line-height: 1.65;
}

/* ── Products section ────────────────────────────────────── */
#produkter {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-card) 100%);
  padding: 6rem 0 7rem;
}

.filter-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 2rem;
}

.filter-btn {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.1);
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: rgba(0,212,255,.4);
  color: var(--cyan);
}
.filter-btn.active {
  background: rgba(0,212,255,.12);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 14px rgba(0,212,255,.2);
}
.filter-btn[data-filter="hoppeborg"].active {
  background: rgba(233,30,140,.12);
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 14px rgba(233,30,140,.2);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.3s ease;
}
.product-card.hiding { opacity: 0; transform: scale(0.93); }
.product-card.hidden { display: none; }

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,255,.35);
  box-shadow: 0 22px 60px rgba(0,0,0,.4), 0 0 28px rgba(0,212,255,.12);
}

.product-img-wrap {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: var(--navy-mid);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

/* Badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
}
.badge-hoppeborg {
  background: rgba(233,30,140,.92);
  color: #fff;
  box-shadow: 0 0 12px rgba(233,30,140,.55);
}
.badge-maskine {
  background: rgba(0,212,255,.92);
  color: var(--navy);
  box-shadow: 0 0 12px rgba(0,212,255,.55);
}

/* Card body */
.product-body { padding: 1.4rem; }

.product-name {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.35rem;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.product-dims {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
}

.product-book-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, rgba(233,30,140,.18), rgba(0,212,255,.18));
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.product-book-btn:hover {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(0,0,0,.3);
  transform: translateY(-1px);
}

.product-flavors-btn {
  display: block;
  width: 100%;
  margin-bottom: 0.6rem;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}
.product-flavors-btn:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}
.product-flavors-btn i { margin-right: 0.4rem; }

.products-terms-note {
  margin-top: 0.9rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.products-terms-note i {
  color: var(--cyan);
  margin-right: 0.35rem;
}
.products-terms-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  transition: color 0.2s ease;
}
.products-terms-note a:hover { color: var(--pink); }

/* ── Om os ───────────────────────────────────────────────── */
#om-os {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* Image mosaic */
.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.about-mosaic::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,212,255,.18), rgba(233,30,140,.18));
  z-index: -1;
  filter: blur(22px);
}
.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mosaic-img.span-col {
  grid-column: span 2;
}

/* About features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition: border-color 0.25s;
}
.feature-row:hover { border-color: rgba(0,212,255,.3); }

.feature-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }

.feature-text strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
  margin-bottom: 0.18rem;
}
.feature-text span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Lejebetingelser ─────────────────────────────────────── */
#lejebetingelser {
  background: var(--navy);
}

.terms-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.term-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.term-item[open] {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.08);
}

.term-item summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.25s ease;
}
.term-item summary::-webkit-details-marker { display: none; }

.term-item summary:hover {
  background: rgba(0, 212, 255, 0.04);
}

.term-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--cyan);
  transition: transform 0.25s ease;
}
.term-item[open] summary::after {
  transform: rotate(180deg);
}

.term-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.28rem 0.7rem;
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.35);
  color: var(--pink);
  font-family: 'Paytone One', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  flex-shrink: 0;
}

.term-body {
  padding: 0.25rem 1.3rem 1.3rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.7;
}
.term-body p { margin-bottom: 0.7rem; }
.term-body p:last-child { margin-bottom: 0; }
.term-body strong { color: var(--cyan); font-weight: 800; }
.term-body ul {
  list-style: none;
  margin: 0.3rem 0 0.8rem 0;
  padding-left: 0;
}
.term-body ul li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
}
.term-body ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--cyan);
  font-size: 0.75rem;
}

/* ── Booking modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4, 7, 28, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 22px;
  padding: 2.25rem 2rem 1.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 212, 255, 0.1);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}
.modal-close:hover {
  background: rgba(233, 30, 140, 0.2);
  border-color: var(--pink);
  color: var(--pink);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(233, 30, 140, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: var(--cyan);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.2);
}

.modal-header h3 {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.modal-header p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

.modal-highlights {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.modal-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
.modal-highlights li i {
  color: var(--cyan);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.modal-highlights li strong {
  color: var(--white);
  font-weight: 800;
}

.modal-read-full {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.modal-read-full:hover { color: var(--pink); }
.modal-read-full i { font-size: 0.8rem; }

.modal-accept {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-accept:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.09);
}
.modal-accept input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(0, 212, 255, 0.5);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
  transition: all 0.2s ease;
}
.modal-accept input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}
.modal-accept input[type="checkbox"]:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.8rem;
}
.modal-accept span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.modal-actions .btn-ghost,
.modal-actions .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}
.modal-proceed.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* Flavors list inside modal */
.flavors-box { max-width: 480px; }
.flavors-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.flavor-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.flavor-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4), inset 0 0 6px rgba(0, 0, 0, 0.2);
}
.flavor-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}
@media (max-width: 520px) {
  .flavors-list { grid-template-columns: 1fr; }
}

/* Lock body scroll when modal open */
body.modal-open { overflow: hidden; }

/* ── Image lightbox ──────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(4, 7, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s ease;
  cursor: default;
}
.lightbox.open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

/* ── Kontakt ─────────────────────────────────────────────── */
#kontakt {
  background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy) 100%);
}

.contact-box {
  position: relative;
  background: linear-gradient(135deg, rgba(0,212,255,.07), rgba(233,30,140,.07));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,212,255,.14), transparent 70%);
  pointer-events: none;
}
.contact-box::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(233,30,140,.14), transparent 70%);
  pointer-events: none;
}

.contact-title {
  font-family: 'Paytone One', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.contact-sub {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.15);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.28s ease;
}
.contact-link:hover { transform: translateY(-4px); }
.contact-link.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 12px 32px rgba(24,119,242,.4);
}
.contact-link.phone:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 12px 32px rgba(0,212,255,.2);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: rgba(0,0,0,.45);
  border-top: 1px solid var(--border);
  padding: 2.25rem 1.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-logo img {
  height: 42px;
  border-radius: 50%;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.footer-copy .heart { color: var(--pink); }

.footer-nap {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.55;
  font-weight: 600;
  text-align: center;
}
.footer-nap strong { color: var(--white); font-weight: 800; }
.footer-nap a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nap a:hover { color: var(--cyan); }

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-fb a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.25s;
}
.footer-fb a:hover { color: var(--cyan); }

/* ── Icon styling ────────────────────────────────────────── */
.hero-pill i        { font-size: 0.85rem; }
.btn-primary i      { font-size: 0.9rem; }
.btn-ghost i        { font-size: 0.9rem; }
.section-eyebrow i  { margin-right: 0.3rem; }
.filter-btn i       { margin-right: 0.35rem; font-size: 0.9rem; }
.feature-icon       { font-size: 1.4rem; color: var(--cyan); }
.feature-icon.icon-pink { color: var(--pink); }
.feature-icon.icon-gold { color: var(--gold); }
.contact-link i     { font-size: 1.1rem; }
.product-dims i     { font-size: 0.75rem; margin-right: 0.2rem; opacity: 0.8; }
.product-book-btn i { margin-right: 0.3rem; }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-mosaic { order: -1; }
}

@media (max-width: 680px) {
  nav { padding: 0.85rem 1.25rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.35rem; }

  .hamburger { display: flex; }

  .hero-logo { width: 120px; height: 120px; }

  section { padding: 4.5rem 0; }

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

  .contact-box { padding: 3.5rem 1.5rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { align-items: center; }

  .about-mosaic {
    grid-template-rows: 160px 160px;
  }

  .term-item summary {
    font-size: 0.92rem;
    padding: 0.95rem 1rem;
    gap: 0.7rem;
  }
  .term-num {
    min-width: 44px;
    font-size: 0.75rem;
    padding: 0.22rem 0.55rem;
  }
  .term-body {
    padding: 0.2rem 1rem 1.1rem;
    font-size: 0.88rem;
  }

  .modal-box {
    padding: 2rem 1.3rem 1.3rem;
    border-radius: 18px;
  }
  .modal-header h3 { font-size: 1.4rem; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .btn-ghost,
  .modal-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
