/* ============================================================
   VOLTCASA — Ultra Modern v6 (Tesla / Nothing / Linear / Framer)
   2026-05-13
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --vc-ink:         #0A0E27;
  --vc-ink-soft:    #1E2340;
  --vc-blue:        #2563EB;
  --vc-electric:    #00D4FF;
  --vc-violet:      #7C3AED;
  --vc-pink:        #EC4899;
  --vc-yellow:      #FFB800;
  --vc-green:       #10B981;
  --vc-text:        #0A0E27;
  --vc-muted:       #6B7280;
  --vc-faint:       #9CA3AF;
  --vc-bg:          #FAFAFA;
  --vc-surface:     #FFFFFF;
  --vc-line:        #E5E7EB;
  --vc-line-soft:   #F3F4F6;
  --vc-shadow-sm:   0 1px 2px rgba(10,14,39,.04);
  --vc-shadow:      0 8px 32px rgba(10,14,39,.08);
  --vc-shadow-lg:   0 32px 80px rgba(10,14,39,.16);
  --vc-shadow-glow: 0 12px 48px rgba(37,99,235,.18);
  --vc-radius:      16px;
  --vc-radius-lg:   24px;
}

/* ---------- Base ---------- */
body, body.classic {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: var(--vc-text);
  background: var(--vc-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--vc-ink);
  line-height: 1.1;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.2rem; }

a { color: var(--vc-blue); transition: color .15s ease; text-decoration: none; }
a:hover { color: var(--vc-ink); }

* { box-sizing: border-box; }

/* Kill PrestaShop demo noise */
.banner, #ps_banner_block, .block-banner { display: none !important; }
.product-flag.out_of_stock,
.product-flag.discount-amount,
.product-flag.online-only,
.product-flag.discount-percentage { display: none !important; }

/* ============================================================
   HEADER — clean white with glass on scroll
   ============================================================ */
#header {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--vc-line);
  position: sticky;
  top: 0;
  z-index: 99;
}
#header .header-nav {
  background: var(--vc-ink);
  color: #fff;
  font-size: .8rem;
  padding: .5rem 0;
  font-weight: 500;
  letter-spacing: .01em;
  font-family: 'JetBrains Mono', monospace;
}
#header .header-nav a, #header .header-nav .text-muted, #header .header-nav span {
  color: rgba(255,255,255,.8) !important;
  font-family: 'JetBrains Mono', monospace;
}
#header .header-nav a:hover { color: var(--vc-electric) !important; }

#header .header-top { padding: 1.1rem 0; }
#_desktop_logo img, #_mobile_logo img { max-height: 56px; }

.top-menu .top-menu-item > a, .top-menu a[data-depth="0"] {
  color: var(--vc-ink) !important;
  font-weight: 500 !important;
  font-size: .92rem;
  padding: .85rem 1.1rem !important;
  text-transform: none !important;
  border-radius: 10px;
  transition: all .15s ease;
  font-family: 'Inter', sans-serif !important;
}
.top-menu a[data-depth="0"]:hover {
  background: var(--vc-line-soft);
  color: var(--vc-blue) !important;
}

#search_widget input[type="text"], #search_widget input[type="search"] {
  border: 1px solid var(--vc-line) !important;
  border-radius: 999px !important;
  padding: .55rem 1.2rem !important;
  font-size: .9rem;
  background: var(--vc-line-soft);
  min-width: 240px;
  transition: all .15s;
}
#search_widget input:focus {
  border-color: var(--vc-blue) !important;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.1) !important;
}

/* ============================================================
   HERO — gradient mesh + parallax + big bold typo
   ============================================================ */
#carousel, .carousel.slide {
  position: relative;
  margin: 0 auto;
  max-width: 1320px;
  padding: 1.5rem 1.5rem 0;
  overflow: visible;
}

.carousel-inner {
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  background: var(--vc-ink);
  position: relative;
  height: 540px;
  max-height: 70vh;
  isolation: isolate;
}

