/*
Theme Name: Vypers Theme
Theme URI: https://vypersvapes.com
Description: V8 — Leica-inspired, fully editable WordPress blocks
Version: 8.1
Author: Invape
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: vypers
*/

/* ============================
   RESET & BASE
   ============================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.375;
  color: #222222;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================
   TYPOGRAPHY — Leica exact
   ============================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #222222;
}

h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(36px, 3.5vw, 46px);
  line-height: 1.13;
  font-weight: 400;
}

h4 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 1.375;
}

.text-xs {
  font-size: 12px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.text-sm {
  font-size: 14px;
}

/* ============================
   CONTAINERS — Leica exact (1440 + 88px padding)
   ============================ */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container { padding: 0 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ============================
   SECTIONS — Leica spacing
   ============================ */

section,
.vyp-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  section,
  .vyp-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}


/* ============================
   HEADER — Leica desktop replica exact
   ============================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  height: 77px;
  padding: 0 56px;
  gap: 8px;
}

/* LEFT — Nav links (desktop) */
.header-left {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0;
}

.header-left a {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
  text-decoration: none;
  padding: 24px 0;
  margin-right: 32px;
  line-height: 28px;
  transition: font-weight 0.2s ease, color 0.3s ease;
}

.header-left a:last-child {
  margin-right: 0;
}

.header-left a:hover {
  font-weight: 600;
}

/* CENTER — Logo */
.header-center {
  flex-shrink: 0;
}

.header-center a {
  display: block;
  margin: 12px 0;
}

.header-logo-img {
  width: 53px;
  height: 53px;
  max-width: 56px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease-in-out;
  object-fit: contain;
}

/* RIGHT — Icons */
.header-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 56px;
  padding: 16px 8px;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.2s ease;
  text-decoration: none;
}

.header-icon-btn svg {
  stroke: currentColor;
}

.header-icon-btn:hover {
  color: #222222;
  background-color: rgba(229, 229, 229, 0.5);
}

/* ---- Hover state (at top) — white bg, dark text ---- */
.site-header:not(.site-header--scrolled):hover {
  background-color: #000000;
  color: #FFFFFF;
}

.site-header:not(.site-header--scrolled):hover .header-left a {
  color: #222222;
}

.site-header:not(.site-header--scrolled):hover .header-icon-btn {
  color: #222222;
}

.site-header:not(.site-header--scrolled):hover .header-logo-img {
  filter: brightness(0);
}

/* ---- Scrolled state ---- */
.site-header--scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 1px 0 #E7E7E7;
}

.site-header--scrolled .header-left a {
  color: #222222;
}

.site-header--scrolled .header-icon-btn {
  color: #222222;
}

.site-header--scrolled .header-logo-img {
  filter: brightness(0);
}

/* ---- Mobile hamburger (hidden on desktop) ---- */
.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #FFFFFF;
  position: absolute;
  left: 4px;
  transition: all 0.3s ease;
}

.header-menu-toggle span:nth-child(1) { top: 8px; }
.header-menu-toggle span:nth-child(2) { top: 15px; }
.header-menu-toggle span:nth-child(3) { top: 22px; }

.site-header--scrolled .header-menu-toggle span,
.site-header:not(.site-header--scrolled):hover .header-menu-toggle span {
  background: #222222;
}

/* ---- Mobile menu overlay ---- */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 24px;
}

.mobile-menu-content a {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #222222;
  text-decoration: none;
}

.mobile-menu-content a:hover {
  font-weight: 600;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .site-header nav {
    padding: 0 40px;
  }
  .header-left a {
    font-size: 16px;
    margin-right: 24px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .site-header {
    height: 72px;
  }
  .site-header nav {
    padding: 0 20px;
    height: 72px;
  }
  .header-left {
    display: none;
  }
  .header-left.open {
    display: flex;
  }
  .header-menu-toggle {
    display: block;
    order: -1;
  }
  .header-logo-img {
    width: 40px;
    height: 40px;
  }
  .header-icon-btn {
    width: 36px;
    height: 48px;
    padding: 12px 4px;
  }
}


/* ============================
   FLYOUTS — Account & Cart (Leica style)
   ============================ */

.header-flyout-wrap {
  position: relative;
}

.header-flyout {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 360px;
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  z-index: 1001;
  padding: 32px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.header-flyout.flyout-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.flyout-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flyout-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  line-height: 1.3;
}

.flyout-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 8px;
}

.flyout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  background: #222222;
  color: #FFFFFF;
  border: none;
  margin-top: 4px;
}

.flyout-btn:hover {
  opacity: 0.85;
}

.flyout-btn-outline {
  background: #FFFFFF;
  color: #222222;
  border: 1px solid #222222;
}

.flyout-btn-outline:hover {
  background: #f5f5f5;
  opacity: 1;
}

/* Cart flyout items */
.flyout-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e7e7e7;
}

.flyout-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.flyout-cart-item-info {
  flex: 1;
}

.flyout-cart-item-name {
  font-size: 14px;
  font-weight: 400;
  color: #222;
}

.flyout-cart-item-price {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin-top: 4px;
}

.flyout-cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  padding: 16px 0 8px;
  border-top: 1px solid #e7e7e7;
  margin-top: 8px;
}

/* Mobile: no flyouts */
@media (max-width: 767px) {
  .header-flyout {
    display: none !important;
  }
}

/* ============================
   BUTTONS — Leica pill style
   ============================ */

.wp-block-button__link {
  border-radius: 1.5rem !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 28px !important;
  line-height: 1.4 !important;
  background: #222 !important;
  color: #fff !important;
  border: none !important;
  transition: background 0.3s ease-in-out !important;
  font-family: 'Outfit', sans-serif !important;
  cursor: pointer;
}

.wp-block-button__link:hover {
  background: #D4A843 !important;
  color: #fff !important;
}

/* Outline variant */
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1px solid #222 !important;
  color: #222 !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #222 !important;
  color: #fff !important;
}

/* White button on dark backgrounds — Leica thin pill outline */
.btn-white .wp-block-button__link,
.wp-block-cover .wp-block-button__link {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 28px !important;
}

.btn-white .wp-block-button__link:hover,
.wp-block-cover .wp-block-button__link:hover {
  background: #111111 !important;
  color: #222222 !important;
}

/* CTA link style (Leica hover weight shift) */
.cta-link {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  transition: font-weight 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cta-link:hover {
  font-weight: 600;
}

.cta-link::after {
  content: " >";
}

.cta-link--light {
  color: #FFFFFF;
}

.cta-link--light:hover {
  color: #FFFFFF;
}

/* ============================
   HERO — wp:cover with Leica layout
   ============================ */

.wp-block-cover.vypers-hero {
  position: relative;
  width: 100%;
  min-height: 100dvh !important;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #000000;
}

.wp-block-cover.vypers-hero .wp-block-cover__background {
  background: radial-gradient(56% 88% at 14% 84%, rgba(34,34,34,0.7) 0%, rgba(34,34,34,0) 100%) !important;
}

.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  padding: 0 20px 100px;
  max-width: 720px;
  width: 100%;
}

@media (min-width: 768px) {
  .wp-block-cover.vypers-hero .wp-block-cover__inner-container {
    padding: 0 88px 80px;
  }
}

.wp-block-cover.vypers-hero .hero-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 16px;
}

.wp-block-cover.vypers-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.wp-block-cover.vypers-hero .hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 480px;
}

/* ============================
   HERO TABS (wp:buttons styled as tab bar)
   ============================ */

.hero-tabs-bar {
  display: flex !important;
  justify-content: center;
  border-top: none;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: -53px !important;
  position: relative;
  z-index: 10;
  gap: 0 !important;
  padding: 0 !important;
}

.hero-tabs-bar .wp-block-button {
  margin: 0 !important;
}

.hero-tabs-bar .wp-block-button__link {
  background: transparent !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 16px 40px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.03em;
  border: none !important;
  border-left: none !important;
}

.hero-tabs-bar .wp-block-button:first-child .wp-block-button__link {
  border-left: none !important;
}

.hero-tabs-bar .wp-block-button__link:hover {
  color: #FFFFFF !important;
  background: transparent !important;
}

@media (max-width: 767px) {
  .hero-tabs-bar .wp-block-button__link {
    padding: 14px 24px !important;
    font-size: 13px !important;
  }
}

/* ============================
   EDITORIAL DUO — wp:columns (Leica 2-up cards)
   ============================ */

.editorial-duo {
  background-color: #000000;
  color: #FFFFFF;
  gap: 0 !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .editorial-duo { padding: 0 80px !important; }
}

@media (max-width: 767px) {
  .editorial-duo { padding: 0 !important; }
}

.editorial-duo > .wp-block-column {
  margin: 0 !important;
  padding: 0;
  flex-basis: 50% !important;
  flex-grow: 0 !important;
}

/* Dark card */
.editorial-card-dark {
  background-color: #1A1A1A !important;
  color: #FFFFFF;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px !important;
  padding: 48px 40px !important;
}

.editorial-card-dark .card-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 16px;
}

.editorial-card-dark h3 {
  color: #FFFFFF !important;
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 16px;
}

.editorial-card-dark .card-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  max-width: 400px;
}

/* Image card (wp:cover) */
.editorial-card-cover {
  min-height: 520px !important;
}

.editorial-card-cover .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 48px 40px;
}

.editorial-card-cover h3 {
  color: #FFFFFF;
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 16px;
}

.editorial-card-cover .card-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
}

/* ============================
   PRODUCT CARDS — wp:columns (Leica "Produits phares" style)
   ============================ */

.products-section {
  padding: 100px 56px 80px !important;
  background: #111111;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .products-section { padding: 140px 56px 100px !important; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .products-section { padding: 140px 40px 100px !important; }
}

.products-header {
  padding: 0;
  max-width: none;
  margin: 0 0 72px !important;
  text-align: left;
}

.products-header h2 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) {
  .products-header { margin-bottom: 88px !important; text-align: left; }
}

.products-grid {
  border-top: none;
  border-bottom: none;
  gap: 0 !important;
  margin: 0 !important;
}

.products-grid > .wp-block-column {
  padding: 48px 40px;
  border-right: 1px solid #333333;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  min-height: 550px;
  background: #1a1a1a;
}

.products-grid > .wp-block-column:last-child {
  border-right: none;
}



.product-card-name {
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 32px !important;
  text-align: left;
}

.products-grid .wp-block-image {
  margin: 0 auto 40px;
  max-height: 437px;
  flex: 1;
  display: flex;
  align-items: center;
}

.products-grid .wp-block-image img {
  max-height: 437px;
  object-fit: contain;
  margin: 0 auto;
  width: auto;
}

/* Leica-style dual CTA row */
.product-card-ctas {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 80px;
  padding-top: 24px;
}

.product-card-ctas a {
  font-size: 19px;
  font-weight: 400;
  color: #222222;
  transition: font-weight 0.2s ease;
  white-space: nowrap;
}

.product-card-ctas a:hover {
  font-weight: 600;
}

.product-card-ctas a::after {
  content: " >";
}

