:root {
  --bg: #FDF5E6;
  --card-bg: #ffffff;
  --text-main: #44444E;
  --muted: #6b6b75;
  --accent: #6D8B74;
  --border: #e8e2d6;
}

/* Buttons & pills */
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 14px;border-radius:14px;
  border:1px solid var(--accent);
  background:var(--accent);color:#fff;
  font-weight:800;font-size:13px;text-decoration:none;
}

/*
.btn:hover{filter:brightness(.96);text-decoration:none;}
.btn-ghost{background:rgba(255,255,255,.85);color:var(--text);border-color:var(--line);}
.btn-ghost:hover{background:var(--surface2);}
*/

.btn-ghost{
  background: rgba(255,255,255,.85);
  color: var(--text-main);
  border-color: var(--border);
}
.btn-ghost:hover{
  background: #f1ede4; /* eller var(--bg) om du vill */
}





.pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  white-space:nowrap;
  font-size:13px;
}
.pill-accent{
  border-color:rgba(6,95,70,.22);
  background:rgba(236,253,245,.92);
  color:var(--accent);
  font-weight:700;
}
/* ===== Base ===== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--text-main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ===== Layout ===== */

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

.section {
  margin: 40px 0;
}

/* ===== Topbar ===== */

.topbar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
}

/* ===== Hero ===== */

.hero {
  margin-top: 30px;
}

.hero-grid {
  display: grid;
  gap: 25px;
}

.hero-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.hero h1 {
  margin-top: 0;
  font-size: 28px;
}

.lead {
  font-size: 16px;
  color: var(--muted);
}

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
}

/* ===== Pills ===== */

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.pill {
  background: #f1ede4;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-main);
}

/* ===== Cards ===== */

.grid {
  display: grid;
  gap: 25px;
}

.card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-top: 10px;
}

.chev {
  transition: transform 0.2s ease;
}

.card:hover .chev {
  transform: translateX(4px);
}

/* ===== Footer ===== */

.footer {
  margin-top: 60px;
  background: var(--card-bg);
  padding: 30px 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.small {
  font-size: 13px;
  color: var(--muted);
}
/* ===== Responsive ===== */

/* --- Desktop --- */
@media (min-width: 768px) {

  .hero-grid {
    grid-template-columns: 2fr 1fr;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* --- Mobile --- */
@media (max-width: 767px) {

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero h1 {
    font-size: 22px;
  }

  /* Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 70px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-list.open {
    display: flex;
  }

}
@media (min-width: 992px) {
  .grid.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  height: 100%;
}

/* ===== Produkter – ytterlayout ===== */

.products {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Produktkort ===== */

.product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  align-items: center;
}

.product-image {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-height: 220px;
  object-fit: contain;
}

.product-content h3 {
  margin-top: 0;
  font-size: 22px;
}

.product-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.price-box {
  background: #f1ede4;
  padding: 15px 20px;
  border-radius: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {

  .product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-image {
    margin-bottom: 20px;
  }

}
