/* =========================================================
   WISHORA — STYLE SHEET
   Table of contents:
   1. Variables / Reset
   2. Base typography
   3. Layout helpers
   4. Buttons
   5. Header + nav
   6. Mobile menu
   7. Hero
   8. Quick category strip
   9. Discover / search
   10. Featured wish
   11. Category filter chips
   12. Wish cards / grid
   13. Empty state
   14. Stats
   15. Categories showcase
   16. Why Wishora
   17. Final CTA
   18. Footer
   19. Responsive breakpoints
   20. Reduced motion / accessibility
   ========================================================= */

/* ---------- 1. Variables / Reset ---------- */
:root {
  /* Brand colors */
  --color-bg: #FFF9FC;
  --color-primary: #8B5CF6;
  --color-primary-dark: #7440E0;
  --color-secondary: #EC4899;
  --color-accent: #F59E0B;
  --color-text: #171322;
  --color-text-soft: #6B6475;
  --color-card: #FFFFFF;
  --color-border: rgba(23, 19, 34, 0.08);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-soft: linear-gradient(160deg, rgba(139,92,246,0.10) 0%, rgba(236,72,153,0.08) 100%);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(23, 19, 34, 0.06);
  --shadow-md: 0 12px 28px rgba(139, 92, 246, 0.14);
  --shadow-lg: 0 24px 48px rgba(139, 92, 246, 0.18);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Type */
  --font-en: 'Inter', system-ui, -apple-system, sans-serif;
  --font-bn: 'Noto Sans Bengali', 'Hind Siliguri', system-ui, sans-serif;

  /* Layout */
  --container-width: 1180px;
  --header-height: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-bn), var(--font-en);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body[data-lang="en"] {
  font-family: var(--font-en), var(--font-bn);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, p {
  margin: 0;
}

/* ---------- 2. Base typography ---------- */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

/* Visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--color-text-soft);
  font-size: 1.02rem;
}

section {
  padding: 72px 0;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: var(--color-primary);
}

.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.btn-large {
  padding: 15px 32px;
  font-size: 1.02rem;
}

.btn-header {
  display: none;
}

/* ---------- 5. Header + nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 249, 252, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 249, 252, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 20px rgba(23, 19, 34, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  transform: rotate(45deg);
  top: 6px;
  left: 6px;
  opacity: 0.9;
}

.brand-spark {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
}

.brand-spark::before,
.brand-spark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.brand-spark::before {
  width: 100%;
  height: 1.6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.brand-spark::after {
  height: 100%;
  width: 1.6px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.brand-name {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--color-text-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-text);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 40px;
  color: var(--color-text-soft);
}

.lang-option {
  padding: 2px 4px;
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.lang-divider {
  color: var(--color-border);
}

body[data-lang="bn"] .lang-option[data-lang="bn"],
body[data-lang="en"] .lang-option[data-lang="en"] {
  color: var(--color-primary-dark);
  background: rgba(139, 92, 246, 0.1);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.menu-line {
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 6. Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(23,19,34,0.08);
  padding: 20px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  z-index: 400;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-menu a {
  display: block;
  padding: 13px 10px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover {
  background: rgba(139, 92, 246, 0.06);
}

.mobile-cta {
  width: 100%;
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-a {
  width: 420px;
  height: 420px;
  background: var(--color-primary);
  top: -180px;
  right: -140px;
}

.hero-glow-b {
  width: 340px;
  height: 340px;
  background: var(--color-secondary);
  bottom: -160px;
  left: -120px;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-heading {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--color-text-soft);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.hero-orb-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: 6%;
  animation: float-slow 7s ease-in-out infinite;
}

.hero-orb-2 {
  width: 140px;
  height: 140px;
  bottom: 4%;
  right: 8%;
  animation: float-slow 8s ease-in-out infinite reverse;
}

.hero-star {
  position: absolute;
  color: var(--color-accent);
  font-size: 1.4rem;
  animation: twinkle 3s ease-in-out infinite;
}

.hero-star-1 { top: 8%; right: 20%; animation-delay: 0.2s; }
.hero-star-2 { bottom: 18%; left: 10%; animation-delay: 1s; font-size: 1rem; }
.hero-star-3 { top: 46%; right: 4%; animation-delay: 1.8s; font-size: 1.1rem; }

.greeting-card {
  position: relative;
  width: 240px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float-card 6s ease-in-out infinite;
}

.greeting-card-top {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.greeting-heart {
  color: var(--color-secondary);
}

.greeting-sparkle {
  color: var(--color-accent);
}

.greeting-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.greeting-sub {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.greeting-ribbon {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 20px;
  background: var(--gradient-primary);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.03); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ---------- 8. Quick category strip ---------- */
.quick-categories {
  padding: 8px 0 28px;
}

.quick-cat-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.quick-cat-scroll::-webkit-scrollbar {
  height: 5px;
}

.quick-cat-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-pill);
}

.quick-cat-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-soft);
  min-height: 44px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.quick-cat-chip:hover {
  transform: translateY(-1px);
  border-color: var(--color-primary);
}

.quick-cat-chip.is-active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.quick-cat-chip .chip-icon {
  font-size: 1rem;
}

/* ---------- 9. Discover / search ---------- */
.discover {
  padding-top: 32px;
}

.search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto 44px;
}

