/* =====================================================================
   Jord av Johanna — Shared Stylesheet
   Used by: index.html, produkt/*/index.html, butik/*
   ===================================================================== */

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

:root {
  --forest: #2c3e2d;
  --forest-dark: #1a2e1b;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --cream: #f5f0e8;
  --cream-dark: #ede5d5;
  --clay: #b8906a;
  --clay-light: #d4b49a;
  --charcoal: #1a1a1a;
  --charcoal-mid: #3a3a3a;
  --white: #ffffff;
  --text-muted: #888880;
  --nav-height: 72px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }

/* ── NAVBAR ───────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

nav.site-nav.solid,
nav.site-nav.scrolled,
nav.site-nav.static {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.5s;
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.5s;
  margin-top: 3px;
}

nav.site-nav.solid .nav-logo-main,
nav.site-nav.scrolled .nav-logo-main,
nav.site-nav.static .nav-logo-main { color: var(--forest-dark); }
nav.site-nav.solid .nav-logo-sub,
nav.site-nav.scrolled .nav-logo-sub,
nav.site-nav.static .nav-logo-sub { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

nav.site-nav.solid .nav-links a,
nav.site-nav.scrolled .nav-links a,
nav.site-nav.static .nav-links a { color: var(--charcoal-mid); }
.nav-links a:hover { color: var(--gold); }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

nav.site-nav.solid .nav-cart,
nav.site-nav.scrolled .nav-cart,
nav.site-nav.static .nav-cart { color: var(--charcoal-mid); }
.nav-cart:hover { color: var(--gold); }

.nav-cart-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: background 0.5s;
}

nav.site-nav.solid .nav-hamburger span,
nav.site-nav.scrolled .nav-hamburger span,
nav.site-nav.static .nav-hamburger span { background: var(--charcoal); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 54vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,46,27,0.7) 0%, rgba(26,46,27,0.1) 60%, rgba(26,46,27,0.3) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%),
    #2c3020;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0.85;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,46,27,0.78) 0%, rgba(26,46,27,0.25) 55%, rgba(26,46,27,0.45) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
    url('/assets/produkter/hero-brostkrukor.webp') center center/cover no-repeat;
}

.hero-content {
  position: relative;
  padding: 0 60px 100px;
  animation: heroFade 1.5s ease forwards;
  opacity: 0;
  max-width: 700px;
}

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

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 15px 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── MARQUEE ──────────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--forest-dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-inner span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 40px;
}

.marquee-inner span.dot {
  color: var(--gold);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION TYPOGRAPHY ───────────────────────────────────────────── */
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest-dark);
}

.section-title em { font-style: italic; }

/* ── PHILOSOPHY ───────────────────────────────────────────────────── */
.philosophy {
  padding: 96px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  background: var(--cream);
}

.philosophy-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
}

.philosophy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest-dark);
  margin-bottom: 36px;
}

.philosophy-title em { font-style: italic; }

.philosophy-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-mid);
  max-width: 640px;
  margin: 0 auto 20px;
}

.philosophy-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(44,62,45,0.12);
  justify-content: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--forest-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FEATURED SPLIT ───────────────────────────────────────────────── */
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.featured-image {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 6s ease;
}

.featured-image:hover img { transform: scale(1.04); }

.featured-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.featured-text {
  background: var(--forest-dark);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.featured-text .section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.featured-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}

.featured-text h2 em { font-style: italic; }

.featured-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin-bottom: 40px;
}

.featured-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.3s;
}

.featured-link:hover { border-color: var(--gold); }

/* ── SHOP / PRODUCTS GRID ─────────────────────────────────────────── */
.shop {
  padding: 96px 60px;
  background: var(--cream);
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.shop-filter {
  display: flex;
  gap: 4px;
}

.filter-btn {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--forest-dark);
  border-color: rgba(44,62,45,0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.product-card {
  cursor: pointer;
  background: var(--cream-dark);
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img img { transform: scale(1.06); }

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--clay-light) 100%);
  color: rgba(100,80,60,0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-add-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--forest-dark);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.product-card:hover .product-add-overlay { transform: translateY(0); }

.product-info {
  padding: 18px 20px 22px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.product-desc-short {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal-mid);
}

/* ── PROCESS ──────────────────────────────────────────────────────── */
.process {
  background: var(--cream-dark);
  padding: 96px 60px;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.process-step {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(44,62,45,0.08);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 14px;
}

.step-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-mid);
}

