
        :root {
            /* Color Theme: 1st Red, 2nd Green, 3rd Yellow */
            --kerala-red: #c62828;       
            --kerala-green: #2e7d32;     
            --kerala-yellow: #ffb300;    
            
            /* Light Thematic Backgrounds (Replacing Pure White) */
            --bg-kasavu: #fff0d4;        /* Traditional Off-white base */
            --bg-light-green: #d9ffd4;   /* Very pale green for sections */
            --bg-light-yellow: #fffdf2;  /* Very pale yellow for cards/navbar */
            --bg-light-red: #fdf5f5;     /* Very pale red for gallery borders */
            
            --text-dark: #3e2723;        
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-kasavu);
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand, .traditional-font {
            font-family: 'Playfair Display', serif;
        }

        /* Navbar Styling */
        .navbar {
            background-color: var(--bg-light-yellow) !important;
            box-shadow: 0 4px 15px rgba(198, 40, 40, 0.08);
            border-bottom: 3px solid var(--kerala-red);
			padding:0!important;
        }
        .navbar-brand {
            color: var(--kerala-red) !important;
            font-weight: 800;
            font-size: 1.8rem;
        }
        .navbar-brand img {
            height: 80px;
            margin-right: 10px;
        }
        .nav-link {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            color: var(--kerala-green) !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active { 
            color: var(--kerala-red) !important; 
        }

        /* Buttons */
        .btn-theme {
            background-color: var(--kerala-red);
            color: var(--bg-kasavu);
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 500;
            border: 2px solid var(--kerala-red);
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(198, 40, 40, 0.3);
        }
        .btn-theme:hover {
            background-color: var(--kerala-green);
            border-color: var(--kerala-green);
            color: var(--kerala-yellow);
            box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
        }
        .btn-outline-theme {
            color: var(--kerala-red);
            border: 2px solid var(--kerala-red);
            background: transparent;
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-theme:hover {
            background: var(--kerala-red);
            color: var(--bg-kasavu);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--kerala-red);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title h2::after {
            content: '❖'; 
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--kerala-yellow);
            font-size: 1.5rem;
        }
        .section-title h2::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 2px;
            background: var(--kerala-green);
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Product Cards */
        .product-card {
            border: 1px solid rgba(46, 125, 50, 0.1);
            border-radius: 12px;
            transition: all 0.4s ease;
            background: var(--bg-light-yellow);
            overflow: hidden;
            border-top: 4px solid var(--kerala-red);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(198, 40, 40, 0.15);
            border-top-color: var(--kerala-green);
        }
        .product-card img {
            height: 280px;
            width: 100%;
            object-fit: contain;
            padding: 25px;
            background: var(--bg-light-yellow);
        }
        .product-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 15px;
        }
        .badge-premium {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--kerala-yellow);
            color: var(--kerala-red);
            font-weight: 700;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Gallery Grid */
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            background: var(--bg-light-red);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border: 2px solid rgba(46, 125, 50, 0.1);
        }
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: contain;
            transition: transform 0.5s ease;
            padding: 10px;
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* Contact Section */
        .contact-info i {
            width: 50px;
            height: 50px;
            background: var(--bg-kasavu);
            color: var(--kerala-red);
            border: 2px solid var(--kerala-yellow);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .contact-info i:hover {
            background: var(--kerala-green);
            color: var(--bg-light-yellow);
            border-color: var(--kerala-green);
        }

        /* Footer */
        footer { 
            background: linear-gradient(to right, var(--kerala-red), #8e0000); 
            color: var(--bg-kasavu); 
            border-top: 5px solid var(--kerala-yellow);
        }
        .social-icons a {
            color: var(--bg-kasavu);
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .social-icons a:hover { color: var(--kerala-yellow); }
        .developer-credit {
            background-color: #000;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .developer-credit a {
            color: var(--kerala-yellow);
            text-decoration: none;
            font-weight: 600;
        }

        /* Floating Action Buttons (WhatsApp & Amazon) */
        .floating-action-container {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }
        .float-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            border-radius: 50px;
            color: #ffffff !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .float-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
        }
        .btn-whatsapp {
            background-color: #25D366;
            width: 55px;
            height: 55px;
            font-size: 32px;
        }
        .btn-amazone {
            background-color: #232F3E;
            padding: 10px 20px;
            height: 55px;
            font-size: 16px;
            font-weight: 600;
        }
        .btn-amazone i {
            color: #FF9900;
            font-size: 24px;
            margin-right: 8px;
        }
		
		
		
		
		
        .page-header { background: linear-gradient(rgba(198, 40, 40, 0.95), rgba(46, 125, 50, 0.95)), url('../assets/sl1.png') right/cover; padding: 80px 0; color: white; text-align: center; }
        .page-header h1 { font-size: 3.5rem; color: var(--kerala-yellow); text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
		
		
		
		/* WhatsApp Order Button for Product Cards */
        .btn-wa-order {
            background-color: #25D366;
            color: #ffffff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 20px;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        .btn-wa-order:hover {
            background-color: #128C7E;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }