.elementor-29683 .elementor-element.elementor-element-47c94f1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-65d6568 *//* Foliano Premium Editorial Mega Menu - 6 Column Update */
.foliano-editorial-menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Updated for 6 items */
    gap: 25px; /* Slightly reduced gap to fit 6 items elegantly */
    padding: 35px;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.foliano-style-card {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foliano-img-mask {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    margin-bottom: 18px;
    border-radius: 0px; 
}

.foliano-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
    filter: brightness(0.95);
}

.foliano-style-card:hover .foliano-img-mask img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.foliano-card-label {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.foliano-style-card:hover .foliano-card-label {
    opacity: 0.6;
    transform: translateY(-2px);
}

/* Tablet Fallback */
@media (max-width: 1024px) {
    .foliano-editorial-menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
    }
}/* End custom CSS */