:root {
  --bg: #f7f0df;
  --paper: rgba(255,251,241,0.94);
  --paper-strong: rgba(255,255,255,0.88);
  --panel: rgba(244,247,242,0.72);
  --panel-dark: rgba(29,39,34,0.78);
  --text: #20312a;
  --text-soft: #51655c;
  --white: #f9fbf8;
  --line: rgba(32,49,42,0.11);
  --line-strong: rgba(32,49,42,0.2);
  --accent: #e09f3f;
  --accent-deep: #c99d21;
  --accent-soft: rgba(224, 170, 63, 0.222);
  --leaf: #6f8d6f;
  --leaf-deep: #4a6955;
  --soil: #8f775a;
  --shadow: 0 18px 38px rgba(25,39,33,0.08);
  --shadow-lg: 0 30px 60px rgba(25,39,33,0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 24px 24px, rgba(108, 137, 112, 0.055) 2px, transparent 2px),
    radial-gradient(circle at 72px 64px, rgba(201, 157, 33, 0.045) 1.75px, transparent 1.75px),
    linear-gradient(to right, rgba(79,103,86,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79,103,86,0.03) 1px, transparent 1px);
  background-size: 96px 96px, 128px 128px, 34px 34px, 34px 34px;
  min-height: 100vh;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.page-wrap {
  padding-top: 118px;
  padding-bottom: 76px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 247, 243, 0.72);
  border-bottom: 1px solid rgba(32,49,42,0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(92%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  font-size: 1.02rem;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo span {
  color: var(--accent-deep);
}

.nav {
  margin-left: auto;
}

.nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.nav a:hover,
.nav a.active {
  background: var(--accent-soft);
  border-color: rgba(201,157,33,0.22);
}

.nav a.nav-accent {
  background: var(--accent-soft);
  border-color: rgba(201,157,33,0.22);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 10px;
  border-radius: 999px;
  transition: background 180ms ease;
}

.nav-toggle:hover {
  background: rgba(32,49,42,0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.section {
  margin-bottom: 32px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card .inline-icon {
  display: inline-block;
  width: auto;
  height: 2.5em;
  margin-right: 0.35em;
  vertical-align: middle;
  align-items: left;
}

.card .advice {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  margin: 1rem 0 0;
  font-weight: bold;
}

.card .advice .inline-icon {
  flex: 0 0 auto;
  height: 3.5em;
  width: auto;
}

.card.pad {
  padding: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(111,141,111,0.18);
  background: rgba(255,255,255,0.64);
  color: var(--leaf-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  letter-spacing: -0.03em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 66ch;
}

.muted {
  color: var(--text-soft);
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 700;
  transition: 180ms ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--leaf-deep);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(47,75,60,0.18);
}

.btn-secondary {
  background: var(--paper-strong);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(201,157,33,0.3);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(94, 94, 94, 0.18);
}

.btn-accent {
  background: var(--accent);
  color: #2b2415;
}


.btn-accent:hover {
  background: #e0b83f;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(224,184,63,0.3);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-panel {
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,184,63,0.14), transparent 68%);
}

.hero-title span {
  color: var(--accent-deep);
}

.hero-media {
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.hero-banner img {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(32,49,42,0.08);
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--leaf-deep);
}

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

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

.feature-list, .check-list, .spec-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li, .spec-list li, .check-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.52);
}

.feature-list strong,
.spec-list strong,
.check-list strong {
  color: var(--leaf-deep);
}

.ribbon {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(201,157,33,0.2);

  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.86rem;
}

.product-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-image-wrap .ribbon {
  position: absolute;
  top: 38px;
  right: -36px;
  z-index: 2;
  margin: 0;
  padding: 8px 34px;
  background: var(--accent);
  color: #2b2415;
  border: 1px solid rgba(43, 36, 21, 0.14);
  box-shadow: 0 10px 20px rgba(25, 39, 33, 0.14);
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(40deg);
  transform-origin: center;
}


.product-volume-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.96);
  border: 2px solid rgba(122, 90, 43, 0.2);
  box-shadow: 0 8px 20px rgba(25, 39, 33, 0.14);
  color: var(--leaf-deep);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.1;
  text-align: center;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,157,33,0.28);
}