/* Legacy single CTA fallback */
.product-card-cta {
  margin-top: auto;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.product-card-cta a {
  color: #222222;
  transition: font-weight 0.2s ease;
}

.product-card-cta a:hover {
  font-weight: 600;
}

.product-card-cta a::after {
  content: " >";
}

.product-coming {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 300;
  color: #828282;
}

@media (max-width: 781px) {
  .products-grid > .wp-block-column {
    padding: 40px 20px;
    border-right: none;
    border-bottom: 1px solid #000000;
  }
  .products-grid > .wp-block-column:last-child {
    border-bottom: none;
  }
}

/* ============================
   PRODUCT DETAILS — wp:columns (Leica detail style)
   ============================ */

.product-detail {
  padding: 80px 20px !important;
  background-color: #000000;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .product-detail { padding: 120px 56px !important; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .product-detail { padding: 120px 40px !important; }
}

.product-detail.has-border-top {
  border-top: 1px solid #333333;
}

.product-detail-cols {
  gap: 48px !important;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .product-detail-cols { gap: 80px !important; }
}

.product-detail-cols .wp-block-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

.product-name {
  font-size: clamp(36px, 3.5vw, 46px) !important;
  font-weight: 400 !important;
  line-height: 1.13;
  color: #FFFFFF;
}

.product-desc {
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  line-height: 1.6;
}

.product-price {
  font-size: 28px !important;
  font-weight: 400 !important;
  color: #222222;
}

/* Specs grid — wp:columns with 3 cols */
.specs-grid {
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  gap: 0 !important;
  margin: 0 !important;
}

.specs-grid > .wp-block-column {
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid #E7E7E7;
}

.specs-grid > .wp-block-column:last-child {
  border-right: none;
}

.spec-value {
  font-size: clamp(24px, 2vw, 28px) !important;
  font-weight: 400 !important;
  color: #FFFFFF;
  margin-bottom: 4px !important;
}

.spec-label {
  font-size: 12px !important;
  font-weight: 400;
  color: #828282;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* ============================
   BRAND SECTION
   ============================ */

.brand-section {
  background: #111111 !important;
  padding: 100px 20px !important;
  text-align: left;
  border-top: 1px solid #333333;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .brand-section { padding: 140px 56px !important; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .brand-section { padding: 140px 40px !important; }
}

.brand-section h2 {
  margin-bottom: 20px;
}

.brand-desc {
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  max-width: 640px;
  margin: 0 0 48px;
  line-height: 1.6;
}

.brand-section .wp-block-image {
  max-width: 960px;
  margin: 0 auto;
}

.brand-section .wp-block-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* ============================
   NEWSLETTER SECTION
   ============================ */

.newsletter-section {
  background-color: #222222 !important;
  padding: 100px 20px !important;
  text-align: center;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .newsletter-section { padding: 120px 56px !important; }
}

.newsletter-section h2 {
  margin-bottom: 16px;
}

.newsletter-desc {
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #222222;
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  border-radius: 1.5rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-input:focus { border-color: #222222; }
.newsletter-input::placeholder { color: #828282; }

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 1.5rem;
  height: 48px;
  padding: 0 2rem;
  background-color: #222222;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}

.newsletter-btn:hover { background-color: #D4A843; }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================
   FOOTER — Leica style
   ============================ */

.site-footer {
  background-color: #222222;
  color: #FFFFFF;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0 20px 60px;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    padding: 0 56px 60px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .footer-grid { padding: 0 40px 60px; }
}

.footer-brand-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.5;
}

.footer-col-title {
  font-size: 12px !important;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 20px !important;
}

.footer-link {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 2;
}

.footer-link a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-link a:hover { color: #FFFFFF; }

.footer-bottom {
  padding: 24px 20px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom { padding: 24px 56px; }
}

.footer-legal {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ============================
   ANIMATIONS
   ============================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   WP OVERRIDES — clean defaults
   ============================ */

.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
}

.wp-block-template-part {
  margin: 0 !important;
  padding: 0 !important;
}

.entry-content > * {
  margin: 0;
}

/* Leica-style global side margins — everything except hero banner */
@media (min-width: 768px) {
  .entry-content > *:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px;
    padding-right: 56px;
  }
  /* Reset for elements that already handle their own padding */
  .entry-content > * .products-section,
  .entry-content > * .product-detail,
  .entry-content > * .brand-section,
  .entry-content > * .newsletter-section,
  .entry-content > * .editorial-duo {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .entry-content > *:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 80px;
    padding-right: 80px;
  }
}

body .is-layout-constrained > * + * {
  margin-block-start: 0;
}

body .is-layout-flow > * + * {
  margin-block-start: 0;
}

.wp-block-group {
  margin: 0;
}

.wp-block-heading {
  margin: 0;
}

.wp-block-paragraph {
  margin: 0;
}

.wp-block-columns {
  margin-bottom: 0;
}

.wp-block-image {
  margin: 0;
}

.wp-block-image figcaption {
  display: none;
}

/* ============================
   GENERIC PAGE — inner pages (about, contact, faq)
   ============================ */

/* Page hero (wp:cover) */
.page-hero {
  min-height: 50vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .wp-block-cover__inner-container {
  text-align: center;
  padding: 120px 20px 60px;
}

.page-hero h1 {
  color: #FFFFFF;
}

.page-hero .page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 16px auto 0;
}

/* Content sections */
.page-section {
  padding: 80px 20px !important;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-section { padding: 120px 88px !important; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .page-section { padding: 120px 40px !important; }
}

.page-section-centered {
  text-align: center;
}

.page-text {
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  line-height: 1.6;
  max-width: 720px;
}

.page-section-centered .page-text {
  margin-left: auto;
  margin-right: auto;
}

/* Values 3-column */
.values-grid {
  gap: 48px !important;
  margin-top: 48px !important;
}

.values-grid > .wp-block-column {
  text-align: center;
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #222222;
  margin-bottom: 12px !important;
}

.value-text {
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  line-height: 1.6;
}

/* Contact info */
.contact-info {
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  line-height: 2;
}

.contact-info a {
  color: #222222;
  font-weight: 400;
}

.contact-info a:hover {
  color: #D4A843;
}

/* FAQ */
.faq-section {
  padding: 80px 20px !important;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-section { padding: 120px 20px !important; }
}

/* wp:details for FAQ accordion */
.wp-block-details {
  border-bottom: 1px solid #E7E7E7;
  padding: 24px 0;
}

.wp-block-details summary {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #222222;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.wp-block-details summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #828282;
  transition: transform 0.3s ease;
}

.wp-block-details[open] summary::after {
  content: "-";
}

.wp-block-details p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: #6C6C6C;
  line-height: 1.6;
}

/* ============================
   WOOCOMMERCE SHOP — Leica product grid
   ============================ */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #E7E7E7;
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

.woocommerce ul.products li.product {
  padding: 40px;
  border-right: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  margin: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  width: 100% !important;
}

.woocommerce ul.products li.product:nth-child(3n) {
  border-right: none;
}

@media (max-width: 768px) {
  .woocommerce ul.products li.product {
    border-right: none;
  }
}

.woocommerce ul.products li.product a img {
  margin: 0 auto 24px;
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222222;
  padding: 0;
  margin-bottom: 8px;
}

.woocommerce ul.products li.product .price {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 24px;
}

.woocommerce ul.products li.product .price del {
  color: #828282;
  font-weight: 300;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 400;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a.button {
  font-family: 'Outfit', sans-serif;
  font-size: 14px !important;
  font-weight: 500;
  background: #222222 !important;
  color: #FFFFFF !important;
  border-radius: 1.5rem !important;
  padding: 10px 28px !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: auto;
  display: inline-block !important;
  text-align: center;
  text-decoration: none;
  line-height: 1.4 !important;
  width: auto !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: #D4A843 !important;
  color: #FFFFFF !important;
}

/* WooCommerce shop page header spacing */
.woocommerce-products-header {
  padding: 60px 88px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .woocommerce-products-header { padding: 60px 40px 20px; }
}

@media (max-width: 768px) {
  .woocommerce-products-header { padding: 40px 20px 16px; }
}

.woocommerce-products-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 4vw, 54px) !important;
  font-weight: 400 !important;
  color: #222222;
}

/* Product grid container spacing */
.woocommerce ul.products {
  padding: 0 88px;
  max-width: 1440px;
  margin: 0 auto !important;
}

@media (max-width: 1024px) {
  .woocommerce ul.products { padding: 0 40px; }
}

@media (max-width: 768px) {
  .woocommerce ul.products { padding: 0 20px; }
}

/* WooCommerce single product */
.woocommerce div.product {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 88px 80px;
}

@media (max-width: 1024px) {
  .woocommerce div.product { padding: 100px 40px 60px; }
}

@media (max-width: 768px) {
  .woocommerce div.product { padding: 88px 20px 40px; }
}

.woocommerce div.product .product_title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 3.5vw, 46px);
  font-weight: 400;
  color: #222222;
}

.woocommerce div.product .price {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #222222;
}

.woocommerce div.product .single_add_to_cart_button {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: #222222;
  color: #FFFFFF;
  border-radius: 1.5rem;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.woocommerce div.product .single_add_to_cart_button:hover {
  background: #D4A843;
}

/* Shop page wrapper */
.shop-page {
  padding-top: 88px;
}

.shop-page-title {
  font-size: clamp(40px, 4vw, 54px) !important;
  font-weight: 400 !important;
  text-align: center;
  padding: 60px 20px 40px;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: 'Outfit', sans-serif;
  border-radius: 4px;
}

/* Star ratings */
.woocommerce .star-rating {
  color: #D4A843;
}

/* Sale badge */
.woocommerce span.onsale {
  background: #D4A843;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 1.5rem;
  padding: 4px 12px;
  min-width: auto;
  min-height: auto;
  line-height: 1.5;
}

/* ============================
   UTILITY
   ============================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.has-text-align-center {
  text-align: center;
}

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Light background sections */
.bg-light {
  background-color: #F5F5F5;
}

/* ============================
   RESPONSIVE — mobile stacking
   ============================ */

@media (max-width: 781px) {
  .editorial-duo {
    flex-wrap: nowrap !important;
    flex-direction: column !important;
  }

  .product-detail-cols {
    flex-direction: column !important;
  }

  .products-grid {
    flex-direction: column !important;
  }

  .specs-grid {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  .values-grid {
    flex-direction: column !important;
  }
}

/* Fix cover block alignment in editor */
.wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
}

/* Separator styling */
.wp-block-separator {
  border: none;
  border-top: 1px solid #E7E7E7;
  margin: 0;
}

/* ============================
   MOBILE PRODUCT IMAGE FIX
   ============================ */

@media (max-width: 781px) {
  .products-grid .wp-block-image img {
    max-height: 322px;
    width: 100%;
    object-fit: contain;
  }

  .product-detail-cols .wp-block-image img {
    aspect-ratio: auto;
  }
}

/* Footer logo sizing fix */
.site-footer .footer-logo-img {
  height: 28px;
  width: auto;
  max-width: 120px;
}

/* WooCommerce shop page — ensure product images show */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto 24px;
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination {
  padding: 40px 0;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 1.5rem;
  color: #222;
  background: #f5f5f5;
  border: none;
  text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #222;
  color: #fff;
}

/* WooCommerce breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #828282;
  padding: 24px 88px;
  max-width: 1440px;
  margin: 0 auto;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .woocommerce .woocommerce-breadcrumb { padding: 24px 40px; }
}

@media (max-width: 768px) {
  .woocommerce .woocommerce-breadcrumb { padding: 24px 20px; }
}

.woocommerce .woocommerce-breadcrumb a {
  color: #828282;
  transition: color 0.2s;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: #222;
}

/* WooCommerce ordering / result count */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #6C6C6C;
  padding: 0 88px;
  max-width: 1440px;
  margin: 0 auto 24px;
}

@media (max-width: 1024px) {
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering { padding: 0 40px; }
}

@media (max-width: 768px) {
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering { padding: 0 20px; }
}

.woocommerce .woocommerce-ordering select {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid #E7E7E7;
  border-radius: 1.5rem;
  background: #FFFFFF;
  color: #222;
  outline: none;
}

/* Editorial duo — equal height cards */
.editorial-duo {
  display: flex !important;
  align-items: stretch !important;
  min-height: 480px;
}

.editorial-duo > .wp-block-column {
  display: flex !important;
  flex-direction: column !important;
  min-height: 480px !important;
}

/* Dark card (left) — content at bottom */
.editorial-duo > .wp-block-column:first-child > .wp-block-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px !important;
  height: 100% !important;
}

/* Image card (right) — cover fills full height */
.editorial-duo > .wp-block-column:last-child .wp-block-cover {
  min-height: 480px !important;
  height: 100% !important;
}

.editorial-duo > .wp-block-column:last-child .wp-block-cover img {
  height: 100% !important;
  object-fit: cover !important;
}


.product-slide img {
  transition: transform 0.6s ease-in-out, filter 0.6s ease-in-out !important;
}



/* Product card title — bigger, more visible */
.product-slide h3,
.product-slide-name {
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  margin-bottom: 40px !important;
}

/* Product card subtitle/description */
.product-slide p,
.product-slide-desc {
  font-size: 14px !important;
  color: #6c6c6c !important;
  margin-bottom: 24px !important;
}

/* Product card CTAs — more visible */
.product-slide-ctas a,
.product-slide a[href] {
  font-size: 16px !important;
  color: #FFFFFF !important;
  font-weight: 400 !important;
  transition: font-weight 0.2s ease-in-out, color 0.2s ease-in-out !important;
}

.product-slide-ctas a:hover,
.product-slide a[href]:hover {
  font-weight: 600 !important;
}

/* Coming soon card text */
.product-slide:last-child p {
  font-size: 16px !important;
  color: #828282 !important;
  font-style: italic;
}

/* ═══ Product cards — EXACT Leica hover effect ═══ */
/* Container clips the zoom, image scales on parent hover */

.product-slide {
  overflow: hidden !important;
  cursor: pointer;
  position: relative;
}

/* Image container — must clip overflow */
.product-slide figure,
.product-slide .wp-block-image,
.product-slide > div:nth-child(2) {
  overflow: hidden !important;
}

/* Image — smooth scale transition */
.product-slide img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transform: scale(1);
  will-change: transform;
}

/* HOVER — Leica exact: scale(1.05) on image */
.product-slide:hover img {
  transform: scale(1.15) !important;
}

/* CTA links — underline appears on card hover */
.product-slide:hover .product-slide-ctas a,
.product-slide:hover a[href] {
  text-decoration: underline;
}

/* Entire card is clickable — wrap in link behavior */
.product-slide a {
  cursor: pointer;
}

/* Hero tabs — clickable + underline on hover like Leica */
.hero-tabs-bar .wp-block-button__link {
  cursor: pointer !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out !important;
  padding-bottom: 14px !important;
}

.hero-tabs-bar .wp-block-button__link:hover {
  border-bottom: 2px solid #ffffff !important;
  color: #ffffff !important;
}

/* ═══ PRODUCT GRID — Leica zoom hover (correct selectors) ═══ */

/* Each column card — clip overflow for zoom */
.products-grid > .wp-block-column {
  overflow: hidden !important;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

/* Image inside card — smooth zoom */
.products-grid > .wp-block-column figure {
  overflow: hidden !important;
}

.products-grid > .wp-block-column img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease-in-out !important;
  transform: scale(1) !important;
}

/* HOVER — zoom 1.05 + slight brightness boost */
.products-grid > .wp-block-column:hover img {
  transform: scale(1.15) !important;
  filter: brightness(1.06) !important;
}

/* Background change on hover */
.products-grid > .wp-block-column:hover {
  background-color: #ebebeb !important;
}

/* ============================
   V8.3 REFINEMENTS — Leica polish
   ============================ */

/* Hero — improve image loading (remove lazy for above-fold) */
.wp-block-cover.vypers-hero .wp-block-cover__image-background {
  transition: opacity 0.4s ease-in;
}

/* Product cards — improve loading appearance */
.products-grid .wp-block-image img {
  background: #f5f5f5;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-in !important;
}

/* Editorial duo — ensure minimum visual impact */
.editorial-card-dark {
  position: relative;
  overflow: hidden;
}

/* Brand section — Leica-style quote styling */
.brand-desc {
  font-style: italic;
  border-left: 2px solid #D4A843;
  padding-left: 24px;
}

/* Smooth page transitions */
.wp-site-blocks {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #D4A843;
  outline-offset: 2px;
}

