.product-card {
  height: auto;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
  margin: 0;
}
.product-card .product-card-img img {
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 28px;
  height: 28px;
}

.add-to-cart img {
  display: block;
  width: 28px;
  height: 28px;
}

.add-to-cart::before {
  content: none;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: column;
}
.product-price .old-card-price {
  display: flex;
  align-items: center;
  gap: 0.3rem;

  text-decoration: line-through;
  color: #888;
  font-size: 1.2rem;
}
.product-price .new-card-price {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.5rem;
}
.product-price img {
  width: 20px;
  height: 20px;
}

.product-card-img {
  position: relative;
}

.favorite-toggle {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.favorite-toggle__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.favorite-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.favorite-toggle__icon .fa-regular {
  display: inline-block;
  color: var(--y-main);
}

.favorite-toggle__icon .fa-solid {
  display: none;
  color: var(--y-main);
}

.favorite-toggle__checkbox:checked + .favorite-toggle__icon .fa-regular {
  display: none;
}

.favorite-toggle__checkbox:checked + .favorite-toggle__icon .fa-solid {
  display: inline-block;
}

@media (max-width: 820px) {
  
  body[data-current-page="home"] .products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body[data-current-page="home"] .section.section2 .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
  }

  body[data-current-page="home"] .product-card {
    padding: 0.75rem;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: auto;
    box-sizing: border-box;
  }
  .product-card h3 {
    font-size: 1rem;
  }
  .product-card a {
    font-size: 0.95rem;
  }
  .product-card-price {
    font-size: 1rem;
  }
  body[data-current-page="home"] .product-card .product-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
  }

  body[data-current-page="home"] .products::-webkit-scrollbar {
    display: none;
    height: 0;
  }
  body[data-current-page="home"] .products {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
