.elementor-37 .elementor-element.elementor-element-d20505b{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f99b2be *//* ============================================================
   VINODEANDO — HEADER PREMIUM 2026
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --vd-wine:    #6b1a2a;
  --vd-purple:  #6a2c8a;
  --vd-hat:     #8db38b;
  --vd-gold-lt: #e8c96a;
  --vd-cream:   #faf6f0;
  --vd-text:    #2c1810;
  --vd-muted:   #7a6a5a;
  --vd-border:  rgba(209,27,191,0.12);
}

/* ---- HEADER BASE ---- */
.vd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* ---- TOP BAR ---- */
.vd-topbar {
  background: var(--vd-wine);
  height: 40px;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}

.vd-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vd-topbar-left,
.vd-topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vd-topbar-left a,
.vd-topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.vd-topbar-left a:hover,
.vd-topbar-right a:hover,
.vd-topbar-left a:focus,
.vd-topbar-right a:focus {
  color: #FFFFFF !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vd-topbar svg {
  flex-shrink: 0;
}

/* ---- MAIN HEADER ---- */
.vd-main {
  border-bottom: 1px solid var(--vd-border);
  transition: all 0.35s ease;
}

.vd-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.35s ease;
}

/* ---- LOGO ---- */
.vd-logo {
  display: flex;
  align-items: center;
}

.vd-logo img {
  max-height: 70px;
  width: auto;
  transition: max-height 0.35s ease;
}

/* ---- NAV DESKTOP ---- */
.vd-nav > ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--vd-purple) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.vd-nav-link:hover,
.vd-nav-link:focus,
.vd-nav-link.active,
.current-menu-item > .vd-nav-link {
  color: var(--vd-purple) !important;
  background: rgba(106,44,138,0.06);
  box-shadow: inset 0 0 0 1px rgba(106,44,138,0.22);
  text-decoration: none !important;
}

.vd-chevron {
  transition: transform 0.3s ease;
  opacity: 0.65;
}

.vd-has-drop:hover .vd-chevron {
  transform: rotate(180deg);
}

/* ---- DROPDOWN ---- */
.vd-has-drop {
  position: relative;
}

.vd-has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 12px;
  background: transparent;
}

.vd-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--vd-border);
  border-radius: 16px;
  padding: 10px;
  box-shadow:
    0 20px 60px rgba(107,26,42,0.12),
    0 4px 16px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vd-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--vd-border);
  border-top: 1px solid var(--vd-border);
}

.vd-has-drop:hover .vd-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.vd-drop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.2s, box-shadow 0.2s;
}

.vd-drop-item:hover,
.vd-drop-item:focus {
  background: rgba(106,44,138,0.06);
  box-shadow: inset 0 0 0 1px rgba(106,44,138,0.14);
  text-decoration: none !important;
}

.vd-drop-icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(209,27,191,0.06);
  border-radius: 10px;
  flex-shrink: 0;
}

.vd-drop-item strong {
  display: block;
  color: var(--vd-text) !important;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.vd-drop-item small {
  color: #5B4A3D !important;
  font-size: 12px;
  line-height: 1.3;
}

/* ---- CARRITO ---- */
.vd-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--vd-purple) !important;
  text-decoration: none !important;
  border: 1px solid rgba(209,27,191,0.2);
  background: transparent !important;
  transition: all 0.2s ease;
  margin-left: 8px;
  overflow: visible !important;
}

.vd-cart svg {
  color: currentColor;
  stroke: currentColor;
}

.vd-cart:hover,
.vd-cart:focus {
  background: rgba(106,44,138,0.06) !important;
  color: var(--vd-purple) !important;
  border-color: rgba(106,44,138,0.35);
  text-decoration: none !important;
}

/* ---- CARRITO COUNT ---- */
.vd-cart .vd-cart-count,
#vd-cart-count.vd-cart-count {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  z-index: 999 !important;

  display: none;
  align-items: center !important;
  justify-content: center !important;

  min-width: 18px !important;
  height: 18px !important;
  padding: 0 5px !important;

  border-radius: 999px !important;
  background: var(--vd-wine) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;

  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;

  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;

  box-shadow: 0 4px 10px rgba(107, 26, 42, 0.25);
}

.vd-cart .vd-cart-count[style*="display: flex"],
#vd-cart-count.vd-cart-count[style*="display: flex"] {
  display: flex !important;
}

/* ---- HAMBURGER ---- */
.vd-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 0 !important;
}