/* Animated mesh gradient — Stripe/Linear style */
.carousel-inner::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle 600px at 20% 30%, rgba(124,58,237,.6), transparent),
    radial-gradient(circle 700px at 75% 65%, rgba(37,99,235,.7), transparent),
    radial-gradient(circle 500px at 50% 100%, rgba(0,212,255,.4), transparent),
    radial-gradient(circle 400px at 90% 10%, rgba(236,72,153,.4), transparent);
  animation: meshFloat 22s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}
@keyframes meshFloat {
  0%   { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(-30px,20px) rotate(8deg); }
  100% { transform: translate(20px,-30px) rotate(-5deg); }
}

/* Subtle noise texture */
.carousel-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='.9' /></filter><rect width='100' height='100' filter='url(%23n)' opacity='.4'/></svg>");
  opacity: .15;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

.carousel .carousel-item {
  height: 540px;
  max-height: 70vh;
  background: transparent;
  position: relative;
  transition: opacity 1s cubic-bezier(.22,.61,.36,1) !important;
  opacity: 0;
}
.carousel .carousel-item.active { opacity: 1; z-index: 2; }
.carousel-item, .carousel-item.active, .carousel-item-next, .carousel-item-prev {
  transform: none !important;
}

.carousel .carousel-item img,
.carousel .carousel-item picture { display: none !important; }

.carousel .carousel-item .caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  z-index: 5;
  padding: 4rem 5rem;
  max-width: 800px;
}

.carousel .carousel-item .caption-description,
.carousel .carousel-item .caption-description * { color: #fff !important; }

.carousel .carousel-item .caption .display-1,
.carousel .display-1 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 4rem !important;
  font-weight: 700 !important;
  letter-spacing: -.04em;
  line-height: .98;
  margin-bottom: 1.5rem;
  color: #fff !important;
  background: linear-gradient(135deg, #fff 0%, #b3d9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 700px;
}

.carousel .caption p {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 540px;
  margin: 0 0 2rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85) !important;
  text-shadow: none;
}

.carousel .caption p strong {
  font-family: 'JetBrains Mono', monospace !important;
  color: var(--vc-electric) !important;
  font-weight: 500;
  font-size: .95em;
}

/* CTA — pill with arrow */
.carousel .caption a.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  color: var(--vc-ink) !important;
  padding: .95rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none !important;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.carousel .caption a.slide-cta::after {
  content: '→';
  font-size: 1.1em;
  transition: transform .25s;
}
.carousel .caption a.slide-cta:hover {
  background: var(--vc-electric);
  color: var(--vc-ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,212,255,.4);
}
.carousel .caption a.slide-cta:hover::after { transform: translateX(4px); }

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  opacity: 1;
  z-index: 6;
  top: 50%;
  margin-top: -24px;
  border-radius: 50%;
  transition: all .25s;
}
.carousel-control-prev { left: 3rem; }
.carousel-control-next { right: 3rem; }
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: #fff;
  border-color: #fff;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(100%);
  width: 14px; height: 14px;
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(15%);
}

.carousel-indicators {
  bottom: 2rem;
  margin: 0;
  z-index: 5;
}
.carousel-indicators li, .carousel-indicators button {
  background: rgba(255,255,255,.3) !important;
  border-radius: 999px !important;
  width: 24px !important;
  height: 3px !important;
  margin: 0 4px !important;
  border: none !important;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.carousel-indicators .active {
  background: #fff !important;
  width: 48px !important;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.featured-products, .products-section, #content-wrapper > section {
  padding: 5rem 0 4rem;
  max-width: 1320px;
  margin: 0 auto;
}

.featured-products h2, .products-section-title, section h2.h2 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vc-ink);
  text-align: center;
  margin: 0 0 .65rem;
  letter-spacing: -.035em;
}
.featured-products h2::before, .products-section-title::before {
  content: 'COLLECTION';
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  color: var(--vc-blue);
  letter-spacing: .25em;
  margin-bottom: 1.25rem;
}
.featured-products h2::after, .products-section-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--vc-ink);
  margin: 1.5rem auto 3.5rem;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.featured-products .products,
