/* ============================================================
   VALTRUM® – Custom Brand Styles
   Brand colors: Deep Marine #0a2342 · Energetic Red #E8001C
                 Warm Gold #D4962A · Off-White #F7F5F0
   ============================================================ */

/* ── Root variables ─────────────────────────────────────────── */
:root {
  --vl-navy:      #0a2342;
  --vl-red:       #E8001C;
  --vl-gold:      #D4962A;
  --vl-warm:      #F7F5F0;
  --vl-gray:      #6c757d;
  --vl-light:     #f4f4f4;
  --vl-white:     #ffffff;
  --vl-dark:      #1a1a2e;
  --vl-accent:    #ff6b35;
  --vl-green:     #2d9b4e;
  --radius-lg:    1.25rem;
  --radius-pill:  50px;
  --shadow-sm:    0 4px 15px rgba(10,35,66,.12);
  --shadow-md:    0 8px 30px rgba(10,35,66,.18);
  --shadow-lg:    0 20px 60px rgba(10,35,66,.25);
  --transition:   all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Global reset / base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--vl-dark);
  background: var(--vl-white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { transition: var(--transition); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.vl-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: .85rem 0;
  transition: var(--transition);
  background: transparent;
}
.vl-navbar.scrolled {
  background: rgba(10,35,66,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  padding: .5rem 0;
}
.vl-navbar .navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vl-white) !important;
  letter-spacing: -.02em;
}
.vl-navbar .navbar-brand span { color: var(--vl-gold); }
.vl-navbar .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1rem !important;
  transition: var(--transition);
}
.vl-navbar .nav-link:hover,
.vl-navbar .nav-link.active {
  color: var(--vl-gold) !important;
}
.vl-navbar .btn-navbar-cta {
  background: linear-gradient(135deg, var(--vl-red), #c0001a);
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: .5rem 1.4rem !important;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  box-shadow: 0 4px 15px rgba(232,0,28,.4);
}
.vl-navbar .btn-navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,0,28,.5);
}
.navbar-toggler { border: 2px solid rgba(255,255,255,.5); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ────────────────────────────────────────────────────── */
.vl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2342 0%, #1a3a6e 50%, #0d1b3e 100%);
}
.vl-hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .18;
  mix-blend-mode: luminosity;
}
.vl-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,35,66,.92) 0%,
    rgba(10,35,66,.65) 60%,
    rgba(10,35,66,.3) 100%);
}
.vl-hero-content { position: relative; z-index: 2; }
.vl-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,150,42,.18);
  border: 1px solid rgba(212,150,42,.4);
  color: var(--vl-gold);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.vl-hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--vl-white);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
}
.vl-hero-title .highlight { color: var(--vl-gold); }
.vl-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.vl-hero-stats {
  display: flex; gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.vl-hero-stat strong {
  display: block;
  font-size: 2rem; font-weight: 900;
  color: var(--vl-gold);
  line-height: 1;
}
.vl-hero-stat span {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em; text-transform: uppercase;
}
.vl-hero-img-wrap {
  position: relative; z-index: 2;
  text-align: center;
}
.vl-hero-img-wrap img {
  max-height: 75vh;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.vl-hero-badges-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.vl-trust-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  padding: .45rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: .78rem; font-weight: 600;
}
.vl-trust-badge i { color: var(--vl-gold); font-size: 1rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-vl-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--vl-red), #c0001a);
  color: #fff; font-weight: 700; font-size: 1rem;
  border: none; border-radius: var(--radius-pill);
  padding: .85rem 2.2rem;
  box-shadow: 0 8px 30px rgba(232,0,28,.4);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.btn-vl-primary:hover {
  color: #fff; text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,0,28,.55);
  background: linear-gradient(135deg, #ff1a35, var(--vl-red));
}
.btn-vl-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent;
  color: var(--vl-white); font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-pill);
  padding: .75rem 2rem;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.btn-vl-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--vl-gold);
  color: var(--vl-gold);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-vl-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--vl-gold), #b8780e);
  color: #fff; font-weight: 700; font-size: 1rem;
  border: none; border-radius: var(--radius-pill);
  padding: .85rem 2.2rem;
  box-shadow: 0 8px 30px rgba(212,150,42,.4);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.btn-vl-gold:hover {
  color: #fff; text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212,150,42,.55);
}
.btn-vl-navy {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--vl-navy);
  color: #fff; font-weight: 700; font-size: 1rem;
  border: none; border-radius: var(--radius-pill);
  padding: .85rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.btn-vl-navy:hover {
  color: var(--vl-gold); text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.vl-section { padding: 6rem 0; }
.vl-section-sm { padding: 3rem 0; }
.vl-section-lg { padding: 9rem 0; }
.vl-section-navy {
  background: var(--vl-navy);
  color: var(--vl-white);
}
.vl-section-warm { background: var(--vl-warm); }
.vl-section-light { background: var(--vl-light); }
.vl-section-dark { background: var(--vl-dark); color: var(--vl-white); }

.vl-tag {
  display: inline-block;
  background: rgba(212,150,42,.15);
  color: var(--vl-gold);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.vl-tag.red { background: rgba(232,0,28,.1); color: var(--vl-red); }
.vl-tag.navy { background: rgba(10,35,66,.08); color: var(--vl-navy); }
.vl-tag.green { background: rgba(45,155,78,.1); color: var(--vl-green); }

.vl-section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--vl-navy);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.vl-section-title.white { color: var(--vl-white); }
.vl-section-title .accent { color: var(--vl-red); }
.vl-section-title .gold { color: var(--vl-gold); }
.vl-lead {
  font-size: 1.1rem; color: var(--vl-gray);
  line-height: 1.7; max-width: 640px;
}
.vl-lead.white { color: rgba(255,255,255,.75); }
.vl-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--vl-red), var(--vl-gold));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.vl-divider.center { margin-left: auto; margin-right: auto; }

