label,
select.form-select,
.mostrar .card,
.card a,
.card a:hover {
    color: #333;
    text-decoration: none;
}

label {
    margin-right: 8px;
}

select.form-select {
    padding: 4px 8px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ccc;
    min-width: 150px;
}

.mostrar {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px !important;
}

.mostrar .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
}

.mostrar .card:hover {
    transform: scale(1.03);
}

.mostrar .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 20px;
}

.mostrar .card-block {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.mostrar .card-title {
    margin-bottom: 10px;
    min-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mostrar .price {
    margin-top: auto;
}

.mostrar .price h5 {
    font-size: 20px !important;
    color: #dc3545;
    margin: 5px 0;
}

.mostrar .price p {
    color: #666;
    margin: 0;
}

.mostrar .card .imagem-produto {
    position: relative;
}

.mostrar .frete-gratis-selo {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.mostrar .selo-esgotado {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #dc3545;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.mostrar .btn-carrinho-compra {
    background-color: #dc3545;
    color: #ffffff;
    padding: 8px 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    text-align: center;
    border: 1px solid #dc3545;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.mostrar .btn-carrinho-compra:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: #ffffff;
}


@media screen and (max-width: 600px) {
    .produtos-title {
        margin-bottom: 30px !important;
    }
}