body {
    font-family: 'Arial', sans-serif;
}

#search {
    border: 2px solid #6e77b4;
    padding: 8px;
    border-radius: 4px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: #6e77b4;
}

.main-navbar {
    border-bottom: 1px solid #ccc;
}

/* Colores personalizados de la navbar */
.main-navbar .top-navbar {
    background-color: #c3c9e5; /* Azul oscuro personalizado */
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-navbar .top-navbar .brand-name {
    color: #324855;
}

.main-navbar .top-navbar .nav-link {
    color: #324855;
    font-size: 16px;
    font-weight: 500;
}

.main-navbar .navbar {
    padding: 0px;
    background-color: #f8f9fa;
}

.main-navbar .navbar .nav-item .nav-link {
    padding: 8px 20px;
    color: #324855;
    font-size: 15px;
}

.main-navbar .top-navbar .dropdown-menu {
    padding: 0px;
    border-radius: 0px;
}

.main-navbar .top-navbar .dropdown-menu .dropdown-item {
    padding: 8px 16px;
    border-bottom: 1px solid #c3c9e5;
    font-size: 14px;
}

.main-navbar .top-navbar .dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    color: #324855;
    font-size: 14px;
}

/* Contenedor principal */
.main-content {
    /*margin-left: 250px;*/
    padding: 20px;
}

.btn-agregar {
    background-color: #fff;
    color: #6e77b4;
    font-size: smaller;
}

.btn-agregar:hover {
    background-color: #6e77b4;
    color: #fff;
    font-size: smaller;
}

.btn-deseo {
    background-color: #fff;
    color: #6e9cb4;
    font-size: smaller;
}

.btn-deseo:hover {
    background-color: #6e77b4;
    color: #fff;
    font-size: smaller;
}

/* Estilizado del banner */
.carousel img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Estilizado de las tarjetas de productos */
.product-card {
    border: 0px solid #ddd;
    padding: 40px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-title {
    padding-top: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #324856;
    text-align: center;
    argin-top: 0;
    margin-bottom: 0rem;
}

.pagination {
    justify-content: center;
}

.pagination .page-link {
    color: #6e77b4;
    font-size: 20px;
    padding: 0;
    margin: 0 20px;
    border: none;
    background-color: transparent;
}

.pagination .page-item.active .page-link {
    font-weight: bold;
    color: #6e77b4;
    background-color: transparent;
    border: none;
}

.pagination .page-link:hover {
    text-decoration: underline;
}

.footer {
    background-color: #324855;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #c3c9e5;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}