.step-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ── CERAMIC GALLERY ──────────────────────────────────────────────── */
.ceramic-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 400px;
  gap: 3px;
  background: var(--charcoal);
}

.cg-item {
  overflow: hidden;
  position: relative;
  background: var(--forest);
}

.cg-item:nth-child(1) { grid-row: span 2; }

.cg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.cg-item:hover img { transform: scale(1.05); }

.cg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(160deg, #2c3e2d 0%, #4a3728 100%);
}

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-text {
  padding: 120px 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 6s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-placeholder {
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream-dark) 0%, #b8906a33 100%);
  color: rgba(100,80,60,0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--forest-dark);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s;
}

.about-link:hover { color: var(--gold); }

/* ── CROSSLINK BANNER ─────────────────────────────────────────────── */
.crosslink {
  background: var(--forest-dark);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.crosslink-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.crosslink-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.crosslink-title em { font-style: italic; }

.crosslink-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin: 12px auto 0;
  max-width: 480px;
  line-height: 1.7;
}

.crosslink-cta {
  flex-shrink: 0;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.crosslink-cta:hover { background: var(--gold-light); }

/* ── NEWSLETTER ───────────────────────────────────────────────────── */
.newsletter {
  background: var(--cream-dark);
  padding: 100px 60px;
  text-align: center;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.newsletter-title em { font-style: italic; }

.newsletter-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  border: 1px solid rgba(44,62,45,0.2);
  border-right: none;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-btn:hover { background: var(--gold-light); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--charcoal);
  padding: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.footer-brand-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 24px;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
  max-width: 260px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.footer-hotel-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-hotel-link:hover { color: var(--gold); }

.footer-hotel-link::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
}

/* ── ANIMATIONS ───────────────────────────────────────────────────── */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
}
/* fade-in animation borttagen – innehåll alltid synligt */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── MOBILE MENU ──────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 26px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

/* ── BREADCRUMBS (product/category pages) ─────────────────────────── */
.breadcrumbs {
  background: var(--cream);
  padding: 24px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-top: var(--nav-height);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: var(--gold); }

/* ── PRODUCT DETAIL PAGE ──────────────────────────────────────────── */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream);
  max-width: 1200px;
  margin: 0 auto;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--cream-dark);
}

.product-gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--clay) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-detail {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--forest-dark);
  margin-bottom: 6px;
}

.product-title em { font-style: italic; }

.product-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.product-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 30px;
}

.product-price-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--forest-dark);
  margin-bottom: 24px;
}

.product-stock {
  font-size: 12px;
  color: var(--forest);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.product-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--charcoal-mid);
  margin-bottom: 20px;
}

.product-cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.3s;
  align-self: flex-start;
  margin-top: 12px;
}

.product-cta:hover { background: var(--gold-light); }

.product-specs {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.product-specs h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.product-specs dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px 24px;
  font-size: 14px;
}

.product-specs dt {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  align-self: center;
}

.product-specs dd { color: var(--charcoal-mid); }

/* ── RELATED PRODUCTS ─────────────────────────────────────────────── */
.related {
  padding: 100px 60px;
  background: var(--cream-dark);
}

.related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--forest-dark);
  text-align: center;
  margin-bottom: 60px;
}

.related h2 em { font-style: italic; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-card {
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.related-card:hover { transform: translateY(-4px); }

.related-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--clay) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.related-info { padding: 20px; }

.related-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--forest-dark);
}

