@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Public+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

:root {
  --primary: #002046;
  --primary-light: #1B365D;
  --accent: #FF8C00;
  --accent-dark: #ef8300;
  --bg: #fbf9f8;
  --surface: #f6f3f2;
  --surface-high: #eae8e7;
  --white: #ffffff;
  --text: #1b1c1c;
  --muted: #44474e;
  --border: #e4e2e1;
  --shadow: 0 4px 24px rgba(0, 32, 70, 0.08);
  --shadow-sm: 0 1px 4px rgba(0, 32, 70, 0.06);
  --radius: 6px;
  --radius-lg: 8px;
  --max: 1200px;
  --topbar-h: 34px;
  --nav-h: 72px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));
  --font: 'Public Sans', sans-serif;
  --heading: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--heading); line-height: 1.15; letter-spacing: -0.02em; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  vertical-align: middle;
}

.technical-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    var(--primary) 8px,
    var(--primary) 9px
  );
}

/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--primary-light);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-hours, .top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-phone { color: var(--white); }
.top-bar-phone:hover { color: var(--accent); }
.top-bar-short { display: none; }
.top-bar .material-symbols-outlined { font-size: 15px; opacity: .8; }
@media (max-width: 480px) {
  .top-bar-full { display: none; }
  .top-bar-short { display: inline; }
}

/* NAV */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 8px 32px rgba(0, 32, 70, 0.12);
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 12px 40px rgba(0, 32, 70, 0.18); }
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text strong {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-logo-text small {
  font-size: .65rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 12px;
  font-family: var(--heading);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  border-radius: 0;
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: transparent;
}
.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-dark);
  color: var(--white) !important;
  font-family: var(--heading);
  font-weight: 700;
  font-size: .72rem;
  border-radius: var(--radius);
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav-cta:hover { background: var(--accent); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: .25s;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--primary);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mobile-menu a.active { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-call {
  display: block;
  margin-top: 24px;
  text-align: center;
  padding: 16px;
  background: var(--accent-dark);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: .78rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.btn-primary { background: var(--accent-dark); color: var(--white); }
.btn-primary:hover { background: var(--accent); }
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-light); }
.btn-sm { padding: 10px 20px; font-size: .72rem; }

/* HERO — full-bleed overlay */
.hero {
  position: relative;
  padding-top: var(--header-h);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0,32,70,.95) 0%, rgba(0,32,70,.82) 45%, rgba(0,32,70,.55) 70%, rgba(0,32,70,.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 24px 0;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-content {
  max-width: 720px;
  padding-bottom: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,140,0,.08);
  border: 1px solid rgba(255,140,0,.25);
  border-radius: var(--radius);
  color: var(--accent);
  font-family: var(--heading);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  width: fit-content;
  margin-bottom: 28px;
}
.hero-badge .material-symbols-outlined { font-size: 16px; }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero h1 span { color: var(--accent); display: block; margin-top: 6px; }
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Stats integrated in hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: auto;
}
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.hero-stats > div {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stats > div:last-child { border-right: none; }
@media (max-width: 767px) {
  .hero-stats > div:nth-child(2) { border-right: none; }
  .hero-stats > div:nth-child(1),
  .hero-stats > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}
.stat-num {
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Legacy stats section (if used elsewhere) */
.stats {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats .stat-num { color: var(--white); }
.stats .stat-label { color: rgba(255,255,255,.55); }

/* PAGE HERO (subpages) */
.page-hero {
  padding: calc(var(--header-h) + 40px) 0 48px;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero { min-height: 340px; padding-bottom: 56px; }
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(25%);
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 32, 70, 0.9) 0%,
    rgba(0, 32, 70, 0.78) 45%,
    rgba(27, 54, 93, 0.72) 100%
  );
}
.page-hero.has-bg .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* SECTIONS */
.section {
  padding: 88px 0;
  position: relative;
}
.section-alt { background: var(--surface-high); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-header .line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 16px;
}
.section-header.center .line { margin-left: auto; margin-right: auto; }
.section-header p { color: var(--muted); max-width: 560px; font-weight: 300; }
.section-header.center p { margin: 0 auto; }

/* SERVICE PANELS (home categories) */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.service-panel {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  transition: background .4s, color .4s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.service-panel:hover {
  background: var(--primary);
}
.service-panel .icon {
  margin-bottom: 24px;
}
.service-panel .icon .material-symbols-outlined {
  font-size: 40px;
  color: var(--accent);
  transition: color .4s;
}
.service-panel:hover .icon .material-symbols-outlined { color: var(--accent); }
.service-panel h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 800;
  transition: color .4s;
}
.service-panel:hover h3 { color: var(--white); }
.service-panel p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color .4s;
  flex: 1;
}
.service-panel:hover p { color: rgba(255,255,255,.7); }

/* CARDS (subpages — flat panels) */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 576px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background .35s;
}
.cat-card:hover {
  background: var(--primary);
  transform: none;
  box-shadow: none;
}
.cat-card .icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: block;
  color: var(--accent);
  margin-bottom: 16px;
}
.cat-card .icon .material-symbols-outlined { font-size: 36px; }
.cat-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
  transition: color .35s;
}
.cat-card:hover h3 { color: var(--white); }
.cat-card p {
  font-size: .9rem;
  color: var(--muted);
  transition: color .35s;
}
.cat-card:hover p { color: rgba(255,255,255,.7); }

/* FEATURE ROW */
.feature-rows { display: flex; flex-direction: column; gap: 72px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 64px; }
  .feature-row.reverse .feature-img { order: 2; }
  .feature-row.reverse .feature-text { order: 1; }
}
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.feature-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(15%); }
.feature-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 800;
}
.feature-text p {
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.7;
}
.feature-link {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--accent-dark);
  font-size: .78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .2s;
}
.feature-link:hover { color: var(--primary); }
.feature-link .material-symbols-outlined { font-size: 18px; }
.feature-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
}
.feature-badge strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 800;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}
.check-list .material-symbols-outlined { color: var(--accent); font-size: 22px; flex-shrink: 0; }

/* BRANDS */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .brand-grid { grid-template-columns: repeat(6, 1fr); } }
.brand-card {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  font-family: var(--heading);
  font-weight: 800;
  color: var(--primary);
  font-size: .9rem;
  transition: border-color .2s;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.brand-card:hover { border-color: var(--accent); box-shadow: none; }

/* REVIEWS */
.review-card {
  background: var(--white);
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  box-shadow: none;
}
.review-stars { color: var(--accent); margin-bottom: 16px; display: flex; gap: 2px; }
.review-stars .material-symbols-outlined { font-size: 18px; }
.review-text { font-style: italic; color: var(--muted); margin-bottom: 16px; font-weight: 300; }
.review-author {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--primary);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* MAP */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }
.info-list { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; }
.info-item .material-symbols-outlined { color: var(--accent); font-size: 28px; }
.info-item h4 {
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 800;
}
.info-item p, .info-item table { font-size: .92rem; color: var(--muted); }

/* CONTACT */
.contact-section { background: var(--primary); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.contact-list .material-symbols-outlined { color: var(--accent); }
.contact-list small {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.contact-list a { font-weight: 700; color: var(--white); }
.contact-list a:hover { color: var(--accent); }
.form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-box h3 { margin-bottom: 24px; font-size: 1.1rem; text-transform: uppercase; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { color: var(--text); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 576px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-check {
  display: flex;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  cursor: pointer;
}
.form-check a { color: var(--accent); text-decoration: underline; }
.form-status { margin-top: 12px; font-size: .88rem; }
.form-status.error { color: #fca5a5; }
.form-status.success { color: #86efac; }

/* WEBSHOP */
.webshop-notice {
  background: var(--surface);
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 40px;
  text-align: left;
  margin-bottom: 48px;
}
.webshop-notice h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.product-card:hover { border-color: var(--accent); transform: none; box-shadow: none; }
.product-img {
  height: 180px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.product-img .material-symbols-outlined { font-size: 64px; opacity: .3; }
.product-body { padding: 20px; }
.product-body h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.product-body p { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.product-price { font-family: var(--heading); font-weight: 800; color: var(--accent-dark); font-size: 1rem; }
.product-cta {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 700;
  font-size: .75rem;
  border-radius: var(--radius);
  margin-top: 12px;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-cta:hover { background: var(--primary-light); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 800;
}
.cta-band p {
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.cta-band .btn {
  background: var(--accent-dark);
  color: var(--white);
}
.cta-band .btn:hover { background: var(--accent); }

/* TEASER (legacy, kept for compatibility) */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }
.teaser-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  transition: background .3s;
}
.teaser-card:hover { background: var(--primary); transform: none; box-shadow: none; }
.teaser-card img { height: 180px; width: 100%; object-fit: cover; filter: grayscale(20%); }
.teaser-body { padding: 24px; }
.teaser-body h3 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; text-transform: uppercase; }
.teaser-card:hover .teaser-body h3 { color: var(--white); }
.teaser-body p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.teaser-card:hover .teaser-body p { color: rgba(255,255,255,.7); }
.teaser-link {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--accent-dark);
  font-size: .78rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.teaser-link:hover { color: var(--accent); }

/* FOOTER */
.footer {
  background: #001530;
  color: rgba(255,255,255,.65);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer .nav-logo-text strong { font-size: .9rem; }
.footer h4 {
  font-family: var(--heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul li { margin-bottom: 8px; font-size: .88rem; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  padding: 16px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-inner p { font-size: .85rem; color: rgba(255,255,255,.75); }
.cookie-inner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--heading);
  font-weight: 700;
  font-size: .75rem;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,.25) !important; color: var(--white); }
.cookie-accept { background: var(--accent-dark); color: var(--white); }

/* LEGAL PAGE */
.legal-page { padding: calc(var(--header-h) + 48px) 0 80px; }
.legal-page .container { max-width: 720px; }
.legal-page h1 { color: var(--primary); margin-bottom: 8px; }
.legal-page .date { color: var(--muted); font-size: .9rem; margin-bottom: 40px; }
.legal-page h2 { color: var(--primary); font-size: 1.1rem; margin: 32px 0 12px; text-transform: uppercase; }
.legal-page p, .legal-page li { color: var(--muted); margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* RESPONSIVE NAV */
@media (min-width: 1280px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* FLOATING CALL */
.floating-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 32, 70, 0.2);
  transition: background .2s;
}
.floating-call:hover { background: var(--accent); transform: none; }
.floating-call .material-symbols-outlined { font-size: 26px; }
@media (max-width: 767px) {
  .floating-call { display: flex; bottom: 88px; }
}

/* WEBSHOP FILTERS */
.webshop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .webshop-layout { grid-template-columns: 260px 1fr; align-items: start; }
}
.filter-panel {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.filter-panel h3 {
  font-size: .9rem;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .04em;
}
.filter-search {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  margin-bottom: 20px;
  background: var(--white);
}
.filter-search:focus { outline: 2px solid rgba(255,140,0,.25); border-color: var(--accent); }
.filter-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--heading);
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.filter-btn:hover { border-color: var(--accent); color: var(--primary); }
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.filter-clear {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font);
}
.filter-clear:hover { border-color: var(--accent); color: var(--primary); }
.product-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .85rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.product-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 0;
  transition: none;
}
@media (min-width: 768px) {
  .product-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
  }
}
.product-row:hover { border-color: var(--border); box-shadow: none; }
.product-row h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 800;
}
.product-row-meta {
  font-size: .75rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-row-desc { font-size: .88rem; color: var(--muted); font-weight: 300; }
.product-row-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .product-row-side { align-items: flex-end; text-align: right; }
}
.product-row-price {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--primary);
  font-size: .9rem;
}
.product-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--radius);
}

/* BRAND LOGOS */
.brand-logo-card {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: border-color .2s;
}
.brand-logo-card:hover { border-color: var(--accent); box-shadow: none; }
.brand-logo-card img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo-fallback {
  font-family: var(--heading);
  font-weight: 800;
  font-size: .8rem;
  color: var(--primary);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* REVIEWS SECTION ON UZLET */
.reviews-section { background: var(--surface-high); }
