@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;600;700&display=swap');

:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Language switcher */
.lang-dropdown { position: relative; }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 160px;
  z-index: 50;
}
[dir="rtl"] .lang-dropdown-menu { right: auto; left: 0; }
.lang-dropdown.open .lang-dropdown-menu { display: block; }

/* Product cards */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Discount badge */
.discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
}
[dir="rtl"] .discount-badge { left: auto; right: 8px; }

/* Rating stars */
.star-filled { color: #f59e0b; }
.star-empty { color: #d1d5db; }

/* Filter buttons */
.filter-btn {
  transition: background-color 0.2s, color 0.2s;
}
.filter-btn.active {
  background-color: var(--pink-600);
  color: white;
}

/* Telegram CTA sticky */
.telegram-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.telegram-sticky.visible { transform: translateY(0); }

@media (min-width: 768px) {
  .telegram-sticky { display: none; }
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Blog post content */
.blog-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.blog-content p { margin-bottom: 1rem; line-height: 1.75; }
.blog-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
[dir="rtl"] .blog-content ul { padding-left: 0; padding-right: 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; }

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #fdf2f8 0%, #ede9fe 50%, #e0f2fe 100%);
}

/* Navigation active */
.nav-link.active { color: var(--pink-600); font-weight: 600; }

/* Breadcrumbs */
.breadcrumb-separator::before { content: '/'; margin: 0 0.5rem; color: #9ca3af; }
[dir="rtl"] .breadcrumb-separator::before { content: '\\'; }

/* Print */
@media print {
  .telegram-sticky, .telegram-cta, nav, .lang-dropdown, footer { display: none !important; }
}
