        /* Custom CSS for Glossy/Bold Feel & Smooth Transitions */
        @keyframes subtleGlow {
            0% { box-shadow: 0 0 5px rgba(225, 6, 0, 0.5); }
            50% { box-shadow: 0 0 15px rgba(225, 6, 0, 0.7); }
            100% { box-shadow: 0 0 5px rgba(225, 6, 0, 0.5); }
        }

        .fit-button-glow {
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(225, 6, 0, 0.2);
        }
        .fit-button-glow:hover {
            animation: subtleGlow 1.5s infinite alternate;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 6, 0, 0.4);
        }
        
        .product-card {
            overflow: hidden;
            border-radius: 1rem; /* Rounded corners for glossy feel */
        }

        .product-card-img {
            transition: transform 0.5s ease-in-out;
        }

        .product-card:hover .product-card-img {
            transform: scale(1.05);
        }
        
        /* Mobile Menu Overlay Style */
        .mobile-menu-overlay {
            background-color: #ffffff;
            opacity: 0.98;
        }

        /* Hero text styling */
        .hero-text-shadow {
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Fix for scroll-triggered animation visibility */
        .fade-in-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
    