/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Natt & norrsken */
  --night:      #07120d;
  --night-2:    #0c2018;
  --aurora-a:   #5ef0a8;
  --aurora-b:   #4ad7c2;
  --dawn:       #f0c9a0;
  --dawn-glow:  #f9ddb8;
  --starlight:  #f1ede2;

  /* Dag & terräng */
  --bg:         #f6f3ec;
  --surface:    #fffdf9;
  --surface-2:  #ece6d8;
  --border:     #ddd5c4;
  --ink:        #1f2d24;
  --pine:       #2f5d46;
  --pine-deep:  #1e3f30;
  --moss:       #6b8f71;
  --clay:       #c4622d;
  --clay-dim:   #a64f21;
  --text-muted: #5d6b60;

  --radius:     30px;
  --transition: 260ms cubic-bezier(0.3, 0.8, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Filmkorn över allt — magisk textur */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--pine); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Magiska accentord — Fraunces italic med norrskensskimmer */
.magic,
.magic-dark {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(100deg, var(--aurora-a) 0%, var(--aurora-b) 35%, var(--dawn-glow) 70%, var(--aurora-a) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}

.magic-dark {
  background-image: linear-gradient(100deg, var(--pine) 0%, var(--clay) 45%, var(--moss) 75%, var(--pine) 100%);
  background-size: 250% 100%;
  animation-duration: 9s;
}

@keyframes shimmer {
  to { background-position: -250% 0; }
}

/* === Header — flytande glaspill === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 14px;
}

.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1120px;
  background: rgba(7, 18, 13, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(94, 240, 168, 0.16);
  border-radius: 100px;
  padding: 0 10px 0 22px;
  box-shadow: 0 10px 36px rgba(7, 18, 13, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--starlight);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--pine) 0%, var(--aurora-b) 130%);
  color: var(--starlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(94, 240, 168, 0.35);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  color: var(--aurora-a);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-link {
  font-size: 14px;
  color: rgba(241, 237, 226, 0.7);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--starlight);
  background: rgba(94, 240, 168, 0.12);
  text-decoration: none;
}

/* === Hero — en natt som andas === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: max(660px, 100svh);
  margin-top: -74px; /* dra upp bakom flytande headern */
  display: flex;
  align-items: center;
  background: linear-gradient(180deg,
    var(--night) 0%,
    var(--night-2) 32%,
    #14483b 58%,
    #2f7a5e 72%,
    #d99a6b 88%,
    var(--dawn) 100%);
  color: var(--starlight);
}

.sky {
  position: absolute;
  inset: -28px;
  pointer-events: none;
  transform: translate(var(--par-x, 0px), var(--par-y, 0px));
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* Stjärnor — två lager som tindrar i otakt */
.stars {
  position: absolute;
  inset: 0;
}

.stars::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    4vw   60px 0 0 rgba(255,255,255,0.9),
    11vw 130px 0 0 rgba(255,255,255,0.6),
    18vw  80px 0 0 rgba(255,255,255,0.8),
    24vw 170px 0 0 rgba(255,255,255,0.5),
    31vw  50px 0 0 rgba(255,255,255,0.9),
    38vw 140px 0 0 rgba(255,255,255,0.6),
    46vw  90px 0 0 rgba(255,255,255,0.85),
    53vw 190px 0 0 rgba(255,255,255,0.5),
    61vw  65px 0 0 rgba(255,255,255,0.9),
    68vw 150px 0 0 rgba(255,255,255,0.55),
    74vw 105px 0 0 rgba(255,255,255,0.8),
    81vw  45px 0 0 rgba(255,255,255,0.7),
    88vw 165px 0 0 rgba(255,255,255,0.6),
    94vw  85px 0 0 rgba(255,255,255,0.85);
  animation: twinkle 4.5s ease-in-out infinite;
}

