<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic Reset &amp; Globals */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 0.8em;
}

h2 {
    font-size: 2em;
    text-align: center;
    color: #333;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-padding {
    padding: 40px 0;
}

/* Header &amp; Navigation */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
    /* For dropdown positioning */
}

.nav-links a {
    color: #333;
    font-weight: bold;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links li.active a {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 10px 0;
    border-radius: 4px;
}

.dropdown-content li {
    margin-left: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.menu-toggle {
    display: none;
    /* Hidden by default */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    /* Adjust as needed */
    object-fit: cover;
    /* Ensures image covers the area nicely */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
}


/* About Us Section */
#about .about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

#about .about-image {
    flex-basis: 40%;
    /* Adjust as needed */
    border-radius: 8px;
}

#about p {
    flex-basis: 60%;
}

/* Collection Section */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.collection-item img {
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-item h3 {
    font-size: 1.2em;
    color: #333;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    margin-bottom: 10px;
    border-radius: 4px;
}

.product-card p {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 5px;
}

.product-card h3 {
    font-size: 1.1em;
    margin-bottom: 0;
}

.product-card h3 a {
    color: #333;
}

/* Updates Grid */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.update-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    /* To contain image border-radius */
}

.update-item img {
    width: 100%;
    height: 180px;
    /* Fixed height for uniformity */
    object-fit: cover;
}

.update-item .update-meta {
    font-size: 0.8em;
    color: #777;
    padding: 10px 15px 0;
}

.update-item h3 {
    font-size: 1.3em;
    margin: 0.5em 0;
    padding: 0 15px;
}

.update-item h3 a {
    color: #333;
}

.update-item p {
    padding: 0 15px;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    font-weight: bold;
    color: #007bff;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col p a {
    color: #ccc;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-logo {
    margin-bottom: 15px;
    background-color: white;
    /* if logo has transparent background */
    padding: 5px;
    border-radius: 4px;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 0.9em;
}

.copyright p {
    margin-bottom: 5px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 35px;
    /* Adjust based on your icon */
    height: 35px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Show hamburger */
    }

    .nav-links {
        display: none;
        /* Hide nav links */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        /* Adjust based on header height */
        left: 0;
        background-color: #fff;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
        /* Show when active */
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .nav-links li a:hover,
    .nav-links li.active a {
        border-bottom: 1px solid #eee;
        /* Remove bottom border on hover for mobile */
    }

    /* Dropdown in mobile */
    .dropdown-content {
        position: static;
        /* No absolute positioning */
        box-shadow: none;
        background-color: #e9e9e9;
        /* Slightly different bg for distinction */
        width: 100%;
    }

    .dropdown:hover .dropdown-content {
        /* Keep hover for desktop */
        display: none;
    }

    .dropdown.open .dropdown-content {
        /* Use JS to toggle 'open' class */
        display: block;
    }


    .hero-text h1 {
        font-size: 2em;
    }

    .hero-text p {
        font-size: 1em;
    }

    #about .about-content {
        flex-direction: column;
    }

    #about .about-image {
        margin-bottom: 20px;
    }
}</pre></body></html>