
        /* --- MAN PAGE SPECIFIC STYLES --- */

        /* Page Header */
        .page-header {
            padding: 4rem 0;
            background-color: #f9f9f9;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .page-title {
            font-size: 3.5rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .page-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--brand-gold);
        }

        /* Product Family Grid */
        /* Horizontal Layout Styles */
                .family-section {
                    padding: 0;
                }

                .family-row {
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    min-height: 600px;
                    border-bottom: 1px solid #eee;
                }

                /* Alternanza immagine sinistra/destra */
                .family-row:nth-child(even) {
                    flex-direction: row-reverse;
                }

                .family-image-col {
                    flex: 0 0 50%;
                    max-width: 50%;
                    height: 600px;
                    overflow: hidden;
                    padding: 0;
                }

                .family-image-col img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 1.2s cubic-bezier(0.15, 0, 0.15, 1);
                }

                .family-row:hover .family-image-col img {
                    transform: scale(1.05);
                }

                .family-text-col {
                    flex: 0 0 50%;
                    max-width: 50%;
                    padding: 5% 8%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    background-color: #fff;
                }

                .family-title {
                    font-family: var(--font-heading);
                    font-size: 2.5rem;
                    margin-bottom: 20px;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                }

                .family-desc {
                    font-size: 1.1rem;
                    color: #666;
                    line-height: 1.8;
                    margin-bottom: 35px;
                    font-weight: 300;
                }

                .btn-discover {
                    display: inline-block;
                    padding: 15px 40px;
                    background-color: var(--brand-black);
                    color: white;
                    text-transform: uppercase;
                    font-size: 0.85rem;
                    font-weight: 600;
                    letter-spacing: 2px;
                    border: 1px solid var(--brand-black);
                    transition: all 0.3s ease;
                    text-decoration: none;
                    width: fit-content;
                }

                .btn-discover:hover {
                    background-color: transparent;
                    color: var(--brand-black);
                }


                @media (max-width: 991px) {
                    .family-image-col, .family-text-col {
                        flex: 0 0 100%;
                        max-width: 100%;
                    }
                    .family-row {
                        min-height: auto;
                    }
                    .family-image-col {
                        height: 400px;
                    }
                    .family-text-col {
                        padding: 50px 30px;
                        text-align: center;
                    }
                    .btn-discover {
                        margin: 0 auto;
                    }
                    .family-image-col img {
                        height: auto !important;
                    }

                }




        @media (max-width: 991px) {

            /* Wall Mobile: 2 righe più piccole ma sempre adiacenti */
            /* 250px * 2 = 500px */
            .masonry-horizontal {
                height: 500px;
            }

            .masonry-item {
                width: 250px;
                height: 250px;
                flex: 0 0 auto;
            }

            .wall-control {
                display: none !important;
            }

            .lightbox-prev {
                left: 0;
                background: rgba(0, 0, 0, 0.3);
            }

            .lightbox-next {
                right: 0;
                background: rgba(0, 0, 0, 0.3);
            }
        }