/* ── FEATURE CARDS ───────────────────────────────────────────── */
.vl-feature-card {
  background: var(--vl-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05);
  position: relative; overflow: hidden;
}
.vl-feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vl-red), var(--vl-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.vl-feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.vl-feature-card:hover::before { transform: scaleX(1); }
.vl-feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--vl-navy), #1a3a6e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem; color: var(--vl-gold);
  box-shadow: 0 8px 25px rgba(10,35,66,.3);
}
.vl-feature-card h4 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--vl-navy); margin-bottom: .75rem;
}
.vl-feature-card p { color: var(--vl-gray); line-height: 1.7; font-size: .95rem; }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.vl-product-card {
  background: var(--vl-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,.06);
}
.vl-product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.vl-product-card-img {
  position: relative;
  background: linear-gradient(135deg, #f0f4f8, #e8edf4);
  padding: 2rem;
  text-align: center; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.vl-product-card-img img {
  max-height: 220px; object-fit: contain;
  transition: var(--transition);
}
.vl-product-card:hover .vl-product-card-img img { transform: scale(1.06); }
.vl-product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--vl-red), #c0001a);
  color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(232,0,28,.35);
}
.vl-product-card-body { padding: 1.75rem; }
.vl-product-card-body h3 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--vl-navy); margin-bottom: .5rem;
}
.vl-product-card-body .size {
  font-size: .82rem; color: var(--vl-gray); margin-bottom: 1rem;
}
.vl-price {
  font-size: 1.8rem; font-weight: 900;
  color: var(--vl-red); line-height: 1;
  margin-bottom: .25rem;
}
.vl-price-unit { font-size: .82rem; color: var(--vl-gray); }
.vl-stars { color: #f5a623; font-size: 1rem; letter-spacing: .05em; }
.vl-review-count { font-size: .8rem; color: var(--vl-gray); }

/* ── INGREDIENT CARDS ────────────────────────────────────────── */
.vl-ingredient-card {
  background: var(--vl-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.vl-ingredient-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vl-ingredient-card img {
  width: 100%; height: 220px; object-fit: cover;
}
.vl-ingredient-card-body { padding: 1.5rem; }
.vl-ingredient-card-body h4 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--vl-navy); margin-bottom: .5rem;
}
.vl-ingredient-card-body p { font-size: .9rem; color: var(--vl-gray); line-height: 1.65; }

/* ── AUDIENCE CARDS ──────────────────────────────────────────── */
.vl-audience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.vl-audience-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.vl-audience-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.vl-audience-card:hover img { transform: scale(1.06); }
.vl-audience-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,35,66,.92) 0%,
    rgba(10,35,66,.4) 50%,
    transparent 100%);
}
.vl-audience-card-body {
  position: relative; z-index: 2;
  padding: 2rem;
}
.vl-audience-card-body h3 {
  font-size: 1.6rem; font-weight: 900;
  color: var(--vl-white); margin-bottom: .5rem;
}
.vl-audience-card-body p { color: rgba(255,255,255,.8); font-size: .95rem; }