.search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 20px;
  color: var(--color-text-soft);
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 1rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  font-family: inherit;
  min-height: 44px;
}

.search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
  outline: none;
}

/* ---------- 10. Featured wish ---------- */
.featured-wrap {
  margin-bottom: 44px;
}

.featured-label {
  text-align: center;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--gradient-primary);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.featured-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -80px;
  right: -60px;
}

.featured-visual {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  height: 84px;
  width: 84px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.22);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.featured-content {
  position: relative;
  z-index: 1;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.featured-desc {
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  max-width: 460px;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-primary-dark);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.94rem;
  min-height: 44px;
  transition: transform 0.25s var(--ease);
}

.featured-btn:hover {
  transform: translateY(-2px);
}

/* ---------- 11. Category filter chips ---------- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

.category-filter .chip {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-soft);
  min-height: 40px;
}

.category-filter .chip.is-active {
  background: rgba(139, 92, 246, 0.12);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.results-meta {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin: 18px 0 26px;
}

/* ---------- 12. Wish cards / grid ---------- */
.wish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.wish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.wish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.25);
}

.wish-thumb {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  overflow: hidden;
}

.wish-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.35), transparent 60%);
}

.wish-thumb-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease);
}

.wish-card:hover .wish-thumb-icon {
  transform: scale(1.12) rotate(-4deg);
}

.wish-badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}

.wish-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.wish-category {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-secondary);
}

.wish-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-text);
}

.wish-desc {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  flex: 1;
}

.wish-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary-dark);
  margin-top: 10px;
}

.wish-open .arrow {
  transition: transform 0.25s var(--ease);
}

.wish-card:hover .wish-open .arrow {
  transform: translateX(4px);
}

/* Thumbnail gradient variants by category */
.thumb-birthday { background: linear-gradient(135deg, #FDE68A, #F59E0B); }
.thumb-love { background: linear-gradient(135deg, #FBCFE8, #EC4899); }
.thumb-friendship { background: linear-gradient(135deg, #BFDBFE, #60A5FA); }
.thumb-anniversary { background: linear-gradient(135deg, #DDD6FE, #8B5CF6); }
.thumb-congratulations { background: linear-gradient(135deg, #BBF7D0, #22C55E); }
.thumb-thankyou { background: linear-gradient(135deg, #FDE68A, #FBBF24); }
.thumb-sorry { background: linear-gradient(135deg, #E0E7FF, #818CF8); }
.thumb-goodmorning { background: linear-gradient(135deg, #FEF3C7, #FB923C); }
.thumb-goodnight { background: linear-gradient(135deg, #C7D2FE, #4F46E5); }
.thumb-mother { background: linear-gradient(135deg, #FBCFE8, #F472B6); }
.thumb-father { background: linear-gradient(135deg, #BAE6FD, #0EA5E9); }
.thumb-sister { background: linear-gradient(135deg, #FBCFE8, #C084FC); }
.thumb-brother { background: linear-gradient(135deg, #A5F3FC, #22D3EE); }
.thumb-missing { background: linear-gradient(135deg, #E9D5FF, #A855F7); }
.thumb-special { background: linear-gradient(135deg, #FDE68A, #EC4899); }
.thumb-eid { background: linear-gradient(135deg, #BBF7D0, #10B981); }
.thumb-newyear { background: linear-gradient(135deg, #FDE68A, #8B5CF6); }
.thumb-default { background: var(--gradient-soft); }

/* ---------- 13. Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 50px 20px;
}

.empty-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.empty-title {
  color: var(--color-text-soft);
  margin-bottom: 20px;
  max-width: 420px;
  margin-inline: auto;
}

/* ---------- 14. Stats ---------- */
.stats {
  background: var(--gradient-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  font-family: var(--font-en);
}

.stat-label {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

/* ---------- 15. Categories showcase ---------- */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.showcase-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.showcase-name {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- 16. Why Wishora ---------- */
.why-wishora {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

/* ---------- 17. Final CTA ---------- */
.final-cta {
  background: var(--gradient-primary);
  color: #fff;
}

.final-cta-inner {
  text-align: center;
  max-width: 640px;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 14px;
}

.final-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-size: 1.02rem;
}

/* ---------- 18. Footer ---------- */
.site-footer {
  background: #171322;
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}

.site-footer .brand-name {
  -webkit-text-fill-color: #fff;
  background: none;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-desc {
  margin-top: 14px;
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-lang-btn {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  background: none;
  border: none;
  padding: 0;
  min-height: 32px;
  text-align: start;
}

.footer-col a:hover,
.footer-lang-btn:hover {
  color: #fff;
}

.footer-social {
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 14px !important;
}

.footer-bottom {
  padding: 22px 20px;
  text-align: center;
  font-size: 0.82rem;
}

/* ---------- 19. Responsive breakpoints ---------- */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .categories-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .featured-content {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 860px) {
  .main-nav {
    display: block;
  }

  .btn-header {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .wish-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .wish-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 380px) {
  .hero-heading {
    font-size: 1.9rem;
  }

  .greeting-card {
    width: 200px;
    padding: 22px 18px;
  }

  .hero-visual {
    height: 300px;
  }
}

/* ---------- 20. Reduced motion / accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-orb,
  .hero-star,
  .greeting-card {
    animation: none !important;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
