/* Estilos Sección Búsqueda */
.seccion-busqueda {
    max-width: 970px;
    margin: 0 auto 1rem;
    padding: 0 20px;
  }
  
  .contenedor-busqueda {
    display: flex;
    gap: 15px;
    position: relative;
  }
  
  .input-busqueda {
    flex: 1;
    position: relative;
  }
  
  .icono-busqueda {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
  }
  
  .input-busqueda input {
    width: 60%;
    padding: 7px 20px 7px 45px;
    border-radius: 30px;
    border: 1px solid #fff;
    background: #000;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
  }
  
  .boton-proveedores {
    color: #fff;
    background-color: #c49832;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: 1px solid #c49832;
    border-radius: 25px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 15px;
    padding-right: 15px;
    transition: color 0.3s
  }
  
  .boton-proveedores:hover {
    color: #000
  }
  
  .icono-flecha {
    width: 16px;
    height: 16px;
  }
  
  /* Popup Proveedores */
  .popup-proveedores {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 1000;
  }
  
  .contenido-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3A0F11;
    border-radius: 15px;
    padding: 20px;
    max-width: 90%;
    width: 400px;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .lista-proveedores {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .item-proveedor {
    padding: 15px;
    border-radius: 8px;
    border: none;
    background: #5A1A1E;
    color: white;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
  }
  
  .item-proveedor:hover {
    background: #DEBE59;
    color: #3A0F11;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contenedor-busqueda {
      flex-direction: column;
    }
    
    .boton-proveedores {
      justify-content: center;
      padding: 10px 20px;
    }
    
    .contenido-popup {
      width: 90%;
      padding: 15px;
    }

    .input-busqueda input {
        width: 100%;
    }
  }