.products.row,
#products .products,
.product-list .products,
section.products,
#js-product-list .products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 !important;
  padding: 0 1.5rem;
}
@media (max-width: 1100px) {
  .featured-products .products, .products.row, #products .products,
  .product-list .products, section.products, #js-product-list .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .featured-products .products, .products.row, #products .products,
  .product-list .products, section.products, #js-product-list .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 520px) {
  .featured-products .products, .products.row, #products .products,
  .product-list .products, section.products, #js-product-list .products {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PASTEL PRODUCT CARDS — matches USP card style
   Each brand has its own pastel tint (like USPs)
   ============================================================ */
.vc-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 18px;
  border: 1px solid;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
  background: linear-gradient(135deg, var(--p-tint, #eff6ff), #fff);
  border-color: var(--p-border, #dbeafe);
  box-shadow: 0 4px 16px var(--p-shadow, rgba(0,102,255,.05));
}
.vc-p:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px var(--p-shadow-hover, rgba(0,102,255,.12));
  text-decoration: none;
  color: inherit;
}

/* === Brand palettes === */
.vc-p-wallbox {
  --p-tint: #fff5f0;
  --p-border: #fed7c3;
  --p-shadow: rgba(255,87,34,.06);
  --p-shadow-hover: rgba(255,87,34,.16);
  --p-color: #E64A19;
  --p-color-deep: #BF360C;
}
.vc-p-schneider {
  --p-tint: #f0fdf4;
  --p-border: #bbf7d0;
  --p-shadow: rgba(22,163,74,.06);
  --p-shadow-hover: rgba(22,163,74,.16);
  --p-color: #15803d;
  --p-color-deep: #14532d;
}
.vc-p-hager {
  --p-tint: #fef2f2;
  --p-border: #fecaca;
  --p-shadow: rgba(220,38,38,.06);
  --p-shadow-hover: rgba(220,38,38,.16);
  --p-color: #b91c1c;
  --p-color-deep: #7f1d1d;
}
.vc-p-legrand {
  --p-tint: #f9fafb;
  --p-border: #d1d5db;
  --p-shadow: rgba(31,41,55,.06);
  --p-shadow-hover: rgba(31,41,55,.16);
  --p-color: #1f2937;
  --p-color-deep: #0f172a;
}
.vc-p-cable {
  --p-tint: #eff6ff;
  --p-border: #bfdbfe;
  --p-shadow: rgba(37,99,235,.06);
  --p-shadow-hover: rgba(37,99,235,.16);
  --p-color: #1d4ed8;
  --p-color-deep: #1e3a8a;
}
.vc-p-ftm {
  --p-tint: #fffbeb;
  --p-border: #fde68a;
  --p-shadow: rgba(217,119,6,.06);
  --p-shadow-hover: rgba(217,119,6,.16);
  --p-color: #b45309;
  --p-color-deep: #78350f;
}
.vc-p-default {
  --p-tint: #eff6ff;
  --p-border: #bfdbfe;
  --p-shadow: rgba(11,95,255,.06);
  --p-shadow-hover: rgba(11,95,255,.16);
  --p-color: #1d4ed8;
  --p-color-deep: #1e3a8a;
}

/* === Icon area — white circle with image inside (mirror USP style) === */
.vc-p-icon {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px var(--p-shadow, rgba(0,102,255,.1));
  border: 1px solid rgba(255,255,255,.6);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.vc-p:hover .vc-p-icon {
  transform: scale(1.02);
}
.vc-p-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.vc-p:hover .vc-p-icon img { transform: scale(1.06); }

/* === Brand label === */
.vc-p-brand {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p-color, var(--vc-blue));
  margin-bottom: .55rem;
}

/* === Product name === */
.vc-p-name {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 .85rem;
  color: var(--p-color-deep, var(--vc-ink));
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

/* === Spec chip === */
.vc-p-spec {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  font-weight: 500;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: #fff;
  color: var(--p-color, var(--vc-ink));
  border: 1px solid var(--p-border, var(--vc-line));
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

/* === Price === */
.vc-p-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.vc-p-now {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--p-color-deep, var(--vc-ink));
  letter-spacing: -.025em;
}
.vc-p-old {
  font-family: 'JetBrains Mono', monospace;
  color: var(--vc-faint);
  text-decoration: line-through;
  font-size: .85rem;
}

/* === CTA pill === */
.vc-p-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--p-color, var(--vc-ink));
  color: #fff;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 4px 12px var(--p-shadow-hover);
}
.vc-p-cta span {
  display: inline-block;
  transition: transform .25s;
}
.vc-p:hover .vc-p-cta {
  background: var(--p-color-deep, var(--vc-ink));
  transform: translateY(-1px);
  box-shadow: 0 8px 22px var(--p-shadow-hover);
}
.vc-p:hover .vc-p-cta span {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .vc-p { padding: 1.5rem 1rem 1.25rem; }
  .vc-p-icon img { padding: 1.1rem; }
  .vc-p-name { font-size: .95rem; }
  .vc-p-now { font-size: 1.3rem; }
}

/* ============================================================
   LEGACY ULTRA MODERN PRODUCT CARDS — vc-x (unused now)
   ============================================================ */
.vc-x {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border-radius: var(--vc-radius-lg);
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.vc-x:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-6px);
}

