body {
  margin: 0;
  font-family: Arial;
  background: #f3f4f6;
}

/* NAVBAR */
/* STICKY TOP NAVBAR */
.nav-top {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #131921;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  align-items: center;
  font-size: larger;
}

/* STICKY CATEGORY BAR */
.nav-bottom {
  position: sticky;
  top: 60px;
  /* height of nav-top */
  z-index: 999;

  background: #232f3e;
  padding: 10px;
}

.nav-top h1 {
  color: orange;
  cursor: pointer;
  font-size: larger;
}

.nav-top input {
  width: 40%;
  padding: 8px;
  font-size: larger;
  border-radius: 5px;
  color: black;
  /* FIXED SEARCH TEXT */
}


.nav-bottom button {
  color: white;
  margin-right: 10px;
  cursor: pointer;
}

/* HERO */
.hero img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #facc15;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
}

/* RATING */
.rating {
  font-size: 14px;
  color: #f59e0b;
}

/* PRICE */
.price {
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  margin-left: 5px;
  font-size: 14px;
}

/* BUTTON */
.product-card button {
  background: #facc15;
  border: none;
  padding: 6px 10px;
  margin-top: 5px;
  cursor: pointer;
}

/* PRODUCT PAGE */
.product-page {
  display: flex;
  gap: 30px;
  padding: 30px;
}

.product-img {
  width: 300px;
}

.buy-btn {
  background: orange;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
}

/* CART */
.cart-page {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 120px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cart-right {
  width: 280px;
  min-width: 250px;
  max-width: 320px;
  background: white;
  padding: 20px;
  height: fit-content;
  border-radius: 10px;
}

.cart-item button {
  background: #dc2626;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  justify-self: end;
}

.cart-item button:hover {
  background: #b91c1c;
}

/* TOTAL PRICE */
.total-price {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}

/* ORDER BUTTON */
.order-btn {
  width: 100%;
  background: #facc15;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.order-btn:hover {
  background: #eab308;
}

.product-grid {
  background: #adbbc5;
  /* light grey */
  padding: 30px;
  border-radius: 10px;
  margin: 20px;
}

.product-card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}