@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --primary-color: #4a00e0;
  --secondary-color: #8e2de2;
  --accent-color: #ff4e50;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Outfit", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-icons {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.product-description {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-store {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-value {
  background: var(--primary-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(74, 0, 224, 0.3);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* Animation for the badges */
@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.badge {
  animation: badgePulse 2s infinite;
}

/* Animation for the cart button */
@keyframes cartPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 0, 224, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 0, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 0, 224, 0);
  }
}
.btn-primary {
  animation: cartPulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-image {
    height: 200px;
  }
  .product-title {
    font-size: 1.2rem;
  }
  .product-price {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=productDesign1.css.map */