.product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}


.product-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content > div:last-child {
  margin-top: auto;
}

.product-meta {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.89rem;
}

.product-card p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.product-price {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--leaf-deep);
}

.product-link:focus-visible {
  outline: 3px solid rgba(201,157,33,0.45);
  outline-offset: 4px;
}


@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-3px);
  }

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

@media (hover: none) {
  .product-card:active {
    transform: scale(0.99);
  }
}

#verkooppunten {
  scroll-margin-top: 100px;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 260px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.035);
}

.inline-note {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.store-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.store-list {
  display: grid;
  gap: 14px;
}

.store-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.56);
  cursor: pointer;
  transition: 180ms ease;
}

.store-card:hover,
.store-card.active {
  border-color: rgba(201,157,33,0.38);
  box-shadow: 0 12px 24px rgba(25,39,33,0.07);
  transform: translateY(-1px);
}

.store-card h3 {
  margin-bottom: 4px;
}

.store-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(111,141,111,0.12);
  color: var(--leaf-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.locator-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(224,184,63,0.16), transparent 18%),
    radial-gradient(circle at 78% 76%, rgba(111,141,111,0.18), transparent 16%),
    rgba(255,255,255,0.64);
}

.map-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 3;
}

.legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  font-size: 0.84rem;
}

.legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent);
}

.map-surface {
  position: absolute;
  inset: 0;
}

.nl-shape {
  position: absolute;
  right: 7%;
  top: 11%;
  width: 48%;
  height: 76%;
  background: rgba(111,141,111,0.10);
  clip-path: polygon(49% 0%, 63% 3%, 75% 12%, 76% 19%, 88% 23%, 90% 34%, 84% 44%, 90% 55%, 83% 66%, 77% 80%, 65% 92%, 55% 100%, 48% 93%, 42% 96%, 35% 90%, 25% 90%, 18% 81%, 13% 71%, 19% 62%, 15% 51%, 20% 42%, 16% 28%, 23% 20%, 32% 13%, 40% 7%);
  border: 1px solid rgba(74,105,85,0.08);
}

.map-route {
  position: absolute;
  right: 20%;
  top: 22%;
  width: 2px;
  height: 52%;
  background: repeating-linear-gradient(to bottom, rgba(143,119,90,0.28), rgba(143,119,90,0.28) 8px, transparent 8px, transparent 16px);
}

.plot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 18px rgba(201,157,33,0.36);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.plot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(201,157,33,0.24);
}

.plot.active {
  background: var(--leaf-deep);
  box-shadow: 0 10px 22px rgba(74,105,85,0.28);
}

.plot-label {
  position: absolute;
  top: -38px;
  left: 12px;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--leaf-deep);
}

.note-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.54);
  border: 1px solid var(--line);
}