/* Newsletter form — ensure proper display */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* Improve CTA visibility in product cards */
.product-card-ctas {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

/* Leica-style subtle section dividers */
.product-detail + .product-detail {
  border-top: 1px solid #E7E7E7;
}

/* Better scroll reveal timing */
.reveal {
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero label — Leica gold accent animation */
.hero-label {
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wp-block-cover.vypers-hero h1 {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.wp-block-cover.vypers-hero .wp-block-buttons {
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* ============================
   CONTACT FORM — Leica style
   ============================ */

.contact-form {
  max-width: 100%;
  margin-top: 32px;
}

.contact-form .newsletter-input {
  width: 100%;
  margin-bottom: 0;
}

.contact-form textarea.newsletter-input {
  min-height: 140px;
  line-height: 1.5;
  font-family: "Outfit", sans-serif;
}

/* ═══════════════════════════════════════════
   V9.0 — TRUE LEICA DESIGN SYSTEM MATCH
   Extracted from leica-camera.com 2026-04-05
   ═══════════════════════════════════════════ */

/* --- BODY: Leica uses weight 400, not 300 --- */
body {
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

/* --- CONTAINERS: Leica = max-width 1920px, padding 56px --- */
.container {
  max-width: 1920px !important;
  padding: 0 56px !important;
}

@media (max-width: 1024px) {
  .container { padding: 0 40px !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px !important; }
}

/* Old header overrides removed — now in main header section */



@media (max-width: 768px) {
  .wp-block-cover.vypers-hero h1 {
    font-size: 42px !important;
  }
}









/* --- HERO TABS: Leica = fond noir semi-transparent, texte 16px weight 400 bold pour actif --- */
.hero-tabs-bar {
  background: rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(12px) !important;
}

.hero-tabs-bar .wp-block-button__link {
  font-size: 16px !important;
  font-weight: 300 !important;
  padding: 18px 48px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  height: auto !important;
  border-radius: 0 !important;
}

.hero-tabs-bar .wp-block-button:first-child .wp-block-button__link {
  font-weight: 600 !important;
  color: #ffffff !important;
}

.hero-tabs-bar .wp-block-button__link:hover {
  color: #ffffff !important;
  font-weight: 400 !important;
}

/* --- EDITORIAL DUO: Leica = full-width (pas de marges), titre 28px --- */
.editorial-duo {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.editorial-card-dark h3 {
  font-size: 28px !important;
  font-weight: 400 !important;
}

.editorial-card-dark .card-text {
  font-size: 18px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.65) !important;
}

.editorial-card-cover h3 {
  font-size: 28px !important;
  font-weight: 400 !important;
}

.editorial-card-cover .card-text {
  font-size: 18px !important;
  font-weight: 300 !important;
}

/* --- SECTION HEADINGS: Leica = 46px weight 400 --- */
h2 {
  font-size: 46px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
}

@media (max-width: 768px) {
  h2 { font-size: 32px !important; }
}

/* --- PRODUCTS SECTION: Leica = padding 56px, fond blanc, pas de fond gris sur cards --- */
.products-section {
  padding: 100px 56px 80px !important;
}

@media (max-width: 1024px) {
  .products-section { padding: 80px 40px 60px !important; }
}

@media (max-width: 768px) {
  .products-section { padding: 60px 20px 40px !important; }
}

/* Product cards: Leica = fond transparent, pas de bg gris, separateurs gris clair pas noirs */
.products-grid > .wp-block-column {
  background: transparent !important;
  padding: 48px 40px !important;
  border-right: 1px solid #b5b4b4 !important;
  min-height: 640px !important;
}

.products-grid > .wp-block-column:last-child {
  border-right: none !important;
}

@media (max-width: 781px) {
  .products-grid > .wp-block-column {
    border-right: none !important;
    border-bottom: 1px solid #b5b4b4 !important;
    min-height: auto !important;
  }
  .products-grid > .wp-block-column:last-child {
    border-bottom: none !important;
  }
}

/* Product card title: Leica = 16px weight 400, PAS uppercase, PAS bold */
.product-card-name {
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #222 !important;
}

/* Product card CTAs: Leica = 20px weight 400, chevron > */
.product-card-ctas a {
  font-size: 20px !important;
  font-weight: 400 !important;
}

.product-card-ctas {
  border-top: none !important;
  gap: 48px !important;
  padding-top: 24px !important;
}

/* Product hover: Leica = pas de bg change, juste zoom img */
.products-grid > .wp-block-column:hover {
  background-color: transparent !important;
}

/* --- PRODUCT DETAIL: Leica padding 56px --- */
.product-detail {
  padding: 80px 56px !important;
}

@media (max-width: 1024px) {
  .product-detail { padding: 80px 40px !important; }
}

@media (max-width: 768px) {
  .product-detail { padding: 60px 20px !important; }
}

/* Product name in detail: 46px like Leica section headings */
.product-name {
  font-size: 46px !important;
}

/* --- BRAND SECTION: padding 56px --- */
.brand-section {
  padding: 100px 56px !important;
}

@media (max-width: 1024px) {
  .brand-section { padding: 80px 40px !important; }
}

@media (max-width: 768px) {
  .brand-section { padding: 60px 20px !important; }
}

/* Brand desc: remove the italic/border-left from earlier patch */
.brand-desc {
  font-style: normal !important;
  border-left: none !important;
  padding-left: 0 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
}

/* --- NEWSLETTER: padding 56px --- */
.newsletter-section {
  padding: 100px 56px !important;
}

@media (max-width: 1024px) {
  .newsletter-section { padding: 80px 40px !important; }
}

@media (max-width: 768px) {
  .newsletter-section { padding: 60px 20px !important; }
}

/* --- FOOTER: padding 56px --- */
@media (min-width: 768px) {
  .footer-grid {
    padding: 0 56px 60px !important;
  }
}

.footer-bottom {
  padding: 24px 56px !important;
}

/* --- GLOBAL MARGIN OVERRIDE: Leica = 56px, NOT 200px --- */
@media (min-width: 768px) {
  .entry-content > *:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .entry-content > *:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}

/* --- BUTTONS GENERAL: Leica = 24px radius (not 1.5rem=24px, same), weight 500 --- */
.wp-block-button__link {
  font-weight: 500 !important;
  border-radius: 24px !important;
}

/* --- PARAGRAPHS: Leica body weight = 400 --- */
p {
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.page-text, .card-text, .product-desc, .brand-desc, .newsletter-desc, .footer-brand-tagline, .contact-info {
  font-weight: 300 !important;
}

/* --- HERO TABS TAB ACTIVE INDICATOR --- */
.hero-tabs-bar .wp-block-button__link {
  border-bottom: 2px solid transparent !important;
  transition: border-color 0.3s ease, color 0.3s ease, font-weight 0.2s ease !important;
}

.hero-tabs-bar .wp-block-button:first-child .wp-block-button__link {
  border-bottom-color: #ffffff !important;
}

.hero-tabs-bar .wp-block-button__link:hover {
  border-bottom-color: rgba(255,255,255,0.5) !important;
}

/* V9.0 fixes — padding adjustments */

/* Products section header needs its own padding since global padding was removed */
.products-header {
  padding: 0 56px !important;
}

@media (max-width: 1024px) {
  .products-header { padding: 0 40px !important; }
}

@media (max-width: 768px) {
  .products-header { padding: 0 20px !important; }
}

/* Products grid also needs padding */
.products-grid {
  padding: 0 56px !important;
}

@media (max-width: 1024px) {
  .products-grid { padding: 0 40px !important; }
}

@media (max-width: 768px) {
  .products-grid { padding: 0 0px !important; }
}

/* Product detail sections need padding */
.product-detail {
  padding: 80px 56px !important;
}

@media (max-width: 1024px) {
  .product-detail { padding: 60px 40px !important; }
}

@media (max-width: 768px) {
  .product-detail { padding: 40px 20px !important; }
}

/* Brand section padding */
.brand-section {
  padding: 100px 56px !important;
}

@media (max-width: 1024px) {
  .brand-section { padding: 80px 40px !important; }
}

@media (max-width: 768px) {
  .brand-section { padding: 60px 20px !important; }
}

/* Newsletter section padding */
.newsletter-section {
  padding: 100px 56px !important;
}

@media (max-width: 1024px) {
  .newsletter-section { padding: 80px 40px !important; }
}

@media (max-width: 768px) {
  .newsletter-section { padding: 60px 20px !important; }
}

/* Product card images — remove grey bg, transparent like Leica */
.products-grid .wp-block-image img {
  background: transparent !important;
}

/* Product card — pure white background like Leica */
.products-grid > .wp-block-column {
  background: #ffffff !important;
}

/* V9.0 — Specificity fix: sections need their own padding since global was zeroed */
.entry-content .products-section {
  padding: 100px 56px 80px !important;
}

.entry-content .product-detail {
  padding: 80px 56px !important;
}

.entry-content .brand-section {
  padding: 100px 56px !important;
}

.entry-content .newsletter-section {
  padding: 100px 56px !important;
}

.entry-content .editorial-duo {
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .entry-content .products-section { padding: 80px 40px 60px !important; }
  .entry-content .product-detail { padding: 60px 40px !important; }
  .entry-content .brand-section { padding: 80px 40px !important; }
  .entry-content .newsletter-section { padding: 80px 40px !important; }
}

@media (max-width: 768px) {
  .entry-content .products-section { padding: 60px 20px 40px !important; }
  .entry-content .product-detail { padding: 40px 20px !important; }
  .entry-content .brand-section { padding: 60px 20px !important; }
  .entry-content .newsletter-section { padding: 60px 20px !important; }
}

/* Page sections (about, contact, faq) also need padding */
.entry-content .page-section {
  padding: 80px 56px !important;
}

@media (max-width: 1024px) {
  .entry-content .page-section { padding: 60px 40px !important; }
}

@media (max-width: 768px) {
  .entry-content .page-section { padding: 40px 20px !important; }
}

/* FAQ section */
.entry-content .faq-section {
  padding: 80px 56px !important;
  max-width: 880px;
  margin: 0 auto;
}

/* V9.0 FINAL — Override the entry-content > * rule with exact same specificity */
@media (min-width: 768px) {
  .entry-content > .products-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .entry-content > .product-detail:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .entry-content > .brand-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .entry-content > .newsletter-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .entry-content > .editorial-duo:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Page interior sections */
  .entry-content > .page-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .entry-content > .faq-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  /* Groups that wrap sections */
  .entry-content > .wp-block-group:not(.vypers-hero):not(.hero-tabs-bar):not(.editorial-duo) {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .entry-content > .wp-block-group:not(.vypers-hero):not(.hero-tabs-bar):not(.editorial-duo) {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* ═══ V9.2 — Visual fixes from audit ═══ */

/* FIX 1: Product card CTAs — reduce font size, prevent overflow */
.product-card-ctas {
  gap: 24px !important;
  padding: 24px 8px 0 !important;
  flex-wrap: nowrap !important;
  overflow: hidden !important;
}

.product-card-ctas a {
  font-size: 16px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* FIX 2: Product cards — clip overflow properly */
.products-grid > .wp-block-column {
  overflow: hidden !important;
  padding: 40px 32px !important;
}

/* FIX 3: Brand section "L'univers Vypers" — needs padding from parent group */
.entry-content > .wp-block-group.brand-section:not(.vypers-hero):not(.hero-tabs-bar) {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

/* FIX 4: Brand image — wider, no auto-centering constraint */
.brand-section .wp-block-image {
  max-width: 100% !important;
  margin: 0 !important;
}

.brand-section .wp-block-image img {
  width: 100% !important;
  border-radius: 4px !important;
}

/* FIX 5: Product detail — reduce white space, better image handling */
.product-detail-cols {
  gap: 56px !important;
}

.product-detail-cols .wp-block-image img {
  border-radius: 8px !important;
}

/* FIX 6: H3 size — product detail titles were catching the global h2 46px rule */
h3 {
  font-size: 28px !important;
  font-weight: 400 !important;
}

/* FIX 7: Specs grid values — don't make them 46px from h2 rule */
h4 {
  font-size: 24px !important;
  font-weight: 400 !important;
}

.spec-value {
  font-size: 24px !important;
}



/* ═══════════════════════════
   HERO FIX — Leica exact match
   ═══════════════════════════ */
/* --- HERO CONTENT POSITION: Leica = bottom-left, absolute --- */
.wp-block-cover.vypers-hero {
  align-items: flex-end !important;
  justify-content: flex-start !important;
}

.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  max-width: 880px !important;
  text-align: left !important;
  padding: 0 88px 72px !important;
}

@media (max-width: 1024px) {
  .wp-block-cover.vypers-hero .wp-block-cover__inner-container {
    padding: 0 56px 72px !important;
  }
}

@media (max-width: 767px) {
  .wp-block-cover.vypers-hero .wp-block-cover__inner-container {
    padding: 0 20px 60px !important;
    max-width: 100% !important;
  }
}

/* Hero H1: Leica = 76px, weight 400, line-height 1.12 */
.wp-block-cover.vypers-hero h1 {
  font-size: 76px !important;
  font-weight: 400 !important;
  line-height: 1.12 !important;
  letter-spacing: normal !important;
  text-align: left !important;
}

@media (max-width: 768px) {
  .wp-block-cover.vypers-hero h1 {
    font-size: 42px !important;
  }
}

/* Hero subtitle: Leica = 24px weight 400, blanc */
.wp-block-cover.vypers-hero .hero-subtitle {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,1) !important;
  text-align: left !important;
}

/* Hero label: discret, uppercase */
.wp-block-cover.vypers-hero .hero-label {
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.6) !important;
  text-align: left !important;
}

/* Hero CTA: Leica = bg blanc, text noir #222, 20px weight 600, pill 24px, h48px */
.wp-block-cover.vypers-hero .wp-block-button__link,
.btn-white .wp-block-button__link,
.wp-block-cover .wp-block-button__link {
  background: #FFFFFF !important;
  color: #222222 !important;
  border: none !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  padding: 10px 64px 10px 32px !important;
  border-radius: 24px !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  text-align: left !important;
}

.wp-block-cover.vypers-hero .wp-block-button__link:hover,
.btn-white .wp-block-button__link:hover {
  background: #f0f0f0 !important;
  color: #222222 !important;
}

.wp-block-cover.vypers-hero .wp-block-buttons {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* ═══════════════════════════
   HERO TABS — Leica exact match
   ═══════════════════════════ */
.hero-tabs-bar {
  display: flex !important;
  justify-content: center !important;
  gap: 48px !important;
  padding: 24px 56px !important;
  height: 72px !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  margin-top: 0 !important;
  border-top: none !important;
  position: relative;
  z-index: 10;
}

.hero-tabs-bar .wp-block-button {
  margin: 0 !important;
}

.hero-tabs-bar .wp-block-button__link {
  background: transparent !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: none !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
  letter-spacing: normal !important;
  text-decoration: none !important;
  transition: font-weight 0.2s ease !important;
  position: relative !important;
}

/* Remove any permanent underline / ::after indicator */
.hero-tabs-bar .wp-block-button__link::after,
.hero-tabs-bar .wp-block-button:first-child .wp-block-button__link::after {
  display: none !important;
  content: none !important;
}

.hero-tabs-bar .wp-block-button:first-child .wp-block-button__link {
  font-weight: 600 !important;
  border-bottom: none !important;
}

.hero-tabs-bar .wp-block-button__link:hover {
  font-weight: 600 !important;
  color: #FFFFFF !important;
  background: transparent !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

@media (max-width: 767px) {
  .hero-tabs-bar {
    gap: 24px !important;
    padding: 20px 20px !important;
    height: auto !important;
  }
  .hero-tabs-bar .wp-block-button__link {
    font-size: 14px !important;
  }
}

/* FIX: tabs bar needs dark background since it's outside hero */
.hero-tabs-bar {
  background: #000000 !important;
}

/* Hero CTA — V logo dot like Leica red dot */
.wp-block-cover.vypers-hero .wp-block-button__link::after {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background: url('/wp-content/uploads/2026/04/logo-vypers-original-150x150.png') center/contain no-repeat !important;
  border-radius: 0 !important;
  flex-shrink: 0 !important;
  margin-left: 24px !important;
}
.wp-block-cover.vypers-hero .wp-block-button__link {
  padding: 10px 24px 10px 40px !important;
  gap: 0 !important;
  justify-content: center !important;
}

/* Fix: V logo in CTA must be black (dark on white bg) */
.wp-block-cover.vypers-hero .wp-block-button__link::after {
  filter: brightness(0) !important;
}

/* Remove V logo from CTA — clean look */
.wp-block-cover.vypers-hero .wp-block-button__link::after {
  display: none !important;
}
.wp-block-cover.vypers-hero .wp-block-button__link {
  padding: 10px 40px !important;
}

/* Align hero content with header nav — same left edge */
.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Fix alignment: inner starts at 16px, need 40-16=24px padding */
.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  padding-left: 24px !important;
}

/* Fix alignment at 1440px: header padding=56px, hero inner starts at 16px, so need 40px */
.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  padding-left: 40px !important;
}

/* Fix: hero inner must match header max-width + centering on wide screens */
.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 56px !important;
  padding-right: 56px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix: remove WP native 16px padding on hero cover */
.wp-block-cover.vypers-hero {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Tabs bar — overlay bottom of hero like Leica */
.hero-tabs-bar {
  position: relative !important;
  margin-top: -72px !important;
  z-index: 10 !important;
  background: transparent !important;
  height: 72px !important;
  padding: 24px 56px !important;
}

/* Hero taller to give space between CTA and tabs */
.wp-block-cover.vypers-hero {
  min-height: 110vh !important;
}

/* Tabs bar — semi-transparent dark background like Leica */
.hero-tabs-bar {
  background: rgba(0, 0, 0, 0.4) !important;
}

/* Hero back to 100vh, adjust bottom padding for tabs space */
.wp-block-cover.vypers-hero {
  min-height: 100vh !important;
}
.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  padding-bottom: 100px !important;
}
/* Tabs — no background, pure transparent on hero image */
.hero-tabs-bar {
  background: none !important;
}

/* Dark gradient band at bottom of hero — full width, contains tabs */
.wp-block-cover.vypers-hero::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 250px !important;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
/* Make sure hero content and tabs are above the gradient */
.wp-block-cover.vypers-hero .wp-block-cover__inner-container {
  z-index: 2 !important;
  position: relative !important;
}
.hero-tabs-bar {
  z-index: 2 !important;
  position: relative !important;
}

/* Remove gradient, not what we want */
.wp-block-cover.vypers-hero::after {
  display: none !important;
}

/* Tabs bar — solid dark semi-transparent band, full width, like a menu bar */
.hero-tabs-bar {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* Editorial duo — Leica spacing: 96px top margin, 1px gap */
.editorial-duo {
  margin-top: 96px !important;
  gap: 1px !important;
}

/* === Content sections max-width like Leica === */
.editorial-duo,
.products-section,
.editorial-full,
.newsletter-section {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

/* === Override: content max-width 1920px centered === */
.wp-block-columns.editorial-duo,
.wp-block-group.products-section,
.wp-block-group.editorial-full,
.wp-block-group.newsletter-section {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* === Editorial card cover image position === */
.editorial-card-cover .wp-block-cover__image-background {
  object-position: center 30% !important;
}

/* === Fix right card image position - show products higher === */
.editorial-card-cover .wp-block-cover__image-background {
  object-position: center 20% !important;
}

/* === Fix: right card show top of products === */
.editorial-duo .wp-block-column:last-child .wp-block-cover__image-background {
  object-position: center 10% !important;
}

/* === Fix right card white edges === */
.editorial-duo .wp-block-column:last-child .wp-block-cover {
  background-color: #000 !important;
}


/* ═══════════════════════════════════════════════════════
   V13.5 — MOBILE RESPONSIVE: Leica mobile layout match
   Viewport: iPhone 14 (390×844)
   Date: 2026-04-06
   ═══════════════════════════════════════════════════════ */

/* ============================================
   MOBILE ≤ 768px — Main mobile breakpoint
   ============================================ */
@media (max-width: 768px) {

  /* --- HEADER: burger menu, hide desktop links --- */
  .site-header {
    height: 64px !important;
  }
  .site-header nav {
    padding: 0 16px !important;
    height: 64px !important;
  }
  .header-left {
    display: none !important;
  }
  .header-menu-toggle {
    display: block !important;
    order: -1 !important;
  }
  .header-logo-img {
    width: 36px !important;
    height: 36px !important;
  }
  .header-right {
    width: auto !important;
    gap: 4px !important;
  }
  .header-icon-btn {
    width: 32px !important;
    height: 44px !important;
    padding: 10px 4px !important;
  }

  /* --- HERO: full viewport height, smaller text --- */
  .wp-block-cover.vypers-hero {
    min-height: 100dvh !important;
    min-height: 100vh !important;
  }
  .wp-block-cover.vypers-hero .wp-block-cover__inner-container {
    padding: 0 20px 80px !important;
    max-width: 100% !important;
  }
  .wp-block-cover.vypers-hero h1 {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }
  .wp-block-cover.vypers-hero .hero-subtitle {
    font-size: 16px !important;
    margin-bottom: 24px !important;
  }
  .wp-block-cover.vypers-hero .hero-label {
    font-size: 12px !important;
  }

  /* Hero CTA — smaller on mobile */
  .wp-block-cover.vypers-hero .wp-block-button__link,
  .wp-block-cover .wp-block-button__link {
    font-size: 16px !important;
    padding: 10px 32px !important;
    height: 44px !important;
  }

  /* --- HERO TABS: horizontal scroll, Leica mobile style --- */
  .hero-tabs-bar {
    gap: 0 !important;
    padding: 0 !important;
    height: auto !important;
    margin-top: -56px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }
  .hero-tabs-bar::-webkit-scrollbar {
    display: none !important;
  }
  .hero-tabs-bar .wp-block-button {
    flex-shrink: 0 !important;
  }
  .hero-tabs-bar .wp-block-button__link {
    font-size: 14px !important;
    padding: 16px 20px !important;
    white-space: nowrap !important;
  }

  /* --- EDITORIAL DUO: stack vertically --- */
  .editorial-duo {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin-top: 0 !important;
  }
  .editorial-duo > .wp-block-column {
    flex-basis: auto !important;
    width: 100% !important;
    min-height: 360px !important;
  }
  .editorial-card-dark {
    min-height: 360px !important;
    padding: 32px 20px !important;
  }
  .editorial-card-dark h3 {
    font-size: 24px !important;
  }
  .editorial-card-dark .card-text {
    font-size: 15px !important;
  }
  .editorial-card-cover {
    min-height: 360px !important;
  }
  .editorial-card-cover .wp-block-cover__inner-container {
    min-height: 360px !important;
    padding: 32px 20px !important;
  }
  .editorial-card-cover h3 {
    font-size: 24px !important;
  }
  .editorial-duo > .wp-block-column:first-child > .wp-block-group {
    min-height: 360px !important;
  }
  .editorial-duo > .wp-block-column:last-child .wp-block-cover {
    min-height: 360px !important;
  }

  /* --- PRODUCTS SECTION: stack vertically --- */
  .products-section {
    padding: 60px 20px 40px !important;
  }
  .products-header {
    padding: 0 !important;
    margin-bottom: 40px !important;
  }
  .products-grid {
    flex-direction: column !important;
    padding: 0 !important;
  }
  .products-grid > .wp-block-column {
    flex-basis: auto !important;
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid #b5b4b4 !important;
    padding: 32px 0 !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  .products-grid > .wp-block-column:last-child {
    border-bottom: none !important;
  }
  .products-grid .wp-block-image {
    max-height: 280px !important;
    margin-bottom: 24px !important;
  }
  .products-grid .wp-block-image img {
    max-height: 280px !important;
  }
  .product-card-ctas {
    gap: 32px !important;
    justify-content: flex-start !important;
    padding: 16px 0 0 !important;
  }
  .product-card-ctas a {
    font-size: 15px !important;
  }

  /* --- PRODUCT DETAIL: stack image + text vertically --- */
  .product-detail {
    padding: 40px 20px !important;
  }
  .product-detail-cols {
    flex-direction: column !important;
    gap: 32px !important;
  }
  .product-detail-cols > .wp-block-column {
    flex-basis: auto !important;
    width: 100% !important;
  }
  .product-name {
    font-size: 32px !important;
  }
  .product-price {
    font-size: 22px !important;
  }
  .specs-grid {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }
  .specs-grid > .wp-block-column {
    padding: 16px 8px !important;
  }
  .spec-value {
    font-size: 18px !important;
  }

  /* --- BRAND SECTION: mobile padding --- */
  .brand-section {
    padding: 60px 20px !important;
  }

  /* --- NEWSLETTER: mobile padding --- */
  .newsletter-section {
    padding: 60px 20px !important;
  }
  .newsletter-form {
    flex-direction: column !important;
  }

  /* --- FOOTER: mobile padding --- */
  .footer-grid {
    padding: 0 20px 40px !important;
    gap: 32px !important;
  }
  .footer-bottom {
    padding: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  /* --- GLOBAL: prevent horizontal overflow --- */
  body {
    overflow-x: hidden !important;
  }
  .wp-site-blocks {
    overflow-x: hidden !important;
  }

  /* --- WP BLOCK COLUMNS: force stack on mobile --- */
  .wp-block-columns:not(.specs-grid) {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  .wp-block-columns:not(.specs-grid) > .wp-block-column {
    flex-basis: auto !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* --- ENTRY CONTENT: remove 56px padding on mobile --- */
  .entry-content > *:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .entry-content > .wp-block-group:not(.vypers-hero):not(.hero-tabs-bar):not(.editorial-duo) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .entry-content > .products-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .entry-content > .product-detail:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .entry-content > .brand-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .entry-content > .newsletter-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .entry-content > .page-section:not(.vypers-hero):not(.hero-tabs-bar) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* --- TYPOGRAPHY: mobile sizes --- */
  h1 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }
  h2 {
    font-size: 28px !important;
  }
  h3 {
    font-size: 22px !important;
  }
  h4 {
    font-size: 20px !important;
  }

  /* --- VALUES GRID: stack on mobile --- */
  .values-grid {
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* --- PAGE HERO: shorter on mobile --- */
  .page-hero {
    min-height: 40vh !important;
  }
  .page-hero .wp-block-cover__inner-container {
    padding: 80px 20px 40px !important;
  }

  /* --- MOBILE MENU OVERLAY: full screen --- */
  .mobile-menu-overlay {
    top: 64px !important;
  }
  .mobile-menu-content {
    padding: 32px 20px !important;
    gap: 20px !important;
  }
  .mobile-menu-content a {
    font-size: 24px !important;
    font-weight: 300 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  /* --- WOOCOMMERCE: single column --- */
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
  }
  .woocommerce div.product {
    padding: 80px 20px 40px !important;
  }
}

/* ============================================
   SMALL MOBILE ≤ 480px — Extra small screens
   ============================================ */
@media (max-width: 480px) {

  /* Even smaller header */
  .site-header nav {
    padding: 0 12px !important;
  }

  /* Hero text tighter */
  .wp-block-cover.vypers-hero h1 {
    font-size: 30px !important;
  }
  .wp-block-cover.vypers-hero .hero-subtitle {
    font-size: 14px !important;
  }
  .wp-block-cover.vypers-hero .wp-block-cover__inner-container {
    padding: 0 16px 72px !important;
  }

  /* Tabs tighter */
  .hero-tabs-bar .wp-block-button__link {
    font-size: 13px !important;
    padding: 14px 16px !important;
  }

  /* Product cards tighter */
  .products-grid > .wp-block-column {
    padding: 24px 0 !important;
  }
  .product-card-ctas {
    gap: 24px !important;
  }
  .product-card-ctas a {
    font-size: 14px !important;
  }

  /* Product detail tighter */
  .product-detail {
    padding: 32px 16px !important;
  }
  .product-name {
    font-size: 28px !important;
  }

  /* Specs even tighter */
  .specs-grid > .wp-block-column {
    padding: 12px 4px !important;
  }
  .spec-value {
    font-size: 16px !important;
  }
  .spec-label {
    font-size: 10px !important;
  }

  /* Footer tighter */
  .footer-grid {
    padding: 0 16px 32px !important;
  }
  .footer-bottom {
    padding: 16px !important;
  }

  /* Typography even smaller */
  h2 {
    font-size: 26px !important;
  }
  h3 {
    font-size: 20px !important;
  }

  /* Editorial cards shorter */
  .editorial-card-dark {
    min-height: 300px !important;
    padding: 24px 16px !important;
  }
  .editorial-card-cover {
    min-height: 300px !important;
  }
  .editorial-card-cover .wp-block-cover__inner-container {
    min-height: 300px !important;
    padding: 24px 16px !important;
  }
  .editorial-duo > .wp-block-column {
    min-height: 300px !important;
  }
  .editorial-duo > .wp-block-column:first-child > .wp-block-group {
    min-height: 300px !important;
  }
  .editorial-duo > .wp-block-column:last-child .wp-block-cover {
    min-height: 300px !important;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 48px 16px !important;
  }

  /* Brand section */
  .brand-section {
    padding: 48px 16px !important;
  }
}


/* ═══ V13.5 — Leica desktop refinements ═══ */

/* === Products Section — match Leica spacing === */
.products-section {
  padding: 140px 56px 100px !important;
}

.products-header {
  margin-bottom: 56px !important;
}

.products-header h2 {
  font-size: 46px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* Product cards — taller, more padding like Leica */
.products-grid > .wp-block-column {
  min-height: 600px !important;
  padding: 48px 40px !important;
  background: #f5f5f5 !important;
  border-right-color: #e7e7e7 !important;
}

/* Product card images — more room */
.products-grid .wp-block-image {
  max-height: 460px !important;
}
.products-grid .wp-block-image img {
  max-height: 460px !important;
}

/* Product card CTAs — Leica exact style */
.product-card-ctas {
  gap: 48px !important;
  justify-content: flex-start !important;
  padding: 24px 0 0 !important;
}
.product-card-ctas a {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #222222 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
.product-card-ctas a:hover {
  font-weight: 400 !important;
  text-decoration: underline !important;
}
.product-card-ctas a::after {
  content: " \203A" !important;
  text-decoration: none !important;
}

/* === Product Detail sections — Leica spacing === */
.product-detail {
  padding: 120px 56px !important;
}

.product-detail-cols {
  max-width: 1400px !important;
  gap: 80px !important;
}

.product-name {
  font-size: 46px !important;
  font-weight: 400 !important;
  margin-bottom: 32px !important;
}

/* Specs grid — Leica-style with borders */
.specs-grid {
  border-top: 1px solid #e7e7e7 !important;
  border-bottom: 1px solid #e7e7e7 !important;
  padding: 20px 0 !important;
  margin-bottom: 32px !important;
  gap: 0 !important;
}

.specs-grid .wp-block-column {
  text-align: center !important;
  border-right: 1px solid #e7e7e7 !important;
  padding: 8px 16px !important;
}

.specs-grid .wp-block-column:last-child {
  border-right: none !important;
}

.spec-value {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #222222 !important;
  margin-bottom: 4px !important;
}

.spec-label {
  font-size: 11px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #828282 !important;
}

/* Commander button — Leica style outlined */
.product-detail .wp-block-button__link {
  background: transparent !important;
  color: #222222 !important;
  border: 1px solid #222222 !important;
  border-radius: 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 12px 40px !important;
  transition: all 0.25s ease !important;
}
.product-detail .wp-block-button__link:hover {
  background: #222222 !important;
  color: #FFFFFF !important;
}

/* Product price */
.product-price {
  font-size: 28px !important;
  font-weight: 400 !important;
  color: #222222 !important;
  margin-bottom: 24px !important;
}

/* === Brand Section — Leica "Bienvenue" style === */
.brand-section {
  text-align: center !important;
  padding: 140px 56px !important;
  border-top: none !important;
}

.brand-section h2 {
  font-size: 54px !important;
  font-weight: 400 !important;
  margin-bottom: 32px !important;
  text-align: center !important;
}

.brand-desc {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #222222 !important;
  max-width: 720px !important;
  margin: 0 auto 56px !important;
  text-align: center !important;
  line-height: 1.6 !important;
}

.brand-section .wp-block-image {
  max-width: 100% !important;
  margin: 0 !important;
}

.brand-section .wp-block-image img {
  width: 100% !important;
  max-height: 640px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* === Newsletter Section — Leica dark style === */
.newsletter-section {
  background-color: #222222 !important;
  padding: 100px 56px !important;
  text-align: left !important;
  max-width: none !important;
}

.newsletter-section h2 {
  color: #FFFFFF !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  margin-bottom: 24px !important;
  text-align: left !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.newsletter-desc {
  color: rgba(255,255,255,0.85) !important;
  text-align: left !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 32px !important;
}

.newsletter-btn {
  background-color: transparent !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: #FFFFFF !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  font-size: 0 !important;
  position: relative !important;
  cursor: pointer !important;
}

/* Arrow icon inside newsletter button */
.newsletter-btn::after {
  content: "\2192" !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.newsletter-btn:hover {
  background-color: #FFFFFF !important;
  color: #222222 !important;
  border-color: #FFFFFF !important;
}

/* Newsletter email input style */
.newsletter-input {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 0 !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  padding: 12px 0 !important;
  max-width: 400px !important;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5) !important;
}

.newsletter-form {
  max-width: 1920px !important;
  margin: 0 auto !important;
  align-items: flex-end !important;
  gap: 16px !important;
}

/* === Footer — Leica light style === */
.site-footer {
  background-color: #d1d4d3 !important;
  color: #222222 !important;
}

/* Footer top area: "DAS WESENTLICHE" heading equivalent + language + back to top */
.footer-grid {
  border-bottom: 1px solid rgba(0,0,0,0.15) !important;
}

.footer-brand-tagline {
  color: rgba(0,0,0,0.6) !important;
}

.footer-col-title {
  color: rgba(0,0,0,0.6) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

.footer-link {
  color: #222222 !important;
}

.footer-link a {
  color: #222222 !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

.footer-link a:hover {
  color: #000000 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.15) !important;
}

.footer-legal {
  color: rgba(0,0,0,0.5) !important;
}

.footer-legal a {
  color: rgba(0,0,0,0.5) !important;
}

.footer-legal a:hover {
  color: #222222 !important;
}

/* Footer logo — dark version on light bg */
.footer-logo-img,
.site-footer .footer-logo-img {
  filter: none !important;
}

/* Footer copyright */
.footer-copyright {
  color: rgba(0,0,0,0.5) !important;
}

/* === Global section spacing — Leica-like generous whitespace === */
.entry-content > .wp-block-group.brand-section:not(.vypers-hero):not(.hero-tabs-bar) {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.entry-content > .wp-block-group.product-detail:not(.vypers-hero):not(.hero-tabs-bar) {
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ═══ V13.6 — Specificity fixes for newsletter + footer ═══ */

/* Newsletter — dark Leica News style — override with !important */
.wp-block-group.newsletter-section,
.newsletter-section {
  background-color: #222222 !important;
  text-align: left !important;
  max-width: none !important;
  padding: 80px 56px 80px !important;
}

.newsletter-section h2,
.wp-block-group.newsletter-section h2 {
  color: #FFFFFF !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

.newsletter-section .newsletter-desc {
  color: rgba(255,255,255,0.85) !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-bottom: 32px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  max-width: 600px !important;
}

/* Newsletter form — Leica-style underline input + circle arrow */
.newsletter-form {
  display: flex !important;
  align-items: flex-end !important;
  gap: 16px !important;
  max-width: 500px !important;
  margin: 0 !important;
}

.newsletter-input-wrap {
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 12px;
  cursor: text;
}

.newsletter-placeholder {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
}

.newsletter-arrow-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  background: transparent !important;
  color: #FFFFFF !important;
  font-size: 20px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.25s ease !important;
  padding: 0 !important;
}

.newsletter-arrow-btn:hover {
  background: #FFFFFF !important;
  color: #222222 !important;
  border-color: #FFFFFF !important;
}

/* Hide old standalone newsletter-btn if still visible */
.newsletter-section > .newsletter-btn {
  display: none !important;
}

/* === Footer — Leica light gray style === */
.site-footer {
  background-color: #d1d4d3 !important;
  color: #222222 !important;
}

.footer-grid {
  border-bottom-color: rgba(0,0,0,0.15) !important;
}

.footer-brand-tagline {
  color: rgba(0,0,0,0.5) !important;
}

.footer-col-title {
  color: #222222 !important;
  font-weight: 600 !important;
}

.footer-link,
.footer-link a {
  color: #222222 !important;
}

.footer-link a:hover {
  color: #000000 !important;
}

.footer-bottom {
  border-top-color: rgba(0,0,0,0.15) !important;
}

.footer-legal,
.footer-legal a {
  color: rgba(0,0,0,0.5) !important;
}

.footer-legal a:hover {
  color: #222222 !important;
}

.footer-copyright {
  color: rgba(0,0,0,0.5) !important;
}

/* Footer logo — show original dark version */
.site-footer .footer-logo-img,
.footer-logo-img {
  filter: none !important;
}

/* "Retour en haut" link — Leica-style */
.footer-bottom::after {
  content: none;
}


/* ═══ V13.7 — Newsletter form layout fix ═══ */

/* Newsletter form — input and arrow on same line */
.newsletter-form {
  flex-direction: row !important;
  align-items: flex-end !important;
}

.newsletter-input-wrap {
  flex: 1 !important;
  max-width: 400px !important;
}

/* Footer brand tagline — muted color on light bg */
.footer-brand-tagline {
  color: rgba(0,0,0,0.45) !important;
}

/* Footer logo — ensure it's dark on light bg */
.site-footer .footer-logo-img {
  filter: brightness(0) !important;
  opacity: 0.7 !important;
}

/* Footer bottom separator */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.12) !important;
}

/* Footer copyright text */
.site-footer .footer-bottom span,
.site-footer .footer-bottom p {
  color: rgba(0,0,0,0.45) !important;
}

/* Brand section — ensure centered + max-width for content */
.brand-section h2 {
  text-align: center !important;
  font-size: 54px !important;
  font-weight: 400 !important;
}

.brand-section .brand-desc {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #cccccc;
  font-weight: 600 !important;
}

.brand-section {
  text-align: center !important;
}

/* Product detail border separator — lighter like Leica */
.product-detail.has-border-top {
  border-top: 1px solid #e7e7e7 !important;
}

/* === Product cards hover — Leica subtle lift === */
.products-grid > .wp-block-column {
  transition: background-color 0.3s ease !important;
}

.products-grid > .wp-block-column:hover {
  background-color: #eeeeee !important;
}


/* ═══ V13.8 — Product CTA fix + newsletter arrow alignment ═══ */

/* Fix product card CTAs — remove text-overflow, show full text */
.product-card-ctas a {
  overflow: visible !important;
  text-overflow: unset !important;
  font-size: 15px !important;
  text-decoration: none !important;
}

.product-card-ctas {
  overflow: visible !important;
  gap: 32px !important;
}

/* Product cards — remove overflow hidden to show full CTAs */
.products-grid > .wp-block-column {
  overflow: visible !important;
}

/* Newsletter form — arrow on same line as input */
.newsletter-form {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  gap: 20px !important;
}

.newsletter-input-wrap {
  display: flex !important;
  align-items: center !important;
  flex: 0 1 360px !important;
  min-width: 0 !important;
}

/* Brand section — tighten up large whitespace below image */
.brand-section .wp-block-image img {
  max-height: 560px !important;
}


/* ═══ V13.9 — Newsletter form fix (WP strips <form> tags) ═══ */

/* Since WP strips <form>, the input-wrap and arrow-btn are direct children of newsletter-section.
   We need to make them sit on the same line using a CSS trick. */
.newsletter-section .newsletter-input-wrap {
  display: inline-block !important;
  max-width: 360px !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(255,255,255,0.3) !important;
  padding-bottom: 12px !important;
  vertical-align: bottom !important;
  margin-right: 16px !important;
}

.newsletter-section .newsletter-arrow-btn {
  display: inline-flex !important;
  vertical-align: bottom !important;
  margin-bottom: 0 !important;
}

.newsletter-section .newsletter-placeholder {
  color: rgba(255,255,255,0.5) !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  font-family: 'Outfit', sans-serif !important;
}


/* ═══ V14.0 — Newsletter + footer centering at 2560px ═══ */

/* Newsletter section — center content at wide viewports */
.newsletter-section h2,
.newsletter-section .newsletter-desc,
.newsletter-section .newsletter-input-wrap,
.newsletter-section .newsletter-arrow-btn {
  max-width: 1440px !important;
}

/* Newsletter — add inner content padding matching footer */
.wp-block-group.newsletter-section {
  padding-left: calc(max(56px, (100% - 1440px) / 2 + 56px)) !important;
  padding-right: calc(max(56px, (100% - 1440px) / 2 + 56px)) !important;
}

/* Footer grid — ensure proper centering at wide viewports */
.footer-grid {
  max-width: 1440px !important;
  padding-left: 56px !important;
  padding-right: 56px !important;
}

/* Footer bottom bar — same max width */
.footer-bottom {
  max-width: 1440px !important;
  padding-left: 56px !important;
  padding-right: 56px !important;
}

/* Brand section — match centering */
.brand-section {
  padding-left: calc(max(56px, (100% - 1920px) / 2 + 56px)) !important;
  padding-right: calc(max(56px, (100% - 1920px) / 2 + 56px)) !important;
}


/* ═══ V14.1 — Newsletter input width constraint ═══ */

/* Newsletter input wrap — match Leica's narrower email field */
.newsletter-section .newsletter-input-wrap {
  max-width: 320px !important;
}

/* Newsletter — center content with footer using matching container */
.wp-block-group.newsletter-section {
  padding-left: calc(max(56px, (100vw - 1328px) / 2)) !important;
  padding-right: 56px !important;
}

/* Ensure newsletter desc doesn't sprawl */
.newsletter-section .newsletter-desc {
  max-width: 600px !important;
}


/* === MEGA MENU — Collection dropdown === */
.nav-dropdown-wrap {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  cursor: pointer;
}
.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 40px 48px;
  min-width: 400px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu-inner {
  display: flex;
  gap: 64px;
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 4px;
}
.mega-col a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 0;
}
.mega-col a:hover {
  color: #000;
}

/* === Mobile submenu === */
.mobile-submenu {
  display: flex;
  flex-direction: column;
}
.mobile-submenu-trigger {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 300;
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-arrow {
  transition: transform 0.3s ease;
  font-size: 28px;
}
.mobile-submenu.open .mobile-arrow {
  transform: rotate(90deg);
}
.mobile-submenu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}
.mobile-submenu.open .mobile-submenu-content {
  max-height: 500px;
}
.mobile-submenu-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  margin-bottom: 8px;
}
.mobile-submenu-content a {
  display: block;
  font-size: 18px;
  padding: 8px 0;
  color: #fff;
  border-bottom: none;
}

/* === Fix mobile submenu colors for white background === */
.mobile-submenu-trigger {
  color: #222222 !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  padding: 0 !important;
  border-bottom: none !important;
}
.mobile-submenu {
  padding: 0;
  border-bottom: none;
}
.mobile-submenu-content a {
  color: #222 !important;
  font-size: 16px !important;
  padding: 6px 0 !important;
  border-bottom: none !important;
}
.mobile-submenu-title {
  color: #999 !important;
}
.mobile-arrow {
  color: #222;
}
@media (max-width: 768px) {
  .mobile-submenu-trigger {
    font-size: 24px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
}

/* === Language switcher === */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
}
.lang-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lang-link.active {
  color: #fff;
  font-weight: 500;
}
.lang-link:hover {
  color: #fff;
}
.lang-sep {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}
@media (max-width: 768px) {
  .lang-switcher {
    margin-right: 8px;
    gap: 4px;
  }
  .lang-link {
    font-size: 12px;
  }
}

/* === Products Slider — Leica style v14.5 === */
.products-section .products-slider-wrap {
  position: relative;
  overflow: hidden;
}
.products-section h2 {
  margin-bottom: 0;
  padding-bottom: 32px;
}
.products-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 4px;
}
.products-slider::-webkit-scrollbar {
  display: none;
}
.product-slide {
  flex: 0 0 calc(33.333% + 40px);
  min-width: 380px;
  scroll-snap-align: start;
  background: #1a1a1a;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  border-right: 1px solid #333333;
  color: #FFFFFF;
  position: relative;
  box-sizing: border-box;
}
.product-slide:last-child {
  border-right: none;
}
.product-slide-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 24px;
}
.product-slide-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.product-slide-img img {
  max-width: 80%;
  max-height: 350px;
  object-fit: contain;
}
.product-slide-placeholder {
  width: 200px;
  height: 200px;
  background: #333333;
  border-radius: 50%;
  opacity: 0.5;
}
.product-slide-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.slide-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.slide-cta:hover {
  opacity: 0.6;
}
.slide-coming {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  font-style: italic;
}
.slider-arrow-right {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.slider-arrow-right:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.slider-arrow-right svg {
  stroke: currentColor;
}

/* Mobile slider */
@media (max-width: 768px) {
  .product-slide {
    flex: 0 0 85%;
    min-width: 300px;
    min-height: 480px;
    padding: 32px 24px;
  }
  .slider-arrow-right {
    display: none;
  }
}

/* === V14 FIX: Mobile tabs bar overlay on hero === */
@media (max-width: 767px) {
  .hero-tabs-bar {
    position: relative !important;
    margin-top: -72px !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 20 !important;
    padding: 0 !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
  }
  .hero-tabs-bar .wp-block-button__link {
    font-size: 13px !important;
    padding: 16px 16px !important;
    color: rgba(255,255,255,0.7) !important;
  }
  .hero-tabs-bar .wp-block-button:first-child .wp-block-button__link {
    color: #fff !important;
    font-weight: 600 !important;
  }
}

/* === V14 FIX: Product slider - uniform image sizes === */
.product-slide-img {
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  flex: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px 0 !important;
  overflow: hidden !important;
}
.product-slide-img img {
  max-width: 75% !important;
  max-height: 280px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
.product-slide-placeholder {
  width: 150px !important;
  height: 150px !important;
}

/* Mobile slider uniform sizes */
@media (max-width: 768px) {
  .product-slide {
    min-height: auto !important;
  }
  .product-slide-img {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }
  .product-slide-img img {
    max-width: 70% !important;
    max-height: 200px !important;
  }
}

/* === V14.8 Newsletter form === */
.newsletter-form {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form .newsletter-input-wrap {
  display: flex;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.newsletter-form .newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  outline: none;
}
.newsletter-form .newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}
.newsletter-form .newsletter-btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 16px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.newsletter-form .newsletter-btn:hover {
  background: #222;
  color: #fff;
}
@media (max-width: 768px) {
  .newsletter-form .newsletter-input-wrap {
    flex-direction: column;
  }
  .newsletter-form .newsletter-input {
    padding: 14px 16px;
    font-size: 14px;
  }
  .newsletter-form .newsletter-btn {
    padding: 14px 20px;
  }
}

/* === V14.8 Product coming soon style === */
.product-detail .slide-coming {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #999;
  font-style: italic;
}

/* === V15 Legal pages styling === */
.legal-page {
  max-width: 800px;
  margin: 120px auto 80px;
  padding: 0 24px;
  font-family: 'Outfit', sans-serif;
  color: #222;
}
.legal-page h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}
.legal-page .legal-update {
  font-size: 14px;
  color: #999;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.legal-page p,
.legal-page li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
}
.legal-page ul {
  padding-left: 20px;
  margin: 12px 0;
}
.legal-page li {
  margin-bottom: 6px;
}
.legal-page a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page a:hover {
  color: #666;
}
@media (max-width: 768px) {
  .legal-page {
    margin: 100px auto 60px;
    padding: 0 20px;
  }
  .legal-page h1 {
    font-size: 32px;
  }
  .legal-page h2 {
    font-size: 19px;
  }
}

/* === V15 Contact page === */
.contact-page {
  max-width: 900px;
  margin: 120px auto 80px;
  padding: 0 24px;
  font-family: 'Outfit', sans-serif;
}
.contact-hero {
  text-align: center;
  margin-bottom: 64px;
}
.contact-hero h1 {
  font-size: 48px;
  font-weight: 400;
  color: #222;
  margin-bottom: 16px;
}
.contact-hero p {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 8px;
  margin-top: 24px;
}
.contact-form-wrap label:first-child {
  margin-top: 0;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #222;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: #222;
  background: #fff;
}
.contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-wrap .contact-submit {
  margin-top: 24px;
  padding: 16px 40px;
  background: #222;
  color: #fff;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}
.contact-form-wrap .contact-submit:hover {
  background: #444;
}
.contact-info-wrap h3 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 24px;
}
.contact-info-item {
  margin-bottom: 24px;
}
.contact-info-item .info-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 4px;
}
.contact-info-item .info-value {
  font-size: 16px;
  font-weight: 300;
  color: #222;
}
.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #e0e0e0;
  color: #222;
  text-decoration: none;
  transition: all 0.2s ease;
}
.contact-socials a:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.contact-socials svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .contact-page {
    margin: 100px auto 60px;
  }
  .contact-hero h1 {
    font-size: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* === V15 Vision page === */
.vision-page {
  font-family: 'Outfit', sans-serif;
}
.vision-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 0 24px;
}
.vision-hero h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.15;
  max-width: 700px;
}
.vision-hero p {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.vision-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 24px;
}
.vision-section h2 {
  font-size: 36px;
  font-weight: 400;
  color: #222;
  margin-bottom: 24px;
}
.vision-section p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}
.vision-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 80px auto;
  padding: 0 24px;
}
.vision-value h3 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
}
.vision-value p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}
.vision-full-img {
  width: 100%;
  margin: 0;
}
.vision-full-img img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .vision-hero h1 {
    font-size: 36px;
  }
  .vision-values {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vision-section {
    margin: 48px auto;
  }
}

/* === V15 Shop page — header + styling === */
.shop-page {
  padding-top: 77px;
}
.shop-page .woocommerce-products-header {
  text-align: center;
  padding: 48px 24px 32px;
}
.shop-page .woocommerce-products-header__title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #222 !important;
}
.shop-page .woocommerce-result-count,
.shop-page .woocommerce-ordering {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #999;
}
.shop-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 1920px;
  margin: 0 auto !important;
}
.shop-page ul.products li.product {
  background: #f8f8f8;
  padding: 48px 32px !important;
  text-align: center;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s ease;
}
.shop-page ul.products li.product:hover {
  background: #f0f0f0;
}
.shop-page ul.products li.product img {
  max-width: 280px !important;
  max-height: 280px !important;
  object-fit: contain !important;
  margin-bottom: 24px;
  mix-blend-mode: multiply;
}
.shop-page ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #222 !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}
.shop-page ul.products li.product .price {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #222 !important;
}
.shop-page ul.products li.product .button,
.shop-page ul.products li.product .add_to_cart_button {
  background: #222 !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  border-radius: 0 !important;
  border: none !important;
  margin-top: 16px !important;
  transition: background 0.2s ease !important;
}
.shop-page ul.products li.product .button:hover,
.shop-page ul.products li.product .add_to_cart_button:hover {
  background: #444 !important;
}

/* Shop page header should be dark on all pages with class shop-page */
body.woocommerce .site-header,
body.post-type-archive-product .site-header {
  background: #111 !important;
}
body.woocommerce .site-header.site-header--scrolled,
body.post-type-archive-product .site-header.site-header--scrolled {
  background: #fff !important;
}
body.woocommerce .site-header.site-header--scrolled a,
body.woocommerce .site-header.site-header--scrolled .nav-dropdown-trigger,
body.post-type-archive-product .site-header.site-header--scrolled a,
body.post-type-archive-product .site-header.site-header--scrolled .nav-dropdown-trigger {
  color: #222 !important;
}
body.woocommerce .site-header.site-header--scrolled svg,
body.post-type-archive-product .site-header.site-header--scrolled svg {
  stroke: #222 !important;
}

@media (max-width: 768px) {
  .shop-page ul.products {
    grid-template-columns: 1fr 1fr !important;
  }
  .shop-page ul.products li.product {
    padding: 24px 16px !important;
  }
  .shop-page ul.products li.product img {
    max-width: 160px !important;
    max-height: 160px !important;
  }
}

/* === V15.1 Blade 60 image dark background to match K1 === */
#blade60 .product-detail-cols > .wp-block-column:first-child {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
#blade60 .product-detail-cols > .wp-block-column:first-child img {
  mix-blend-mode: multiply;
  opacity: 0.9;
}

/* Also apply to Venom and Inject sections */
#venom .product-detail-cols > .wp-block-column:first-child,
#inject .product-detail-cols > .wp-block-column:first-child {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
#venom .product-detail-cols > .wp-block-column:first-child img,
#inject .product-detail-cols > .wp-block-column:first-child img {
  max-width: 70%;
  object-fit: contain;
}

/* === V15.1 Product subpage styling === */
.product-page {
  font-family: 'Outfit', sans-serif;
}
.product-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 77px);
  margin-top: 77px;
}
.product-page-hero-img {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.product-page-hero-img img {
  max-width: 80%;
  max-height: 500px;
  object-fit: contain;
}
.product-page-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.product-page-hero-info h1 {
  font-size: 56px;
  font-weight: 400;
  color: #222;
  margin-bottom: 32px;
}
.product-page-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.product-page-spec .spec-val {
  font-size: 24px;
  font-weight: 500;
  color: #222;
}
.product-page-spec .spec-lbl {
  font-size: 13px;
  font-weight: 300;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.product-page-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #444;
  margin-bottom: 32px;
}
.product-page-price {
  font-size: 28px;
  font-weight: 400;
  color: #222;
  margin-bottom: 24px;
}
.product-page-price .price-ttc {
  font-size: 16px;
  color: #999;
  font-weight: 300;
}
.product-page-cta {
  display: inline-block;
  padding: 18px 48px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}
.product-page-cta:hover {
  background: #444;
}
.product-page-features {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 24px;
}
.product-page-features h2 {
  font-size: 36px;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.feature-item h3 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}
.product-page-specs-full {
  background: #f5f5f5;
  padding: 80px 24px;
}
.product-page-specs-full h2 {
  font-size: 36px;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-bottom: 48px;
}
.specs-table {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.specs-table-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.specs-table-label {
  font-size: 15px;
  font-weight: 300;
  color: #999;
}
.specs-table-value {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}
@media (max-width: 768px) {
  .product-page-hero {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .product-page-hero-img {
    min-height: 50vh;
    padding: 32px;
  }
  .product-page-hero-info {
    padding: 32px 20px;
  }
  .product-page-hero-info h1 {
    font-size: 36px;
  }
  .product-page-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   V16 — PREMIUM MOTION DESIGN & INTERNATIONAL BRAND FEEL
   ============================================================ */

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === PAGE LOAD FADE-IN === */
@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
body {
  animation: pageReveal 0.6s ease-out;
}

/* === LOADING SCREEN === */
.vypers-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.vypers-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.vypers-loader img {
  width: 60px;
  height: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > * {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in from left/right for editorial duo */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale reveal for images */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* === HERO PARALLAX === */
.vypers-hero {
  overflow: hidden;
}
.vypers-hero .wp-block-cover__image-background {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* === HERO TEXT ENTRANCE ANIMATION === */
@keyframes heroTextSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vypers-hero h1 {
  animation: heroTextSlide 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.vypers-hero .hero-subtitle {
  animation: heroTextSlide 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.vypers-hero .wp-block-buttons {
  animation: heroTextSlide 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

/* === PREMIUM BUTTON EFFECTS === */
/* CTA buttons — underline slide-in */
.product-page-cta,
.wp-block-button__link,
.contact-submit,
.newsletter-form .newsletter-btn {
  position: relative;
  overflow: hidden;
}
.product-page-cta::after,
.contact-submit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.5);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-page-cta:hover::after,
.contact-submit:hover::after {
  left: 0;
}

/* Scale pulse on CTA hover */
.product-page-cta:hover,
.wp-block-button__link:hover {
  transform: scale(1.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

/* Nav links — underline grow from center */
.header-left a:not(.nav-dropdown-trigger)::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}
.header-left a:not(.nav-dropdown-trigger):hover::after,
.nav-dropdown-trigger:hover::after {
  width: 100%;
  left: 0;
}

/* Slide CTA arrow animation */
.slide-cta {
  position: relative;
  transition: padding-right 0.3s ease, opacity 0.2s ease;
}
.slide-cta:hover {
  padding-right: 8px;
  opacity: 1 !important;
}

/* Footer links hover */
.footer-link a {
  position: relative;
  display: inline-block;
}
.footer-link a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.footer-link a:hover::after {
  width: 100%;
}

/* === EDITORIAL DUO HOVER ZOOM === */
.editorial-card-cover {
  overflow: hidden;
}
.editorial-card-cover .wp-block-cover__image-background {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card-cover:hover .wp-block-cover__image-background {
  transform: scale(1.05);
}

/* === PRODUCT SLIDER ENHANCED === */
.products-slider {
  scroll-behavior: smooth;
}
.product-slide {
  transition: background 0.3s ease;
}
.product-slide:hover {
  background: #2a2a2a;
}
.product-slide-img img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-slide:hover .product-slide-img img {
  transform: scale(1.08);
}

/* === PRODUCT PAGE IMAGE HOVER === */
.product-page-hero-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-page-hero-img:hover img {
  transform: scale(1.05);
}

/* === PRODUCT DETAIL IMAGE HOVER === */
.product-detail-cols .wp-block-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-detail-cols .wp-block-image:hover img {
  transform: scale(1.03);
}

/* === STICKY CTA BAR (product pages) === */
.sticky-cta-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1000;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta-bar.show {
  bottom: 0;
}
.sticky-cta-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}
.sticky-cta-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.sticky-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sticky-cta-btn:hover {
  background: #e0e0e0;
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .sticky-cta-bar {
    gap: 16px;
    padding: 0 16px;
    height: 64px;
  }
  .sticky-cta-name {
    font-size: 15px;
  }
  .sticky-cta-price {
    display: none;
  }
  .sticky-cta-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* === SPECS COUNTER ANIMATION === */
.spec-value,
.spec-val {
  transition: opacity 0.3s ease;
}
.spec-counting {
  opacity: 1 !important;
}

/* === VISION PAGE PARALLAX === */
.vision-full-img img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* === BRAND SECTION IMAGE HOVER === */
.brand-section .wp-block-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-section .wp-block-image:hover img {
  transform: scale(1.03);
}

/* === TABS BAR — smooth active state transition === */
.hero-tabs-bar .wp-block-button__link {
  position: relative;
}
.hero-tabs-bar .wp-block-button__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
}
.hero-tabs-bar .wp-block-button__link:hover::before {
  width: 100%;
  left: 0;
}

/* === NEWSLETTER SECTION GLOW EFFECT === */
.newsletter-section {
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 50%);
  animation: newsletterGlow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes newsletterGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, -5%); }
}

/* === HEADER LOGO HOVER === */
.header-logo-img {
  transition: opacity 0.3s ease;
}
.header-logo-img:hover {
  opacity: 0.7;
}

/* === SMOOTH IMAGE LOAD === */
.wp-block-image img,
.product-slide-img img,
.product-page-hero-img img {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.wp-block-image img.img-loaded,
.product-slide-img img.img-loaded,
.product-page-hero-img img.img-loaded,
.wp-block-image img[data-loaded],
.product-slide-img img[data-loaded],
.product-page-hero-img img[data-loaded] {
  opacity: 1;
}
/* Fallback — ensure images show even without JS */
.no-js .wp-block-image img,
.no-js .product-slide-img img,
.no-js .product-page-hero-img img {
  opacity: 1;
}


/* ============================================================
   V16.5 — FIXES: Newsletter, Slider, Lang switcher, Venom
   ============================================================ */

/* === FIX 1: Newsletter section — center everything === */
.wp-block-group.newsletter-section {
  text-align: center !important;
  padding-left: 56px !important;
  padding-right: 56px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.newsletter-section h2 {
  text-align: center !important;
  width: 100% !important;
}
.newsletter-section .newsletter-desc {
  text-align: center !important;
  max-width: 500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.newsletter-form {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 480px !important;
}
/* Hide old newsletter elements if they exist */
.newsletter-section > .newsletter-input-wrap,
.newsletter-section > .newsletter-arrow-btn,
.newsletter-section > .newsletter-placeholder {
  display: none !important;
}

/* === FIX 2: Slider — left arrow + both arrows styling === */
.slider-arrow-left {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
}
.slider-arrow-left:hover,
.slider-arrow-right:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.slider-arrow-left svg,
.slider-arrow-right svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
}
.slider-arrow-left.visible {
  opacity: 1;
}
@media (max-width: 768px) {
  .slider-arrow-left,
  .slider-arrow-right {
    display: none !important;
  }
}

/* === FIX 3: Lang switcher — invert on scroll === */
.site-header--scrolled .lang-link {
  color: rgba(0, 0, 0, 0.4) !important;
}
.site-header--scrolled .lang-link.active {
  color: #222 !important;
}
.site-header--scrolled .lang-link:hover {
  color: #222 !important;
}
.site-header--scrolled .lang-sep {
  color: rgba(0, 0, 0, 0.2) !important;
}

/* === FIX 4: Venom image in slider — force same size === */
.product-slide-img {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product-slide-img img {
  max-width: 65% !important;
  max-height: 260px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}


/* === FIX: Newsletter h2 centered === */
.newsletter-section .wp-block-heading,
.newsletter-section h2 {
  text-align: center !important;
  width: 100% !important;
}

/* ============================================================
   V16.6 — CRITICAL FIX: Images visibility + spacing
   ============================================================ */

/* Fix: images must be visible by default, smooth load only for specific ones */
.wp-block-image img,
.product-slide-img img,
.product-page-hero-img img {
  opacity: 1 !important;
}
/* Smooth load only on images that haven't loaded yet (progressive enhancement) */
img.vypers-lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img.vypers-lazy[data-loaded] {
  opacity: 1;
}

/* Fix: reduce gaps between product detail sections */
.product-detail {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.product-detail.has-border-top {
  border-top: 1px solid #e0e0e0 !important;
}

/* Fix: product detail image containers */
.product-detail-cols .wp-block-image {
  overflow: hidden;
}
.product-detail-cols .wp-block-image img {
  width: 100% !important;
  height: auto !important;
  max-height: 600px !important;
  object-fit: cover !important;
}

/* Fix: brand section spacing */
.brand-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin-top: 0 !important;
}
.brand-section h2 {
  text-align: center !important;
}
.brand-section .brand-desc {
  text-align: center !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 48px !important;
}

/* Fix: products section top spacing */
.products-section {
  padding-top: 80px !important;
  padding-bottom: 40px !important;
}

/* Fix: editorial duo margin cleanup */
.editorial-duo {
  margin-bottom: 0 !important;
}

/* Fix: newsletter section better spacing */
.newsletter-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix: section gaps — remove WP default margins */
.entry-content > .wp-block-group,
.entry-content > .wp-block-columns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* ============================================================
   V16.7 — RELIABLE REVEAL: ensure sections always become visible
   ============================================================ */

/* Reveal fallback — if JS fails or observer misses, show after 2s */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  animation: revealFallback 0s ease 2.5s forwards;
}
@keyframes revealFallback {
  to {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* When JS marks as visible, cancel the fallback */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  animation: none;
}

/* Also ensure stagger children become visible */
.reveal-stagger > * {
  animation: revealFallback 0s ease 3s forwards;
}
.reveal-stagger.visible > * {
  animation: none;
  opacity: 1 !important;
  transform: none !important;
}


/* ============================================================
   V16.8 — DEFINITIVE FIX: Simple, reliable reveal system
   ============================================================ */

/* Override all previous reveal rules — start visible, animate IN when observed */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-stagger > * {
  animation: none !important;
}

/* Only hide elements that JS has explicitly marked as ready to animate */
.reveal-ready {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-ready.reveal-up { transform: translateY(40px) !important; }
.reveal-ready.reveal-left { transform: translateX(-40px) !important; }
.reveal-ready.reveal-right { transform: translateX(40px) !important; }
.reveal-ready.reveal-scale { transform: scale(0.95) !important; }

/* When visible, show */
.reveal-ready.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger children — only when parent is marked ready */
.reveal-ready.reveal-stagger > * {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-ready.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s !important; }
.reveal-ready.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s !important; }
.reveal-ready.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s !important; }
.reveal-ready.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s !important; }
.reveal-ready.reveal-stagger.visible > * {
  opacity: 1 !important;
  transform: none !important;
}


/* ============================================================
   V16.9 — NUCLEAR FIX: Override ALL old reveal rules
   ============================================================ */

/* Kill all old reveal opacity/transform — elements visible by default */
.reveal-up:not(.reveal-ready),
.reveal-left:not(.reveal-ready),
.reveal-right:not(.reveal-ready),
.reveal-scale:not(.reveal-ready) {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger children visible by default too */
.reveal-stagger:not(.reveal-ready) > * {
  opacity: 1 !important;
  transform: none !important;
}


/* ============================================================
   V17 — SLIDER FIX + LEICA-STYLE PRODUCT PAGES
   ============================================================ */

/* === SLIDER: Force all images to same visual weight === */
.product-slide-img {
  height: 300px !important;
  min-height: 300px !important;
  max-height: 300px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 20px !important;
}
.product-slide-img img {
  max-width: 220px !important;
  max-height: 260px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}
@media (max-width: 768px) {
  .product-slide-img {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .product-slide-img img {
    max-width: 160px !important;
    max-height: 190px !important;
  }
}

/* === NEWSLETTER: Force center title === */
.wp-block-group.newsletter-section > .wp-block-heading {
  text-align: center !important;
}
.newsletter-section .wp-block-heading {
  text-align: center !important;
}
h2.wp-block-heading[data-en="Vypers News"] {
  text-align: center !important;
}

/* ============================================================
   LEICA-STYLE PRODUCT PAGES V2
   ============================================================ */

/* Product page container */
.product-leica {
  font-family: 'Outfit', sans-serif;
  color: #222;
}

/* Sub-nav tabs (like Leica: Découvrez plus | Fiche technique | Acheter) */
.product-subnav {
  position: sticky;
  top: 77px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  height: 56px;
  align-items: center;
}
.product-subnav a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.product-subnav a:hover,
.product-subnav a.active {
  color: #222;
  border-bottom-color: #222;
}

/* Hero: centered product on light bg */
.product-leica-hero {
  background: #f5f5f5;
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 70vh;
  justify-content: center;
}
.product-leica-hero img {
  max-width: 500px;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 48px;
}
.product-leica-hero h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.product-leica-hero .hero-tagline {
  font-size: 20px;
  font-weight: 300;
  color: #666;
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.product-leica-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.cta-primary:hover {
  background: #444;
  transform: scale(1.02);
}
.cta-primary .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: #222;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #ccc;
  border-radius: 50px;
  transition: border-color 0.2s, transform 0.2s;
}
.cta-secondary:hover {
  border-color: #222;
  transform: scale(1.02);
}

/* Intro text section */
.product-leica-intro {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.product-leica-intro p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
}

/* Full-width image section */
.product-leica-fullimg {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.product-leica-fullimg img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

/* Feature section: image left, text right (alternating) */
.product-leica-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.product-leica-feature.reverse {
  direction: rtl;
}
.product-leica-feature.reverse > * {
  direction: ltr;
}
.product-leica-feature-img {
  overflow: hidden;
}
.product-leica-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-leica-feature-img:hover img {
  transform: scale(1.03);
}
.product-leica-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: #fff;
}
.product-leica-feature-text h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
.product-leica-feature-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

/* Specs section */
.product-leica-specs {
  background: #f5f5f5;
  padding: 80px 24px;
}
.product-leica-specs h2 {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
}
.product-leica-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto 56px;
  background: #e0e0e0;
}
.product-leica-spec-cell {
  background: #f5f5f5;
  padding: 32px 24px;
  text-align: center;
}
.product-leica-spec-cell .val {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}
.product-leica-spec-cell .lbl {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Full specs table */
.product-leica-specs-table {
  max-width: 700px;
  margin: 0 auto;
}
.product-leica-specs-table .row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
}
.product-leica-specs-table .row .label {
  font-weight: 300;
  color: #888;
}
.product-leica-specs-table .row .value {
  font-weight: 500;
  color: #222;
  text-align: right;
}

/* Bottom CTA section */
.product-leica-bottom-cta {
  text-align: center;
  padding: 80px 24px;
  background: #111;
  color: #fff;
}
.product-leica-bottom-cta h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 16px;
}
.product-leica-bottom-cta p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.product-leica-bottom-cta .cta-primary {
  background: #fff;
  color: #222;
}
.product-leica-bottom-cta .cta-primary:hover {
  background: #e0e0e0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-subnav {
    gap: 16px;
    padding: 0 16px;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .product-subnav a {
    font-size: 13px;
    white-space: nowrap;
  }
  .product-leica-hero {
    padding: 48px 20px;
    min-height: 60vh;
  }
  .product-leica-hero img {
    max-width: 280px;
    max-height: 250px;
  }
  .product-leica-hero h1 {
    font-size: 42px;
  }
  .product-leica-ctas {
    flex-direction: column;
    width: 100%;
  }
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .product-leica-intro p {
    font-size: 18px;
  }
  .product-leica-feature {
    grid-template-columns: 1fr;
  }
  .product-leica-feature.reverse {
    direction: ltr;
  }
  .product-leica-feature-img {
    min-height: 300px;
  }
  .product-leica-feature-text {
    padding: 40px 20px;
  }
  .product-leica-feature-text h2 {
    font-size: 28px;
  }
  .product-leica-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-leica-bottom-cta h2 {
    font-size: 32px;
  }
}


/* === V17.1 Press / Social proof section === */
.press-section {
  padding: 80px 56px;
  background: #fff;
  text-align: center;
}
.press-section h2 {
  font-size: 36px;
  font-weight: 400;
  color: #222;
  margin-bottom: 56px;
}
.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.press-quote {
  text-align: center;
  padding: 0 16px;
}
.press-quote blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin: 0 0 16px;
  padding: 0;
  border: none;
}
.press-quote cite {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  font-style: normal;
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.press-logos span {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .press-section {
    padding: 48px 20px;
  }
  .press-quotes {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .press-logos {
    gap: 24px;
  }
}

/* ============================================================
   V17.2 — PRODUCT PAGE HEADER FIX + SLIDER + MOBILE
   ============================================================ */

/* Product pages: header must be dark initially (like homepage) */
.product-leica .product-subnav {
  margin-top: 77px;
}

/* Product page hero: larger on mobile */
@media (max-width: 768px) {
  .product-leica-hero {
    min-height: 80vh !important;
    padding: 40px 20px !important;
  }
  .product-leica-hero img {
    max-width: 70vw !important;
    max-height: 45vh !important;
  }
}

/* Slider: tighter image control — all products visually same size */
.product-slide {
  align-items: stretch !important;
}
.product-slide-img {
  height: 280px !important;
  min-height: 280px !important;
  max-height: 280px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}
.product-slide-img img {
  max-width: 180px !important;
  max-height: 240px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
@media (max-width: 768px) {
  .product-slide-img {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
  }
  .product-slide-img img {
    max-width: 140px !important;
    max-height: 170px !important;
  }
}

/* Feature images: prevent distortion */
.product-leica-feature-img {
  min-height: 450px;
}
.product-leica-feature-img img {
  min-height: 450px;
}

/* Quote styling in features */
.product-leica-feature-text .feature-quote {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  font-style: italic;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}
.product-leica-feature-text .feature-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #bbb;
}

/* Feature icons */
.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}
.feature-icon-item {
  text-align: center;
}
.feature-icon-item .icon-label {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.feature-icon-item .icon-value {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-top: 2px;
}
.feature-icon-item svg {
  width: 28px;
  height: 28px;
  stroke: #222;
  fill: none;
  stroke-width: 1.5;
}


/* === V17.3 SLIDER: Exact same visual height for ALL products === */
.product-slide-img img {
  max-width: 200px !important;
  max-height: 200px !important;
  width: auto !important;
  height: 200px !important;
  object-fit: contain !important;
}
@media (max-width: 768px) {
  .product-slide-img img {
    max-width: 150px !important;
    max-height: 150px !important;
    height: 150px !important;
  }
}

/* === V17.3b: Product pages header = dark by default === */
/* On product pages, hero is light gray, so header must be dark initially */
/* Then transitions to white on scroll like everywhere else */
body:has(.product-leica) .site-header:not(.site-header--scrolled) {
  background: #111 !important;
}
body:has(.product-leica) .site-header:not(.site-header--scrolled) a,
body:has(.product-leica) .site-header:not(.site-header--scrolled) .nav-dropdown-trigger {
  color: #fff !important;
}
body:has(.product-leica) .site-header:not(.site-header--scrolled) svg {
  stroke: #fff !important;
}
body:has(.product-leica) .site-header:not(.site-header--scrolled) .header-logo-img {
  filter: brightness(0) invert(1);
}
body:has(.product-leica) .site-header:not(.site-header--scrolled) .lang-link {
  color: rgba(255,255,255,0.5) !important;
}
body:has(.product-leica) .site-header:not(.site-header--scrolled) .lang-link.active {
  color: #fff !important;
}
body:has(.product-leica) .site-header:not(.site-header--scrolled) .lang-sep {
  color: rgba(255,255,255,0.3) !important;
}

/* === V17.4: Product page header dark (using body class from JS) === */
body.is-product-page .site-header:not(.site-header--scrolled) {
  background: #111 !important;
}
body.is-product-page .site-header:not(.site-header--scrolled) a,
body.is-product-page .site-header:not(.site-header--scrolled) .nav-dropdown-trigger {
  color: #fff !important;
}
body.is-product-page .site-header:not(.site-header--scrolled) svg {
  stroke: #fff !important;
}
body.is-product-page .site-header:not(.site-header--scrolled) .header-logo-img {
  filter: brightness(0) invert(1);
}
body.is-product-page .site-header:not(.site-header--scrolled) .lang-link {
  color: rgba(255,255,255,0.5) !important;
}
body.is-product-page .site-header:not(.site-header--scrolled) .lang-link.active {
  color: #fff !important;
}
body.is-product-page .site-header:not(.site-header--scrolled) .lang-sep {
  color: rgba(255,255,255,0.3) !important;
}
/* Hamburger in white */
body.is-product-page .site-header:not(.site-header--scrolled) .header-menu-toggle span {
  background: #fff !important;
}


/* =============================================
   VYPERS VAPES - Luxury Premium Design System
   Inspired by Leica Camera
   ============================================= */

/* === NAVIGATION - Elegant hover effects === */
.wp-block-navigation-item a,
.wp-block-navigation a,
.site-header .nav-link {
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  transition: opacity 0.3s ease !important;
}

.wp-block-navigation-item a:hover,
.wp-block-navigation a:hover,
.site-header .nav-link:hover {
  opacity: 0.65 !important;
}

/* === BUTTONS - Refined Luxury CTAs === */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  padding: 16px 40px !important;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
}

/* === PRODUCT CARDS - Premium Shop Grid === */
ul.products {
  gap: 40px !important;
  padding: 40px 0 !important;
}

ul.products li.product {
  background: #fafafa !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
}

ul.products li.product a img,
ul.products li.product .woocommerce-loop-product__link img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  padding: 30px !important;
  mix-blend-mode: multiply;
  background: linear-gradient(145deg, #f5f5f5 0%, #ececec 100%) !important;
}

ul.products li.product:hover a img {
  transform: scale(1.05) !important;
}

ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.85rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  margin-top: 20px !important;
  padding: 0 20px !important;
  color: #1a1a1a !important;
}

ul.products li.product .price {
  font-size: 0.9rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 300 !important;
  color: #666 !important;
  padding: 0 20px !important;
  margin-bottom: 20px !important;
}

ul.products li.product .button,
ul.products li.product a.add_to_cart_button {
  margin: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  padding: 18px 20px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.4s ease !important;
  font-weight: 500 !important;
}

ul.products li.product .button:hover {
  background: #333 !important;
}

/* === SHOP PAGE HEADER === */
.woocommerce-page .woocommerce-products-header__title,
.page-title {
  font-size: 2.4rem !important;
  font-weight: 200 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 50px !important;
}

.woocommerce-result-count {
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #999 !important;
}

.woocommerce-ordering select {
  border: 1px solid #ddd !important;
  padding: 12px 40px 12px 20px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}

.woocommerce-breadcrumb {
  font-size: 0.7rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #999 !important;
}

.woocommerce-breadcrumb a {
  color: #999 !important;
  text-decoration: none !important;
}

.woocommerce-breadcrumb a:hover {
  color: #1a1a1a !important;
}

/* === SINGLE PRODUCT === */
.single-product .product_title {
  font-size: 2rem !important;
  font-weight: 200 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.single-product .price {
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
}

.single-product .single_add_to_cart_button {
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  padding: 18px 50px !important;
  border-radius: 0 !important;
  background: #1a1a1a !important;
  font-weight: 500 !important;
}

/* === SOCIAL MEDIA ICONS === */
.social-icons a,
.footer-social a,
.wp-block-social-links .wp-block-social-link {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  opacity: 0.6;
}

.social-icons a:hover,
.footer-social a:hover,
.wp-block-social-links .wp-block-social-link:hover {
  opacity: 1 !important;
  transform: translateY(-2px) !important;
}

/* === SELECTION & SCROLLBAR === */
::selection {
  background: rgba(180, 30, 30, 0.15);
  color: inherit;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  ul.products li.product a img { padding: 20px !important; }
  .woocommerce-page .woocommerce-products-header__title {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 480px) {
  ul.products { gap: 20px !important; }
}

/* =============================================
   LUXURY OVERRIDES - High specificity
   ============================================= */

body.woocommerce .shop-page ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page .shop-page ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.85rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  margin-top: 20px !important;
  padding: 0 20px !important;
  color: #1a1a1a !important;
}

body.woocommerce .shop-page ul.products li.product .price,
body.woocommerce-page .shop-page ul.products li.product .price,
body.woocommerce ul.products li.product .price {
  font-size: 0.9rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 300 !important;
  color: #666 !important;
  padding: 0 20px !important;
  margin-bottom: 20px !important;
}

body.woocommerce .shop-page ul.products li.product .button,
body.woocommerce .shop-page ul.products li.product .add_to_cart_button,
body.woocommerce-page ul.products li.product .button,
body.woocommerce-page ul.products li.product .add_to_cart_button {
  margin: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  padding: 18px 20px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.4s ease !important;
  font-weight: 500 !important;
  display: block !important;
  text-align: center !important;
}

body.woocommerce .shop-page ul.products li.product .button:hover,
body.woocommerce-page ul.products li.product .button:hover {
  background: #333 !important;
}

body.woocommerce .shop-page ul.products li.product,
body.woocommerce-page ul.products li.product {
  background: #fafafa !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

body.woocommerce .shop-page ul.products li.product:hover,
body.woocommerce-page ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
}

body.woocommerce .shop-page ul.products li.product a img,
body.woocommerce-page ul.products li.product a img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  padding: 30px !important;
  background: linear-gradient(145deg, #f5f5f5 0%, #ececec 100%) !important;
}

body.woocommerce .shop-page ul.products li.product:hover a img,
body.woocommerce-page ul.products li.product:hover a img {
  transform: scale(1.05) !important;
}

/* Shop page title */
body.woocommerce-page .woocommerce-products-header__title {
  font-size: 2.4rem !important;
  font-weight: 200 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 50px !important;
  font-style: normal !important;
}

body.woocommerce-page .woocommerce-result-count {
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #999 !important;
}

body.woocommerce-page .woocommerce-ordering select {
  border: 1px solid #ddd !important;
  padding: 12px 40px 12px 20px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}

body.woocommerce-page .woocommerce-breadcrumb {
  font-size: 0.7rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #999 !important;
}

body.woocommerce-page .woocommerce-breadcrumb a {
  color: #999 !important;
  transition: color 0.3s ease;
}

body.woocommerce-page .woocommerce-breadcrumb a:hover {
  color: #1a1a1a !important;
}

/* Single product */
body.single-product .product_title.entry-title {
  font-size: 2rem !important;
  font-weight: 200 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

body.single-product .price {
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
}

body.single-product .single_add_to_cart_button {
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  padding: 18px 50px !important;
  border-radius: 0 !important;
  background: #1a1a1a !important;
  font-weight: 500 !important;
}

/* =============================================
   NOTRE VISION PAGE - Premium Aspirational
   ============================================= */

/* Vision page hero */
.page-id-730 .wp-block-cover:first-of-type,
body.page-id-730 .wp-block-cover {
  min-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
}

body.page-id-730 .wp-block-cover h1,
body.page-id-730 .wp-block-cover h2,
body.page-id-730 .wp-block-cover .wp-block-heading {
  font-weight: 200 !important;
  letter-spacing: 0.08em !important;
  font-size: 3.5rem !important;
  line-height: 1.15 !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

body.page-id-730 .wp-block-cover p:not(.wp-block-heading) {
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
  font-size: 1.2rem !important;
  opacity: 0.8;
  max-width: 520px;
}

/* Vision content sections */
body.page-id-730 .entry-content > .wp-block-group,
body.page-id-730 .wp-block-post-content > .wp-block-group {
  padding: 100px 0 !important;
}

body.page-id-730 .entry-content h2,
body.page-id-730 .wp-block-post-content h2 {
  font-weight: 200 !important;
  letter-spacing: 0.06em !important;
  font-size: 2.4rem !important;
  line-height: 1.2 !important;
  margin-bottom: 40px !important;
}

body.page-id-730 .entry-content h3,
body.page-id-730 .wp-block-post-content h3 {
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
  font-size: 1.6rem !important;
  margin-bottom: 20px !important;
}

body.page-id-730 .entry-content p,
body.page-id-730 .wp-block-post-content p {
  font-size: 1.05rem !important;
  line-height: 1.9 !important;
  letter-spacing: 0.015em !important;
  color: #444 !important;
  max-width: 680px;
}

/* Vision page full-width images */
body.page-id-730 .wp-block-image img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

body.page-id-730 .wp-block-image:hover img {
  transform: scale(1.02) !important;
}

/* Vision page columns */
body.page-id-730 .wp-block-columns {
  gap: 60px !important;
  padding: 60px 0 !important;
}

body.page-id-730 .wp-block-column h3 {
  font-size: 1.3rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  margin-bottom: 16px !important;
  color: #1a1a1a !important;
}

body.page-id-730 .wp-block-column p {
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  color: #666 !important;
}

/* Vision separator */
body.page-id-730 .wp-block-separator {
  border-color: #e0e0e0 !important;
  max-width: 80px !important;
  margin: 60px auto !important;
}

/* ============================================
 *  MOBILE FIX: Uniform product card images
 *  Added 2026-04-08
 * ============================================ */
@media (max-width: 768px) {
  .product-slide {
    flex: 0 0 80% !important;
    min-height: auto !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
  }
  .product-slide-img {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 10px 0 !important;
  }
  .product-slide-img img {
    width: 180px !important;
    height: 180px !important;
    max-width: 80% !important;
    max-height: 180px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
}
@media (max-width: 480px) {
  .product-slide {
    flex: 0 0 85% !important;
  }
  .product-slide-img img {
    width: 150px !important;
    height: 160px !important;
    max-width: 75% !important;
    max-height: 160px !important;
    object-fit: contain !important;
  }
}

/* ========================================
   PHASE 2 — Nav Badge & Footer Redesign
   ======================================== */

/* Nav badge for "Coming soon" items */
.nav-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
  pointer-events: none;
}

.nav-coming-soon {
  opacity: 0.5;
}

/* Footer redesign — dark surface, institutional */
.site-footer {
  background: #0a0a0a;
  color: #8a8a8a;
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img {
  max-width: 140px;
  height: auto;
  opacity: 0.9;
}

.footer-col-title {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.footer-link {
  margin: 0 0 10px 0;
}

.footer-link a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.footer-link a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  color: #555;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

a.footer-legal:hover {
  color: #8a8a8a;
}

/* Footer responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 48px 24px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* =============================================
   DARK SECTIONS - TEXT COLOR OVERRIDES
   ============================================= */
.products-section,
.products-section h2,
.products-section h3,
.products-section h4,
.products-section p,
.products-section a,
.products-section span,
.products-section label,
.products-section li,
.product-detail,
.product-detail h2,
.product-detail h3,
.product-detail h4,
.product-detail p,
.product-detail a,
.product-detail span,
.product-detail .spec-value,
.product-detail .product-name,
.product-detail .product-desc,
.product-detail .product-price,
.brand-section,
.brand-section h2,
.brand-section h3,
.brand-section h4,
.brand-section p,
.brand-section a,
.brand-section span,
.newsletter-section,
.newsletter-section h2,
.newsletter-section h3,
.newsletter-section h4,
.newsletter-section p,
.newsletter-section a,
.newsletter-section span,
.newsletter-section label {
  color: #FFFFFF !important;
}

.product-detail .spec-label,
.product-detail .product-desc {
  color: #aaaaaa !important;
}

.slide-cta {
  color: #FFFFFF !important;
}

.slide-coming {
  color: #666666 !important;
}

.product-detail .wp-block-button__link,
.brand-section .wp-block-button__link {
  color: #222 !important;
  background-color: #fff !important;
}


/* =============================================
   WP BLOCK COVER - CORE STYLES (missing)
   ============================================= */
.wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 430px;
}

.wp-block-cover .wp-block-cover__background,
.wp-block-cover .has-background-dim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.wp-block-cover .wp-block-cover__image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* FINAL TEXT FIXES */
.brand-section .brand-desc { color: #cccccc !important; }
.slide-cta { color: #FFFFFF !important; }
