* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #333;
}

.logo {
  position: absolute;
  left: 10px;
  top: 5px;
  border-radius: 5px;
  height: 50px;
  width: 50px;
}

.nb-header {
  text-align: center;
  margin-bottom: 1rem;
  padding: 10px;
  background: #27ae60;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.search {
  position: relative;
  margin-top: 1rem;
}
.search input {
  position: relative;
  width: 100%;
  padding-inline: 30px;
  padding-block: 15px;
  background-color: #e7e7e7;
  border-radius: 4px;
  outline: none;
  border: none;
}
.search-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1;
}
.nb-header h1 {
  color: #ffffff;
  margin: 0;
  font-size: 1.8rem;
}

.nb-header p {
  color: #000000;
  font-size: 0.9rem;
}
/* ------------------------------PRODUCT SECTION */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.product-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 0.5rem;
}

.product-info {
  flex: 1;
}

.product-info h2 {
  font-size: 1rem;
  margin: 0;
}

.brand {
  font-size: 0.8rem;
  color: #777;
}

.price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.sale {
  font-weight: bold;
  color: #27ae60;
  font-size: 1rem;
}

.mrp {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}

.discount {
  color: #e74c3c;
  font-size: 0.8rem;
  font-weight: bold;
}

.variant {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.2rem;
}

.add-btn {
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
}
.add-btn:hover {
  background: #219150;
}

/* ------------------------------BOTTOM NAVIGATION */
/* nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
  padding: 10px;
}
nav ul li {
  list-style-type: none;
}
nav ul li a {
  text-decoration: none;
  font-size: 28px;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
ul {
  width: 70%;
  padding: 10px;
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.098);
} */

.whatsapp-btn { 
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  z-index: 999;
  font-weight: bold;
}
