/* ── VARIABLES ── */
:root {
  --red: #E30613;
  --blue: #164196;
  --dark: #111111;
  --gray: #f5f5f5;
  --mid-gray: #e0e0e0;
  --text: #222222;
  --text-muted: #666666;
  --white: #ffffff;
  --header-h: 64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.5; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: .03em;
}

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.logo svg { height: 20px; width: auto; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 32px;
}

nav.main-nav a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  color: var(--text);
}
nav.main-nav > a:hover,
nav.main-nav .nav-dropdown > a:hover { background: var(--gray); color: var(--blue); }
nav.main-nav a.current-menu-item,
nav.main-nav a.active { color: var(--red); }

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { transition: transform .2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--gray); color: var(--blue); }
.dropdown-menu a.current-menu-item,
.dropdown-menu a.current { color: var(--red); }
.dropdown-menu .sep { height: 1px; background: var(--mid-gray); margin: 6px 0; }

/* ── HEADER ACTIONS ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-icon {
  width: 40px; height: 40px;
  border: none; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background .15s;
  color: var(--dark);
  position: relative;
}
.btn-icon:hover { background: var(--gray); }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.cart-count.has-items { opacity: 1; }

.btn-shop {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-shop:hover { background: #c2000f; transform: translateY(-1px); }

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--gray); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  padding: 8px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--gray);
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: var(--gray); color: var(--blue); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── SEARCH BAR ── */
.search-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  z-index: 1100;
  padding: 16px 24px;
  transform: translateY(-100%);
  transition: transform .25s;
}
.search-bar.open { transform: translateY(0); }
.search-bar-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar-inner .search-field {
  flex: 1;
  font-size: 16px;
  font-family: inherit;
  padding: 10px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: 8px;
  outline: none;
  transition: border-color .15s;
}
.search-bar-inner .search-field:focus { border-color: var(--blue); }
.search-bar-inner .search-submit {
  padding: 10px 20px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.search-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

/* ── CONTAINER & SECTION ── */
.container { max-width: 1320px; margin: 0 auto; }
section { padding: 80px 24px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header h2 span { color: var(--blue); }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22,65,150,.92) 0%, rgba(22,65,150,.70) 45%, rgba(227,6,19,.55) 100%),
    url('https://images.unsplash.com/photo-1556906781-9a414e2a7735?w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-text .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-text h1 span { color: var(--red); }
.hero-text p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s, transform .1s;
}
.cta-primary:hover { background: #c2000f; transform: translateY(-2px); }

.cta-secondary {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s;
}
.cta-secondary:hover { background: rgba(255,255,255,.25); }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.hero-stat .number { font-size: 40px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.hero-stat .number span { color: var(--red); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; }

/* ── USP STRIP ── */
.usp-strip { background: var(--gray); padding: 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  border-right: 1px solid var(--mid-gray);
}
.usp-item:last-child { border-right: none; }
.usp-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.usp-text span { font-size: 12px; color: var(--text-muted); }

/* ── STORES SECTION ── */
#winkels { background: var(--white); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.store-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.store-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.store-card-image { height: 220px; position: relative; overflow: hidden; }
.store-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.store-card:hover .store-card-image img { transform: scale(1.06); }
.store-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.store-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.store-card-body h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.store-location {
  font-size: 13px; color: var(--red); font-weight: 600;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 4px;
}
.store-info { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.store-hours { margin: 16px 0; font-size: 13px; }
.store-hours table { width: 100%; border-collapse: collapse; }
.store-hours td { padding: 3px 0; }
.store-hours td:first-child { color: var(--text-muted); width: 120px; }
.store-hours td:last-child { font-weight: 600; color: var(--text); }
.store-contact {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--mid-gray);
}
.store-contact a {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  transition: color .15s;
}
.store-contact a:hover { color: var(--blue); }
.store-card-footer { padding: 0 28px 28px; display: flex; gap: 10px; }
.btn-store-detail {
  flex: 1;
  background: var(--blue);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .15s;
}
.btn-store-detail:hover { background: #0f2f73; }
.btn-store-route {
  background: var(--gray);
  color: var(--text);
  font-size: 13px; font-weight: 600;
  padding: 11px 16px;
  border-radius: 8px;
  text-align: center;
  transition: background .15s;
  display: flex; align-items: center; gap: 6px;
}
.btn-store-route:hover { background: var(--mid-gray); }

/* ── TEAMWEAR SECTION ── */
#teamwear {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2f73 100%);
  position: relative;
  overflow: hidden;
}
#teamwear::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.teawear-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.teawear-text .tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.teawear-text h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.teawear-text h2 span { color: var(--red); }
.teawear-text p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 32px; line-height: 1.7; }
.teawear-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.teawear-feature { display: flex; align-items: flex-start; gap: 12px; }
.teawear-feature-text strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.teawear-feature-text span { font-size: 12px; color: rgba(255,255,255,.6); }
.teawear-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-gold {
  background: var(--red); color: var(--white);
  font-weight: 800; font-size: 15px;
  padding: 14px 32px; border-radius: 6px;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background .15s, transform .1s;
}
.cta-gold:hover { background: #c2000f; transform: translateY(-2px); }
.teawear-main-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.teawear-main-card h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.teawear-main-card p { font-size: 14px; color: rgba(255,255,255,.7); }
.teawear-badges { display: flex; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.teawear-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px;
}

/* ── BRANDS ── */
#merken { background: var(--white); padding: 56px 24px; }
.brands-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.brand-placeholder {
  width: 180px; height: 80px;
  border: none;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.brand-placeholder span { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.brand-placeholder img { max-width: 140px; max-height: 56px; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .2s, opacity .2s; }
.brand-placeholder:hover img { filter: none; opacity: 1; }

/* ── ABOUT ── */
#over-ons { background: var(--gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--dark); margin-bottom: 20px; line-height: 1.1; }
.about-text h2 span { color: var(--blue); }
.about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
.cta-blue {
  display: inline-block;
  background: var(--blue); color: var(--white);
  font-weight: 700; font-size: 14px;
  padding: 12px 28px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .04em;
  margin-top: 8px; transition: background .15s;
}
.cta-blue:hover { background: #0f2f73; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card {
  background: var(--white); border-radius: 16px;
  padding: 28px 20px; text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.about-stat-card .stat-number { font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.about-stat-card .stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.about-stat-card.red .stat-number { color: var(--red); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--gray); border-bottom: 1px solid var(--mid-gray); padding: 12px 24px; }
.breadcrumb-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--blue); transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--dark); }
.breadcrumb-sep { color: var(--mid-gray); }

/* ── STORE HERO ── */
.store-hero { position: relative; height: 480px; overflow: hidden; }
.store-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.store-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(22,65,150,.85) 0%, rgba(22,65,150,.4) 60%, transparent 100%);
}
.store-hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  max-width: 1320px; margin: 0 auto; left: 0; right: 0;
  padding: 48px 24px;
}
.store-hero-text .store-tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
  margin-bottom: 12px;
}
.store-hero-text h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 8px; }
.store-hero-text p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 480px; }