/* Animated conic gradient glow border */
.vc-x-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--vc-radius-lg);
  padding: 1.5px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--vc-blue) 60deg,
    var(--vc-electric) 120deg,
    transparent 180deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  animation: rotateGlow 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.vc-x:hover .vc-x-glow { opacity: 1; }
@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

.vc-x-inner {
  position: relative;
  background: var(--vc-surface);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, box-shadow .35s ease;
  z-index: 2;
}
.vc-x:hover .vc-x-inner {
  border-color: transparent;
  box-shadow: var(--vc-shadow-glow);
}

/* === IMAGE SECTION === */
.vc-x-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--vc-line-soft);
  isolation: isolate;
}
.vc-x-img-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(37,99,235,.06), transparent),
    linear-gradient(180deg, var(--vc-line-soft) 0%, #fff 100%);
  z-index: 0;
  transition: background .5s ease;
}
.vc-x:hover .vc-x-img-bg {
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(37,99,235,.12), transparent),
    linear-gradient(180deg, #f5f8ff 0%, #fff 100%);
}
.vc-x-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.85rem;
  display: block;
  transition: transform .65s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  filter: drop-shadow(0 12px 24px rgba(10,14,39,.08));
}
.vc-x:hover .vc-x-img img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 24px 36px rgba(10,14,39,.16));
}

/* Power chip — mono techy */
.vc-x-power {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(10,14,39,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  padding: .35rem .7rem;
  border-radius: 999px;
  letter-spacing: .02em;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.1);
}
.vc-x-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vc-electric);
  box-shadow: 0 0 8px var(--vc-electric);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

/* === INFO SECTION === */
.vc-x-info {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  position: relative;
}

.vc-x-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .55rem;
}
.vc-x-brand {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vc-ink);
}
.vc-x-ref {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem;
  font-weight: 400;
  color: var(--vc-faint);
  letter-spacing: 0;
}

.vc-x-name {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem;
  color: var(--vc-ink);
  letter-spacing: -.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  flex: 1;
}

.vc-x-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--vc-line-soft);
}

.vc-x-price-block { display: flex; flex-direction: column; gap: .15rem; }
.vc-x-old {
  color: var(--vc-faint);
  text-decoration: line-through;
  font-size: .8rem;
  font-weight: 400;
  font-family: 'JetBrains Mono', monospace;
}
.vc-x-now {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--vc-ink);
  letter-spacing: -.025em;
  line-height: 1;
}

