.elementor-2 .elementor-element.elementor-element-dc2e147{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c2f1e3d *//* ARTHEMIS STUDIO | SHOP THE LOOK FIX v2.0 */
/* Solución: Ancho completo forzado y Enlaces activos */

.shop-look-section {
    display: grid;
    width: 100% !important; /* FORZAR ANCHO TOTAL */
    max-width: 100% !important;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    box-sizing: border-box; /* Asegura que el padding no rompa el ancho */
}

/* Diseño Responsivo: Móvil 1 Columna, PC 2 Columnas */
.shop-look-section {
    grid-template-columns: 1fr; /* Móvil: Todo apilado */
}

@media(min-width: 768px) {
    .shop-look-section {
        grid-template-columns: 1.2fr 1fr; /* PC: Imagen 55% - Productos 45% */
    } 
}

/* 1. IMAGEN GRANDE (Link) */
a.look-image {
    display: block !important;
    width: 100% !important; /* Ocupar toda su columna */
    position: relative;
    min-height: 450px; /* Altura mínima para que no desaparezca */
    text-decoration: none;
    overflow: hidden;
    cursor: pointer; /* Mano al pasar el mouse */
}

a.look-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Cubrir todo el espacio sin deformarse */
    transition: transform 0.6s ease;
}

a.look-image:hover img {
    transform: scale(1.05);
}

/* Etiqueta Flotante sobre la foto */
.look-overlay-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10;
    max-width: 80%;
}

.look-overlay-tag h3 { margin: 5px 0 10px; font-size: 1.1rem; color: #111; line-height: 1.2; }
.btn-fake { font-size: 0.8rem; font-weight: 700; color: #F7941D; text-transform: uppercase; }

/* 2. COLUMNA DERECHA (Productos) */
.look-products {
    padding: 40px;
    width: 100% !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.look-title { font-size: 1.5rem; margin-bottom: 5px; color: #111; }
.look-desc { color: #888; margin-bottom: 30px; font-size: 0.9rem; }

/* 3. MINI PRODUCTOS (Links Botón) */
a.mini-prod {
    display: flex;
    width: 100% !important; /* Ancho total disponible */
    box-sizing: border-box;
    gap: 15px;
    align-items: center;
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
    cursor: pointer;
}

a.mini-prod:hover {
    background: #fff;
    border-color: #F7941D;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.mini-img-wrap { flex-shrink: 0; } /* Evita que la imagen se aplaste */
.mini-img-wrap img {
    width: 70px; height: 70px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.mini-info { flex-grow: 1; }
.mini-info h4 { margin: 0 0 5px; font-size: 0.95rem; color: #333; line-height: 1.3; }
.mini-price { font-weight: 700; color: #F7941D; }
.mini-arrow { color: #ccc; transition: 0.3s; }
a.mini-prod:hover .mini-arrow { color: #F7941D; }/* End custom CSS */