* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
}

@font-face {
  font-family: Helvetica;
  src: url(../fonts/Helvetica\ Bold\ Condensed.otf);
}
@font-face {
  font-family: sanfrancisco;
  src: url(../fonts/SFUIText-Regular.otf);
}

:root {
  --red-color: #df1e17;
  --cream-color: #fbefbe;
  --red-hover: #f9332c;
  --cream-hover: #f4db75;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
.Toast-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background-color: #f8f8f8; */
  padding: 50px;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 45px;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

/* Product Card */
.product-card {
  width: 90%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Wavy Background behind Product Image */
.product-image {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-card:nth-child(1) .product-image { background: #226026; }
.product-card:nth-child(2) .product-image { background:#8f2351; }
.product-card:nth-child(3) .product-image { background: #2d2c6f; }
.product-card:nth-child(4) .product-image { background:#799abf; }
.product-card:nth-child(5) .product-image { background: #a89830; }
.product-card:nth-child(6) .product-image { background:#aeaeae; }
.product-card:nth-child(7) .product-image { background: #9c0202d7; }

.product-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 10%, transparent 40%), repeating-linear-gradient(180deg, rgba(255,255,255,0.2) 0px, rgba(255,255,255,0.2) 2px, transparent 2px, transparent 20px);
  opacity: 0.3;
}

.product-image img {
  width: 90%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-name {
  font-size: 25px;
  font-weight: bold;
  color: #333;
}

.product-weight {
  font-size: 18px;
  color: #777;
  margin-top: 8px;
}


@media (max-width: 1024px) {
.product-container {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 10px;
}

.product-image {
height: 250px;
}

.product-name {
font-size: 20px;
}

.product-weight {
font-size: 16px;
}
}

@media (max-width: 768px) {
.product-container {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}

.product-image {
height: 220px;
}

.product-name {
font-size: 18px;
}

.product-weight {
font-size: 14px;
}
}

@media (max-width: 480px) {
.product-container {
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 40px;
}

.product-image {
height: 250px;
}

.product-name {
font-size: 20px;
}

.product-weight {
font-size: 13px;
}
.product-image img {
  width: 90%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

}