/*
Theme Name: Vurenza
Theme URI: https://vurenza.nl
Author: Vurenza
Author URI: https://vurenza.nl
Description: Premium WordPress FSE theme for Vurenza — modern, trustworthy, engineered precision. Built with Full Site Editing and Gutenberg blocks.
Requires at least: 6.3
Tested up to: 6.6
Requires PHP: 8.0
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vurenza
Tags: full-site-editing, block-patterns, dark, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, theme-options
*/


/* ==========================================================================
   CRITICAL RESET — Prevents oversized SVG/icons (WooCommerce, navigation)
   ========================================================================== */

/* Hard cap on images */
img {
  max-width: 100%;
  height: auto;
}

/* SVGs only capped inside blocks, not globally */
.wp-block-group svg,
.wp-block-cover svg {
  max-width: 100%;
}

/* WooCommerce & block icons going full screen */
.wp-block-navigation svg,
.wp-block-navigation img,
.wc-block-mini-cart__button svg,
.wc-block-mini-cart svg,
.wp-block-woocommerce-mini-cart svg,
.woocommerce-mini-cart svg,
nav svg,
header svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

/* WooCommerce cart icon specifically */
.wc-block-mini-cart__button,
.wp-block-woocommerce-mini-cart-contents,
.woocommerce-cart-icon,
[class*="mini-cart"] svg,
[class*="cart-icon"] svg,
[class*="CartIcon"] svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
}

/* Navigation icons */
.wp-block-navigation-item__content svg,
.wp-block-navigation__submenu-icon svg {
  width: 12px !important;
  height: 12px !important;
}

/* General SVG safety net */
body svg:not(.vurenza-keep-size) {
  max-width: 100%;
  overflow: hidden;
}

/* Prevent any block from exceeding viewport */
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Colors */
  --vz-navy:         #000B3D;
  --vz-navy-hover:   #001A66;
  --vz-navy-deep:    #000720;
  --vz-light-blue:   #C2DCFF;
  --vz-light-grey:   #F5F7FA;
  --vz-white:        #FFFFFF;
  --vz-orange:       #FF7A00;
  --vz-orange-hover: #E66A00;
  --vz-text-primary: #1A1A1A;
  --vz-text-secondary: #6B7280;
  --vz-text-on-dark: #FFFFFF;

  /* Glass */
  --vz-glass-bg:     rgba(255, 255, 255, 0.06);
  --vz-glass-border: rgba(194, 220, 255, 0.18);
  --vz-glass-hover:  rgba(255, 255, 255, 0.10);

  /* Shadows */
  --vz-shadow-sm:    0 2px 8px rgba(0, 11, 61, 0.06);
  --vz-shadow-md:    0 4px 24px rgba(0, 11, 61, 0.10);
  --vz-shadow-lg:    0 16px 48px rgba(0, 11, 61, 0.14);
  --vz-shadow-glass: 0 8px 32px rgba(0, 11, 61, 0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  --vz-glow-blue:    0 0 40px rgba(194, 220, 255, 0.25);
  --vz-glow-orange:  0 0 32px rgba(255, 122, 0, 0.35);

  /* Spacing */
  --vz-section-pad:  clamp(4rem, 8vw, 8rem);
  --vz-card-radius:  16px;
  --vz-btn-radius:   6px;

  /* Transitions */
  --vz-transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --vz-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. BASE RESET & GLOBAL
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--vz-text-primary);
  background-color: var(--vz-white);
  overflow-x: hidden;
}

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

a {
  transition: var(--vz-transition);
}

/* ==========================================================================
   2. TYPOGRAPHY REFINEMENTS
   ========================================================================== */

.wp-block-heading {
  text-wrap: balance;
}

.vurenza-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vz-orange);
  margin-bottom: 1rem;
}

.vurenza-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vz-orange);
  flex-shrink: 0;
}

.vurenza-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vz-text-secondary);
}

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */

.vurenza-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.vurenza-section {
  padding-top: var(--vz-section-pad);
  padding-bottom: var(--vz-section-pad);
}

.vurenza-section--sm {
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

/* ==========================================================================
   4. GLASS MORPHISM COMPONENTS
   ========================================================================== */

.glass-card {
  background: var(--vz-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vz-glass-border);
  border-radius: var(--vz-card-radius);
  box-shadow: var(--vz-shadow-glass);
  transition: var(--vz-transition);
}

.glass-card:hover {
  background: var(--vz-glass-hover);
  border-color: rgba(194, 220, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--vz-shadow-glass), var(--vz-glow-blue);
}

.glass-card--light {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(194, 220, 255, 0.40);
  border-radius: var(--vz-card-radius);
  box-shadow: var(--vz-shadow-md);
}

.glass-card--light:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--vz-shadow-lg);
  transform: translateY(-3px);
}

