/* تنظیمات پایه */
body {
  background-color: lightblue;
  font-family: 'Vazirmatn', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* هدر */
header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

/* معرفی برند */
.intro {
  text-align: center;
  padding: 60px 20px;
  background-color: #f7f3ec;
}

.intro h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.intro p {
  font-size: 18px;
  color: #666;
}

/* عنوان دسته‌بندی */
.products h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #444;
}

.product-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-family: 'Vazirmatn', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-link:hover {
  background-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* چیدمان محصولات */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px 40px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* کارت محصول */
.product-card {
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 150px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}




.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* دکمه‌ها */
.buttons a {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.buy-btn {
  background-color: #000;
  color: #fff;
}

.info-btn {
  background-color: #eaeaea;
  color: #333;
}

/* دکمه شناور */
.floating-nav {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.nav-btn {
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.nav-btn:hover {
  background-color: #444;
}


/* فوتر */
footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #eee;
}
