	body {
            font-family: 'Inter', sans-serif;
            /* scroll-behavior is now handled by JavaScript */
        }
        .hero-section {
            /* Updated for Parallax Effect */
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?q=80&w=1920&auto=format&fit=crop');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .section-title {
            position: relative;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background-color: #4f46e5;
            border-radius: 2px;
        }
        /* Styles for the new brands section */
        .brand-logo {
            max-height: 40px; /* Adjust height as needed */
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease-in-out;
        }
        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        /* Styles for WhatsApp Widget */
        .whatsapp-widget {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 100;
        }
        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            animation: pulse 2s infinite;
        }
        .whatsapp-button:hover {
            transform: scale(1.1);
            animation: none;
        }
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        /* Styles for category filter buttons */
        .filter-btn {
            padding: 8px 20px;
            border-radius: 50px;    /* රවුම් හැඩය (Pill shape) */
            background-color: #f1f5f9;
            border: none;
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Mouse එක ගෙනගිය විට (Hover) */
        .filter-btn:hover {
            background-color: #e2e8f0;
            transform: translateY(-2px);
        }

        /* Active Button (තෝරාගත් බොත්තම) */
        .filter-btn.active {
            background-color: #4f46e5;
            color: white;
            box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.4);
        }
        .category-container {
            display: flex;
            flex-wrap: wrap;       /* බොත්තම් වැඩි වුණොත් ඊළඟ පේළියට යයි */
            justify-content: center; /* මැදට පෙළගස්වයි */
            row-gap: 20px;        /* පේළි අතර පරතරය */
            gap: 20px;             /* බොත්තම් අතර පරතරය */
            margin: 20px auto;
            max-width: 1000px;     /* පේළියේ උපරිම පළල */
            padding: 10px;
        }
                /* Animation for gear items */
        .gear-item {
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }
        .gear-item.hidden {
            transform: scale(0.9);
            opacity: 0;
            height: 0;
            padding: 0;
            margin: 0;
            overflow: hidden;
        }

        /* Dropdown section styles */
        .availability-dropdown {
            display: block; /* Script එකෙන් 'hidden' class එක ඉවත් කළ විට ක්‍රියා කරයි */
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease-in-out;
            pointer-events: none; /* වැසී ඇති විට click කිරීම වැළැක්වීමට */
            max-height: 0;
            overflow: hidden;
        }

        /* Dropdown එක විවෘත වූ පසු තත්ත්වය */
        .availability-dropdown.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            max-height: 600px; /* අන්තර්ගතයේ ප්‍රමාණය අනුව මෙය වෙනස් කළ හැක */
            padding: 10px 0;   /* අවශ්‍ය නම් පමණක් */
        }
		
		body {
            font-family: 'Inter', sans-serif;
        }
        .news-hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1520390138845-fd2d229dd553?q=80&w=1920&auto=format&fit=crop');
            background-position: center;
            background-size: cover;
        }
		
		.hero-section .swiper-slide {
        position: relative;
        width: 100%;
        height: 80vh; /* Adjust height as needed */
        background-size: cover;
        background-position: center;
    }
    .hero-section .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .swiper-button-next, .swiper-button-prev {
        color: #ffffff; /* White navigation arrows */
    }
    .swiper-pagination-bullet-active {
        background: #4f46e5; /* Indigo color for active pagination dot */
    }
	
	/* blur කිරීමට අවශ්‍ය card එක වටා යොදන wrapper එක සඳහා */
		.blur-wrapper {
			position: relative;
			overflow: hidden; /* Overlay එක card එකෙන් පිට පනින එක නවත්වනවා */
			border-radius: 0.5rem; /* card එකේ border-radius එකට සමාන කරන්න */
			}
	
		/* blur කරන content එක සඳහා class එක (මෙය පෙර තිබූ එකමයි) */
		.content-blur {
			filter: blur(5px);
			pointer-events: none;
			user-select: none;
			}

		/* card එක මතින් පෙන්වන "Coming Soon" overlay එක සඳහා */
		.section-overlay {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			background-color: rgba(22, 31, 56, 0.6); /* තරමක් තද පැහැති overlay එකක් */
			color: white;
			font-weight: bold;
			font-size: 1.5rem; /* අකුරුවල ප්‍රමාණය */
			text-align: center;
			opacity: 0; /* මුලින් සඟවා තැබීම */
			transition: opacity 0.3s ease-in-out;
			}

		/* wrapper එක hover කළ විට overlay එක පෙන්වීම */
			.blur-wrapper:hover .section-overlay {
			opacity: 1;
			}

            .category-heading {
    /* Heading එක grid එකේ සම්පූර්ණ පළලම ලබාගැනීම සඳහා */
    grid-column: 1 / -1; 
    margin-top: 2.5rem;   /* 40px */
    margin-bottom: 1.5rem; /* 24px */
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: #1f2937; /* gray-800 */
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
    padding-bottom: 0.75rem; /* 12px */
}

/* පළමු heading එකේ උඩින් ඇති зайвий margin ඉවත් කිරීමට */
.category-heading:first-child {
    margin-top: 0;
}

/* --- Firebase Chat Widget සඳහා වන CSS --- */
.chat-button {
    position: fixed; bottom: 90px; right: 20px; z-index: 1000;
    width: 60px; height: 60px; background-color: #4f46e5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); cursor: pointer; border: none;
    transition: transform 0.3s ease;
}
.chat-button:hover { transform: scale(1.1); }