/* Arrow circle */
.vc-x-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--vc-line-soft);
  color: var(--vc-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
  flex-shrink: 0;
}
.vc-x:hover .vc-x-arrow {
  background: var(--vc-ink);
  color: #fff;
  transform: rotate(-45deg);
}
.vc-x-arrow svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .vc-x-img img { padding: 1.25rem; }
  .vc-x-info { padding: 1rem 1rem 1.15rem; }
  .vc-x-name { font-size: .95rem; }
  .vc-x-now { font-size: 1.2rem; }
  .vc-x-arrow { width: 32px; height: 32px; }
  .vc-x-arrow svg { width: 14px; height: 14px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary {
  border-radius: 12px !important;
  font-weight: 600 !important;
  padding: .75rem 1.6rem !important;
  transition: all .2s cubic-bezier(.22,.61,.36,1);
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .92rem !important;
}
.btn-primary, .btn.btn-primary {
  background: var(--vc-ink) !important;
  color: #fff !important;
  box-shadow: var(--vc-shadow-sm);
}
.btn-primary:hover, .btn.btn-primary:hover, .btn-primary:focus {
  background: var(--vc-blue) !important;
  transform: translateY(-1px);
  box-shadow: var(--vc-shadow);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
#product { padding: 3rem 0; }
#product h1.h1 {
  color: var(--vc-ink);
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: .65rem;
  letter-spacing: -.025em;
}
#product .product-prices .current-price,
#product .current-price-value {
  color: var(--vc-ink) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 2.6rem !important;
  font-weight: 700 !important;
  letter-spacing: -.025em;
}
#product .product-information {
  background: var(--vc-bg);
  padding: 1.5rem;
  border-radius: var(--vc-radius);
  border: 1px solid var(--vc-line);
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
}
#product .add-to-cart {
  background: var(--vc-ink) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: var(--vc-shadow-sm);
  transition: all .25s;
}
#product .add-to-cart:hover {
  background: var(--vc-blue) !important;
  transform: translateY(-2px);
  box-shadow: var(--vc-shadow-glow);
}
#product .images-container .product-cover img {
  border-radius: var(--vc-radius-lg);
  box-shadow: var(--vc-shadow);
}

/* ============================================================
   CATEGORY
   ============================================================ */
#category .block-category { padding: 2rem 0; }
#category h1, .category h1 {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--vc-ink);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.03em;
}
.category-cover img { border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow); }
#category #js-product-list-header,
#category .block-category-inner {
  background: #fff;
  padding: 2rem;
  border-radius: var(--vc-radius-lg);
  margin-bottom: 2rem;
  border: 1px solid var(--vc-line);
}

/* ============================================================
   FOOTER — dark with gradient mesh
   ============================================================ */
#footer, .page-footer {
  background:
    radial-gradient(ellipse 600px at 20% 0%, rgba(124,58,237,.15), transparent),
    radial-gradient(ellipse 700px at 80% 100%, rgba(37,99,235,.15), transparent),
    var(--vc-ink);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
  margin-top: 5rem;
  position: relative;
}
#footer h3, .footer-container h3 {
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  border-bottom: none;
  display: block;
}
#footer a, .footer-container a {
  color: rgba(255,255,255,.65) !important;
  font-size: .9rem;
  transition: color .15s;
  font-weight: 400;
}
#footer a:hover, .footer-container a:hover { color: var(--vc-electric) !important; }
#footer .links ul li, #footer ul li {
  padding: .35rem 0;
  list-style: none;
}
#footer ul { padding-left: 0; }
.footer-container .row { padding-bottom: 2rem; }

.block_newsletter {
  background: rgba(255,255,255,.06);
  padding: 2rem;
  border-radius: var(--vc-radius);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.block_newsletter h4, .block_newsletter p { color: #fff !important; }
.block_newsletter input[type="email"] {
  border: 1px solid rgba(255,255,255,.2) !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border-radius: 999px 0 0 999px !important;
  padding: .8rem 1.2rem !important;
}
.block_newsletter input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.block_newsletter button {
  background: var(--vc-electric) !important;
  color: var(--vc-ink) !important;
  border-radius: 0 999px 999px 0 !important;
  font-weight: 600 !important;
  padding: .8rem 1.6rem !important;
  border: none !important;
}

.copyright, #footer .copyright {
  background: #050813;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 1.25rem 0;
  font-size: .8rem;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ============================================================
   FEATURES section (Pourquoi Voltcasa) — Linear/Vercel bento
   ============================================================ */
.block_content > div, #block_myaccount_infos { background: transparent; }
.elementor-element, .info, .block_content {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.vc-features {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
}

/* Subtle dotted background pattern */
.vc-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--vc-line) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: .5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: 0;
}

.vc-features-head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.vc-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  color: var(--vc-blue);
  letter-spacing: .25em;
  margin-bottom: 1.25rem;
  padding: .35rem .85rem;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 999px;
}

.vc-features-title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 3rem;
  font-weight: 700;
  color: var(--vc-ink);
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.vc-features-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--vc-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Grid */
.vc-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .vc-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vc-features-grid { grid-template-columns: 1fr; }
}