.related-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav.site-nav { padding: 0 30px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .philosophy { grid-template-columns: 1fr; gap: 32px; padding: 80px 30px; }
  .featured-split { grid-template-columns: 1fr; }
  .featured-text { padding: 60px 40px; }
  .shop { padding: 80px 30px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process { padding: 80px 30px; }
  .ceramic-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cg-item:nth-child(1) { grid-row: auto; }
  .cg-item:nth-child(4) { grid-column: auto; }
  .about { grid-template-columns: 1fr; }
  .about-text { padding: 80px 40px; }
  .crosslink { flex-direction: column; text-align: center; padding: 60px 30px; }
  .crosslink-body { margin: 12px auto 0; }
  .newsletter { padding: 80px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
  footer.site-footer { padding: 40px 30px; }
  .hero-content { padding: 0 30px 80px; }
  .product { grid-template-columns: 1fr; }
  .product-detail { padding: 60px 30px; }
  .breadcrumbs { padding: 18px 24px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related { padding: 60px 24px; }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .philosophy-stats { flex-direction: column; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(44,62,45,0.2); border-bottom: none; }
  .product-title { font-size: 36px; }
  .product-price-large { font-size: 32px; }
  .related-grid { grid-template-columns: 1fr; }

  /* Centrering i mobilvy */
  .footer-top { text-align: center; }
  .footer-brand-desc { margin-left: auto; margin-right: auto; }

  .about-text { align-items: center; text-align: center; }
  .featured-text { align-items: center; text-align: center; }

  .shop-header { align-items: center; text-align: center; }
  .shop-filter { justify-content: center; }
  .shop-intro { text-align: center; margin-left: auto; margin-right: auto; }

  .process-step { text-align: center; }
  .process-step .step-line { margin-left: auto; margin-right: auto; }
}
/* ── BRAND STRIP (cross-domain navigation) ───────────────────────── */
:root { --brand-height: 0px; }

.brand-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--brand-height);
  background: #0f1a10;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.brand-strip a {
  position: relative;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-strip a:hover { color: #c9a96e; }

.brand-strip a.active {
  color: #ffffff;
}

.brand-strip a.active::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #c9a96e;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Skjut ner nav under brand strip */
nav.site-nav,
nav#navbar {
  top: var(--brand-height);
}

/* Skjut ner breadcrumbs på produktsidor (JAJ) */
.breadcrumbs {
  margin-top: calc(var(--nav-height) + var(--brand-height));
}

@media (max-width: 1024px) {
  .brand-strip {
    padding: 0 20px;
    gap: 16px;
    justify-content: center;
  }
  .brand-strip a {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 480px) {
  .brand-strip {
    display: none;
  }
  nav.site-nav,
  nav#navbar { top: 0; }
  .breadcrumbs { margin-top: var(--nav-height); }
}

/* =====================================================================
   Content / info pages (om-johanna, hantverket, frakt-och-retur, kontakt)
   Added 2026-06-18
   ===================================================================== */
.page-hero {
  margin-top: var(--nav-height);
  padding: 90px 24px 60px;
  text-align: center;
  background: var(--cream);
}
.page-hero .section-eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0;
}
.page-hero h1 em { font-style: italic; color: var(--forest); }
.page-hero .page-lede {
  max-width: 560px;
  margin: 22px auto 0;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-mid);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}
.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--charcoal);
  margin: 48px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h2 em { font-style: italic; color: var(--forest); }
.page-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--charcoal-mid);
  margin: 0 0 18px;
}
.page-content a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.page-content ul { margin: 0 0 18px; padding-left: 22px; }
.page-content li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}
.page-content dl {
  margin: 0 0 24px;
  border-top: 1px solid var(--cream-dark);
}
.page-content dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.page-content dt { font-weight: 400; color: var(--charcoal); font-size: 15px; }
.page-content dd { margin: 0; font-weight: 300; color: var(--charcoal-mid); font-size: 15px; text-align: right; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 30px 0 10px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 26px 24px;
}
.contact-card .cc-label {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--forest);
  margin: 0 0 10px;
}
.contact-card a, .contact-card p { font-size: 16px; color: var(--charcoal); margin: 0; text-decoration: none; }

@media (max-width: 640px) {
  .page-content { padding: 50px 20px 70px; }
  .page-content dd { font-size: 14px; }
}

/* =====================================================================
   Produktbilder + Slutsåld-märkning (Sommarkollektion 2026)
   Added 2026-06-18
   ===================================================================== */
.product-img { position: relative; overflow: hidden; }
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }

.product-sold-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--charcoal); color: var(--cream);
  font-family: 'Jost', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 10px; padding: 6px 12px; border-radius: 2px;
}
.product-card.is-sold { cursor: default; }
.product-card.is-sold .product-img img { filter: saturate(0.85) brightness(0.97); }
.product-card.is-sold .product-status {
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--text-muted); margin: 4px 0 0;
}
.featured-image img { width: 100%; height: auto; max-width: 100%; object-fit: contain; display: block; }

