/* ============================================================
   Verkeersmaterialen.nl â€” Magento 2 Component Styles
   Version: 1.0
   Prefix: vm-
   No external dependencies required (except Inter font)
   ============================================================ */

/* --- Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --vm-blue: #0b2a4a;
  --vm-orange: #ff6a00;
  --vm-gray: #f4f6f8;
  --vm-white: #ffffff;
  --vm-border: #e2e8f0;
  --vm-text: #334155;
  --vm-text-light: #94a3b8;
  --vm-text-muted: #64748b;
  --vm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vm-max-width: 1200px;
  --vm-radius: 6px;
}

/* --- Reset & Base --- */
.vm-wrapper,
.vm-wrapper *,
.vm-wrapper *::before,
.vm-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vm-wrapper {
  font-family: var(--vm-font);
  color: var(--vm-text);
  background-color: var(--vm-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

.vm-wrapper a {
  text-decoration: none;
  color: inherit;
}

.vm-wrapper ul,
.vm-wrapper ol {
  list-style: none;
}

/* --- Container --- */
.vm-container {
  max-width: var(--vm-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.vm-topbar {
  background: var(--vm-white);
  border-bottom: 1px solid var(--vm-border);
}

.vm-topbar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  height: 36px;
}

.vm-topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--vm-text-muted);
  transition: color 0.2s;
}

.vm-topbar__link:hover {
  color: var(--vm-orange);
}

.vm-topbar__link--bold {
  font-weight: 600;
}

.vm-topbar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.vm-header {
  background: var(--vm-white);
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 40;
}

.vm-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vm-header__logo {
  flex-shrink: 0;
}

.vm-header__logo img {
  height: 48px;
  width: auto;
}

.vm-header__search {
  flex: 1;
  max-width: 560px;
}

.vm-header__search-form {
  display: flex;
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  overflow: hidden;
}

.vm-header__search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--vm-font);
  background: var(--vm-white);
}

.vm-header__search-input::placeholder {
  color: var(--vm-text-light);
}

.vm-header__search-btn {
  background: var(--vm-blue);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.vm-header__search-btn:hover {
  opacity: 0.9;
}

.vm-header__search-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--vm-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.vm-header__phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--vm-orange);
  color: var(--vm-white);
  padding: 10px 16px;
  border-radius: var(--vm-radius);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.vm-header__phone-btn:hover {
  background: #e55f00;
}

.vm-header__phone-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-header__cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.vm-header__cart-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--vm-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-header__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--vm-orange);
  color: var(--vm-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-header__account-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.vm-header__account-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--vm-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile hamburger */
.vm-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.vm-header__hamburger svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--vm-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile search */
.vm-header__mobile-search {
  display: none;
  margin-top: 12px;
}

.vm-header__mobile-search .vm-header__search-form {
  width: 100%;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.vm-nav {
  background: var(--vm-blue);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.vm-nav__inner {
  display: flex;
  align-items: center;
  height: 48px;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.vm-megamenu {
  position: relative;
}

.vm-megamenu__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--vm-orange);
  color: var(--vm-white);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--vm-font);
  padding: 0 20px;
  height: 48px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.vm-megamenu__toggle:hover {
  background: #e55f00;
}

.vm-megamenu__toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-megamenu__chevron {
  transition: transform 0.2s;
}

.vm-megamenu--open .vm-megamenu__chevron {
  transform: rotate(180deg);
}

.vm-megamenu__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: var(--vm-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--vm-border);
  z-index: 50;
}

.vm-megamenu--open .vm-megamenu__dropdown {
  display: block;
}

.vm-megamenu__list {
  list-style: none;
}

.vm-megamenu__item {
  border-bottom: 1px solid #f1f5f9;
}

.vm-megamenu__item:last-child {
  border-bottom: none;
}

.vm-megamenu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--vm-text);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.vm-megamenu__link:hover {
  background: #f8fafc;
  color: var(--vm-orange);
}

.vm-megamenu__link-icon {
  width: 20px;
  height: 20px;
  color: var(--vm-orange);
  flex-shrink: 0;
}

/* Quick nav links */
.vm-nav__links {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 4px;
}

.vm-nav__link {
  padding: 0 16px;
  height: 48px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.vm-nav__link:hover {
  color: var(--vm-white);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.vm-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 108px;
  background: var(--vm-white);
  z-index: 40;
  overflow-y: auto;
}

.vm-mobile-menu--open {
  display: block;
}

.vm-mobile-menu__inner {
  padding: 16px;
}

.vm-mobile-menu__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--vm-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
}

.vm-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  font-size: 14px;
  color: var(--vm-text);
  font-weight: 500;
  border-radius: var(--vm-radius);
  transition: background 0.15s;
}

.vm-mobile-menu__link:hover {
  background: #f8fafc;
}

.vm-mobile-menu__link svg {
  width: 20px;
  height: 20px;
  color: var(--vm-orange);
  flex-shrink: 0;
}

.vm-mobile-menu__divider {
  border-top: 1px solid var(--vm-border);
  margin-top: 16px;
  padding-top: 16px;
}

