* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #1a1a1a;
    color: rgb(255, 255, 255);
   
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  color: #fff; /* white text */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Category Icons */
.category-icons {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
    text-align: center;
    max-width: 100px;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

/* Breadcrumb and Filters */
.breadcrumb-container {
    padding: 10px 20px;
    font-size: 13px;
    color: #666;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
}

.filter-left {
    display: flex;
    align-items: center;
}

.filter-button {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 13px;
    cursor: pointer;
}

.filter-button svg {
    margin-right: 5px;
}

.view-options {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.product-count {
    color: #666;
    font-size: 13px;
    margin-left: 15px;
}

.sort-by {
    display: flex;
    align-items: center;
}

.sort-by select {
    border: none;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding-right: 15px;
    appearance: none;
    background: transparent;
}

.section-title {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.product-card {
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

.hover-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.383);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .hover-cart {
    opacity: 1;
    pointer-events: auto;
}

.hover-cart-button {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-cart-button:hover {
    background-color: #333;
    color: white;
}

.quick-view {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    color: #333;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0.9;
    z-index: 2;
}

.product-info {
    padding: 10px;
    text-align: center;
}

.product-title {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.add-to-cart {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #f9f9f9;
}

/* Responsive Media Queries */
@media screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-text {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text {
        width: 80%;
        padding: 15px;
    }
    
    .category-icons {
        flex-wrap: wrap;
    }
    
    .category-item {
        margin: 10px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-by {
        margin-top: 10px;
        align-self: flex-end;
    }
}

@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .hero-text {
        width: 100%;
        padding: 10px;
    }
    
    .product-count {
        display: none;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 70px;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}




        .navbar {
            background-color: #333;
            padding: 0.5rem 1rem;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: auto;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

        .toggle-button {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }

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

        .nav-links li a {
            text-decoration: none;
            color: #fff;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: #ffd700;
        }

        @media (max-width: 768px) {
            .toggle-button {
                display: block;
            }

            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                background-color: #333;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                text-align: center;
                padding: 0.5rem 0;
            }
        }