* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}


.offer-strip {
  background: linear-gradient(90deg, #ff416c, #ff4b2b); /* pink to orange gradient */
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
  animation: slidein 20s linear infinite;
}


.top-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.top-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}



/* .logo {
  color: #f40e85;
  font-size: 24px;
} */

/* .logo {
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff0080, #7928ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
} */

.logo {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #1e90ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  animation: gradientMove 3s linear infinite;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  letter-spacing: 1.2px;
  cursor: pointer;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: #ff4b2b;
  border-radius: 2px;
  opacity: 0.7;
  transition: width 0.3s ease;
}

.logo:hover {
  transform: scale(1.07);
  text-shadow: 0 4px 12px rgba(255, 75, 43, 0.4);
}

.logo:hover::before {
  width: 80%;
}

/* Animated Gradient Keyframes */
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* .search-box {
  width: 40%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
} */

.search-container {
  position: relative;
  width: 40%;
  margin: auto;
}

.search-box {
  width: 100%;
  padding: 12px 20px 12px 45px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 50px;
  outline: none;
  transition: all 0.4s ease;
  background: #f5f5f5;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.4s ease;
}

.search-box:focus {
  background: #fff;
  border-image: linear-gradient(90deg, #cb119c, #2575fc) 1;
  border-width: 2px;
  border-style: solid;
  box-shadow: 0 4px 15px rgba(218, 8, 193, 0.3);
}


.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}


.flash-sale {
  background: #fff3f8;
  padding: 20px;
  text-align: center;
  color: #e11d48;
  font-weight: bold;
  font-size: 18px;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}




 .product-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 4px;
  color: #fff;
}
.new { background-color: #1e90ff; }
.trending { background-color: #ff9800; }
.sale { background-color: #e11d48; }

.limited { background-color: #9c27b0; }    /* Purple */
.best-seller { background-color: #4caf50; } /* Green */
.hot { background-color: #f44336; }         /* Red */
.featured { background-color: #3f51b5; }    /* Indigo */
.exclusive { background-color: #009688; }   /* Teal */
.discount{background-color: red;}
.top {background-color: peru;}



.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;

}


.product-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.product-card p {
  color: #e11d48;
  font-weight: bold;
  margin: 8px 0;
}

.product-card button {
  padding: 8px 15px;
  background-color: #e11d48;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.product-card button:hover {
  background-color: #be123c;
}





.menu {
  display: flex;
  align-items: center;
}

.menu a, .dropbtn {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 15px;
  border-radius: 6px;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.profile-dropdown input {
  display: block;
  width: 90%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.profile-dropdown button {
  width: 100%;
  background-color: #e11d48;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}

.profile-dropdown button:hover {
  background-color: #be123c;
}


.cart-dropdown ul {
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.cart-dropdown li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

#cart-total-mini {
  font-weight: bold;
  margin-top: 10px;
}

/* remove button js */
.remove-btn {
  background-color: #e11d48;
  border: none;
  color: white;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

/* clear cart */
button.clear-cart-btn {
background-color: #0056b3;
  color: white;
  padding: 5px 7px;
  border: none;
  border-radius: 3px;
  font-size: 10px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  
}



/* category scroll  */

.category-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 12px;
  background: #f8f8f8;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
}
.category-scroll::-webkit-scrollbar {
  display: none; /* Chrome */
}
.category-scroll button {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
}
.category-scroll button:hover {
  background-color: #ff4081;
  color: #fff;
  border-color: #ff4081;
}



.bottom-banner {
  width: 100%;
  margin-top: 40px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.bottom-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.testimonials {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
}
.testimonial {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.testimonial span {
  display: block;
  font-style: italic;
  color: #888;
}



.newsletter {
  background-color: #fefefe;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.newsletter h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

.newsletter input[type="email"] {
  padding: 12px;
  width: 300px;
  max-width: 90%;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 10px;
  font-size: 16px;
}

.newsletter button {
  padding: 12px 20px;
  background-color: #e11d48;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #be123c;
}

.recently-viewed {
  padding: 20px;
  background: #fff;
  margin-top: 20px;
}

.recently-viewed h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.recent-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
}

.recent-scroll img {
  height: 120px;
  width: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}


.features {
  display: flex;
  justify-content: space-around;
  background: #fff;
  padding: 20px 10px;
  text-align: center;
}
.feature {
  font-size: 14px;
  color: #333;
}

.trust-badges {
  font-size: 13px;
  color: #666;
  background: #f1f1f1;
  text-align: center;
  padding: 10px;
}




/* footer {
  text-align: center;
  padding: 15px;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  margin-top: 30px;
} */


.footer {
  background-color: #f8f8f8;
  padding: 40px 5%;
  color: #333;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #111;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col p {
  line-height: 1.5;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #e11d48;
}

.app-download img {
  width: 120px;
  margin-top: 10px;
  margin-right: 10px;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
}

 /* .footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 13px;
  color: #ff4081;
  text-size
}  */

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 15px 10px 10px;
  font-size: 20px;
  color: #ff4081;
  font-family: 'Popins', sans-serif;
  
}



.feedback-section {
  background: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #ddd;
}

.feedback-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.feedback-form {
  max-width: 500px;
  margin: 0 auto;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.rating {
  margin: 20px 0;
  text-align: left;
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
  color: #ffc107;
}

.feedback-form button {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.feedback-form button:hover {
  background-color: #0056b3;
}
/* only mobile me dikhega ye */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
  z-index: 999;
}
.mobile-nav a {
  text-align: center;
  color: #333;
  font-size: 14px;
  flex-grow: 1;
}
.mobile-nav i {
  font-size: 18px;
}
.mobile-nav span {
  display: block;
  font-size: 10px;
}
@media(min-width: 768px){
  .mobile-nav { display: none; }
}

#scrollTopBtn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  display: none;
  background: #ff4081;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
}


/* responsiveness */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .logo {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .search-container {
    width: 100%;
    margin-bottom: 10px;
  }

  .search-box {
    width: 100%;
    padding-left: 35px; 
  }

  .menu {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .menu a, .dropbtn {
    margin: 10px 10px 0 0;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  .product-card img {
    height: 200px;
  }

  .bottom-banner img {
    height: auto;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-col h3, .footer-col h4 {
    font-size: 15px;
  }

  .app-download img {
    width: 100px;
  }

  .social-icons a img {
    width: 22px;
  }
}