.stars-b::before {
  width: 1px;
  height: 1px;
  box-shadow:
    7vw  110px 0 0 rgba(255,255,255,0.7),
    14vw 200px 0 0 rgba(255,255,255,0.45),
    21vw 240px 0 0 rgba(255,255,255,0.5),
    28vw 115px 0 0 rgba(255,255,255,0.65),
    35vw 220px 0 0 rgba(255,255,255,0.4),
    43vw 260px 0 0 rgba(255,255,255,0.5),
    50vw 125px 0 0 rgba(255,255,255,0.7),
    57vw 235px 0 0 rgba(255,255,255,0.4),
    64vw 205px 0 0 rgba(255,255,255,0.55),
    72vw 255px 0 0 rgba(255,255,255,0.4),
    78vw 180px 0 0 rgba(255,255,255,0.6),
    85vw 225px 0 0 rgba(255,255,255,0.45),
    91vw 130px 0 0 rgba(255,255,255,0.7),
    97vw 195px 0 0 rgba(255,255,255,0.5);
  animation: twinkle 6s ease-in-out 1.8s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Norrsken — blurrade gradientband som driver över himlen */
.aurora {
  position: absolute;
  filter: blur(55px);
  mix-blend-mode: screen;
  border-radius: 50%;
  will-change: transform;
}

.aurora-1 {
  width: 65vw;
  height: 45%;
  top: -4%;
  left: 0;
  background: linear-gradient(105deg, rgba(94,240,168,0.6) 10%, rgba(74,215,194,0.28) 55%, transparent 80%);
  animation: drift-1 16s ease-in-out infinite alternate;
}

.aurora-2 {
  width: 55vw;
  height: 40%;
  top: 8%;
  right: -8vw;
  background: linear-gradient(255deg, rgba(74,215,194,0.5) 10%, rgba(94,240,168,0.2) 60%, transparent 85%);
  animation: drift-2 21s ease-in-out infinite alternate;
}

.aurora-3 {
  width: 40vw;
  height: 30%;
  top: 30%;
  left: 28vw;
  background: radial-gradient(ellipse at center, rgba(249,221,184,0.32) 0%, rgba(94,240,168,0.18) 45%, transparent 75%);
  animation: drift-3 13s ease-in-out infinite alternate;
}

@keyframes drift-1 {
  from { transform: translateX(-6vw) rotate(-4deg) scaleY(1); }
  to   { transform: translateX(7vw)  rotate(3deg)  scaleY(1.25); }
}
@keyframes drift-2 {
  from { transform: translateX(5vw)  rotate(5deg)  scaleY(1.15); }
  to   { transform: translateX(-6vw) rotate(-3deg) scaleY(0.9); }
}
@keyframes drift-3 {
  from { transform: translateY(-12px) scale(1); opacity: 0.7; }
  to   { transform: translateY(16px)  scale(1.18); opacity: 1; }
}

/* Midnattssolen — glödande disk vid horisonten */
.moon {
  position: absolute;
  bottom: 310px;
  left: 71%;
  width: clamp(70px, 9vw, 130px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fff8ea 0%, var(--dawn-glow) 55%, var(--dawn) 100%);
  box-shadow:
    0 0 50px 18px rgba(249, 221, 184, 0.55),
    0 0 140px 70px rgba(249, 221, 184, 0.22),
    0 0 280px 140px rgba(196, 98, 45, 0.12);
  animation: moon-breathe 9s ease-in-out infinite alternate;
}

@keyframes moon-breathe {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-10px) scale(1.04); }
}

/* Eldflugor — drivande ljuspunkter */
.fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.fireflies span {
  position: absolute;
  bottom: 18%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dawn-glow);
  box-shadow: 0 0 10px 3px rgba(249, 221, 184, 0.65);
  opacity: 0;
  animation: firefly 12s ease-in-out infinite;
}

.fireflies span:nth-child(1) { left: 8%;  animation-duration: 13s; animation-delay: -2s; }
.fireflies span:nth-child(2) { left: 19%; animation-duration: 17s; animation-delay: -9s;
  background: var(--aurora-a); box-shadow: 0 0 10px 3px rgba(94, 240, 168, 0.6); }
.fireflies span:nth-child(3) { left: 31%; animation-duration: 11s; animation-delay: -5s; width: 3px; height: 3px; }
.fireflies span:nth-child(4) { left: 42%; animation-duration: 19s; animation-delay: -13s;
  background: var(--aurora-b); box-shadow: 0 0 10px 3px rgba(74, 215, 194, 0.6); }
.fireflies span:nth-child(5) { left: 55%; animation-duration: 14s; animation-delay: -1s; }
.fireflies span:nth-child(6) { left: 64%; animation-duration: 16s; animation-delay: -11s; width: 3px; height: 3px;
  background: var(--aurora-a); box-shadow: 0 0 10px 3px rgba(94, 240, 168, 0.6); }
.fireflies span:nth-child(7) { left: 76%; animation-duration: 12s; animation-delay: -7s; }
.fireflies span:nth-child(8) { left: 86%; animation-duration: 18s; animation-delay: -4s;
  background: var(--aurora-b); box-shadow: 0 0 10px 3px rgba(74, 215, 194, 0.6); }
.fireflies span:nth-child(9) { left: 94%; animation-duration: 15s; animation-delay: -10s; width: 3px; height: 3px; }

