* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

/* Slider Styles */
.slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Category Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 2rem 0;
}

.category-card {
    background: #f4f4f4;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
}

/* Product Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 2rem 0;
}

.product-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Product Details Page Styles */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info {
    padding: 1rem;
}

.product-info h1 {
    margin-bottom: 1rem;
    color: #333;
}

.product-info .category {
    color: #666;
    margin-bottom: 0.5rem;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e44d26;
    margin-bottom: 1rem;
}

.product-info .description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
    }
}

/* Search Form Styles */
.search-form {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.search-form input {
    padding: 8px;
    border: none;
    border-radius: 4px;
    width: 200px;
}

.search-form button {
    padding: 8px 16px;
    background: #e44d26;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Cart Styles */
.cart-items {
    margin: 2rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.item-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-details input {
    width: 60px;
    padding: 5px;
}

.cart-summary {
    margin-top: 2rem;
    text-align: right;
}

.total {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.checkout-btn {
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cart-icon {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e44d26;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.buy-now-btn {
    display: inline-block;
    background: #25D366; /* WhatsApp green */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.buy-now-btn:hover {
    background: #128C7E;
}

/* About Page Styles */
.about-section {
    padding: 40px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-text h2 {
    margin-bottom: 20px;
    color: #333;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.about-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366;
}

/* Contact Page Styles */
.contact-section {
    padding: 40px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.contact-info {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.contact-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.social-links {
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    margin: 15px 0;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Product Detail Styles */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 0;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info h1 {
    margin-bottom: 15px;
}

.product-info .category {
    color: #666;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}

.product-info .description {
    margin: 20px 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content,
    .contact-content,
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

/* Add to your existing styles */

/* Hero Section */
.hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    margin: 0;
}

.product-card .price {
    padding: 0 15px;
    font-weight: bold;
    color: #2c3e50;
}

.buy-button {
    display: block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    margin: 15px;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Sticky Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: #2c3e50;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.nav-link:hover {
    color: #3498db;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #3498db;
}

/* Search Bar */
.search-bar {
    flex: 0 0 300px;
}

.search-bar form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    padding: 0.75rem 1rem;
    border: none;
    background: #3498db;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #2980b9;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-bar {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }

    .search-bar {
        display: none;
    }
}

/* Custom Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.dropdown-item:active {
    background-color: #0d6efd;
}

/* Search bar styles */
.input-group {
    width: auto;
    min-width: 250px;
}

@media (max-width: 991.98px) {
    .input-group {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Optional: Hover effects */
.nav-link:hover {
    color: #0d6efd !important;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Add to your existing CSS */

/* Hover effects */
.hover-card {
    transition: transform 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

/* Category icons */
.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

/* Team member cards */
.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Responsive images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* About Page Styles */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.text-primary {
    color: #0d6efd !important;
}

/* Responsive image handling */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Icon containers */
.icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    margin: 0 auto 1rem;
}

/* Value cards */
.value-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.bg-gradient {
    background: linear-gradient(45deg, #007bff, #6610f2);
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.z-index-1 {
    z-index: 1;
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.transition-all {
    transition: all 0.3s ease;
}

.h-2 {
    height: 2px;
}

.card-img-wrapper {
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}