.elementor-211 .elementor-element.elementor-element-c0dc1b0{--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-e67fd2b *//* CABECERA ESTILO AMAZON */
.wdv-header {
  background: #000;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
}

.wdv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.wdv-logo img {
  height: 48px;
}

/* BUSCADOR */
.wdv-search-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.wdv-search-form input {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 16px;
  outline: none;
}

.wdv-search-form button {
  background: #333;
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 16px;
}

/* MENÚ */
.wdv-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}

.wdv-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: opacity 0.3s;
}

.wdv-nav a:hover {
  opacity: 0.8;
}

/* BOTÓN MOBILE */
.wdv-menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wdv-search-form {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .wdv-nav {
    display: none;
    flex-direction: column;
    background: #ff9900;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }

  .wdv-nav.active {
    display: flex;
  }

  .wdv-menu-toggle {
    display: block;
  }
}/* End custom CSS */