 #closeModal img {
            width: 25px;
            height: auto;
         
        }
        #lightboxClose img {
            width: 25px;
            height: auto;
         
        }
 .info-section {
            max-width: 1440px;
            margin: 0 auto 40px;
            background: white;
            padding: 40px 0px 0px;
            border-radius: 8px;
            position: relative;
         
        }
        .info-title-best::after {
  content: "Best Seller";
  background-color: #e60000;   /* rosso acceso */
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 12px;
  margin-left: 10px;
  vertical-align: middle;
 }
        .info-title-best {
            font-size: 3rem;
            font-weight: bold;
            color: #45a9e2;
            text-transform: uppercase;
            letter-spacing: 0px;
            margin-bottom: 30px;
            margin-top: 120px;
            text-align: left;
            font-family: 'Neutraface Text', sans-serif;
        }

        .info-title {
            font-size: 3rem;
            font-weight: bold;
            color: #45a9e2;
            text-transform: uppercase;
            letter-spacing: 0px;
            margin-bottom: 30px;
            margin-top: 120px;
            text-align: left;
            font-family: 'Neutraface Text', sans-serif;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .info-icon {
            width: 33px;
            height: 33px;
            flex-shrink: 0;
        }

        .info-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .info-text {
            font-size: 18px;
            color: rgb(144 152 157);
            font-weight: 600;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .info-title-best {
                font-size: 28px;
                letter-spacing: 1px;
            }
            .info-title {
                font-size: 28px;
                letter-spacing: 1px;
            }

            .info-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .info-item {
                gap: 12px;
            }

            .info-icon {
                width: 20px;
                height: 20px;
            }

            .info-text {
                font-size: 16px;
            }
            .info-section {
             padding: 40px 20px;
    
         
        }
        }
         @media (max-width: 1024px) {
            .gallery-container {
    
    padding: 20px !important;
    border-radius: 3px;
}
.info-section {
    padding: 40px 20px 0px;
 }

        }
        .gallery-container {
            max-width: 1460px;
            margin: 0 auto;
            background: white;
            padding: 0px;
            border-radius: 8px;
            
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            grid-template-rows: repeat(3, 200px);
            gap: 20px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background: #000;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item.vertical {
            grid-row: span 3;
        }

        .gallery-item.large {
            grid-row: span 3;
        }

        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .overlay-btn {
            background: #00bcd4;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
            cursor: pointer;
            border-radius: 4px;
            pointer-events: auto;
        }

        .overlay-btn:hover {
            background: #0097a7;
        }

        .see-more-btn {
            background: #00bcd4;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
            cursor: pointer;
            border-radius: 4px;
            float: right;
            transition: background 0.3s;
        }

        .see-more-btn:hover {
            background: #0097a7;
        }

        /* Modal Gallery */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0687bdeb;
            z-index: 1000;
            overflow-y: auto;
        }

        .modal.active {
            display: block;
        }

        .modal-content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .modal-header h2 {
            color: white;
            font-size: 28px;
        }

        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 40px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            line-height: 1;
        }

        .close-btn:hover {
            color: #00bcd4;
        }

        .modal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }

        .modal-item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .modal-item:hover {
            transform: scale(1.05);
        }

        .modal-item img,
        .modal-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0687bdd6;
            z-index: 20000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-content img,
        .lightbox-content video {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgb(236, 204, 60);
            border: none;
            color: white;
            font-size: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2001;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgb(217 187 97);
            border: none;
            color: white;
            font-size: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 2001;
        }

        .lightbox-nav:hover {
            background: rgb(131, 105, 28);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                max-width: 400px;
                margin: 0 auto;
            }
.gallery-container {
 
    padding: 20px;
    border-radius: 0px;
}
            .gallery-item.vertical {
                aspect-ratio: 9/16;
                height: auto;
                grid-row: span 1;
            }

            .gallery-item.large,
            .gallery-item:not(.vertical) {
                display: none;
            }

            .gallery-item-overlay {
                display: none;
            }

            .mobile-see-more {
                display: block;
                background: #00bcd4;
                color: white;
                border: none;
                padding: 15px 40px;
                font-size: 14px;
                font-weight: bold;
                letter-spacing: 1px;
                cursor: pointer;
                border-radius: 4px;
                margin: 20px auto 0;
                width: fit-content;
            }

            .mobile-see-more:hover {
                background: #0097a7;
            }
        }

        .mobile-see-more {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-see-more {
                display: block !important;
            }
        }