/*
 Theme Name: Daneshyarhub
 Theme URI: https://example.com/
 Author: ChatGPT
 Author URI: https://example.com/
 Description: سفارشی‌سازی پوسته وردپرس با الهام از طراحی Daneshyarhub. این پوسته دارای پس‌زمینه گرادیان پاستلی، شیشه‌گرایی، فونت فارسی و پشتیبانی از ووکامرس است و قابلیت نمایش اسلایدر، دسته‌بندی‌ها، آمار و جدیدترین محصولات را فراهم می‌کند. جهت متن راست‌به‌چپ است و بر پایه Tailwind CSS بارگذاری شده از CDN ساخته شده است.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: daneshyarhub
*/

/* Import Persian font */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Vazirmatn', sans-serif;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(79, 70, 229, 0.4);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(79, 70, 229, 0.7);
}

/* Pastel animated gradient background */
.pastel-gradient-bg {
  background: linear-gradient(-45deg, #f3e7e9, #e3eeff, #e3fdf5, #ffe259, #ff9a9e);
  background-size: 400% 400%;
  animation: gradient 25s ease infinite;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated blob shapes */
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
  animation: blob 10s infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}

/* Glassmorphism utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}