.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--dark);
  margin: 2rem auto 0.5rem;
  max-width: 1100px;
  padding: 0 1rem;
}

.products-section .products {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 2rem 1rem 1rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer h3, .footer h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin: 6px 0;
}

.footer ul li a {
  color: var(--white);
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: var(--white);
  margin-right: 10px;
  font-size: 1.2rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #ffffff1a;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}
/* For tablets and smaller screens */
@media (max-width: 992px) {
  .footer-content,
  .products,
  .categories {
    flex-direction: column;
    align-items: center;
  }

  .search-bar {
    margin: 1rem 0;
  }

  .nav-buttons {
    margin-top: 1rem;
    justify-content: center;
  }
}

/* For mobile screens */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .categories {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .products {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-col {
    width: 100%;
  }
}





.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
}

.search-wrapper input {
  width: 100%;
  padding: 0.75rem 1.2rem 0.75rem 2.8rem; /* left space for icon */
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.search-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(236, 106, 36, 0.3);
}






.categories {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 1rem 50px; /* 🔥 50px on both sides */
  background: var(--white);
  flex-wrap: wrap;
}

.categories > div {
  text-align: center;
  flex: 0 0 auto;
  width: 100px; /* You can adjust width as needed */
}

.categories img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary); /* orange outline */
  padding: 6px;
  object-fit: cover;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}






.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 1130px;
  margin: 2rem auto;
  padding: 1rem;
}

.product-card {
  background: white;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card p {
  margin: 0.5rem 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.product-card button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.product-card:hover {
  transform: translateY(-5px);
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  
}


.promo-bar {
  background-color: #ffe8d9;
  color: #ec6a24;
  padding: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}



.mobile-bottom-nav {
  

  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 0.6rem 0;
  z-index: 999;
}
.mobile-bottom-nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-bottom-nav i {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .mobile-bottom-nav { display: none; }
}


.cart-btn {
  position: relative;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: none;
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: white;
  color: var(--primary);
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}


.newsletter {
  text-align: center;
  background: var(--white);
  padding: 2rem 1rem;
  margin: 2rem auto;
  max-width: 980px;
  border-radius: 20px;
  box-shadow: 0 5px 19px rgba(0, 0, 0, 0.1);
}
.newsletter input {
  padding: 0.5rem;
  width: 70%;
  max-width: 300px;
  margin-top: 1rem;
  border-radius: 30px;
  border: 1px solid #ccc;
}
.newsletter button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  margin-left: 10px;
  cursor: pointer;
}


#scrollTopBtn {
  
  bottom: 80px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1rem;
  display: none;
  cursor: pointer;
}


#loader {
  
  width: 100%;
  height: 100%;
  background: white url('https://i.imgur.com/llF5iyg.gif') no-repeat center;
  z-index: 10000;
}