@keyframes firefly {
  0%   { transform: translate3d(0, 0, 0) scale(0.8); opacity: 0; }
  8%   { opacity: 0.9; }
  45%  { transform: translate3d(2.5vw, -26vh, 0) scale(1.1); opacity: 0.5; }
  55%  { opacity: 0.85; }
  92%  { opacity: 0.7; }
  100% { transform: translate3d(-1.5vw, -52vh, 0) scale(0.7); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 300px;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aurora-a);
  text-shadow: 0 0 18px rgba(94, 240, 168, 0.55);
  margin-bottom: 22px;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s both;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 6.4vw, 4.9rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.hero-title .magic {
  font-size: 1.18em;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding-right: 0.1em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-title .line > span {
  display: inline-block;
  animation: rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-title .line:nth-child(1) > span { animation-delay: 0.25s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.42s; }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(241, 237, 226, 0.82);
  max-width: 540px;
  animation: rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.6s both;
}

.hero-sub a {
  color: var(--dawn-glow);
  font-weight: 500;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-orb */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(7, 18, 13, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 221, 184, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cue-bob 2.6s ease-in-out infinite;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.scroll-cue:hover {
  border-color: var(--dawn-glow);
  box-shadow: 0 0 22px rgba(249, 221, 184, 0.45);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dawn-glow);
  border-bottom: 2px solid var(--dawn-glow);
  transform: rotate(45deg) translate(-1px, -1px);
}

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

/* Mjuka bergskammar + självlysande stig */
.hero-scenery {
  position: absolute;
  inset: auto 0 -2px 0;
  height: 230px;
  pointer-events: none;
  z-index: 2;
}

.hero-scenery svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ridge-far  { fill: #3f6e54; opacity: 0.65; }
.ridge-mid  { fill: #28503c; opacity: 0.85; }
.ridge-near { fill: #14271d; }

.trail {
  fill: none;
  stroke: var(--dawn-glow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
  filter: drop-shadow(0 0 6px rgba(249, 221, 184, 0.9));
  animation: trail-flow 2.6s linear infinite;
  opacity: 0.9;
}

@keyframes trail-flow {
  to { stroke-dashoffset: -30; }
}

.trail-summit {
  fill: var(--dawn-glow);
  filter: drop-shadow(0 0 8px rgba(249, 221, 184, 1));
  animation: summit-pulse 2.6s ease-in-out infinite;
  transform-origin: 1088px 106px;
}

@keyframes summit-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.7); }
}

/* === Ticker — viskande ord mellan natt och dag === */
.ticker {
  background: var(--night);
  overflow: hidden;
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.ticker-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(94, 240, 168, 0.7);
}

.ticker-track i {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: rgba(249, 221, 184, 0.75);
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* === Terräng — dagsdel med topografiska konturer === */
.terrain {
  background-color: var(--bg);
  background-image:
    repeating-radial-gradient(circle at 18% 28%, transparent 0 42px, rgba(47, 93, 70, 0.05) 42px 43px),
    repeating-radial-gradient(circle at 85% 75%, transparent 0 56px, rgba(47, 93, 70, 0.04) 56px 57px);
}

/* Intro */
.shop-intro {
  padding: 72px 0 8px;
  text-align: center;
}

.intro-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}

.shop-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.shop-intro .magic-dark {
  font-size: 1.12em;
  font-weight: 400;
}

/* === Filter — flytande glasdock === */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  width: fit-content;
  margin: 36px auto 30px;
  padding: 7px;
  background: rgba(255, 253, 249, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  box-shadow:
    0 12px 34px rgba(31, 45, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.filter-btn:hover {
  color: var(--ink);
  background: rgba(107, 143, 113, 0.14);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(47, 93, 70, 0.4), 0 0 14px rgba(94, 240, 168, 0.3);
}

/* === Product grid === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding-bottom: 60px;
}

.product-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 2px 6px rgba(31, 45, 36, 0.05),
    0 14px 34px rgba(31, 45, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 450ms cubic-bezier(0.3, 0.8, 0.3, 1), box-shadow 450ms ease;
}

.product-card:nth-child(odd)  { --tilt: -0.5deg; }
.product-card:nth-child(even) { --tilt: 0.55deg; }

.product-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow:
    0 6px 16px rgba(31, 45, 36, 0.08),
    0 26px 54px rgba(31, 45, 36, 0.14),
    0 0 30px rgba(94, 240, 168, 0.18);
}

.product-card.hidden {
  display: none;
}

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(26px) rotate(var(--tilt, 0deg));
  transition: opacity 550ms ease, transform 550ms cubic-bezier(0.3, 0.8, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--tilt, 0deg));
}

/* === Product image — mjuk inbäddad panel med morfande aura === */
.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image.placeholder {
  margin: 12px 12px 0;
  border-radius: 22px;
  background:
    repeating-radial-gradient(circle at 70% 20%, transparent 0 34px, rgba(47, 93, 70, 0.05) 34px 35px),
    linear-gradient(160deg, var(--surface-2) 0%, #e6dcc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kategorifärgade auror */
.product-card[data-category="topp"]        { --aura: rgba(107, 143, 113, 0.45); }
.product-card[data-category="byxa"]        { --aura: rgba(196, 98, 45, 0.3); }
.product-card[data-category="ytterplagg"]  { --aura: rgba(74, 215, 194, 0.38); }
.product-card[data-category="utrustning"]  { --aura: rgba(94, 240, 168, 0.4); }
.product-card[data-category="accessoar"]   { --aura: rgba(240, 201, 160, 0.6); }

.icon-aura {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 42% 38%, var(--aura, rgba(94,240,168,0.35)) 0%, transparent 72%);
  border-radius: 58% 42% 55% 45% / 52% 48% 60% 40%;
  animation: blob-morph 9s ease-in-out infinite alternate;
}

@keyframes blob-morph {
  from { border-radius: 58% 42% 55% 45% / 52% 48% 60% 40%; transform: rotate(0deg)  scale(1); }
  to   { border-radius: 45% 55% 48% 52% / 58% 42% 50% 50%; transform: rotate(10deg) scale(1.12); }
}

.placeholder-icon {
  position: relative;
  font-size: 54px;
  filter: drop-shadow(0 8px 16px rgba(31, 45, 36, 0.28));
  animation: icon-bob 5s ease-in-out infinite alternate;
  transition: transform var(--transition);
}

@keyframes icon-bob {
  from { transform: translateY(2px); }
  to   { transform: translateY(-5px); }
}

.product-card:hover .placeholder-icon {
  transform: scale(1.12);
}

.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(30, 63, 48, 0.78);
  border: 1px solid rgba(94, 240, 168, 0.4);
  color: var(--aurora-a);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* === Product info === */
.product-info {
  padding: 18px 22px 22px;
}

.product-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 600;
  color: var(--clay);
}

.btn-order {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-deep) 100%);
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(47, 93, 70, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(47, 93, 70, 0.4), 0 0 16px rgba(94, 240, 168, 0.3);
  text-decoration: none;
}

/* === Vågdelare in i natten === */
.section-wave {
  margin-top: 20px;
  line-height: 0;
}

.section-wave svg {
  width: 100%;
  height: clamp(48px, 7vw, 100px);
  display: block;
}

.section-wave path {
  fill: var(--night);
}

/* === Contact banner — tillbaka in i natten === */
.contact-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 70%, #11302a 100%);
  color: var(--starlight);
  text-align: center;
  padding: 84px 20px 96px;
}

.contact-banner .stars { z-index: 0; }

.aurora-banner {
  width: 70vw;
  height: 70%;
  top: -20%;
  left: 15vw;
  background: linear-gradient(110deg, rgba(94,240,168,0.35) 0%, rgba(74,215,194,0.2) 50%, transparent 80%);
  animation: drift-1 18s ease-in-out infinite alternate;
}

.contact-banner .container {
  position: relative;
  z-index: 1;
}

.contact-banner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.contact-banner .magic {
  font-size: 1.12em;
  font-weight: 400;
}

.contact-banner p {
  color: rgba(241, 237, 226, 0.7);
  font-weight: 300;
  max-width: 430px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--clay) 0%, #d98a4e 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 38px;
  border-radius: 100px;
  text-decoration: none;
  animation: btn-breathe 3.6s ease-in-out infinite;
  transition: transform var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  text-decoration: none;
}

@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 6px 22px rgba(196, 98, 45, 0.35), 0 0 0 0 rgba(249, 221, 184, 0.0); }
  50%      { box-shadow: 0 10px 34px rgba(196, 98, 45, 0.55), 0 0 26px 4px rgba(249, 221, 184, 0.25); }
}

/* === Footer === */
.site-footer {
  background: var(--night);
  padding: 26px 20px;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: rgba(241, 237, 226, 0.45);
}

.site-footer a {
  color: rgba(241, 237, 226, 0.55);
}
.site-footer a:hover { color: var(--aurora-a); }

/* === Responsive === */
@media (max-width: 600px) {
  .hero { min-height: max(560px, 100svh); }
  .hero-content { padding-top: 110px; padding-bottom: 210px; }
  .hero-scenery { height: 150px; }
  .moon { bottom: 195px; }
  .aurora { filter: blur(38px); }
  .scroll-cue { bottom: 22px; width: 40px; height: 40px; }

  .header-pill { padding-left: 14px; }
  .logo-text { font-size: 13px; }

  .shop-intro { padding-top: 52px; }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }

  .contact-banner { padding: 60px 20px 70px; }
}

/* === Rörelsekänslighet === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-sub, .hero-title .line > span { opacity: 1; transform: none; }
  .fireflies { display: none; }
  .sky { transform: none; }
}
