/* Minimal, performant, responsive styles for Wegmaan */
:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #666;
  --accent: #FD8417;
  --border: #e6e6e6;
  --max: 1120px;

  
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial,
    Helvetica, sans-serif;
  line-height: 1.5;
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 16px;
}
/* Layout/header */
body {
  padding-top: 72px;
}
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 1000;
}
body.has-hero {
  padding-top: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.brand-logo {
  width: 36px;
  height: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.translate-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  /* border: 1px solid var(--border); */
  /* border-radius: 999px; */
  /* background: #fff; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
  max-width: 100%;
  line-height: 1;
}
.translate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
}
#translate-mobile-slot,
#translate-desktop-slot {
  display: flex;
  align-items: center;
}
#google_translate_element {
  display: flex;
  align-items: center;
}
#google_translate_element .goog-te-gadget {
  font-family: inherit;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
#google_translate_element .goog-te-gadget img {
  display: none;
}
#google_translate_element select {
  appearance: none;
  border: 1px solid var(--border);
  background: #f8f8f8;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  max-width: 220px;
}
#google_translate_element select:focus {
  outline: 2px solid rgba(143, 199, 78, 0.35);
  outline-offset: 2px;
}
/* Header layout loaded early to avoid first-paint jump on hard refresh */
.site-header {
  padding: 0 !important;
  min-height: 60px !important;
  max-height: 60px !important;
  height: 60px !important;
  overflow: visible;
}
.container.nav {
  padding: 0 20px !important;
  min-height: 60px !important;
  max-height: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  max-width: 100% !important;
  width: 100% !important;
}
.brand {
  display: flex !important;
  align-items: center !important;
  height: 60px !important;
}
.brand-logo {
  width: 150px !important;
  height: 75px !important;
  max-width: 150px !important;
  max-height: 75px !important;
  object-fit: cover;
}
.nav-links {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
}
.mobile-header-right,
.mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
  .mobile-header-right {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    margin-left: auto;
  }
  .container.nav {
    justify-content: space-between !important;
  }
  .site-header {
    max-height: none !important;
    height: auto !important;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 20px 16px;
    max-width: 100% !important;
    width: 100% !important;
    align-items: flex-start !important;
    border-bottom: 2px solid #FD8417;
  }
  .mobile-menu.open {
    display: flex !important;
  }
}
/* Hero media (video/slider) */
.hero .hero-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f7faff;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 480px;
}
.hero .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
}
.hero-full {
  width: 100%;
  height: 100vh;
  min-height: 100svh;
}
.hero-full .hero-media {
  position: relative;
  height: 100%;
  min-height: 100%;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
}
.hero-full .hero-media video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
}
.hero-slider {
  position: relative;
  height: 100%;
  min-height: 100%;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  background: #fff;
}
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .slide.active {
  opacity: 1;
}
.dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.dot.active {
  background: #fff;
}
/* Hero overlay */
.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 16px;
  align-items: end;
  z-index: 2;
}
.hero-overlay .copy {
  color: #fff;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero-overlay h1 {
  font-size: clamp(28px, 5.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 6px;
}
.hero-overlay p {
  margin: 0 0 10px;
}
.hero-overlay .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}
/* hide slider when video is ready */
.hero-media.vready .hero-slider {
  display: none;
}
/* hide video when no video */
.hero-media.novid video {
  display: none;
}
.nav-links a {
  color: var(--accent);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
}
.nav-links a:hover {
  background: #f6f8fb;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.btn.alt {
  background: #111;
}
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn.light {
  background: #fff;
  color: var(--accent);
}
.btn.light.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  min-height: calc(100vh - 72px);
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.hero p {
  color: var(--muted);
  margin: 0 0 16px;
}
.kpis,
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  /* border: 1px solid var(--border); */
  border-radius: 14px;
  padding: 16px;
  /* background: #fff; */
}
.card h3 {
  margin: 8px 0;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.section {
  padding: 32px 0;
}
.section h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 12px;
}
.footer {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding: 24px 0;
  color: #333;
}
small,
.muted {
  color: var(--muted);
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  border: 1px solid var(--border);
  padding: 8px;
  text-align: left;
}
.badge {
  display: inline-block;
  background: #f2f9e8;
  color: #5a8a1f;
  border: 1px solid #c5e89a;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}
.lang {
  font-size: 14px;
}
/* Home extras */
.about-band {
  background: linear-gradient(135deg, #f2f9e8, #ffffff);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.glass {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: saturate(1.2) blur(8px);
}
.glass h3 {
  margin: 6px 0 4px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.stat strong {
  font-size: 18px;
}
/* Category pages */
.page-hero {
  height: 44vh;
  min-height: 300px;
  display: flex;
  align-items: end;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, #f7fbff 0%, #ffffff 40%, #f2f9e8 100%);
}
.page-hero .inner {
  padding: 18px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(24px, 4.5vw, 40px);
}
.page-hero p {
  margin: 6px 0 0;
  color: #444;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.pill {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #333;
  cursor: pointer;
}
.pill.active,
.pill:hover {
  border-color: #FD8417;
  color: #FD8417;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.prod-card img {
  height: 200px;
  object-fit: cover;
  background: #f7f9fc;
  border-bottom: 1px solid var(--border);
}
.prod-card .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prod-card .meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.breadcrumb {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}
.breadcrumb a {
  color: inherit;
}
/* Product detail */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.gallery {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.gallery .main {
  height: 420px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.thumbs button {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  cursor: pointer;
}
.thumbs img {
  width: 72px;
  height: 54px;
  object-fit: cover;
}
.sticky-aside {
  position: sticky;
  top: 86px;
  align-self: start;
}
.aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}
.logos .logo {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #333;
  background: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.step h3 {
  margin: 6px 0;
  font-size: 16px;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.quote p {
  margin: 0 0 8px;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}
.faq details + details {
  margin-top: 10px;
}
.cta-strip {
  background: #FD8417;
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-strip a {
  background: #fff;
  color: #FD8417;
}
/* Floating cards overlap hero edge */
.cards-floating {
  margin-top: -36px;
}
.cards-floating .card {
  box-shadow: var(--shadow);
}
/* Simple reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
/* Floating animation for background elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 64px);
  }
  .hero-full {
    height: 350px;
    min-height: 350px;
  }
  .hero-full .hero-media,
  .hero-full .hero-slider,
  .hero-full .hero-slider .slide {
    height: 350px;
    min-height: 350px;
  }
  .hero-full .hero-slider .slide img {
    object-fit: cover;
    background: #fff;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .prod-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  #google_translate_element select {
    max-width: 180px;
  }
}
@media (max-width: 620px) {
  .nav-links {
    display: none;
  }
  .nav .menu-btn {
    display: inline-flex;
  }
  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
    margin: 0 10px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .hero-media {
    min-height: 300px;
  }
  .hero-full {
    height: 300px;
    min-height: 300px;
  }
  .hero-full .hero-media,
  .hero-full .hero-slider,
  .hero-full .hero-slider .slide {
    height: 300px;
    min-height: 300px;
  }
  .hero-full .hero-slider .slide img {
    object-fit: cover;
    background: #fff;
  }
  .hero-overlay {
    padding: 14px 12px;
  }
  .hero-overlay h1 {
    font-size: clamp(18px, 5vw, 28px);
    margin: 0 0 4px;
  }
  .hero-overlay p {
    font-size: 13px;
    margin: 0 0 8px;
  }
  .hero-overlay .actions .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .translate-wrapper {
    padding: 4px 8px;
    /* border-radius: 12px; */
  }
  .translate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  #google_translate_element select {
    font-size: 12px;
    padding: 4px 8px;
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .hero-full {
    height: 280px;
    min-height: 280px;
  }
  .hero-full .hero-media,
  .hero-full .hero-slider,
  .hero-full .hero-slider .slide {
    height: 280px;
    min-height: 280px;
  }
  .hero-full .hero-slider .slide img {
    object-fit: cover;
    background: #fff;
  }
  .hero-overlay {
    padding: 10px 12px;
  }
  .hero-overlay h1 {
    font-size: clamp(16px, 5.5vw, 22px);
    margin: 0 0 3px;
  }
  .hero-overlay p {
    font-size: 12px;
    margin: 0 0 6px;
  }
  .hero-overlay .actions {
    gap: 8px;
  }
  .hero-overlay .actions .btn {
    padding: 7px 12px;
    font-size: 12px;
  }
  .dots {
    bottom: 6px;
  }
  .dot {
    width: 6px;
    height: 6px;
  }
}
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 8px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  background: #fff !important;
  align-items: center !important;
}
.mobile-menu a {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  text-decoration: none;
  color: inherit;
}