/* Specs table glass variant */
.glass-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--vz-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vz-glass-border);
  border-radius: var(--vz-card-radius);
  overflow: hidden;
}

.glass-table th,
.glass-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--vz-glass-border);
  color: var(--vz-text-on-dark);
}

.glass-table th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vz-light-blue);
  background: rgba(194, 220, 255, 0.06);
}

.glass-table tr:last-child td {
  border-bottom: none;
}

.glass-table tr:hover td {
  background: rgba(194, 220, 255, 0.05);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.vurenza-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--vz-btn-radius);
  padding: 14px 28px;
  transition: var(--vz-transition);
  position: relative;
  overflow: hidden;
}

.vurenza-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--vz-transition);
}

.vurenza-btn:hover::before {
  background: rgba(255,255,255,0.06);
}

/* Primary button — Navy */
.vurenza-btn--primary,
.wp-block-button .wp-block-button__link {
  background: var(--vz-navy);
  color: var(--vz-white);
}

.vurenza-btn--primary:hover,
.wp-block-button .wp-block-button__link:hover {
  background: var(--vz-navy-hover);
  color: var(--vz-white);
}

/* Secondary button — Orange */
.vurenza-btn--secondary {
  background: var(--vz-orange);
  color: var(--vz-white);
}

.vurenza-btn--secondary:hover {
  background: var(--vz-orange-hover);
}

/* Glow button — animated glowing pre-order CTA */
.glow-button,
.wp-block-button.is-style-vurenza-glow .wp-block-button__link {
  background: var(--vz-orange) !important;
  color: var(--vz-white) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9375rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 18px 40px !important;
  box-shadow: var(--vz-glow-orange) !important;
  animation: glowPulse 2.5s ease-in-out infinite !important;
  transition: var(--vz-transition) !important;
}

.glow-button:hover,
.wp-block-button.is-style-vurenza-glow .wp-block-button__link:hover {
  background: var(--vz-orange-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 122, 0, 0.5), 0 8px 24px rgba(255, 122, 0, 0.3) !important;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 32px rgba(255, 122, 0, 0.35), 0 4px 16px rgba(255, 122, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 55px rgba(255, 122, 0, 0.55), 0 8px 32px rgba(255, 122, 0, 0.3);
  }
}

/* Ghost button */
.vurenza-btn--ghost {
  background: transparent;
  color: var(--vz-navy);
  border: 2px solid var(--vz-navy);
}

.vurenza-btn--ghost:hover {
  background: var(--vz-navy);
  color: var(--vz-white);
}

.vurenza-btn--ghost-light {
  background: transparent;
  color: var(--vz-white);
  border: 2px solid rgba(255,255,255,0.35);
}

.vurenza-btn--ghost-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.60);
}

/* ==========================================================================
   6. GRID OVERLAY
   ========================================================================== */

.vurenza-grid-overlay {
  position: relative;
}

.vurenza-grid-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 220, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 220, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.vurenza-grid-overlay > * {
  position: relative;
  z-index: 1;
}

/* Light grid for light backgrounds */
.vurenza-grid-overlay--light::before {
  background-image:
    linear-gradient(rgba(0, 11, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 11, 61, 0.04) 1px, transparent 1px);
}

/* ==========================================================================
   7. HEADER
   ========================================================================== */

.vurenza-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000B3D !important;
  width: 100%;
  transition: var(--vz-transition-slow);
}

/* Force navy on ALL wrappers WordPress adds around the header */
.vurenza-header,
.vurenza-header > *,
.vurenza-header > * > *,
header.vurenza-header,
.wp-block-template-part header,
.wp-site-blocks header {
  background: #000B3D !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.vurenza-header--transparent {
  background: transparent;
}

.vurenza-header--scrolled {
  background: rgba(0, 11, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vz-glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.vurenza-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 72px;
}

/* All nested groups in header must be transparent and not add height */
.vurenza-header .wp-block-group {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.vurenza-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--vz-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vurenza-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--vz-light-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vurenza-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vurenza-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--vz-transition);
  position: relative;
}

.vurenza-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vz-orange);
  transform: scaleX(0);
  transition: var(--vz-transition);
}

.vurenza-nav a:hover {
  color: var(--vz-white);
}

