.loading {
  width: fit-content;
  margin: 22% auto 0;
  display: none;
}

.loading img {
  width: 80px;
}

.section-broducts {
  width: 100%;
  background-color: black;
  padding-top: 1rem;
  min-height: 100vh;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  width: 80%;
  margin: auto;
  padding-block: 40px;
}

.product-card {
  position: relative;
  width: 380px;
}

.product-card img {
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.product-card h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.product-card .old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #333;
  padding: 7px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 14px;
  color: #aaa;
}

.btncart {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--defaltColor);
  border: none;
  cursor: pointer;
}

.btncart:hover {
  opacity: 0.7;
}

#cart-count {
  background-color: beige;
  border-radius: 45%;
  border: 0;
  color: black;
  font-size: 20px;
}