.vm-mobile-menu__divider .vm-mobile-menu__link--highlight {
  color: var(--vm-orange);
  font-weight: 700;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.vm-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 480px;
}

.vm-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease;
}

.vm-hero__slide--active {
  opacity: 1;
  z-index: 10;
}

.vm-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.vm-hero__content {
  position: relative;
  z-index: 10;
  padding: 128px 16px;
}

.vm-hero__inner {
  max-width: 520px;
}

.vm-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--vm-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.vm-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.vm-hero__arrow--prev {
  left: 16px;
}

.vm-hero__arrow--next {
  right: 16px;
}

.vm-hero__arrow .vm-icon {
  width: 20px;
  height: 20px;
}

.vm-hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 8px;
}

.vm-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.vm-hero__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.vm-hero__dot--active {
  background: var(--vm-orange);
}

.vm-hero__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--vm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.vm-hero__title-highlight {
  color: var(--vm-orange);
}

.vm-hero__badge {
  display: inline-block;
  background: var(--vm-orange);
  color: var(--vm-white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  font-style: italic;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.35);
}

.vm-hero__buttons {
  display: flex;
  gap: 12px;
}

.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--vm-font);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.vm-btn:active {
  transform: scale(0.98);
}

.vm-btn--orange {
  background: var(--vm-orange);
  color: var(--vm-white);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.vm-btn--orange:hover {
  background: #e55f00;
}

.vm-btn--white {
  background: var(--vm-white);
  color: var(--vm-blue);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vm-btn--white:hover {
  background: #f1f5f9;
}

.vm-btn--sm {
  font-size: 12px;
  padding: 8px 16px;
}

.vm-promo-banner__percent {
  font-size: 18px;
  vertical-align: super;
}

.vm-promo-banner__btn-wrap {
  margin-top: 16px;
}

/* ============================================================
   USP BAR
   ============================================================ */
.vm-usp-bar {
  background: var(--vm-white);
  border-top: 1px solid var(--vm-border);
  border-bottom: 1px solid var(--vm-border);
}

.vm-usp-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: fit-content;
  margin: 0 auto;
}

.vm-usp-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.vm-usp-bar__item + .vm-usp-bar__item {
  border-left: 1px solid var(--vm-border);
}

.vm-usp-bar__icon {
  width: 20px;
  height: 20px;
  color: var(--vm-orange);
  flex-shrink: 0;
}

.vm-usp-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--vm-blue);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.vm-section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--vm-blue);
  margin-bottom: 24px;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.vm-categories {
  padding: 40px 0;
}

.vm-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vm-category-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius);
  overflow: hidden;
  border: 1px solid var(--vm-border);
  transition: box-shadow 0.2s;
}

.vm-category-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vm-category-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.vm-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.vm-category-card:hover .vm-category-card__image img {
  transform: scale(1.05);
}

.vm-category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
}

.vm-category-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--vm-blue);
}

.vm-category-card__arrow {
  width: 16px;
  height: 16px;
  color: var(--vm-orange);
  flex-shrink: 0;
}

/* ==================== BESTSELLERS ==================== */
.vm-bestsellers {
  padding: 40px 0;
  border-top: 1px solid var(--vm-border);
  background: var(--vm-light-bg);
}

.vm-bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vm-product-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--vm-border);
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.vm-product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vm-product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: #f8fafc;
  overflow: hidden;
}

.vm-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.vm-product-card:hover .vm-product-card__image img {
  transform: scale(1.05);
}

.vm-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--vm-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.vm-product-card__info {
  padding: 12px;
}

.vm-product-card__category {
  font-size: 12px;
  color: #94a3b8;
  margin: 0 0 2px;
}

.vm-product-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--vm-blue);
  margin: 0 0 8px;
  line-height: 1.3;
}

.vm-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-product-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--vm-orange);
}

.vm-product-card__cart-btn {
  width: 32px;
  height: 32px;
  background: var(--vm-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ============================================================
   STICKY BANNER
   ============================================================ */
.vm-sticky-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.vm-sticky-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vm-sticky-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 42, 74, 0.6);
}

.vm-sticky-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.vm-sticky-banner__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.vm-sticky-banner__highlight {
  color: var(--vm-orange);
}

.vm-sticky-banner__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 0;
  max-width: 520px;
}

@media (min-width: 769px) {
  .vm-sticky-banner {
    height: 400px;
  }

  .vm-sticky-banner__title {
    font-size: 40px;
  }

  .vm-sticky-banner__subtitle {
    font-size: 16px;
  }
}

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.vm-promos {
  padding-bottom: 40px;
}

.vm-promos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.vm-promo-banner {
  position: relative;
  border-radius: var(--vm-radius);
  overflow: hidden;
  height: 224px;
  background: var(--vm-blue);
}

.vm-promo-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 0.5s;
}

.vm-promo-banner:hover .vm-promo-banner__image {
  transform: scale(1.05);
}

.vm-promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,42,74,0.9), rgba(11,42,74,0.4));
}

.vm-promo-banner__content {
  position: relative;
  z-index: 10;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.vm-promo-banner__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--vm-white);
  line-height: 1;
}

