 body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc; /* slate-50 */
            scroll-behavior: smooth;
        }
        /* Style for active nav link */
        .nav-link.active {
            color: #2563eb; /* blue-600 */
            font-weight: 600;
        }
        /* Custom transition for smooth effects */
        .smooth-transition {
            transition: all 0.3s ease-in-out;
        }
        /* Snow Canvas */
        #snow-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.8;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        /* Hide scrollbar for testimonial carousel */
        .testimonial-container::-webkit-scrollbar, #cart-items::-webkit-scrollbar {
            display: none;
        }
        .testimonial-container, #cart-items {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .text-shadow {
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }
        /* Modal & Off-canvas Styles */
        .modal-overlay {
            transition: opacity 0.3s ease;
        }
        .modal-content, .off-canvas-content {
            transition: transform 0.3s ease;
        }
    