/* 🌟 Hero Section */
.hero-section {
  background: linear-gradient(to right, #ec6a24, #ff914d);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-search {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-search input {
  padding: 0.7rem 1rem;
  border-radius: 30px;
  border: none;
  width: 250px;
  font-size: 1rem;
}
.hero-search button {
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  border: none;
  background-color: #102437;
  color: white;
  font-weight: bold;
  cursor: pointer;
}



/* 📱 App Download */
.app-download-section {
  background: #102437;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
.app-download-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.app-download-section p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.app-buttons img {
  width: 160px;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
}
.app-buttons img:hover {
  transform: scale(1.05);
}
.line {
    width: 10%;
    margin: 20px auto;
        border-top: 3px solid #ec6a24;
}



header {
  
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;

  flex-wrap: wrap;
  min-height: 70px; /* ⬅️ Increases header height */
}

.logo img {
  max-height: 100px; /* Ensure image scales well */
}



/* 📌 Navbar Styles */
.navbar {
  background-color: #102437;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  max-height: 45px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ec6a24;
}

.nav-search {
  flex: 1;
  margin: 0 1.5rem;
  display: flex;
}

.nav-search input {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
}

.nav-buttons {
  display: flex;
  gap: 0.5rem;
}

.nav-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.app-btn {
  background-color: #ec6a24;
  color: #ffffff;
}

.app-btn:hover {
  background-color: #ff7e3c;
}

.signin-btn {
  background-color: #ffffff;
  color: #102437;
}

.signin-btn:hover {
  background-color: #f0f0f0;
}



/* NAVBAR STYLING */
.navbar {
  background-color: #102437;
  color: #ffffff;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto; /* center horizontally */
  padding: 0 20px; /* equal left and right spacing */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer_logo {
    width: 25%;
    margin-left: 0px;
}
.logo img {
  max-height: 45px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ec6a24;
}

/* Search with icon */
.nav-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 0.4rem 1rem;
  gap: 0.5rem;
  flex: 1;
  max-width: 350px;
}

.nav-search i {
  color: #999;
}

.nav-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  background: transparent;
}

/* Buttons */
.nav-buttons {
  display: flex;
  gap: 0.6rem;
}

.nav-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.nav-buttons .fa-download {
  margin-right: 2px;
   text-align: right;

}

.nav-buttons button:first-child {
  background-color: #ec6a24;
  color: #ffffff;
}

.nav-buttons button:first-child:hover {
  background-color: #ff8643;
}













.category-banner {
  padding: 2rem 150px;
  background-color: #f9f9f9;
  text-align: center;
}

.category-banner h2 {
  font-size: 1.8rem;
  color: #102437;
  margin-bottom: 1.5rem;
}

/* New style to make horizontal scrolling */
.category-list.horizontal-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.category-list.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  width: 140px; /* 1% reduced from 120px */
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
  border-radius: 10px 16px;
  padding: 0.5rem;
  flex: 0 0 auto; /* prevent shrinking in flex row */
}

.category-item img {
  width: 98px; /* reduced by 1% */
  height: 98px;
  border: 3px solid #ec6a24;
  border-radius: 50%;
  object-fit: cover;
  padding: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.category-item p {
  margin-top: 0.5rem;
  color: #102437;
  font-weight: 500;
  transition: color 0.3s;
}

.category-item:hover {
  transform: scale(1.05);
  background-color: #fff7f3;
}

.category-item:hover img {
  border-color: #102437;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.category-item:hover p {
  color: #ec6a24;
}










.carousel-container {
  width: 100%;
  overflow-x: hidden;
  padding: 2rem 150px;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollBanners 30s linear infinite;
  transition: transform 0.3s ease-in-out;
}

.carousel-track img {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hide scrollbar */
.carousel-container::-webkit-scrollbar {
  display: none;
}

@keyframes scrollBanners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}






.product-banner {
  background-color: #fef6f3;
  padding: 2rem 150px;
  margin: 0rem auto;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: url(./bg1.png);
  border-bottom: 3px solid #ec6a24;
}

.product-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.banner-text h2 {
  font-size: 2rem;
  color: #102437;
  margin-bottom: 0.5rem;
}

.banner-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.banner-text button {
  background-color: #ec6a24;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.banner-text button:hover {
  background-color: #d45819;
}

.banner-image img {
  width: 550px;
  max-width: 100%;
  border-radius: 12px;
}





.hero-tagline {
  background: #f8f9fa;
  text-align: center;
  padding: 4rem 1rem;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.hero-tagline h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4b4f56;
  margin-bottom: 1rem;
}

.hero-tagline span {
  color: #f44336; /* Heart red */
}

.hero-tagline .brand-name {
  font-size: 1.2rem;
  color: #d0d0d0;
  font-weight: 600;
}









.hero-section {
  background: linear-gradient(to right, #fff, #f7f7f7);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin: 2rem auto;
  max-width: 1100px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #102437;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-download a img {
  height: 55px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.hero-download a img:hover {
  transform: scale(1.05);
}



.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ec6a24;
  color: #fff;
  padding: 10px 100px;
  flex-wrap: wrap;
  margin-top: 200px;
}

.hero-text {
  max-width: 100%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.download-buttons img {
  height: 50px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.download-buttons img:hover {
  transform: scale(1.05);
}

.hero-image img {
    max-width: 575px;
    width: 100%;
    margin-top: -150px;
}





.half-bg-section {
  position: relative;
  padding: 6rem 100;
  background: linear-gradient(to bottom, #f7f8f9 50%, #102437 50%);
}

.features-banner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 70%;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 1rem;
}

.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #102437;
  margin: 0.2rem 0;
}

.feature-item p {
  font-size: 0.85rem;
  color: #102437;
}