.vd-burger:hover,
.vd-burger:focus {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.vd-burger-icon {
  display: block !important;
  overflow: visible;
}

.vd-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.vd-burger.open .vd-line-1 {
  transform: translateY(7px) rotate(45deg);
}

.vd-burger.open .vd-line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.vd-burger.open .vd-line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- NAV MÓVIL ---- */
.vd-mobile-nav {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--vd-border);
  transition: max-height 0.4s ease;
}

.vd-mobile-nav.open {
  max-height: 760px;
}

.vd-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vd-mobile-nav ul a {
  display: block;
  padding: 12px 16px;
  color: var(--vd-purple) !important;
  text-decoration: none !important;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.vd-mobile-nav ul a:hover,
.vd-mobile-nav ul a:focus {
  background: rgba(106,44,138,0.06);
  color: var(--vd-purple) !important;
  box-shadow: inset 0 0 0 1px rgba(106,44,138,0.18);
  text-decoration: none !important;
}

/* Subapartados móvil */
.vd-mobile-nav ul a.vd-mobile-subitem {
  padding-left: 32px;
  font-size: 13px;
  opacity: 1;
  text-transform: none;
  letter-spacing: 0.4px;
  color: #4A0E2E !important;
}

.vd-mobile-nav ul a.vd-mobile-subitem::before {
  content: "↳ ";
  opacity: 0.85;
}

/* ---- ESTADO SCROLLED ---- */
.vd-scrolled .vd-topbar {
  height: 0;
  opacity: 0;
}

.vd-scrolled .vd-main-inner {
  height: 68px;
}

.vd-scrolled .vd-logo img {
  max-height: 48px;
}

.vd-scrolled .vd-main {
  border-bottom-color: transparent;
}

.vd-scrolled {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(209,27,191,0.1);
}

/* ============================================================
   FIX ACCESIBILIDAD — CONTRASTE EN HEADER/NAV NATIVO DEL TEMA
   ============================================================ */

/* Enlaces genéricos del header del tema */
header a,
.site-header a,
.main-header a,
.ast-primary-header-bar a,
.ast-builder-menu a,
.main-navigation a,
.primary-navigation a,
nav a {
  color: #4A0E2E !important;
}

/* Hover/focus accesible */
header a:hover,
header a:focus,
.site-header a:hover,
.site-header a:focus,
.main-header a:hover,
.main-header a:focus,
.ast-primary-header-bar a:hover,
.ast-primary-header-bar a:focus,
.ast-builder-menu a:hover,
.ast-builder-menu a:focus,
.main-navigation a:hover,
.main-navigation a:focus,
.primary-navigation a:hover,
.primary-navigation a:focus,
nav a:hover,
nav a:focus {
  color: #4A0E2E !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Enlace home/logo textual del tema tipo "vinodeando.com" */
header a[rel="home"],
.site-header a[rel="home"],
.main-header a[rel="home"] {
  color: #4A0E2E !important;
  font-weight: 800;
}

/* Menú nativo del tema */
header nav a,
.site-header nav a,
.main-header nav a,
.main-navigation a,
.primary-navigation a {
  color: #4A0E2E !important;
  font-weight: 700;
}

/* ============================================================
   FIX MÁS FUERTE — ENLACES NATIVOS DETECTADOS POR CHECKER
   ============================================================ */

body a[href="https://vinodeando.com/"],
body a[href="https://vinodeando.com/catas/"],
body a[href="https://vinodeando.com/enoturismo/"],
body a[href="https://vinodeando.com/shop/"],
body a[href="https://vinodeando.com/contacto/"],
body a[href="https://vinodeando.com/contacto"],
body a[href="https://vinodeando.com/tienda/"],
body a[href="https://vinodeando.com/inicio/"] {
  color: #111111 !important;
  background-color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}

/* Enlaces del menú nativo dentro de cabeceras heredadas */
body header:not(.vd-header) a[href="https://vinodeando.com/"],
body header:not(.vd-header) a[href="https://vinodeando.com/catas/"],
body header:not(.vd-header) a[href="https://vinodeando.com/enoturismo/"],
body header:not(.vd-header) a[href="https://vinodeando.com/shop/"],
body header:not(.vd-header) a[href="https://vinodeando.com/contacto/"],
body nav:not(.vd-nav):not(.vd-mobile-nav) a[href="https://vinodeando.com/"],
body nav:not(.vd-nav):not(.vd-mobile-nav) a[href="https://vinodeando.com/catas/"],
body nav:not(.vd-nav):not(.vd-mobile-nav) a[href="https://vinodeando.com/enoturismo/"],
body nav:not(.vd-nav):not(.vd-mobile-nav) a[href="https://vinodeando.com/shop/"],
body nav:not(.vd-nav):not(.vd-mobile-nav) a[href="https://vinodeando.com/contacto/"] {
  color: #111111 !important;
  background-color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  opacity: 1 !important;
  font-weight: 800 !important;
}

/* ============================================================
   FIX OPCIONAL — OCULTAR HEADER NATIVO DUPLICADO DEL TEMA
   Si notas que desaparece algo que no debe, elimina solo este bloque.
   ============================================================ */

body .site-header:not(.vd-header),
body #masthead:not(.vd-header),
body .ast-site-header:not(.vd-header),
body .ast-primary-header-bar,
body .ast-mobile-header-wrap,
body .main-header-bar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* Oculta navs nativos duplicados que contienen el menú viejo */
body nav:not(.vd-nav):not(.vd-mobile-nav):has(a[href="https://vinodeando.com/"]),
body nav:not(.vd-nav):not(.vd-mobile-nav):has(a[href="https://vinodeando.com/catas/"]),
body nav:not(.vd-nav):not(.vd-mobile-nav):has(a[href="https://vinodeando.com/enoturismo/"]),
body nav:not(.vd-nav):not(.vd-mobile-nav):has(a[href="https://vinodeando.com/shop/"]),
body nav:not(.vd-nav):not(.vd-mobile-nav):has(a[href="https://vinodeando.com/contacto/"]) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* Reafirmar que el header bueno sigue visible */
body .vd-header,
body header.vd-header,
body #vd-header {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  min-height: initial !important;
  overflow: visible !important;
}

/* Mantener intacto el header personalizado Vinodeando */
.vd-header a,
.vd-header nav a,
.vd-header .vd-nav-link,
.vd-header .vd-mobile-nav a {
  color: var(--vd-purple) !important;
  text-decoration: none !important;
  background-color: transparent !important;
}

/* Mantener topbar personalizada en blanco */
.vd-header .vd-topbar a {
  color: rgba(255,255,255,0.92) !important;
  background-color: transparent !important;
}

.vd-header .vd-topbar a:hover,
.vd-header .vd-topbar a:focus {
  color: #FFFFFF !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

/* Mantener enlaces del dropdown personalizados */
.vd-header .vd-drop-item {
  background-color: transparent !important;
}

.vd-header .vd-drop-item:hover,
.vd-header .vd-drop-item:focus {
  background: rgba(106,44,138,0.06) !important;
}

.vd-header .vd-drop-item strong {
  color: var(--vd-text) !important;
}

.vd-header .vd-drop-item small {
  color: #5B4A3D !important;
}

/* Mantener carrito personalizado */
.vd-header .vd-cart {
  color: var(--vd-purple) !important;
  text-decoration: none !important;
  background-color: transparent !important;
}

.vd-header .vd-cart:hover,
.vd-header .vd-cart:focus {
  color: var(--vd-purple) !important;
  text-decoration: none !important;
  background: rgba(106,44,138,0.06) !important;
}

/* Focus visible para accesibilidad */
header a:focus-visible,
.site-header a:focus-visible,
.main-header a:focus-visible,
nav a:focus-visible,
.vd-header a:focus-visible,
.vd-burger:focus-visible {
  outline: 2px solid #4A0E2E !important;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .vd-nav {
    display: none;
  }

  .vd-burger {
    display: flex;
  }

  .vd-main-inner {
    height: 70px;
  }

  .vd-logo img {
    max-height: 52px;
  }

  .vd-topbar-left,
  .vd-topbar-right {
    gap: 14px;
  }

  .vd-topbar-left a,
  .vd-topbar-right a {
    font-size: 11px;
  }

  .vd-cart .vd-cart-count,
  #vd-cart-count.vd-cart-count {
    top: -5px !important;
    right: -5px !important;
  }
}

@media (max-width: 640px) {
  .vd-topbar {
    height: auto;
  }

  .vd-topbar-inner {
    padding: 8px 20px;
    flex-direction: column;
    gap: 8px;
  }

  .vd-topbar-left,
  .vd-topbar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

@media (max-width: 480px) {
  .vd-topbar {
    display: none;
  }

  .vd-topbar-inner,
  .vd-main-inner {
    padding: 0 20px;
  }

  .vd-burger {
    margin-right: 0;
  }

  .vd-mobile-nav ul {
    padding: 10px 16px 18px;
  }

  .vd-mobile-nav ul a {
    padding: 11px 14px;
    font-size: 13px;
  }

  .vd-mobile-nav ul a.vd-mobile-subitem {
    padding-left: 28px;
    font-size: 12.5px;
  }
}/* End custom CSS */