/* Feature card — premium */
.vc-feat {
  position: relative;
  background: #fff;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
  isolation: isolate;
}

/* Animated gradient on hover */
.vc-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--feat-color, var(--vc-blue)), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.vc-feat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, var(--feat-glow, rgba(37,99,235,.05)), transparent);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}

.vc-feat:hover {
  transform: translateY(-6px);
  border-color: var(--feat-color, var(--vc-blue));
  box-shadow: 0 24px 48px var(--feat-shadow, rgba(37,99,235,.12));
}
.vc-feat:hover::before { opacity: 1; }
.vc-feat:hover::after { opacity: 1; }

/* Color variants */
.vc-feat-blue {
  --feat-color: #2563EB;
  --feat-glow: rgba(37,99,235,.08);
  --feat-shadow: rgba(37,99,235,.16);
  --feat-bg: #EFF6FF;
}
.vc-feat-amber {
  --feat-color: #D97706;
  --feat-glow: rgba(217,119,6,.08);
  --feat-shadow: rgba(217,119,6,.16);
  --feat-bg: #FFFBEB;
}
.vc-feat-green {
  --feat-color: #059669;
  --feat-glow: rgba(5,150,105,.08);
  --feat-shadow: rgba(5,150,105,.16);
  --feat-bg: #ECFDF5;
}
.vc-feat-pink {
  --feat-color: #DB2777;
  --feat-glow: rgba(219,39,119,.08);
  --feat-shadow: rgba(219,39,119,.16);
  --feat-bg: #FDF2F8;
}

/* Top row: number + icon */
.vc-feat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.vc-feat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  font-weight: 500;
  color: var(--vc-faint);
  letter-spacing: .05em;
}
.vc-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--feat-bg);
  color: var(--feat-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  border: 1px solid color-mix(in srgb, var(--feat-color) 12%, transparent);
}
.vc-feat:hover .vc-feat-icon {
  background: var(--feat-color);
  color: #fff;
  transform: scale(1.06);
  border-color: var(--feat-color);
}

.vc-feat-title {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vc-ink);
  margin: 0 0 .55rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.vc-feat-desc {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--vc-muted);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.vc-feat-stat {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  font-weight: 500;
  color: var(--feat-color);
  background: var(--feat-bg);
  padding: .4rem .8rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--feat-color) 18%, transparent);
}
.vc-feat-stat svg { stroke-width: 3; }

/* CTAs */
.vc-features-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.vc-features-btn,
.vc-features-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.85rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none !important;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
}
.vc-features-btn {
  background: var(--vc-ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,14,39,.18);
}
.vc-features-btn span { transition: transform .25s; display: inline-block; }
.vc-features-btn:hover {
  background: var(--vc-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37,99,235,.3);
}
.vc-features-btn:hover span { transform: translateX(3px); }
.vc-features-btn-ghost {
  background: #fff;
  color: var(--vc-ink);
  border: 1px solid var(--vc-line);
}
.vc-features-btn-ghost:hover {
  background: var(--vc-line-soft);
  color: var(--vc-ink);
  border-color: var(--vc-ink);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .vc-features { padding: 4rem 1rem; }
  .vc-features-title { font-size: 2rem; }
  .vc-features-sub { font-size: 1rem; }
  .vc-features-head { margin-bottom: 2.5rem; }
  .vc-feat { padding: 1.5rem 1.25rem 1.25rem; }
  .vc-feat-icon { width: 48px; height: 48px; }
  .vc-feat-title { font-size: 1.1rem; }
  .vc-features-cta { margin-top: 2.5rem; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: transparent;
  padding: 1.25rem 0;
  font-size: .82rem;
  margin-bottom: 0;
  font-family: 'JetBrains Mono', monospace;
}
.breadcrumb a { color: var(--vc-muted); font-weight: 400; }
.breadcrumb-item.active { color: var(--vc-ink); font-weight: 500; }
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--vc-faint);
  content: "/";
}

/* ============================================================
   FORMS
   ============================================================ */