/* ── DOLENCIAS (CONDITIONS) ──────────────────────────────────── */
.vl-condition-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--vl-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.vl-condition-item:hover {
  transform: translateX(6px);
  border-left-color: var(--vl-red);
  box-shadow: var(--shadow-md);
}
.vl-condition-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--vl-red), #c0001a);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--vl-white);
}
.vl-condition-text h5 {
  font-size: 1rem; font-weight: 800;
  color: var(--vl-navy); margin-bottom: .3rem;
}
.vl-condition-text p { font-size: .88rem; color: var(--vl-gray); margin: 0; }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.vl-stats-strip {
  background: linear-gradient(135deg, var(--vl-navy), #1a3a6e);
  padding: 4rem 0;
}
.vl-stat-box { text-align: center; padding: 1.5rem 1rem; }
.vl-stat-box strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--vl-gold);
  line-height: 1;
}
.vl-stat-box span {
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: .5rem;
  display: block;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.vl-testimonial-card {
  background: var(--vl-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
}
.vl-testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vl-testimonial-card::before {
  content: '"';
  font-size: 4rem; color: var(--vl-gold);
  font-family: Georgia, serif;
  line-height: .8; display: block;
  margin-bottom: .5rem;
}
.vl-testimonial-card p {
  font-style: italic; color: #555;
  line-height: 1.7; font-size: .95rem;
  margin-bottom: 1.5rem;
}
.vl-testimonial-author { display: flex; align-items: center; gap: .75rem; }
.vl-testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vl-navy), #1a3a6e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--vl-gold); flex-shrink: 0;
}
.vl-testimonial-author-info strong {
  display: block; font-size: .9rem; color: var(--vl-navy); font-weight: 800;
}
.vl-testimonial-author-info span {
  font-size: .78rem; color: var(--vl-gray);
}

/* ── HOW IT WORKS (timeline) ────────────────────────────────── */
.vl-step {
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.vl-step:last-child { margin-bottom: 0; }
.vl-step-num {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--vl-red), #c0001a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
  color: var(--vl-white);
  box-shadow: 0 6px 20px rgba(232,0,28,.35);
}
.vl-step-body h5 {
  font-size: 1rem; font-weight: 800;
  color: var(--vl-navy); margin-bottom: .35rem; margin-top: .3rem;
}
.vl-step-body p { font-size: .9rem; color: var(--vl-gray); line-height: 1.65; margin: 0; }

/* ── GALLERY GRID ────────────────────────────────────────────── */
.vl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.vl-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.vl-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.vl-gallery-item:hover img { transform: scale(1.08); }
.vl-gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,35,66,0);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.vl-gallery-item:hover .vl-gallery-item-overlay {
  background: rgba(10,35,66,.5);
}

/* ── ABOUT / TEAM ────────────────────────────────────────────── */
.vl-about-block {
  background: var(--vl-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.vl-contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: .85rem 1.25rem;
  font-size: .95rem;
  transition: var(--transition);
  background: var(--vl-white);
}
.vl-contact-form .form-control:focus {
  border-color: var(--vl-navy);
  box-shadow: 0 0 0 4px rgba(10,35,66,.08);
  outline: none;
}
.vl-contact-info-card {
  background: linear-gradient(135deg, var(--vl-navy), #1a3a6e);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--vl-white);
  height: 100%;
}
.vl-contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.75rem;
}
.vl-contact-info-item:last-child { margin-bottom: 0; }
.vl-contact-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--vl-gold);
}
.vl-contact-info-item h6 {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--vl-gold); margin-bottom: .25rem;
}
.vl-contact-info-item p { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.vl-footer {
  background: #070f1d;
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
}
.vl-footer-brand {
  font-size: 1.6rem; font-weight: 900;
  color: var(--vl-white); letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.vl-footer-brand span { color: var(--vl-gold); }
.vl-footer p { font-size: .9rem; line-height: 1.7; max-width: 340px; }
.vl-footer-title {
  font-size: .85rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--vl-white); margin-bottom: 1.25rem;
}
.vl-footer-links { list-style: none; padding: 0; }
.vl-footer-links li { margin-bottom: .65rem; }
.vl-footer-links a {
  color: rgba(255,255,255,.6); font-size: .9rem;
  text-decoration: none; transition: var(--transition);
}
.vl-footer-links a:hover { color: var(--vl-gold); padding-left: 4px; }
.vl-footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.vl-social-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.vl-social-btn:hover {
  background: var(--vl-gold);
  border-color: var(--vl-gold);
  color: var(--vl-white);
  transform: translateY(-3px);
}
.vl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.vl-footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.vl-disclaimer {
  font-size: .75rem; color: rgba(255,255,255,.35);
  line-height: 1.6; margin-top: .5rem;
}

/* ── SCROLL-TO-TOP ───────────────────────────────────────────── */
.vl-scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--vl-red), #c0001a);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(232,0,28,.4);
  cursor: pointer; z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.vl-scroll-top.visible { display: flex; }
