body {
    background-color: #f4f6f9;
    font-family: Arial, sans-serif;
}

/* Navbar Styling */
.navbar {
    background: #000;
    position: fixed;
    display: flex;
    padding: 0px 10px;
    margin: 0px;
    width: 100%;
   height: 70px;
    z-index: 999;
    align-items: center;
}

.navbar-brand{
    display: flex;
   height: 70px;
   align-items: center;
}

.container-fluid{
   display: flex;
   flex-wrap: nowrap;
   height: 70px;
   align-items: center;
   padding: 0px;
    margin: 0px;
   
}

.navbar-brand img {
    height: 100px;
}

.items{
    display: flex;
    object-fit: contain;
  
    flex-direction: row;
    align-items: center;
}

/* Search Bar with Filter Icon */
.search-container {
    position: relative;
    width: 500px;
    margin-right: 50px;
}

.search-bar {
    width: 100%;
    padding-left: 40px; /* Space for filter icon */
    padding-right: 40px; /* Space for search button */
}

/* Search Button */
.search-btn {
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d1d5db;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.search-btn i {
    color: #000;
}

/* Filter Icon (Three Horizontal Lines) */
.filter-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

/* Filter Dropdown Styling */
.dropdown-menu {
    width: 250px;
}

.dropdown-menu label {
    font-size: 14px;
    display: block;
    padding: 5px 15px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-icons a img {
    height: 38px;
    transition: transform 0.3s ease;
}

.nav-icons img:hover {
    transform: scale(1.1);
}

.category-links {
position: absolute;
top: 120px; /* Space from the top */
left: 80px; /* Space from the left */
display: flex;
gap: 90px; /* Space between categories */
}

.category-links a {
text-decoration: none;
color: #727272;
font-size: 16px;
font-weight: bold;
}

.category-links a:hover {
text-decoration: underline;
}
.carousel-container {
position: relative;
top: 200px; /* Positioned below categories */
left: 50%;
transform: translateX(-50%);
width: 80%;
}

.carousel img {
width: 100%;
height: 700px; /* Adjust height as needed */
object-fit: cover;
border-radius: 10px;
}

.top-selling-title {
    text-align: center;
    margin-top: 300px;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.top-selling-container {
    display: grid !important;
    grid-template-columns:  repeat(5, minmax(200px, 1fr));
    gap: 80px; /* Reduce space between items */
max-width: 1000px; /* Prevents excessive spacing */
margin: 0 auto; /* Centers the entire grid */
justify-content: center;
}

.top-selling-products {
    margin-top: 80px; /* Reduced gap between titles */
}

.product-box {
    width: 250px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-box img {
    width: 100%;
    border-radius: 10px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.product-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.product-icons a img {
    width: 25px;
    cursor: pointer;
    filter: brightness(0);
}
.wishlist-icon {
    width: 29px;  /* Adjust the size */
    height: 29px;
    margin-top: -3px;
    filter: brightness(0);  /* Adjust the color */
}

.footer {
    background: #000;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.footer .social-icons img {
    width: 20px;
    margin-right: 10px;
}
.about {
    display: flex;
    font-size: small;
    padding: 5px 5px;
    background-color: transparent;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: auto;
    margin-right: 5px;
}

.about a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.about:hover {
    transform: scale(1.1); 
    
}