.about-image img { width:100%; height:auto; max-width:100%; object-fit:contain; display:block; }

/* Säljtext i butik-sektionen (SEO) 2026-06-18 */
.shop-intro {
  max-width: 760px;
  margin: -10px 0 48px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal-mid);
}
.shop-intro strong { font-weight: 500; color: var(--charcoal); }
.shop-intro a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px){ .shop-intro { font-size: 15px; margin-bottom: 32px; } }

/* Instagram-sektion 2026-06-18 */
.insta { padding: 90px 60px; text-align: center; background: var(--cream); }
.insta-head { max-width: 600px; margin: 0 auto 36px; }
.insta-sub { font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--charcoal-mid); margin-top: 10px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; max-width: 1100px; margin: 0 auto 36px; }
.insta-item { display: block; aspect-ratio: 1 / 1; overflow: hidden; position: relative; background: var(--forest); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.insta-item:hover img { transform: scale(1.06); }
.insta-btn { display: inline-block; }
@media (max-width: 900px) { .insta { padding: 70px 24px; } .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }


/* Kontaktformulär 2026-06-18 */
.contact-form { max-width: 620px; margin: 28px 0 8px; display: flex; flex-direction: column; }
/* === Justeringar 2026-06-23 (navbar, centrering, kontaktformulär) === */
/* Navbar samma storlek som Johannas Guest House */
:root { --nav-height: 80px; }
.nav-logo-main { font-size: 22px; }

/* Centrera CTA-länkar i mobilvy */
@media (max-width: 640px) {
  .about-text .about-link,
  .featured-text .featured-link { align-self: center; }
}

/* Kontaktformulär — stil likt Johannas Guest House */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--charcoal-mid);
}
.contact-form input,
.contact-form textarea {
  width: 100%; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--charcoal); background: var(--cream);
  border: 1px solid rgba(44,62,45,0.2); padding: 12px 14px; outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .contact-submit { align-self: flex-start; margin-top: 4px; }
@media (max-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form .contact-submit { align-self: center; }
}

/* === Mobilcentrering 2026-06-23c === */
@media (max-width: 640px) {
  /* CTA-länkar (startsidan) — garanterat centrerade */
  .about-link, .featured-link { align-self: center !important; }
  /* Infosidor (kontakt, frakt-och-retur, hantverket, om-johanna) — centrerad text */
  .page-content { text-align: center; }
  .page-content ul { list-style: none; padding-left: 0; }
  .page-content dl > div { justify-content: center; gap: 10px; }
  .page-content dt, .page-content dd { text-align: center; }
}

/* Köp-kort (till salu) – additivt, app-genererat 2026-06-23 */
.product-card--sale .product-img { display: block; }
.product-card--sale .product-name a { color: inherit; text-decoration: none; }
.product-card--sale .product-name a:hover { color: var(--gold); }
.product-card--sale .product-price { margin-bottom: 14px; }
.product-buy {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 11px 22px;
  text-decoration: none;
  transition: background 0.3s;
}
.product-buy:hover { background: var(--gold-light); }

/* Upphämtning-notis på produktsida (app v2) */
.pickup-note {
  margin-top: 18px;
  padding: 13px 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(201,169,110,0.10);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--charcoal-mid);
}

/* Hero LCP-fix 2026-06-23: riktig <img fetchpriority=high> istället för CSS-bakgrund */
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,46,27,0.78) 0%, rgba(26,46,27,0.25) 55%, rgba(26,46,27,0.45) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

/* ── 2026-07-02: Instagram-sektion — cream-dark (samma som hantverk/process) ── */
.insta { background: var(--cream-dark); }