/* ── STORE PAGE LAYOUT ── */
.store-body { max-width: 1320px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }

.section-title {
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
}

.store-intro { margin-bottom: 48px; }
.store-intro p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

/* TEAM */
.team-section { margin-bottom: 56px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--gray); border-radius: 12px; overflow: hidden; text-align: center; transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.team-card-photo { width: 100%; height: 180px; background: var(--mid-gray); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); }
.photo-placeholder svg { opacity: .4; }
.photo-placeholder span { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }
.team-card-body { padding: 14px; }
.team-card-body strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.team-card-body span { font-size: 12px; color: var(--text-muted); }

/* GALLERY */
.gallery-section { margin-bottom: 56px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; gap: 12px; }
.gallery-item { border-radius: 10px; overflow: hidden; position: relative; background: var(--mid-gray); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; background: var(--gray);
  border: 2px dashed var(--mid-gray); border-radius: 10px;
  color: var(--text-muted); transition: border-color .2s;
}
.gallery-placeholder:hover { border-color: var(--blue); }
.gallery-placeholder svg { opacity: .4; }
.gallery-placeholder span { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* VIDEO */
.video-section { margin-bottom: 56px; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.video-item { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: var(--dark); position: relative; }
.video-item iframe,
.video-item video { width: 100%; height: 100%; border: none; object-fit: cover; }
.video-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: #1a1a1a; border: 2px dashed #333; border-radius: 12px; color: rgba(255,255,255,.4); cursor: pointer; transition: border-color .2s; }
.video-placeholder:hover { border-color: var(--red); color: rgba(255,255,255,.7); }
.video-play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.video-placeholder span { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* MAP */
.map-section { margin-bottom: 56px; }
.map-container { border-radius: 12px; overflow: hidden; border: 1px solid var(--mid-gray); height: 320px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* BACK */
.back-section { padding: 0 0 56px; }
.btn-back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 14px; font-weight: 600; transition: gap .15s; }
.btn-back:hover { gap: 12px; }

/* SIDEBAR */
.store-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.info-card { background: var(--white); border: 1px solid var(--mid-gray); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.06); margin-bottom: 20px; }
.info-card-header { background: var(--blue); color: var(--white); padding: 16px 20px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.info-card-body { padding: 20px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 14px; }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { min-width: 18px; margin-top: 2px; color: var(--blue); }
.info-row a { color: var(--blue); transition: color .15s; }
.info-row a:hover { color: var(--dark); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hours-table td { padding: 5px 0; }
.hours-table td:first-child { color: var(--text-muted); width: 100px; }
.hours-table td:last-child { font-weight: 600; text-align: right; }
.hours-table tr.closed td { color: var(--mid-gray); }
.hours-table tr.today td { color: var(--blue); font-weight: 700; }
.btn-route { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 700; padding: 13px; border-radius: 8px; text-transform: uppercase; letter-spacing: .04em; margin-top: 16px; transition: background .15s; }
.btn-route:hover { background: #0f2f73; }
.services-list { display: flex; flex-direction: column; gap: 10px; }
.service-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.service-item::before { content: ''; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--blue); }

/* ── FOOTER ── */
#site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top {
  max-width: 1320px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .15s; color: white; }
.social-link:hover { background: var(--red); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); max-width: 1320px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.35); }
.footer-payment { display: flex; align-items: center; gap: 8px; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 32px; cursor: pointer; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 480px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,.18);
  padding: 24px; z-index: 9999;
  border: 2px solid var(--mid-gray);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.cookie-banner p strong { color: var(--dark); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept { flex: 1; background: var(--blue); color: var(--white); border: none; border-radius: 8px; font-size: 14px; font-weight: 700; padding: 10px; cursor: pointer; font-family: inherit; transition: background .15s; }
.cookie-accept:hover { background: #0f2f73; }
.cookie-decline { background: var(--gray); color: var(--text); border: none; border-radius: 8px; font-size: 14px; font-weight: 600; padding: 10px 16px; cursor: pointer; font-family: inherit; transition: background .15s; }
.cookie-decline:hover { background: var(--mid-gray); }

/* ── GENERIC PAGE ── */
.page-content { padding: 80px 20px; max-width: 900px; margin: 0 auto; }
.page-title { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--dark); margin-bottom: 32px; }
.entry-content p  { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.entry-content h2 { font-size: 20px; font-weight: 800; color: var(--dark); margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--light-gray); }
.entry-content h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 28px 0 10px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.entry-content a  { color: var(--blue); text-decoration: underline; }
.entry-content a:hover { color: var(--red); }
.btn-primary { display: inline-block; background: var(--blue); color: white; font-weight: 700; padding: 12px 28px; border-radius: 6px; text-transform: uppercase; letter-spacing: .04em; transition: background .15s; }
.btn-primary:hover { background: #0f2f73; }

/* ── WOOCOMMERCE WRAPPER ── */
.woo-wrap { padding: 60px 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .teawear-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: none; }
  .store-body { grid-template-columns: 1fr; }
  .store-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { display: none; }
  .stores-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--mid-gray); }
  .usp-item:last-child { border-bottom: none; }
  .teawear-features { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .store-hero { height: 320px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .video-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════
   MOBIEL — geoptimaliseerd voor smalle schermen (360px als richtpunt)
   ══════════════════════════════════════════════════════════════════ */

/* Geen horizontale scroll; media nooit breder dan het scherm */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  img, svg, video, iframe, table { max-width: 100%; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* Smalle telefoons: compacte header, leesbare announcement */
@media (max-width: 560px) {
  .header-inner  { gap: 10px; padding: 0 12px; }
  .header-actions { gap: 2px; }
  .btn-shop      { display: none; }          /* Shop-CTA staat in het mobiele menu */
  .btn-icon      { width: 38px; height: 38px; }
  .logo svg      { height: 18px; }
  .announcement  { font-size: 11px; padding: 7px 12px; line-height: 1.45; letter-spacing: 0; }
  .container     { padding-left: 14px; padding-right: 14px; }
  .mobile-nav .mobile-shop-cta {
    margin: 8px 16px; padding: 12px 16px; text-align: center;
    background: var(--red); color: var(--white);
    border-radius: 6px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .04em; border-bottom: none;
  }
}

/* 360px richtpunt: alles past, ruime tikdoelen */
@media (max-width: 360px) {
  .header-inner { gap: 6px; padding: 0 10px; }
  .btn-icon     { width: 34px; height: 34px; }
  .logo svg     { height: 16px; }
  .announcement { font-size: 10px; padding: 6px 10px; }
  .mobile-nav a { font-size: 14px; padding: 12px 16px; }
  .container    { padding-left: 12px; padding-right: 12px; }
}
