* {
  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: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
}

/* Product Card */
.product-card {
  width: 100%;
  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;
  background: #6abcc6; /* Orange color for Khari */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.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;
}

/* Responsive */
@media (max-width: 480px) {
  .Toast-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    /* background-color: #f8f8f8; */
    padding: 50px;
  }
  
  .product-container {
    max-width: 300px;
  }

  .product-image {
    height: 250px;
  }

  .product-name {
    font-size: 20px;
  }

  .product-weight {
    font-size: 14px;
  }
}
