.form-check-input:checked{
    background-color: var(--taupe) !important;
    border-color: var(--taupe) !important;
}

.form-check-input:focus {
    border-color: var(--taupe-lightest) !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--taupe-lightest) !important;
}

.page-item.active .page-link {
    background-color: var(--taupe) !important;
    border-color: var(--taupe) !important;
    color: var(--taupe-lightest) !important;
}

.page-link {
    color: var(--taupe) !important;
}

.producto-card{
    overflow: hidden;
    transition: .3s ease;
}

.producto-card:hover{
    transform: translateY(-5px);
}

.producto-card .card-img-top{
    width: 100%;
    aspect-ratio: 7 / 9;
    object-fit: cover;
    display: block;
    transition: .3s ease;
}


.producto-card:hover .card-img-top{
    transform: scale(1.03);
}

.producto-precio{
    font-size: 1rem;
    font-weight: 700;
    color: #8e7765; /* Taupe */
}

.producto-title{
    font-size: 1rem;
}

.detalle-title{
    font-size: 1.5rem;
    font-weight: 700;
}

.detalle-precio{
    font-size: 2rem;
    font-weight: 800;
    color:#8e7765;
    line-height:1;
}