.elementor-4676 .elementor-element.elementor-element-29c22a8d{--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-72fcfdf8 *//* 1. VARIABLES (Verde Especializada #1dd1a1) */
.rtve-v2 {
  --h-brand: 164; 
  --s-brand: 76%;
  --l-brand: 47%;
  --color-brand-primary: hsl(var(--h-brand), var(--s-brand), var(--l-brand));
  --color-white: #ffffff;
  --color-light-gray: #e0e0e0;
  --header-height: 80px;
  --max-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. ESTRUCTURA */
.rtve-v2 .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  display: flex;
  align-items: center;
}

/* LÍNEA SUPERIOR VERDE */
.rtve-v2 .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-brand-primary);
  z-index: 10;
}

.rtve-v2 .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* 3. LOGO IZQUIERDA */
.rtve-v2 .header-logo {
  height: 45px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.rtve-v2 .header-logo:hover {
  opacity: 0.7;
}

/* 4. NAVEGACIÓN */
.rtve-v2 .nav { display: flex; gap: 2.5rem; }
.rtve-v2 .nav a {
  position: relative;
  color: var(--color-light-gray);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.rtve-v2 .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-brand-primary);
  transition: width 0.3s ease;
}

.rtve-v2 .nav a:hover { color: var(--color-white); }
.rtve-v2 .nav a:hover::after { width: 100%; }

/* 5. CARRITO CIRCULAR Y LOGO DERECHA */
.rtve-v2 .header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rtve-v2 .cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    text-decoration: none;
}

.rtve-v2 .cart-link:hover {
    background: rgba(29, 209, 161, 0.1); /* Glow Verde suave */
    border-color: var(--color-brand-primary);
    transform: translateY(-2px) scale(1.05);
}

.rtve-v2 .cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--color-brand-primary);
    color: #000; /* Texto negro para contraste en badge verde */
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(29, 209, 161, 0.4);
}

.rtve-v2 .header-logo-right-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.rtve-v2 .header-logo-right-link:hover {
    transform: scale(1.05);
}

.rtve-v2 .header-logo-right {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

/* --- ESTILOS ADICIONALES PARA MÓVIL --- */

/* Botón Hamburguesa */
.rtve-v2 .menu-toggle {
    display: none; /* Oculto en desktop */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.rtve-v2 .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* Menú Desplegable */
.rtve-v2 .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0; /* Empieza cerrado */
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9998;
}

.rtve-v2 .mobile-menu.active {
    height: calc(100vh - var(--header-height));
}

.rtve-v2 .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 40px 2rem;
    gap: 2rem;
}

.rtve-v2 .mobile-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .rtve-v2 .desktop-only { display: none !important; }
    .rtve-v2 .menu-toggle { display: flex; }
    
    .rtve-v2 .header-logo { height: 35px; } /* Logo más pequeño */
    .rtve-v2 .header-inner { padding: 0 1.5rem; }
    .rtve-v2 .header-right { gap: 0.5rem; }
}

/* Animación Hamburguesa abierta */
.rtve-v2 .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.rtve-v2 .menu-toggle.active span:nth-child(2) { opacity: 0; }
.rtve-v2 .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }/* End custom CSS */