.vurenza-nav a:hover::after,
.vurenza-nav a.current-menu-item::after {
  transform: scaleX(1);
}

.vurenza-nav a.current-menu-item {
  color: var(--vz-white);
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.vurenza-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--vz-navy);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.vurenza-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--vz-white));
  pointer-events: none;
  z-index: 2;
}

.vurenza-hero--dark::after {
  background: linear-gradient(to bottom, transparent, var(--vz-navy));
}

.vurenza-hero__glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194, 220, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.vurenza-hero__glow-2 {
  position: absolute;
  bottom: 30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.vurenza-hero__content {
  position: relative;
  z-index: 1;
}

.vurenza-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.25);
  color: #FFA040;
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.vurenza-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--vz-orange);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.vurenza-hero__title {
  color: var(--vz-white) !important;
  margin-bottom: 1.5rem;
}

.vurenza-hero__title em {
  font-style: normal;
  color: var(--vz-light-blue);
}

.vurenza-hero__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.vurenza-hero__cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.vurenza-hero__cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

/* Floating product card */
.vurenza-product-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194, 220, 255, 0.20);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.40), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.vurenza-product-card__image {
  background: rgba(194, 220, 255, 0.08);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.vurenza-product-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--vz-white);
  margin-bottom: 0.25rem;
}

.vurenza-product-card__tagline {
  font-size: 0.8125rem;
  color: var(--vz-light-blue);
  margin-bottom: 1rem;
  opacity: 0.75;
}

.vurenza-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vurenza-product-card__price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--vz-white);
}

.vurenza-product-card__price-original {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.40);
  text-decoration: line-through;
}

.vurenza-product-card__discount {
  background: rgba(255, 122, 0, 0.20);
  color: #FFA040;
  border-radius: 4px;
  padding: 2px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}

.vurenza-product-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--vz-orange);
  color: var(--vz-white);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--vz-glow-orange);
}

/* ==========================================================================
   9. TRUST BAR / FEATURE LIST
   ========================================================================== */

.vurenza-trustbar {
  background: var(--vz-light-grey);
  border-top: 1px solid rgba(194, 220, 255, 0.30);
  border-bottom: 1px solid rgba(194, 220, 255, 0.30);
}

.vurenza-trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 2rem;
}

.vurenza-trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--vz-navy);
}

.vurenza-trustbar__check {
  width: 20px;
  height: 20px;
  background: var(--vz-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vurenza-trustbar__check svg {
  width: 10px;
  height: 10px;
}

/* Dark trust bar (for footer use) */
.vurenza-trustbar--dark {
  background: rgba(194, 220, 255, 0.05);
  border-color: var(--vz-glass-border);
}

.vurenza-trustbar--dark .vurenza-trustbar__item {
  color: rgba(255,255,255,0.80);
}

.vurenza-trustbar--dark .vurenza-trustbar__check {
  background: var(--vz-orange);
}

/* ==========================================================================
   10. PRODUCT CARDS / SHOP GRID
   ========================================================================== */

.vurenza-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vurenza-product-tile {
  background: var(--vz-white);
  border: 1px solid rgba(0, 11, 61, 0.08);
  border-radius: var(--vz-card-radius);
  overflow: hidden;
  transition: var(--vz-transition);
  cursor: pointer;
}

.vurenza-product-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--vz-shadow-lg);
  border-color: rgba(0, 11, 61, 0.15);
}

.vurenza-product-tile__image {
  background: var(--vz-light-grey);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.vurenza-product-tile__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--vz-orange);
  color: var(--vz-white);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vurenza-product-tile__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.vurenza-product-tile__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--vz-navy);
  margin-bottom: 0.375rem;
}

.vurenza-product-tile__desc {
  font-size: 0.875rem;
  color: var(--vz-text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.vurenza-product-tile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vurenza-product-tile__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vz-navy);
}

.vurenza-product-tile__price-note {
  font-size: 0.75rem;
  color: var(--vz-orange);
  font-weight: 600;
}

/* ==========================================================================
   11. TECH SPECS SECTION
   ========================================================================== */

.vurenza-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(194, 220, 255, 0.12);
  border: 1px solid rgba(194, 220, 255, 0.12);
  border-radius: var(--vz-card-radius);
  overflow: hidden;
}

.vurenza-spec-item {
  background: rgba(0, 7, 32, 0.90);
  padding: 2rem;
  position: relative;
  transition: var(--vz-transition);
}

.vurenza-spec-item:hover {
  background: rgba(194, 220, 255, 0.06);
}

