@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');

html{
  scroll-behavior: smooth;
}
body {
  font-family: 'Vazirmatn', sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}
.animate-fade-in.delay-200 {
  animation-delay: 0.2s;
}

#sticky-buy {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
#sticky-buy:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: scale(1.05);
}



.product-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 35px rgba(0,0,0,0.5);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  color: #f8fafc;
}
.product-card p {
  text-align: center;
  flex-grow: 1;
  padding: 0 1rem;
  color: #cbd5e1;
}
.product-card a {
  margin: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.product-card a:hover {
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(99,102,241,0.8);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: 600;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.product-card:hover .product-overlay {
  opacity: 1;
}
#sticky-buy {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
#sticky-buy:hover {
  background: linear-gradient(135deg, #4f46e5, #2563eb);
}
footer {
  text-align: center;
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #cbd5e1;
}
header {
  background: linear-gradient(to right, #0f172a, #1e293b);
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #8b5cf6; 
  border-radius: 50%;
  color: #8b5cf6; 
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: #8b5cf6; 
  color: #fff; 
  transform: scale(1.1);
}

.social-icon .icon {
  display: block;
  margin: auto; 
}
#see-all-products{
  margin-top: 1rem;
}
