/*Specific fonts' styles*/
@import url("https://fonts.googleapis.com/css2?family=Anta&family=Audiowide&family=Electrolize&family=Geo:ital@0;1&family=Orbitron:wght@400..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Iceberg&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prosto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
.product-card {
  border: 1px solid #666666;
  overflow: hidden;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  border-color: #333333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

.product-image {
  width: calc(100% + 32px);
  height: 200px;
  object-fit: cover;
  margin: -16px -16px 12px -16px;
  border-radius: 8px 8px 0 0;
}

.product-brand {
  font-family: "Electrolize", sans-serif;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 8px;
  font-weight: bold;
}

.product-title {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 8px;
  text-align: center;
}

.product-price {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 8px;
  text-align: center;
}

.product-description {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.view-product-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #4a4a4a;
  border: 1px solid #666666;
  color: white;
  text-decoration: none;
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.view-product-btn a {
  color: white;
  text-decoration: none;
}

.view-product-btn:hover {
  background-color: #333333;
  cursor: pointer;
}

/*# sourceMappingURL=card.css.map */
