/* ===========================
ELEMENTOS GENERALES HOME
=========================== */
.text-success {
    font-size: 1.05rem;
    font-weight: bold;
}
.btn {
    border-radius: 6px;
}
h4 {
    font-weight: 600;
}
.active {
    font-weight: bold;
    text-decoration: none;
}
/* ===========================
CAROUSEL DESTACADOS
=========================== */
.carousel-item {
    transition: transform 0.6s ease-in-out;
    padding-top: 10px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}
.carousel-indicators {
    bottom: -25px;
}
.carousel-indicators [data-bs-target] {
    background-color: #000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: #0d6efd;
}
/* ===========================
CARDS PRODUCTOS
=========================== */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.card-img-top {
    height: 150px;
    object-fit: scale-down;
    width: 100%;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-img-top.loaded {
    opacity: 1;
}
.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 38px;
}
/* ===========================
FILTROS
=========================== */
form.row {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* ===========================
IMAGENES
=========================== */
.card-img-wrapper {
    position: relative;
}
/* ===========================
BOTON VER PRODUCTO
=========================== */
.btn-ver {
    background-color: #0d6efd;
    color: #fff;
    border: none;
}
.btn-ver:hover {
    background-color: #0b5ed7;
    color: #fff;
}