/* =============================================
   Lookbook Section - Liam Vercceli
   ============================================= */

.lookbok-section .lv-section-title {
    padding-top: 50px;
}

.lookbok-left .section-title {
    display: none;
}

/* ── Imagen con hover ───────────────────────── */
.lv-lookbok-pic {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.lv-lookbok-pic--no-link {
    cursor: default;
}

a.lv-lookbok-pic:hover {
    text-decoration: none;
    color: inherit;
}

.lv-lookbok-pic img {
    min-width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
    will-change: transform;
}

.lv-lookbok-pic:hover img {
    transform: scale(1.06);
    filter: brightness(0.72);
}

/* Overlay rojo vino con CTA */
.lv-lookbok-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(146, 43, 33, 0.0);
    transition: background 0.45s ease;
    pointer-events: none;
}

.lv-lookbok-pic:hover .lv-lookbok-overlay {
    background: rgba(146, 43, 33, 0.32);
    pointer-events: auto;
}

.lv-lookbok-overlay__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.38s ease 0.05s, transform 0.38s ease 0.05s;
}

.lv-lookbok-overlay__icon {
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
}

.lv-lookbok-pic:hover .lv-lookbok-overlay__label {
    opacity: 1;
    transform: translateY(0);
}

.lv-lookbok-pic:hover .lv-lookbok-overlay__icon {
    opacity: 1;
    transform: translateX(0);
}

/* Borde rojo vino al hacer hover */
.lv-lookbok-pic::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #922b21;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.38s ease;
    pointer-events: none;
    z-index: 5;
}

.lv-lookbok-pic:hover::after {
    opacity: 1;
}

/* ── Botón VER COLECCIÓN ────────────────────── */
.lv-look-btn {
    position: relative;
    overflow: hidden;
    background: #922b21 !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 12px 28px !important;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Efecto de brillo deslizante */
.lv-look-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.lv-look-btn:hover::before {
    left: 130%;
}

.lv-look-btn:hover {
    box-shadow: 0 6px 20px rgba(146,43,33,0.45);
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none;
}

/* ── Texto izquierdo: párrafo hover color ───── */
.lookbok-left p {
    transition: color 0.3s ease;
}
.lookbok-left:hover p {
    color: #555;
}
