#colophon{
		background-color:#1d4999;
}
.masthead-sentinel{
		margin-bottom:0px!important;
}
.custom-logo {
    max-height: 50px !important;
    height: 50px !important;
    width: auto !important;
    object-fit: contain; /* Asegura que no se recorte */
}
.site-info{
		display:none;
}
#categoriasbt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: #21759b!important; /* Azul de WordPress */
    background: none;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Efecto al pasar el mouse */
#categoriasbt:hover {
    background: #005bb5; /* Azul más oscuro */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px); /* Levanta un poco el botón */
}

/* Animación de aparición */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.herobt {
    border: none !important;
    box-shadow: none;
    transition: box-shadow 0.3s ease-in-out;
}

.herobt:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Contenedor del selector */
.categor {
    max-width: 100%;
    text-align: left;
}

/* Estilo del select nativo */
.dropdown_product_cat {
    width: 100%;
    max-width: 300px; /* Ajusta según sea necesario */
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    appearance: none; /* Oculta la flecha nativa en algunos navegadores */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Flecha personalizada */
.dropdown_product_cat::after {
    content: "▼";
    font-size: 14px;
    color: #555;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Efecto hover */
.dropdown_product_cat:hover {
    border-color: #aaa;
}

/* Efecto focus */
.dropdown_product_cat:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Para select2 (si lo usas) */
.select2-container .select2-selection--single {
    height: 3em !important; /* Ajustado a 3em */
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    padding: 0 10px;
    transition: all 0.3s ease-in-out;
}

/* Asegurar que el texto está centrado */
.select2-container .select2-selection__rendered {
    font-size: 16px;
    color: #333;
    line-height: normal !important;
    display: flex;
    align-items: center;
    height: 100%; /* Ocupa toda la altura del select */
}

/* Asegurar que la flecha de selección está alineada */
.select2-container .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 10px;
}

/* Hover y focus en select2 */
.select2-container .select2-selection--single:hover {
    border-color: #aaa !important;
}

.select2-container .select2-selection--single:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3) !important;
}