@import url('https://fonts.googleapis.com/css2?family=Boogaloo&display=swap');
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; /* Reduced gap to help fit two boxes */
  justify-content: space-between;
  padding: 7px;
}

.product {
  flex: 1 1 46%; /* allows 2 per row */
  max-width: 46%;
  box-sizing: border-box;
  background: #fffbe6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.product:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}


.productinner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffef96, #fdd835);
  color: #333;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
  margin: 10px 0;
}

.price {
  font-size: 1.4em;
  font-weight: bold;
  color: #d32f2f;
  margin: 10px 0;
}

.fullscreenall {
  display: block;
  margin: 10px auto;
  max-width: 80%;
}

.guarantee {
  text-align: center;
}
@media (max-width: 768px) {
  .product {
    flex: 1 1 100%;
    max-width: 400px;
    margin: 0 auto 20px auto;
  }
}
