 /* Products Grid Section */
        .products-section {
            background: #f5f5f5;
            padding: 60px 20px;
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-title {
            padding: 25px;
            text-align: center;
            font-size: 1.4em;
            color: #4a4a4a;
            font-weight: 600;
        }

        /* Footer Section */
        .footer-section {
            background: #fef9f0;
            padding: 60px 20px 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            align-items: start;
        }

        .footer-column {
            padding: 0 20px;
        }

        .footer-logo {
            max-width: 180px;
            margin-bottom: 20px;
        }

        .footer-tagline {
            font-size: 0.95em;
            color: #666;
            font-style: italic;
            margin-top: 10px;
        }

        .footer-title {
            font-size: 1.6em;
            color: #d4af37;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05em;
            color: #555;
        }

        .footer-list li::before {
            content: '✓';
            color: #d4af37;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.2em;
        }

        .products-list li::before {
            content: '●';
            color: #d4af37;
        }

        .newsletter-description {
            font-size: 1.05em;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #d4af37;
        }

        .newsletter-button {
            padding: 14px 35px;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .newsletter-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
        }

        /* Copyright Section */
        .copyright-section {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 25px 20px;
            font-size: 0.95em;
        }

        .copyright-section a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .copyright-section a:hover {
            color: #f4d03f;
        }

        @media (max-width: 768px) {
            .products-grid,
            .footer-container {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-button {
                width: 100%;
            }

            .footer-column {
                padding: 0;
            }
        }