/* ==========================================================================
   ======================== SECTION 4: MIX & MATCH ==========================
   ========================================================================== */

/* Fondo crema suave extraído de tu referencia */
.bohoo-mix-section {
    background-color: #f6f4f0; 
}

/* --- Título y Texto --- */
.bohoo-mix-title {
    font-size: 3rem;
    font-weight: 300;
    color: #5c5c5c; /* Gris oscuro para el título */
    letter-spacing: 2px;
    line-height: 1.1;
}

.bohoo-mix-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: #888888;
}

/* --- Tarjetas de Imágenes con Zoom --- */
.bohoo-mix-card {
    overflow: hidden; /* Asegura que la imagen no se salga al hacer zoom */
    background-color: #ffffff; /* Por si la imagen tarda en cargar */
}

/* Contenedor que maneja el efecto de recorte */
.bohoo-img-zoom-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.bohoo-img-zoom-wrapper img {
    transition: transform 0.6s ease; /* Transición suave de 0.6 segundos */
    object-fit: cover;
}

/* Efecto Zoom Hover: Al pasar el ratón por la tarjeta, la imagen crece un 5% */
.bohoo-mix-card:hover .bohoo-img-zoom-wrapper img {
    transform: scale(1.05); 
}

/* --- Botones (Labels) sobre las imágenes --- */
.bohoo-mix-label {
    background-color: #000000;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 20px;
    font-weight: 500;
    white-space: nowrap; /* Evita que el texto se rompa en dos líneas */
    transition: background-color 0.3s ease;
    z-index: 2;
}

/* ==========================================================
   ============== RESPONSIVE: MIX & MATCH ===================
   ========================================================== */

/* Tablet y menores */
@media (max-width: 991px) {
    .bohoo-mix-title {
        font-size: 2.5rem;
    }

    .bohoo-mix-text {
        text-align: center; /* En móvil centramos el texto derecho */
        margin-top: 1rem;
    }

    .bohoo-mix-desc {
        font-size: 0.9rem;
    }
}

/* Pantallas muy pequeñas (celulares verticales) */
@media (max-width: 576px) {
    .bohoo-mix-label {
        font-size: 0.65rem;
        padding: 6px 12px;
        /* Aquí estaba el error. Ahora aplicamos el margen correctamente en CSS */
        margin-bottom: 1rem !important; 
    }
}