   @import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Inter:ital,opsz,wght@0,14..32,500;1,14..32,500&family=Mr+Dafoe&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

                /* Roboto Regular */
                @font-face {
                font-family: 'Roboto';
                src: url('../fonts/roboto/Roboto-Regular.woff2') format('woff2'),
                    url('../fonts/roboto/Roboto-Regular.woff') format('woff');
                font-weight: 400;
                font-style: normal;
                }

                /* Roboto Bold */
                @font-face {
                font-family: 'Roboto';
                src: url('../fonts/roboto/Roboto-Bold.woff2') format('woff2'),
                    url('../fonts/roboto/Roboto-Bold.woff') format('woff');
                font-weight: 700;
                font-style: normal;
                }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
        }

                /* Header */
        .header {
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c2c2c;
            text-decoration: none;
            font-family: "Roboto";
            font-weight: 600;
        }

        .gd-alternato{
            display: none;
        }

        #lista-header-home{
            display: flex;
            gap: 5vw;
            list-style: none;

        }

        .voci-lista-ordinata{
        }

                .voci-lista-ordinata a{
                                text-decoration: none;
                                            color: black;
                                                        font-family: "Roboto";
            font-weight: 400;
            font-style: normal;
            font-size: 1.2rem;
                }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #d4af37;
        }

        /* Hero Section */
        .hero-section {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23222" width="1200" height="800"/><circle cx="300" cy="200" r="100" fill="%23444" opacity="0.3"/><circle cx="900" cy="300" r="150" fill="%23555" opacity="0.2"/><circle cx="600" cy="500" r="80" fill="%23333" opacity="0.4"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            margin-top: 50px;
        }

        #immagine-hero {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.4) contrast(1.1);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: "Roboto";
            position: relative;
            z-index: 3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.95;
            max-width: 600px;
            position: relative;
            z-index: 3;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Products Section */
        .products-section {
            background: white;
            padding: 3rem 2rem;
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
        }

        .product-item {
            text-align: center;
            transition: transform 0.2s ease;
        }

        .product-item:hover {
            transform: scale(1.02);
        }

        .product-image {
            width: 100%;
            height: 140px;
            background-color: #d1d5db;
            border-radius: 8px;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            overflow: hidden;
        }

        .img-articolo{
              width: 100%;
                height: 100%;
                object-fit: cover; 
                display: block;
        }


        .product-image:hover {
            background-color: #c4c9d4;
        }

        .product-name {
            font-size: 0.9rem;
            color: #333;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }

        .product-price {
            font-size: 1rem;
            color: #d97706;
            font-weight: 600;
        }

    
                /* Banner Styles (condiviso) */
        .info-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: black;
            color: white;
            padding: 20px;
            box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .info-banner.show {
            transform: translateY(0);
        }

        .info-banner.hide {
            transform: translateY(100%);
        }

        .banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .banner-icon {
            font-size: 2em;
            margin-right: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .banner-text {
            flex: 1;
            min-width: 300px;
            font-family: Arial, Helvetica, sans-serif;
        }

        .banner-text h3 {
            margin-bottom: 10px;
            font-size: 1.2em;
            font-weight: 600;
            color: #ecf0f1;
        }

        .banner-text p {
            margin-bottom: 10px;
            opacity: 0.9;
            line-height: 1.5;
            font-size: 14px;
        }

        .banner-link {
            color: #3498db;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .banner-link:hover {
            color: #2980b9;
        }

        .banner-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .info-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-understand {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }

        .btn-understand:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        }

        .btn-details {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-details:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

                /* Modal Styles (condiviso) */
        .info-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-family: Arial, Helvetica, sans-serif;
        }

        .info-modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .info-modal.show .modal-content {
            transform: scale(1);
        }

        .modal-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #3498db;
        }

        .modal-header h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.5em;
        }

        .modal-header .subtitle {
            color: #7f8c8d;
            font-size: 14px;
        }

        .info-section {
            margin-bottom: 25px;
        }

        .info-section h4 {
            color: #2c3e50;
            margin-bottom: 12px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-section p {
            color: #5d6d7e;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .info-section ul {
            margin-left: 20px;
            color: #5d6d7e;
        }

        .info-section li {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #27ae60;
            margin: 20px 0;
        }

        .highlight-box h5 {
            color: #27ae60;
            margin-bottom: 10px;
            font-size: 1em;
        }

        .highlight-box p {
            color: #2c3e50;
            margin: 0;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

               /* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: black;
            color: white;
            padding: 20px;
            box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner.hide {
            transform: translateY(100%);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-icon {
            font-size: 2em;
            margin-right: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text h3 {
            margin-bottom: 10px;
            font-size: 1.2em;
            font-weight: 600;
            color: #ecf0f1;
        }

        .cookie-text p {
            margin-bottom: 10px;
            opacity: 0.9;
            line-height: 1.5;
            font-size: 14px;
        }

        .cookie-link {
            color: #3498db;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .cookie-link:hover {
            color: #2980b9;
        }

        .cookie-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-understand {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }

        .btn-understand:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        }

        .btn-info {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-info:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        /* Cookie Info Modal */
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cookie-modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .cookie-modal.show .modal-content {
            transform: scale(1);
        }

        .modal-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #3498db;
        }

        .modal-header h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.5em;
        }

        .modal-header .subtitle {
            color: #7f8c8d;
            font-size: 14px;
        }

        .info-section {
            margin-bottom: 25px;
        }

        .info-section h4 {
            color: #2c3e50;
            margin-bottom: 12px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-section p {
            color: #5d6d7e;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .info-section ul {
            margin-left: 20px;
            color: #5d6d7e;
        }

        .info-section li {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #27ae60;
            margin: 20px 0;
        }

        .highlight-box h5 {
            color: #27ae60;
            margin-bottom: 10px;
            font-size: 1em;
        }

        .highlight-box p {
            color: #2c3e50;
            margin: 0;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        /* Status indicator */
        .cookie-status {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #27ae60;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 9999;
        }

        .cookie-status.show {
            transform: translateX(0);
        }

        
        /* Footer */
        .footer {
            background: #3a3a3a;
            color: white;
            text-align: center;
            padding: 1.5rem 2rem;
            margin-top: 5vh;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer h3 {
            margin-bottom: 1rem;
            color: #d9d9d9;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 50vh;
            }
            
            .hero-title {
                font-family: 'Roboto', Arial, sans-serif;
                font-size: 2.2rem;
                letter-spacing: 1px;
                font-weight: 700;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            
            .products-section {
                padding: 2rem 1rem;
            }
                            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-icon{
                display: none;
            }

                        .cookie-icon{
                display: none;
            }

                        #privacyBanner .banner-icon {
                display: none;
            }

            #privacyBanner .banner-text p{
                display: flex;
                flex-wrap: wrap;
                width: 85vw;
            }

            .cookie-text{
                display: flex;
                flex-wrap: wrap;
                text-align: left;
            }

            #cookieBanner .cookie-text p{
                max-width: 85vw;
            }

            .cookie-actions {
                justify-content: center;
                width: 100%;
            }

            .cookie-btn {
                flex: 1;
                min-width: 120px;
            }

            .modal-content {
                padding: 20px;
                margin: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
            
            .product-image {
                height: 120px;
            }
            
            .product-name {
                font-size: 0.8rem;
            }
            
            body {
                padding: 0;
            }

                        .logo{
                display: none;
            }

                        .gd-alternato{
            display: flex;
            color: #000000;
            text-decoration: none;
            font-family: "Roboto", Arial, sans-serif;
            font-weight: 700;
        }
        }