* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: Arial, sans-serif;

  background: #f1f3f6;

}

#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* Or any background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* High z-index to cover all content */
}

.loader-icon {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Header  Section Start */

header{

    width: 100%;

    position: sticky;

    top: 0;

    z-index: 999;

    padding: 10px 0px 20px 0px;

    background-image:url("assets/image/logo4.jpeg");

    background-size: cover;

    border-radius: 20px;

}

header .top-nav-bar{

    width: 95%;

    margin: auto;

    display: flex;

    justify-content: space-between;

}

header .top-nav-bar .logo{

    width: 15%;

}

header .top-nav-bar .logo img{

    width: 100%;

}

header .top-nav-bar .menu{

    width: 50%;

}

header .top-nav-bar .menu ul{

    width: 100%;

    height: 100%;

    list-style: none;

    display: flex;

    justify-content: space-evenly;

    align-items: center;

}

header .top-nav-bar .menu ul a{

    text-decoration: none;

}

header .top-nav-bar .menu ul a li{

    color: #ffffff;

    padding: 3px 5px;

    position: relative;

}

header .top-nav-bar .menu ul a li::before{

    content: "";

    width: 0%;

    height: 3px;

    border-radius: 1.5px;

    position: absolute;

    left: 50%;

    top: 100%;

    background: #f57033;

    transition: .5s;

}

header .top-nav-bar .menu ul a li:hover::before{

    width: 100%;

    left: 0%;

}

header .top-nav-bar .menu ul a li:hover{

    color: #f57033;

}

header .top-nav-bar .entry{

    /* width: 30%; */

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #ffffff;

}

header .top-nav-bar .entry .log-in{

    padding: 5px 5px;

    border-left: 1px solid #ffffff;

}

header .top-nav-bar .entry .helpline{

    padding: 5px 5px;

    margin-left: 20px;

    border-left: 1px solid #ffffff;

}

header .bottom-nav-bar{

    width: 95%;

    margin: auto;

    display: flex;

    justify-content: space-between;

}

header .bottom-nav-bar .categories{

    width: 20%;

    padding: 5px 10px;

    background: #f57033;

    display: flex;

    justify-content: space-between;

    color: #ffffff;

    font-size: 20px;

}

header .bottom-nav-bar .search-bar{

    width: 50%;

    height: 100%;

    background: #ffffff;



}

header .bottom-nav-bar .search-bar form{

    width: 100%;

    display: flex;

    height: 100%;

    background: #ffffff;



}

header .bottom-nav-bar .search-bar form input{

    width: calc(100% - 50px);

    border: none;

    outline: none;

}

header .bottom-nav-bar .search-bar form input::placeholder{

    padding-left: 20px;

    font-size: 17px;

}

header .bottom-nav-bar .search-bar form button{

    width: 50px;

    height: 35px;

    color: #ffffff;

    background: #f57033;

    border: none;

    font-size: 20px;

}

header .bottom-nav-bar .icons{

    width: 15%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #ffffff;

}

header .bottom-nav-bar .icons .cart{

    display: flex;

}
header .bottom-nav-bar .icons .cart .cart-icon{

    position: relative;

}
header .bottom-nav-bar .icons .cart .cart-icon .my_cart_count{

    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #d32121;

}

/* Header  Section End */



/* Banner */

.banner img {

  width: 100%;

  height: auto;

  margin: 10px 0;

}



/* Product Sections */

.products-section {

  padding: 20px;

  background: white;

  margin-top: 10px;

}



.products-section h2 {

  margin-bottom: 15px;

}



.product-row {

  display: flex;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;

}



.product-card {

  background: #fafafa;
  
  height: auto;

  padding: 10px;

  /* flex: 1 1 30%; */

  /* min-width: 150px; */

  border: 1px solid #ddd;

  border-radius: 4px;

  text-align: center;

}



.product-card img {

  width: 250px;

  height: auto;

}



.price {

  color: green;

  font-weight: bold;

}



/* Footer Styling */

.footer {

  background-color: #082b68;

  color: #fff;

  padding: 40px 0 20px;

  font-family: 'Segoe UI', sans-serif;

}



.footer-container {

  display: flex;

  flex-wrap: wrap;

  max-width: 1200px;

  margin: auto;

  padding: 0 20px;

  justify-content: space-between;

}



.footer-about,

.footer-links,

.footer-support,

.footer-social {

  flex: 1 1 200px;

  margin: 20px 0;

}



.footer h3,

.footer h4 {

  margin-bottom: 15px;

  color: #f4a261;

}



.footer p {

  line-height: 1.6;

}



.footer ul {

  list-style: none;

  padding: 0;

}



.footer ul li {

  margin-bottom: 10px;

}



.footer ul li a {

  color: #bbb;

  text-decoration: none;

  transition: color 0.3s;

}



.footer ul li a:hover {

  color: #fff;

}



.social-icons a {

  display: inline-block;

  margin-right: 10px;

}



.social-icons img {

  width: 24px;

  height: 24px;

  filter: brightness(0) invert(1);

  transition: transform 0.3s;

}



.social-icons img:hover {

  transform: scale(1.1);

}



.footer-bottom {

  text-align: center;

  padding-top: 20px;

  border-top: 1px solid #444;

  font-size: 14px;

  color: #aaa;

}



/* Responsive */

@media (max-width: 768px) {

  .footer-container {

    flex-direction: column;

    text-align: center;

  }



  .footer-about,

  .footer-links,

  .footer-support,

  .footer-social {

    margin: 20px 0;

  }



  .social-icons a {

    margin: 0 10px;

  }

}