.vl-scroll-top:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(232,0,28,.5); }

/* ── ANIMATION UTILITIES ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ── PAGE HERO (subpages) ────────────────────────────────────── */
.vl-page-hero {
  background: linear-gradient(135deg, var(--vl-navy) 0%, #1a3a6e 60%, #0d1b3e 100%);
  padding: 10rem 0 6rem;
  position: relative; overflow: hidden;
}
.vl-page-hero-bg {
  position: absolute; inset: 0;
  opacity: .1; object-fit: cover;
  width: 100%; height: 100%;
}
.vl-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,35,66,.9), rgba(10,35,66,.5));
}
.vl-page-hero-content { position: relative; z-index: 2; }
.vl-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.vl-breadcrumb a { color: var(--vl-gold); text-decoration: none; }
.vl-breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ── SHOP / CART ─────────────────────────────────────────────── */
.vl-qty-control {
  display: flex; align-items: center; gap: 0;
  border: 2px solid #e9ecef; border-radius: var(--radius-pill);
  overflow: hidden;
  width: fit-content;
}
.vl-qty-btn {
  background: none; border: none;
  width: 38px; height: 38px;
  font-size: 1.1rem; font-weight: 700;
  color: var(--vl-navy); cursor: pointer;
  transition: var(--transition);
}
.vl-qty-btn:hover { background: var(--vl-warm); }
.vl-qty-input {
  width: 52px; text-align: center;
  border: none; border-left: 2px solid #e9ecef; border-right: 2px solid #e9ecef;
  font-size: 1rem; font-weight: 700;
  color: var(--vl-navy); padding: 0 .5rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .vl-hero { min-height: auto; padding: 8rem 0 4rem; }
  .vl-hero-img-wrap { margin-top: 3rem; }
  .vl-navbar .nav-link { padding: .6rem 1rem !important; }
}
@media (max-width: 767px) {
  .vl-hero { padding: 7rem 0 3rem; }
  .vl-section { padding: 4rem 0; }
  .vl-section-lg { padding: 5rem 0; }
  .vl-hero-stats { gap: 1.5rem; }
  .vl-stats-strip { padding: 2.5rem 0; }
  .vl-audience-card { min-height: 320px; }
}

/* ── LOADING ANIMATION ───────────────────────────────────────── */
.vl-page-loader {
  position: fixed; inset: 0;
  background: var(--vl-navy);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.vl-page-loader.loaded { opacity: 0; visibility: hidden; }
.vl-loader-logo {
  font-size: 2.5rem; font-weight: 900;
  color: var(--vl-white); letter-spacing: -.03em;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.vl-loader-logo span { color: var(--vl-gold); }
@keyframes loaderPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.96); }
}

/* ── COUNTDOWN / URGENCY ─────────────────────────────────────── */
.vl-urgency-bar {
  background: linear-gradient(90deg, var(--vl-red), #c0001a, var(--vl-red));
  background-size: 200% 100%;
  animation: urgencySlide 3s linear infinite;
  color: #fff; font-size: .82rem; font-weight: 700;
  letter-spacing: .05em; text-align: center;
  padding: .6rem 1rem;
}
@keyframes urgencySlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── LANGUAGE SELECTOR ───────────────────────────────────────── */
.vl-lang {
  display: flex; gap: .4rem;
}
.vl-lang-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em;
  padding: .25rem .6rem;
  border-radius: 4px;
  cursor: pointer; transition: var(--transition);
}
.vl-lang-btn.active, .vl-lang-btn:hover {
  background: var(--vl-gold);
  border-color: var(--vl-gold);
  color: #fff;
}

/* ── MOBILE NAVBAR COLLAPSE ──────────────────────────────────── */
@media (max-width: 991px) {
  .vl-navbar .navbar-collapse.show,
  .vl-navbar .navbar-collapse.collapsing {
    background: rgba(10,35,66,.97);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem;
    margin-top: .5rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .vl-navbar .navbar-collapse .navbar-nav {
    gap: .25rem;
  }
  .vl-navbar .navbar-collapse .btn-navbar-cta {
    padding: .55rem 1.4rem !important;
    font-size: .82rem;
  }
}