.chat-window {
    position: fixed; bottom: 90px; right: 20px; z-index: 1001;
    width: 350px; height: 500px; background-color: white;
    border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; transition: all 0.3s ease;
}
.chat-header {
    background-color: #4f46e5; color: white; padding: 1rem;
    border-top-left-radius: 12px; border-top-right-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
}
.chat-header h3 { font-weight: bold; font-size: 1.1rem; }
#close-chat-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.chat-messages { flex-grow: 1; padding: 1rem; overflow-y: auto; }
.chat-input-area { display: flex; padding: 0.5rem; border-top: 1px solid #e5e7eb; }
#firebase-chat-input { flex-grow: 1; border: 1px solid #d1d5db; padding: 0.5rem; border-radius: 6px; }
#firebase-chat-send-btn { background-color: #4f46e5; color: white; border: none; padding: 0.5rem 1rem; margin-left: 0.5rem; border-radius: 6px; cursor: pointer; }
.chat-message { margin-bottom: 0.75rem; }
.chat-message p { padding: 0.5rem 1rem; border-radius: 12px; max-width: 80%; }
.message-customer { background-color: #eef2ff; color: #3730a3; margin-left: auto; }
.message-admin { background-color: #f3f4f6; color: #1f2937; margin-right: auto; }

.cart-icon-wrapper { 
    position: relative; 
}

.cart-item-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ef4444; /* red-500 */
    color: white;
    border-radius: 9999px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
}

.cart-modal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* බොත්තම් දෙක අඩංගු Container එක */
.card-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

/* පොදු බොත්තම් මෝස්තරය */
.add-to-cart-btn, 
.check-availability-btn {
    flex: 1;
    padding: 12px 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Add to Cart - තද නිල් හෝ ඉන්ඩිගෝ පාට */
.add-to-cart-btn {
    background-color: #045149;
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #003a37;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Check Availability - ලා නිල් හෝ අළු පැහැති පසුබිමක නිල් අකුරු (Secondary Style) */
.check-availability-btn {
    background-color: #f2f0e4;
    color: #0a0a0a;
    border: 1px solid #e0e7ff;
}

.check-availability-btn:hover {
    background-color: #e2dfd5;
    color: #000000;
}

/* Active/Show තත්ත්වයේදී Check Availability බොත්තම වෙනස් වීම */
.check-availability-btn.show {
    background-color: #4f46e5;
    color: white;
}

header nav {
    display: flex;
    flex-wrap: wrap;       /* මෙනු අයිතම වැඩි නම් පේළි කිහිපයකට බෙදා දෙයි */
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* ඉතා කුඩා screen වලදී අකුරු ප්‍රමාණය අඩු කිරීමට */
@media (max-width: 768px) {
    header nav a {
        font-size: 13px;
    }
    .rent-now-btn, .registrations-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Input සහ Textarea වල පෙනුම ඔපමට්ටම් කිරීමට */
input[type="email"], 
textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="email"]:focus, 
textarea:focus {
    border-color: #4f46e5; /* Indigo color */
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

textarea {
    resize: vertical; /* උස පමණක් වෙනස් කළ හැකි ලෙස */
}

@keyframes toastBounce {
    0% { transform: translateY(100px) scale(0.9); opacity: 0; }
    60% { transform: translateY(-15px) scale(1.05); opacity: 1; }
    80% { transform: translateY(5px) scale(0.98); }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* JavaScript මගින් මේ class එක div එකට එකතු කරයි */
.toast-notification.toast-bounce {
    animation: toastBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-fade-out {
    transition: all 0.4s ease-in;
    transform: translateX(100%);
    opacity: 0;
}

/* අංකය වෙනස් වන විට සිදුවන කුඩා Pulse Animation එක */
#visitor-count {
    transition: all 0.3s ease;
}

.count-up {
    animation: countPulse 0.4s ease-out;
}

@keyframes countPulse {
    0% { transform: scale(1); color: #fbbf24; }
    50% { transform: scale(1.2); color: #ffffff; }
    100% { transform: scale(1); color: #fbbf24; }
}

/* Odometer Minimal Design with Poppins Font */
.odometer.odometer-auto-theme, 
.odometer.odometer-theme-digital {
    background: transparent !important;
    font-family: 'Poppins', sans-serif !important; /* ඔබ ඉල්ලූ පෙනුම ඇති font එක */
    font-weight: 100 !important; /* අකුරු මඳක් මහතට (Bold) පෙන්වීමට */
}

/* සියලුම පසුබිම් කොටු, බෝඩර් සහ ෂැඩෝ ඉවත් කිරීම */
.odometer .odometer-digit,
.odometer .odometer-digit .odometer-digit-inner,
.odometer .odometer-digit .odometer-ribbon,
.odometer .odometer-digit .odometer-value {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important; /* පසුබිමට කැපී පෙනෙන ලෙස සුදු පාට */
}

/* අංක අතර ඇති අනවශ්‍ය ඉඩ ප්‍රමාණය අඩු කිරීම */
.odometer .odometer-digit {
    padding: 0 !important;
    margin: 0 !important;
}

.continue-shopping-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.continue-shopping-btn:active {
    transform: scale(0.95);
}