.vm-promo-banner__title--sm {
  font-size: 24px;
  line-height: 1.2;
}

.vm-promo-banner__title-highlight {
  color: var(--vm-orange);
}

.vm-promo-banner__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  margin-bottom: 16px;
}

.vm-promo-banner__subtitle--lg {
  font-size: 20px;
  font-weight: 800;
  color: var(--vm-white);
  margin-bottom: 0;
}

/* ============================================================
   WAAROM / USP TILES
   ============================================================ */
.vm-waarom {
  padding: 40px 0;
  border-top: 1px solid var(--vm-border);
  background: var(--vm-white);
}

.vm-waarom .vm-section-title {
  text-align: center;
  margin-bottom: 32px;
}

.vm-waarom__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vm-waarom-tile {
  background: var(--vm-gray);
  border-radius: var(--vm-radius);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vm-waarom-tile__icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(11, 42, 74, 0.1);
  border-radius: var(--vm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.vm-waarom-tile__icon {
  width: 24px;
  height: 24px;
  color: var(--vm-orange);
}

.vm-waarom-tile__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--vm-blue);
  margin-bottom: 4px;
}

.vm-waarom-tile__desc {
  font-size: 12px;
  color: var(--vm-text-muted);
  line-height: 1.6;
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.vm-clients {
  padding: 32px 0;
  border-top: 1px solid var(--vm-border);
  background: var(--vm-white);
}

.vm-clients .vm-section-title {
  font-size: 18px;
}

.vm-clients__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vm-client-logo {
  background: var(--vm-gray);
  border-radius: var(--vm-radius);
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--vm-border);
}

.vm-client-logo__img {
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.vm-client-logo:hover .vm-client-logo__img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================================
   CTA BAR
   ============================================================ */
.vm-cta {
  background: var(--vm-blue);
  padding: 40px 16px;
}

.vm-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vm-cta__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--vm-white);
}

.vm-cta__title-highlight {
  color: var(--vm-orange);
}

.vm-cta__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.vm-cta__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vm-footer {
  background: var(--vm-blue);
  color: var(--vm-white);
}

.vm-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.vm-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.vm-footer__brand-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.vm-footer__brand-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.vm-footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--vm-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.vm-footer__list {
  list-style: none;
}

.vm-footer__list li {
  margin-bottom: 8px;
}

.vm-footer__list a {
  font-size: 14px;
  color: #cbd5e1;
  transition: color 0.2s;
}

.vm-footer__list a:hover {
  color: var(--vm-white);
}

.vm-footer__contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #cbd5e1;
}

.vm-footer__contact-icon {
  width: 16px;
  height: 16px;
  color: var(--vm-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Payment icons */
.vm-footer__payments {
  margin-top: 24px;
}

.vm-footer__payments-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--vm-text-light);
  margin-bottom: 8px;
}

.vm-footer__payments-icons {
  display: flex;
  gap: 8px;
}

.vm-footer__payment-icon {
  width: 40px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--vm-white);
}

/* Footer bottom */
.vm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.vm-footer__copyright {
  font-size: 12px;
  color: var(--vm-text-light);
}

/* ============================================================
   SVG ICON DEFAULTS
   ============================================================ */
.vm-icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   RESPONSIVE â€” Tablet (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Topbar */
  .vm-topbar {
    display: none;
  }

  /* Header */
  .vm-header__hamburger {
    display: flex;
  }

  .vm-header__search {
    display: none;
  }

  .vm-header__mobile-search {
    display: block;
  }

  .vm-header__phone-btn {
    display: none;
  }

  .vm-header__logo img {
    height: 40px;
  }

  /* Nav */
  .vm-nav__links {
    display: none;
  }

  .vm-megamenu__toggle-text {
    display: none;
  }

  /* Hero */
  .vm-hero__title {
    font-size: 28px;
  }

  .vm-hero__badge {
    font-size: 12px;
  }

  .vm-hero__content {
    padding: 64px 16px;
  }

  .vm-hero__buttons {
    flex-direction: column;
  }

  /* Categories */
  .vm-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Promos */
  .vm-promos__grid {
    grid-template-columns: 1fr;
  }

  .vm-promo-banner {
    height: 192px;
  }

  .vm-promo-banner__content {
    padding: 24px;
  }

  .vm-promo-banner__title {
    font-size: 28px;
  }

  .vm-promo-banner__title--sm {
    font-size: 20px;
  }

  /* Waarom */
  .vm-waarom__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bestsellers */
  .vm-bestsellers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Clients */
  .vm-clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* USP Bar */
  .vm-usp-bar__grid {
    flex-wrap: wrap;
  }

  .vm-usp-bar__item + .vm-usp-bar__item {
    border-left: none;
    border-top: 1px solid var(--vm-border);
  }

  /* CTA */
  .vm-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .vm-cta__title {
    font-size: 24px;
  }

  /* Footer */
  .vm-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE â€” Mobile small (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .vm-hero__title {
    font-size: 24px;
  }

  .vm-footer__grid {
    grid-template-columns: 1fr;
  }

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