/* ── 2026-07-02: Produktsida — färgbrytning + gallerimontering ── */
nav.site-nav.static { border-bottom: 1px solid rgba(44,62,45,0.10); }
.product { background: var(--white); }
.product-detail { background: var(--white); }
.product-backbar { padding: 18px 60px 0; background: var(--white); }
.product-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--charcoal-mid); transition: color .2s ease;
}
.product-back:hover { color: var(--gold); }
.product-back .pb-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border: 1px solid currentColor; border-radius: 50%;
  font-size: 13px; line-height: 1;
}
.product-gallery {
  display: flex; flex-direction: column; gap: 14px;
  padding: 24px; background: var(--cream-dark);
}
.pg-stage { position: relative; cursor: zoom-in; }
.pg-stage picture, .pg-stage img { display: block; width: 100%; }
.pg-stage img { aspect-ratio: 4/5; object-fit: cover; background: var(--cream); }
.pg-stage::after {
  content: '\2922'; position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: rgba(26,26,26,0.45); color: #f5f0e8; border-radius: 50%;
  font-size: 17px; opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.pg-stage:hover::after { opacity: 1; }
.pg-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.pg-thumb {
  width: 74px; height: 74px; padding: 0; border: 2px solid transparent; border-radius: 4px;
  overflow: hidden; cursor: pointer; background: var(--cream); opacity: 0.65;
  transition: opacity .2s ease, border-color .2s ease;
}
.pg-thumb img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.pg-thumb:hover { opacity: 1; }
.pg-thumb.is-active { opacity: 1; border-color: var(--gold); }
@media (max-width: 900px) {
  .product-backbar { padding: 14px 24px 0; }
  .product-gallery { padding: 14px; }
  .pg-thumb { width: 60px; height: 60px; }
}
                                                                                                                                         
/* ── 2026-07-02: Produktgalleri — pilar direkt på huvudbilden ── */
.pg-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border: none; border-radius: 50%;
  background: rgba(26,26,26,0.42); color: #f5f0e8;
  font-family: inherit; font-size: 30px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease; z-index: 2;
}
.pg-nav:hover { background: rgba(26,26,26,0.7); }
.pg-prev { left: 12px; }
.pg-next { right: 12px; }
@media (max-width: 900px) { .pg-nav { width: 40px; height: 40px; font-size: 26px; } }

/* ── 2026-07-02: galleri-justering — dölj pilar, centrera miniatyrer, tillbaka till höger ── */
.pg-nav { display: none; }
.pg-thumbs { justify-content: center; }
.product-backbar { text-align: right; }

/* ── 2026-07-02: specs vänster-alignade (ingen indent på värdena) ── */
.product-specs dl > div { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.product-specs dt, .product-specs dd { margin: 0; padding: 0; text-indent: 0; text-align: left; }

/* ── 2026-07-02: produktsida — backbar rensar navbaren (brödsmulor borttagna) ── */
.product-backbar { margin-top: var(--nav-height); }

/* ── 2026-07-02: infosidor — cream-dark rubrikband ger färgbrytning mot navbaren ── */
.page-hero { background: var(--cream-dark); }

/* ── 2026-07-02: dölj brödsmulor på produktsidor (tas bort ur page.js vid nästa regenerering) ── */
body:has(.product) .breadcrumbs { display: none; }

/* ── 2026-07-02: tillbaka-länk ur flödet (ingen tom ram ovanför galleriet) ── */
.product { position: relative; margin-top: var(--nav-height); }
.product-backbar { position: absolute; top: 20px; right: 60px; margin: 0; padding: 0; background: transparent; z-index: 5; }
@media (max-width: 900px) { .product-backbar { top: 14px; right: 24px; } }

/* ── 2026-07-02: specs — labels vänster (override align-self:center) så label linjerar med värde ── */
.product-specs dt { align-self: flex-start; }

/* ── 2026-07-02: mobil-hero — innehåll under navbaren (eyebrow låg bakom navbaren) ── */
@media (max-width: 640px) {
  .hero { align-items: flex-start; min-height: auto; }
  .hero-content { padding-top: calc(var(--nav-height) + 28px); padding-bottom: 70px; }
}
/* Footer: 3 kolumner jämte varandra (brand-block borttaget) 2026-07-03 */
.footer-top { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .footer-top { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .footer-top { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

/* Produktsida: huvudbild fyller kolumnhöjden + top-justerad detalj (desktop) — 2026-07-06 */
@media (min-width: 1025px) {
  .product-detail { justify-content: flex-start; }
  .pg-stage { height: 100%; }
  .pg-stage picture { height: 100%; display: block; }
  .pg-stage img { height: 100%; aspect-ratio: auto; object-position: center; }
}