.vurenza-spec-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(194, 220, 255, 0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.vurenza-spec-item__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--vz-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vurenza-spec-item__label {
  font-size: 0.8125rem;
  color: rgba(194, 220, 255, 0.65);
  font-weight: 500;
}

/* ==========================================================================
   12. SECTION PATTERNS
   ========================================================================== */

/* Split section */
.vurenza-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 768px) {
  .vurenza-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.vurenza-split--reversed .vurenza-split__media {
  order: -1;
}

@media (max-width: 768px) {
  .vurenza-split--reversed .vurenza-split__media {
    order: 0;
  }
}

.vurenza-split__media {
  position: relative;
}

.vurenza-split__image-frame {
  border-radius: var(--vz-card-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--vz-light-grey);
}

/* Glow border effect for founder image */
.vurenza-glow-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.vurenza-glow-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--vz-light-blue), transparent, var(--vz-orange));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
  animation: glowBorder 4s ease-in-out infinite alternate;
}

@keyframes glowBorder {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

/* Pre-order banner */
.vurenza-preorder-banner {
  background: linear-gradient(135deg, var(--vz-navy) 0%, #001A66 50%, var(--vz-navy) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.vurenza-preorder-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 220, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 220, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.vurenza-preorder-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 122, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vurenza-preorder-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.vurenza-preorder-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--vz-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.vurenza-preorder-banner__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.vurenza-preorder-banner__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.01em;
}

/* Discount pill */
.vurenza-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.30);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFA040;
  margin-bottom: 1rem;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.vurenza-footer {
  background: var(--vz-navy);
  color: rgba(255,255,255,0.70);
  position: relative;
  overflow: hidden;
}

.vurenza-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 220, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 220, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.vurenza-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem clamp(1rem, 4vw, 2rem) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .vurenza-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

.vurenza-footer__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--vz-white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.vurenza-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.50);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.vurenza-footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vz-light-blue);
  margin-bottom: 1.25rem;
  opacity: 0.70;
}

.vurenza-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vurenza-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--vz-transition);
}

.vurenza-footer__links a:hover {
  color: var(--vz-white);
  padding-left: 4px;
}

.vurenza-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(194, 220, 255, 0.10);
  margin-top: 3rem;
}

.vurenza-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.vurenza-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.vurenza-footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: var(--vz-transition);
}

.vurenza-footer__legal a:hover {
  color: rgba(255,255,255,0.70);
}

/* Dutch flag accent */
.vurenza-nl-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.vurenza-nl-flag__stripes {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vurenza-nl-flag__stripe {
  width: 20px;
  height: 3px;
  border-radius: 1px;
}

.vurenza-nl-flag__stripe--red   { background: #AE1C28; }
.vurenza-nl-flag__stripe--white { background: rgba(255,255,255,0.80); }
.vurenza-nl-flag__stripe--blue  { background: #21468B; }

/* ==========================================================================
   14. ABOUT PAGE COMPONENTS
   ========================================================================== */

.vurenza-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 11, 61, 0.08);
  border-radius: var(--vz-card-radius);
  overflow: hidden;
  margin: 3rem 0;
}

@media (max-width: 600px) {
  .vurenza-stat-row {
    grid-template-columns: 1fr;
  }
}

.vurenza-stat-item {
  background: var(--vz-white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.vurenza-stat-item__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--vz-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.vurenza-stat-item__label {
  font-size: 0.875rem;
  color: var(--vz-text-secondary);
  font-weight: 500;
}

/* Timeline for founders story */
.vurenza-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.vurenza-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--vz-navy), var(--vz-light-blue));
  border-radius: 2px;
}

.vurenza-timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
}

.vurenza-timeline__item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--vz-orange);
  border-radius: 50%;
  border: 2px solid var(--vz-white);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.20);
  transform: translateX(-4px);
}

.vurenza-timeline__year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vz-orange);
  margin-bottom: 0.25rem;
}

.vurenza-timeline__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--vz-navy);
  margin-bottom: 0.5rem;
}