input[type="text"], input[type="email"], input[type="tel"], textarea, select, .form-control {
  border: 1px solid var(--vc-line) !important;
  border-radius: 10px !important;
  padding: .7rem 1rem !important;
  font-family: 'Inter', sans-serif !important;
  transition: all .15s ease;
  font-size: .95rem;
  background: #fff;
}
input:focus, textarea:focus, .form-control:focus {
  border-color: var(--vc-blue) !important;
  box-shadow: 0 0 0 4px rgba(37,99,235,.1) !important;
  outline: none;
}

/* ============================================================
   CART MINI
   ============================================================ */
.blockcart .cart-products-count {
  background: var(--vc-electric) !important;
  color: var(--vc-ink) !important;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: .68rem;
  position: absolute;
  top: -3px;
  right: -8px;
}
.blockcart { position: relative; }

/* ============================================================
   FLOATING WHATSAPP CTA
   ============================================================ */
.vc-floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff !important;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  text-decoration: none;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
  font-family: 'Inter', sans-serif;
}
.vc-floating-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37,211,102,.55);
  color: #fff !important;
  text-decoration: none;
}
.vc-floating-cta::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8 1-1 1.2-.2.2-.4.2-.7.1-.3-.1-1.2-.5-2.4-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.4.5-.5.2-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.1-.7-1.7-.9-2.3-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1-1.1 2.5s1.1 2.9 1.3 3.1c.2.2 2.2 3.4 5.4 4.6.8.3 1.4.5 1.8.6.8.2 1.5.2 2 .1.6-.1 1.7-.7 2-1.4.3-.7.3-1.2.2-1.4-.1-.1-.3-.2-.6-.4z'/><path d='M20 4C9 4 4 9 4 16c0 1.7.4 3.3 1.2 4.7L4 28l7.5-1.2c1.4.8 3 1.2 4.5 1.2 11 0 16-5 16-12s-5-12-12-12zm0 22c-1.4 0-2.8-.4-4-1.1l-.3-.2-3 .5.5-3-.2-.3C12.4 20.7 12 19.4 12 18c0-5 4-10 8-10s8 5 8 10-3 10-8 10z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============================================================
   CMS PAGES
   ============================================================ */
#cms .cms-content, .cms-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  font-size: 1rem;
  line-height: 1.7;
}
#cms h1, .cms h1 {
  font-family: 'Space Grotesk', sans-serif !important;
  border-bottom: none;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -.025em;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
button:focus-visible, a:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--vc-blue);
  outline-offset: 3px;
}
html { scroll-behavior: smooth; }

/* ============================================================
   SCROLL REVEAL — fade-up on scroll
   ============================================================ */
.vc-x, .vc-card, .featured-products, section.products {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .vc-x {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp .6s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .vc-x:nth-child(1) { animation-delay: .05s; }
  .vc-x:nth-child(2) { animation-delay: .1s; }
  .vc-x:nth-child(3) { animation-delay: .15s; }
  .vc-x:nth-child(4) { animation-delay: .2s; }
  .vc-x:nth-child(5) { animation-delay: .25s; }
  .vc-x:nth-child(6) { animation-delay: .3s; }
  .vc-x:nth-child(7) { animation-delay: .35s; }
  .vc-x:nth-child(8) { animation-delay: .4s; }
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .carousel-inner, .carousel .carousel-item { height: 380px; max-height: 60vh; }
  .carousel .carousel-item .caption { padding: 1.75rem 2rem; }
  .carousel .carousel-item .caption .display-1, .carousel .display-1 { font-size: 2rem !important; }
  .carousel .caption p { font-size: .95rem; }
  .carousel-control-prev { left: .75rem; }
  .carousel-control-next { right: .75rem; }
  #_desktop_logo img, #_mobile_logo img { max-height: 42px; }
  .vc-floating-cta { bottom: 14px; right: 14px; padding: .7rem 1.1rem; font-size: .82rem; }
  #product .product-prices .current-price,
  #product .current-price-value { font-size: 1.8rem !important; }
  .featured-products h2, .products-section-title { font-size: 1.7rem; }
  .top-menu a[data-depth="0"] { padding: .65rem .8rem !important; font-size: .88rem; }
  #search_widget input[type="text"] { min-width: 0; width: 100%; }
}
