.navbar{
    border-bottom: 1px solid rgba(148, 148, 148, 0.747);
    padding: 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c4b7e19c;
}

/* BUSCADOR */
.search-container {
    position: relative;
    width: 50%;
}

.search {
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px; /* Espacio para el icono */
    border: 2px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.search:focus {
    border-color: #5d3b85;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.search-button {
    position: absolute;
    right: 20px;
    top: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.search-button:hover {
    color: #5d3b85;
}

/* CARRITO */
.cart-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 28px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    padding: 0px 10px;
}

.cart-container:hover {
    color: #5d3b85;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: 0px;
    background-color: #ff5733;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.cart-badge:not(:empty) {
    transform: scale(1);
}

.cart-badge:empty {
    display: none;
}

/* CUENTA */
.account-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 28px;
    padding: 0px 10px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.account-container:hover {
    color: #5d3b85;
}

.menu{
    border-bottom: 1px solid rgba(148, 148, 148, 0.747);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5d3b85;
}
.menu-item{
    height: 100%;
    padding: 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.menu-item a {
    position: relative;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
    color: #5d3b85;
}
.menu-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #C4B7E1; /* Color del underline */
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}
.menu-item a:hover,
.menu-item a.active{
    text-decoration: none;
    color: #C4B7E1; /* Cambio de color del texto */
}

.menu-item a:hover::after,
.menu-item a.active::after {
    width: 100%; /* Expande la línea en hover */
}
.buttons-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.navbar-toggler{
    margin: 10px;
    background-color: white;
}

/*BUSCADOR*/

.search-results {
    position: absolute;
    width: 90%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    left: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.search-results .result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-results .result-item:last-child {
    border-bottom: none;
}

.search-results .result-item img {
    width: 130px;
    height: 75px;
    border-radius: 5px;
    margin-right: 10px;
}

.search-results .result-item:hover {
    background-color: #f8f8f8;
}

.search-results-sidebar {
    position: absolute;
    width: 90%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    left: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    font-size: 13px;
}

.search-results-sidebar .result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-results-sidebar .result-item:last-child {
    border-bottom: none;
}

.search-results-sidebar .result-item img {
    width: 70px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.search-results-sidebar .result-item:hover {
    background-color: #f8f8f8;
}

.search-results-sidebar .result-item p {
    margin: 0;
}

@media (min-width: 991px) {
    .offcanvas{
        display: none;
    }
    .menu-item a {
        color: white;
    }
}

@media (max-width: 991px) {
    #search-container-h {
        display: none;
    }
    .search-container{
        width: 100%;
        margin-bottom: 15px;
    }
    .menu {
        display: none;
    }
    .menu-item{
        padding: 10px;
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .navbar{
        padding: 0px 10px;
    }
    .cart-container,
    .account-container{
        font-size: 20px;
    }
    .buttons-container{
        gap: 0px;
    }
    .nombre-user{
        display: none;
    }
    .navbar-toggler {
        padding: 2px 5px;
        font-size: 17px;
    }
    .navbar-brand img {
        height: 60px !important;
    }
}