.vurenza-timeline__text {
  font-size: 0.9375rem;
  color: var(--vz-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   15. ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Fade in on scroll */
.vurenza-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.vurenza-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vurenza-reveal-delay-1 { transition-delay: 0.1s; }
.vurenza-reveal-delay-2 { transition-delay: 0.2s; }
.vurenza-reveal-delay-3 { transition-delay: 0.3s; }
.vurenza-reveal-delay-4 { transition-delay: 0.4s; }

/* Shimmer for loading placeholders */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.vurenza-shimmer {
  background: linear-gradient(90deg, #F5F7FA 25%, #E8EDF4 50%, #F5F7FA 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* ==========================================================================
   16. NAVIGATION MOBILE
   ========================================================================== */

.vurenza-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.vurenza-mobile-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--vz-white);
  border-radius: 2px;
  transition: var(--vz-transition);
}

@media (max-width: 768px) {
  .vurenza-mobile-toggle {
    display: flex;
  }

  .vurenza-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 11, 61, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid var(--vz-glass-border);
  }

  .vurenza-nav.is-open {
    display: flex;
  }

  .vurenza-nav li {
    border-bottom: 1px solid rgba(194, 220, 255, 0.08);
  }

  .vurenza-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .vurenza-nav a::after {
    display: none;
  }
}

/* ==========================================================================
   17. BLOCK OVERRIDES & UTILITIES
   ========================================================================== */

/* Ensure full-width sections have no gutters */
.wp-block-group.alignfull {
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

/* Cover block enhancements */
.wp-block-cover.vurenza-hero-cover {
  min-height: 100svh;
}

/* Columns block grid gap */
.wp-block-columns {
  gap: clamp(1.5rem, 3vw, 3rem);
}

/* Table styling */
.wp-block-table td,
.wp-block-table th {
  border-color: rgba(0, 11, 61, 0.10);
  padding: 0.875rem 1rem;
}

.wp-block-table thead {
  background: var(--vz-navy);
  color: var(--vz-white);
}

/* Quote styling */
.wp-block-quote {
  border-left: 3px solid var(--vz-orange);
  padding-left: 1.5rem;
  margin-left: 0;
}

.wp-block-quote p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--vz-navy);
}

/* Separator */
.wp-block-separator {
  border: none;
  border-top: 1px solid rgba(0, 11, 61, 0.10);
  max-width: none;
}

/* ==========================================================================
   18. PRINT
   ========================================================================== */

@media print {
  .vurenza-header,
  .vurenza-footer,
  .glow-button { display: none; }
}




/* ==========================================================================
   HEADER ICONS & NAVIGATION — clean comprehensive fix
   ========================================================================== */

/* All SVG icons in header: white, fixed size */
#vz-header svg {
  color: #FFFFFF !important;
  fill: none !important;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0;
}

/* Cart & account buttons */
.vurenza-header .wc-block-mini-cart__button,
.vurenza-header .wp-block-woocommerce-customer-account a {
  color: #FFFFFF !important;
  background: transparent !important;
  border: none !important;
  padding: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  font-size: 0 !important; /* hide any text, show only icon */
}

/* Cart count badge — orange dot */
.vurenza-header .wc-block-mini-cart__quantity-badge {
  background: #FF7A00 !important;
  color: #FFFFFF !important;
  font-size: 10px !important;
  min-width: 16px !important;
  height: 16px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
}

/* Navigation links */
.vurenza-header .wp-block-navigation a,
.vurenza-header .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.80) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.vurenza-header .wp-block-navigation a:hover {
  color: #FFFFFF !important;
}

/* Site title */
.vurenza-header .wp-block-site-title,
.vurenza-header .wp-block-site-title a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  letter-spacing: -0.02em !important;
}

/* Navigation submenu arrow icon — smaller */
.vurenza-header .wp-block-navigation__submenu-icon svg {
  width: 12px !important;
  height: 12px !important;
}

/* ==========================================================================
   WOOCOMMERCE PRODUCT GRID
   ========================================================================== */

.vurenza-woo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

@media (max-width: 900px) {
  .vurenza-woo-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .vurenza-woo-grid { grid-template-columns: 1fr !important; }
}

/* Product card */
.vurenza-woo-grid li.product,
.wc-block-grid__product {
  background: #FFFFFF;
  border: 1px solid rgba(0,11,61,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex !important;
  flex-direction: column !important;
}

.vurenza-woo-grid li.product:hover,
.wc-block-grid__product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,11,61,0.12);
  border-color: rgba(0,11,61,0.15);
}

/* Product image */
.vurenza-woo-grid li.product .woocommerce-loop-product__link img,
.vurenza-woo-grid .wp-block-woocommerce-product-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Product image placeholder */
.vurenza-woo-grid li.product .woocommerce-loop-product__link .wp-post-image,
.vurenza-woo-grid .wc-block-grid__product-image {
  background: #F5F7FA;
  aspect-ratio: 4/3;
}

