.product-title {
    font-size: 14px;
    margin: 10px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card, .nav-item {
    box-shadow: 5px 5px 50px hsl(0deg 0% 25.74% / 15%);
}

/**
 * Menus da página Minha Conta
 */
.menu-select-item {
    cursor: pointer;
    background: white;
    transition: background 0.25s ease, color 0.25s ease;
    box-shadow: 3px 3px 15px #00000015;
}

.menu-select-item * {
    transition: color 0.25s ease;
}

.menu-select-item.active,
.menu-select-item:hover {
    background: linear-gradient(0deg, #0085f6, #009ef7);
}

.menu-select-item.active *,
.menu-select-item:hover * {
    color: white !important;
}

.min-vh-85 {
    min-height: 85vh;
}
.min-vh-70 {
    min-height: 70vh;
}