/* ── RUNMORE · Delt stylesheet for alle sider ── */

:root {
  --bg: #f5f5f3;
  --card-bg: #eeede9;
  --white: #ffffff;
  --ink: #111111;
  --ink-mid: #444;
  --ink-soft: #888;
  --border: #ddddda;
  --accent: #0052cc;
  --green: #007a3d;
  --orange: #e85d04;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--ink); }

/* ── ARTICLE HERO ── */
.article-hero { background: var(--ink); color: #fff; padding: 72px 24px 60px; }
.article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(0,82,204,.4);
  border-radius: 2px; padding: 4px 10px; margin-bottom: 20px;
}
.article-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  line-height: 1.05; margin-bottom: 20px;
}
.article-hero .lead {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.75); max-width: 640px;
}
.article-meta {
  margin-top: 28px; font-size: 12px;
  color: rgba(255,255,255,.4); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── ARTICLE BODY ── */
.article-body { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 28px;
  font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase;
  margin: 52px 0 16px;
}
.article-body h3 { font-size: 18px; font-weight: 700; margin: 32px 0 10px; }
.article-body p { font-size: 17px; line-height: 1.75; color: #333; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 20px; }
.article-body li { font-size: 17px; line-height: 1.75; color: #333; margin-bottom: 8px; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none; margin-bottom: 40px;
}
.back-link:hover { color: var(--ink); }

/* ── INFO BOX ── */
.info-box {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--accent); border-radius: 4px;
  padding: 24px 28px; margin: 32px 0;
}
.info-box p { margin: 0; font-size: 16px; }

/* ── FEED GRID – same style as front page ── */
.feed-section { margin: 8px 0 32px; }
.feed-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; min-height: 60px;
}
@media(max-width: 700px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }

.feed-card {
  text-decoration: none; color: var(--ink); background: var(--white);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  transition: box-shadow .15s; display: block;
}
.feed-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.feed-img { aspect-ratio: 1; background: #ffffff; overflow: hidden; }
.feed-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; mix-blend-mode: multiply; }
.feed-body { padding: 12px 14px 14px; }
.feed-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px;
}
.feed-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 8px;
}
.feed-footer { display: flex; align-items: center; justify-content: space-between; }
.feed-price { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; }
.feed-stock { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.feed-stock.in { color: var(--green); }
.feed-stock.out { color: #bbb; }
.feed-loading { font-size: 14px; color: var(--ink-soft); padding: 20px 0; grid-column: 1/-1; }

/* ── GUIDE CTA ── */
.guide-cta {
  background: var(--accent); color: #fff; border-radius: 8px;
  padding: 36px 40px; margin: 48px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.guide-cta h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 8px;
}
.guide-cta p { font-size: 15px; color: rgba(255,255,255,.85); margin: 0; }
.guide-cta a {
  display: inline-block; background: #fff; color: var(--accent);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; padding: 14px 28px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,.5);
  text-align: center; padding: 40px 24px; font-size: 13px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 22px; color: #fff; margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
footer a { color: rgba(255,255,255,.5); text-decoration: none; }
footer a:hover { color: #fff; }
.footer-links {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 16px; flex-wrap: wrap;
}

/* ── SLIK-VELGER-DU: product-card-sm → feed-card stil ── */
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 32px;
}
@media(max-width: 700px) { .product-grid-3 { grid-template-columns: repeat(2, 1fr); } }

.product-card-sm {
  text-decoration: none; color: var(--ink);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow .15s; display: block;
}
.product-card-sm:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.product-card-sm-img {
  aspect-ratio: 1; background: var(--card-bg); overflow: hidden;
}
.product-card-sm-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.product-card-sm-body { padding: 12px 14px 14px; }
.product-card-sm-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px;
}
.product-card-sm-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 8px;
}
.product-card-sm-price {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
}

/* ── SLIK-VELGER-DU: product-inline → feed-card stil ── */
.product-inline {
  text-decoration: none; color: var(--ink);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: box-shadow .15s; display: flex;
  align-items: center; gap: 0; margin-bottom: 12px;
}
.product-inline:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.product-inline-img {
  width: 100px; min-width: 100px; aspect-ratio: 1;
  background: var(--card-bg); overflow: hidden; flex-shrink: 0;
}
.product-inline-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-inline-body { padding: 14px 16px; flex: 1; }
.product-inline-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px;
}
.product-inline-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 4px;
}
.product-inline-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.product-inline-footer { display: flex; align-items: center; justify-content: space-between; }
.product-inline-price {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
}
.product-inline-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}

/* ── GTX FEATURE BOX ── */
.gtx-feature { background: #0d47a1; color: #fff; border-radius: 8px; padding: 36px; margin: 40px 0; }
.gtx-feature h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 12px; color: #fff; }
.gtx-feature p { font-size: 16px; color: rgba(255,255,255,.9); line-height: 1.7; margin: 0 0 16px; }
.gtx-feature ul { margin: 0 0 0 20px; }
.gtx-feature li { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 6px; }