/* Product body */
.vurenza-woo-grid li.product .woocommerce-loop-product__link,
.vurenza-woo-grid .wc-block-grid__product-link {
  padding: 1.25rem 1.5rem 0;
  display: block;
  text-decoration: none;
}

/* Product title */
.vurenza-woo-grid li.product .woocommerce-loop-product__title,
.vurenza-woo-grid .wc-block-grid__product-title,
.vurenza-woo-grid h3,
.vurenza-woo-grid h2 {
  font-family: Montserrat, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #000B3D !important;
  margin-bottom: 0.375rem !important;
  text-decoration: none !important;
}

/* Product price */
.vurenza-woo-grid li.product .price,
.vurenza-woo-grid .wc-block-grid__product-price,
.vurenza-woo-grid .price {
  font-family: Montserrat, sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  color: #000B3D !important;
  padding: 0 1.5rem 1rem !important;
  display: block !important;
}

.vurenza-woo-grid .price del {
  color: #9CA3AF !important;
  font-weight: 400 !important;
  font-size: 0.9rem !important;
}

.vurenza-woo-grid .price ins {
  text-decoration: none !important;
  color: #000B3D !important;
}

/* Add to cart button */
.vurenza-woo-grid li.product .button,
.vurenza-woo-grid .wc-block-grid__product-add-to-cart .wp-block-button__link,
.vurenza-woo-grid a.button,
.vurenza-woo-grid .add_to_cart_button {
  display: block !important;
  width: calc(100% - 3rem) !important;
  margin: 0 1.5rem 1.5rem !important;
  background: #000B3D !important;
  color: #FFFFFF !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  padding: 12px !important;
  border-radius: 6px !important;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.vurenza-woo-grid li.product .button:hover,
.vurenza-woo-grid a.button:hover {
  background: #001A66 !important;
}

/* Sale badge */
.vurenza-woo-grid .onsale {
  background: #FF7A00 !important;
  color: #FFFFFF !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  border-radius: 4px !important;
  padding: 3px 10px !important;
}

/* WooCommerce shop page layout overrides */
.woocommerce-page .woocommerce,
body.post-type-archive-product .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  ul.products { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   WOOCOMMERCE SINGLE PRODUCT IMAGE
   ========================================================================== */

/* Main product image on single product page */
.vurenza-product-main-image img,
.woocommerce-product-gallery__image img,
.wp-block-woocommerce-product-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  display: block !important;
}

.woocommerce-product-gallery {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* Add to cart button on product page */
.single_add_to_cart_button,
.woocommerce div.product form.cart .button {
  background: #FF7A00 !important;
  color: #FFFFFF !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 16px 36px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.single_add_to_cart_button:hover {
  background: #E66A00 !important;
}

/* Quantity input */
.woocommerce div.product form.cart .qty {
  border: 2px solid rgba(194,220,255,0.20) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #FFFFFF !important;
  border-radius: 6px !important;
  padding: 10px !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 600 !important;
  width: 70px !important;
}

/* Product price on single page */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #FFFFFF !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 800 !important;
  font-size: 2rem !important;
}

/* WooCommerce product gallery thumbnails */
.woocommerce-product-gallery__wrapper {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* Fix shop page product images */
.vurenza-woo-grid li.product img,
ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}

.vurenza-woo-grid li.product a.woocommerce-loop-product__link,
ul.products li.product a.woocommerce-loop-product__link {
  padding: 0 !important;
}

.vurenza-woo-grid li.product .woocommerce-loop-product__title,
ul.products li.product h2 {
  padding: 1rem 1.5rem 0.25rem !important;
}

.vurenza-woo-grid li.product .price,
ul.products li.product .price {
  padding: 0 1.5rem 1rem !important;
}

/* ==========================================================================
   MOBILE OVERFLOW FIX — geen witte ruimte rechts
   ========================================================================== */

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

.wp-site-blocks,
.wp-block-group,
.wp-block-columns,
.wp-block-column {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Hero section overflow fix */
.vz-hero-wrap {
  overflow-x: hidden !important;
}

/* Fix any section wider than viewport */
section, main, header, footer, div {
  max-width: 100vw;
}

@media (max-width: 820px) {
  /* Ensure nothing overflows on mobile */
  * {
    max-width: 100% !important;
  }
  
  /* But don't break fixed elements */
  #vz-header,
  #vz-nav {
    max-width: 100vw !important;
  }
  
  /* Hero text should wrap properly */
  .vz-hero-wrap {
    grid-template-columns: 1fr !important;
  }
  
  h1, h2, h3 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}