.split-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.image-frame {
  overflow: hidden;
  min-height: 360px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-num {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(111,141,111,0.14);
  color: var(--leaf-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px solid rgba(111,141,111,0.16);
}

.admin-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.kpi {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
}

.kpi strong {
  display: block;
  font-size: 1.35rem;
  color: var(--leaf-deep);
}

.admin-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background:
    linear-gradient(rgba(239,242,238,0.82), rgba(239,242,238,0.82)),
    radial-gradient(circle at 18% 22%, rgba(224,184,63,0.14), transparent 18%),
    radial-gradient(circle at 82% 68%, rgba(111,141,111,0.18), transparent 18%);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: min(100%, 520px);
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(32,49,42,0.12);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

label {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--leaf-deep);
}

input, textarea, select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(32,49,42,0.13);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(201,157,33,0.44);
  box-shadow: 0 0 0 4px rgba(224,184,63,0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.admin-table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(32,49,42,0.08);
  vertical-align: top;
}

thead th {
  color: var(--leaf-deep);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-dot {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  margin-right: 8px;
}

.admin-hidden {
  display: none !important;
}

.locked main, .locked .site-footer {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(32,49,42,0.08);
}

.footer-inner {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 22px 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--leaf-deep);
  text-decoration: none;
  transition: opacity 180ms ease;
}

.footer-inner a:hover {
  opacity: 0.7;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(32,49,42,0.06);
  transition: 180ms ease;
}

.footer-socials a:hover {
  background: rgba(32,49,42,0.12);
  transform: translateY(-2px);
}


.small {
  font-size: 0.9rem;
}

hr.soft {
  border: none;
  border-top: 1px solid rgba(32,49,42,0.08);
  margin: 18px 0;
}

@media (max-width: 1040px) {
  .hero,
  .split-banner,
  .store-shell,
  .admin-hero {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    min-height: 360px;
  }

  .locator-map {
    min-height: 460px;
  }

  .nl-shape {
    width: 58%;
    right: 4%;
  }
}

@media (max-width: 760px) {
  .page-wrap {
    padding-top: 108px;
  }

  .header-inner {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 12px;
    position: relative;
  }

  .nav {
    margin-left: 0;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid rgba(32,49,42,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease;
    z-index: 10;
  }

  .nav.open {
    max-height: 520px;
    padding: 14px 0 18px;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
    padding: 12px 18px;
    border-radius: 0;
    border: none;
  }

  .nav.open a:hover,
  .nav.open a:focus,
  .nav.open a.active {
    background: rgba(201,157,33,0.14);
    color: var(--leaf-deep);
    border: none;
    border-radius: 0;
  }

  .nav.open a.active {
    background: rgba(201,157,33,0.22);
  }

  .nav a + a {
    border-top: 1px solid rgba(32,49,42,0.08);
  }

  .hero-panel {
    padding: 22px;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .lead {
    max-width: 100%;
  }

  .product-grid,
  .grid-2,
  .grid-3,
  .hero-stats,
  .kpi-grid,
  .store-shell,
  .split-banner {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .hero-media img,
  .image-frame img {
    width: 100%;
    height: auto;
  }

  .locator-map {
    min-height: 420px;
  }

  .store-shell,
  .split-banner {
    display: grid;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .nl-shape {
    width: 72%;
    right: 2%;
    top: 14%;
    height: 68%;
  }
}

@media (max-width: 560px) {
  .page-wrap {
    padding-top: 96px;
  }

  .nav a {
    font-size: 0.88rem;
    padding: 10px 10px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .btn {
    font-size: 0.95rem;
  }

  .card.pad {
    padding: 20px;
  }

  .lead {
    font-size: 1rem;
  }

  .footer-inner {
    gap: 10px;
  }
}


 .store-map-shell {
      width: min(1480px, calc(100vw - 32px));
      max-width: 1220px;
      margin: 32px auto;
    }

    .store-map-header {
      margin-bottom: 18px;
    }

    .store-map-header h1 {
      margin: 0 0 6px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .store-map-header p {
      margin: 0;
      max-width: 920px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
    }

    .store-map {
      display: grid;
      grid-template-columns: 410px minmax(0, 1fr);
      height: 740px;
      max-height: calc(100vh - 120px);
      min-height: 620px;
      overflow: hidden;
      border: 1px solid rgba(226, 216, 198, 0.9);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow);
    }

    .store-sidebar {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 0;
      border-right: 1px solid var(--border);
      background: linear-gradient(180deg, var(--panel), #f8f2e7);
    }

    .controls {
      flex: 0 0 auto;
      padding: 22px;
      border-bottom: 1px solid var(--border);
      background: rgba(255, 253, 248, 0.96);
    }

    .controls-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
    }

    .search-wrap {
      position: relative;
      min-width: 0;
    }

    .search-wrap input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: white;
      color: var(--text);
      font-size: 15px;
      outline: none;
      padding: 14px 15px 14px 42px;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .search-wrap input:focus {
      border-color: #b99a69;
      box-shadow: 0 0 0 4px rgba(185, 154, 105, 0.18);
    }

    .search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      width: 17px;
      height: 17px;
      transform: translateY(-50%);
      opacity: 0.55;
      pointer-events: none;
    }

    .button {
      border: 0;
      border-radius: 16px;
      background: var(--text);
      color: white;
      cursor: pointer;
      font-weight: 700;
      padding: 14px 15px;
      white-space: nowrap;
    }

    .button:hover {
      opacity: 0.92;
    }

    .button.secondary {
      margin-top: 10px;
      width: 100%;
      background: var(--accent-soft);
      color: #4c3718;
    }

    .meta {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .store-list {
      display: grid;
      gap: 10px;
      padding: 16px;
      overflow-y: auto;
      scroll-behavior: smooth;
    }

    .store-item {
      position: relative;
      display: grid;
      gap: 8px;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.72);
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .store-item:hover,
    .store-item.active {
      background: white;
      border-color: #b89763;
      box-shadow: 0 10px 28px rgba(38, 30, 18, 0.1);
    }

    .store-item.active::before {
      content: "";
      position: absolute;
      inset: 12px auto 12px -1px;
      width: 4px;
      border-radius: 999px;
      background: var(--accent);
    }

    .store-title {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 12px;
    }

    .store-title strong {
      font-size: 15px;
      line-height: 1.25;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: fit-content;
      border-radius: 999px;
      background: var(--panel-soft);
      color: #5f4927;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 8px;
    }

    .badge.place {
      background: #f3efe7;
      color: #7a7165;
    }

    .store-item p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .store-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-top: 2px;
    }

    .store-actions a,
    .store-actions button,
    .popup a.route-link,
    .popup button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      color: #5a3f18;
      font-size: 12px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      padding: 7px 10px;
    }

    .map-wrap {
      position: relative;
      min-width: 0;
      min-height: 0;
    }

    #klaxoMap {
      width: 100%;
      height: 100%;
      min-height: 480px;
      background: #e9e0d1;
      isolation: isolate;
    }

    #klaxoMap.leaflet-container img,
    #klaxoMap .leaflet-tile,
    #klaxoMap .leaflet-image-layer,
    #klaxoMap .leaflet-marker-icon,
    #klaxoMap .leaflet-marker-shadow {
      max-width: none !important;
      max-height: none !important;
    }

    #klaxoMap .leaflet-tile {
      border: 0 !important;
      outline: 0 !important;
      box-shadow: none !important;
    }

    .map-hint,
    .map-error {
      position: absolute;
      z-index: 600;
      left: 18px;
      bottom: 18px;
      max-width: 430px;
      border: 1px solid rgba(226, 216, 198, 0.92);
      border-radius: 16px;
      background: rgba(255, 253, 248, 0.94);
      color: var(--muted);
      padding: 12px 14px;
      font-size: 13px;
      line-height: 1.35;
      box-shadow: 0 12px 40px rgba(38, 30, 18, 0.12);
      backdrop-filter: blur(12px);
    }

    .map-error {
      color: var(--danger);
      border-color: rgba(138, 47, 33, 0.3);
      background: rgba(255, 248, 244, 0.96);
    }

    .leaflet-popup-content-wrapper {
      border-radius: 16px;
    }

    .popup strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text);
    }

    .popup span {
      display: block;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .popup a {
      color: #5a3f18;
      font-weight: 800;
      text-decoration: none;
    }

    .popup-list {
      display: grid;
      gap: 10px;
      min-width: 230px;
    }

    .popup-list article + article {
      border-top: 1px solid var(--border);
      padding-top: 10px;
    }

    @media (max-width: 900px) {
      .store-map-shell {
        width: 100%;
        margin: 0;
      }

      .store-map-header {
        padding: 20px 18px 0;
      }

      .store-map {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
        min-height: 0;
        border-radius: 0;
      }

      .store-sidebar {
        max-height: 430px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .map-wrap,
      #klaxoMap {
        height: 68vh;
        min-height: 440px;
      }
    }

    @media (max-width: 560px) {
      .controls-row {
        grid-template-columns: 1fr;
      }

      .button {
        width: 100%;
      }

      .map-hint,
      .map-error {
        right: 12px;
        left: 12px;
        bottom: 12px;
      }
    }

@media (max-width: 640px) {
  .product-volume-badge {
    width: 58px;
    height: 58px;
    left: 12px;
    bottom: 12px;
    font-size: 0.82rem;
  }
}
