        :root {
            --primary-red: #DF0225;
            --primary-yellow: #F3EA8D;
            --primary-white: #FFFFFF;
        }

        body,
        html {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }


        /* Adjust global font size and line height for smaller screens */
        @media (max-width: 768px) {
            html {
                font-size: 90%;
                /* Slightly smaller than default */
            }

            h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            h2 {
                font-size: 1.5rem;
                line-height: 1.3;
            }

            h3 {
                font-size: 1.3rem;
                line-height: 1.3;
            }

            p,
            a,
            span,
            li,
            button {
                font-size: 0.95rem;
                line-height: 1.4;
            }

            /* Optional: minimize line spacing in hero section or banners */
            .hero-text,
            .banner-text,
            .taglines {
                line-height: 1.2;
            }

            /* Optional: tighter spacing in nav links */
            nav a {
                font-size: 0.95rem;
            }
        }


        .banig-pattern {
            background-image: url('media/banigbg.png');
            background-repeat: repeat;
            background-size: cover;
            /* or use 'contain' or '100px 100px' if you want a smaller weave effect */
            background-position: center;
            opacity: 0.9;
            /* Keep it subtle */
            z-index: -1;
            /* Place it behind content */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        section {
            background-color: rgba(255, 255, 255, 0.9);
            /* optional: adds readability */
            backdrop-filter: blur(2px);
            /* optional: softens background */
        }

        .font-serif {
            font-family: 'Playfair Display', serif;
        }

        .hero-gradient {
            background: linear-gradient(135deg, #DF0225 0%, #B8021E 50%, #8B0118 100%);
        }


        .product-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-red);
            box-shadow: 0 20px 40px rgba(223, 2, 37, 0.15);
        }

        .floating-product {
            position: fixed;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 50;
        }

        .scroll-indicator {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        .contact-form input,
        .contact-form textarea {
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(223, 2, 37, 0.1);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary-yellow);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }


        #mobile-menu {
            transition: all 0.3s ease;
        }

        #navbar.scrolling {
            background-color: rgba(255, 255, 255, 0.651);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }


        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


        .modal-backdrop {
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease-out;
        }

        .modal-content {
            animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .input-focus {
            transition: all 0.3s ease;
        }

        .input-focus:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.2);
            border-color: #6366f1;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        .warning-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid #f59e0b;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        .floating-elements::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-elements::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #f59e0b, #d97706);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 4s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }


        #typing-text::after {
            content: "|";
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }