@font-face {
  font-family: Vazirmatn;
  src: url("/assets/fonts/Vazirmatn.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-base-top: 218 45% 4%;
  --bg-base-bot: 229 60% 6%;
  --primary: 212 98% 70%;
  --surface-glass: 0 0% 100% / 0.14;
  --border-glass: 0 0% 100% / 0.42;
  --text-primary: 0 0% 100% / 0.92;
  --text-secondary: 0 0% 100% / 0.72;
  --page-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #060912;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: hsl(var(--text-primary));
  background: linear-gradient(180deg, hsl(var(--bg-base-top)), hsl(var(--bg-base-bot)));
  color-scheme: dark;
  font-family: Vazirmatn, Tahoma, system-ui, sans-serif;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  pointer-events: none;
  background: rgba(0, 0, 0, 0.65);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rtl {
  direction: rtl;
}

.glass {
  border: 1px solid hsl(var(--border-glass));
  border-radius: 1.25rem;
  background: hsl(var(--surface-glass));
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.glass-strong {
  border: 1px solid hsl(var(--border-glass));
  border-bottom: 0;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
}

.background-orb {
  position: fixed;
  z-index: -4;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.11;
  pointer-events: none;
}

.background-orb--one {
  top: 22%;
  left: -28%;
  background: #3b82f6;
}

.background-orb--two {
  right: -30%;
  top: 58%;
  background: #8b5cf6;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 24px;
  right: 24px;
  left: 24px;
  height: 72px;
  animation: slide-down 0.55s ease both;
}

.header-surface,
.header-inner {
  height: 100%;
}

.header-inner {
  display: grid;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  direction: ltr;
}

.desktop-nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.support-button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  direction: rtl;
  transition: background 0.2s ease, transform 0.2s ease;
}

.support-button:hover,
.icon-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.support-icon-wrap {
  position: relative;
  width: 16px;
  height: 16px;
}

.support-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.support-icon-wrap i {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.7s ease-in-out infinite;
}

.icon-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.menu-trigger {
  display: none;
}

.mobile-menu {
  position: absolute;
  top: 82px;
  right: 0;
  width: 220px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

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

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  direction: rtl;
  text-align: right;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 755px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  inset: 0;
  contain: paint;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 100% at 50% 48%, rgba(168, 85, 247, 0.25) 0%, rgba(139, 92, 246, 0.15) 30%, rgba(99, 102, 241, 0.08) 50%, transparent 75%),
    radial-gradient(ellipse 90% 80% at 50% 48%, rgba(168, 85, 247, 0.4) 0%, rgba(139, 92, 246, 0.25) 25%, rgba(99, 102, 241, 0.12) 45%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 48%, rgba(196, 181, 253, 0.7) 0%, rgba(168, 85, 247, 0.5) 20%, rgba(139, 92, 246, 0.3) 35%, rgba(99, 102, 241, 0.15) 50%, transparent 70%);
  filter: blur(35px);
}

.hero-glow::before {
  position: absolute;
  top: 48%;
  left: 50%;
  width: clamp(400px, 50vw, 600px);
  height: clamp(300px, 40vh, 450px);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, rgba(196, 181, 253, 0.6) 15%, rgba(168, 85, 247, 0.4) 30%, rgba(139, 92, 246, 0.2) 50%, transparent 70%);
  opacity: 0.85;
}

.hero-glow::after {
  position: absolute;
  top: 45%;
  left: 50%;
  width: clamp(600px, 80vw, 900px);
  height: clamp(300px, 50vh, 450px);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, transparent 48%, rgba(168, 85, 247, 0.4) 48.5%, rgba(139, 92, 246, 0.5) 49%, rgba(168, 85, 247, 0.4) 49.5%, transparent 50%);
  filter: blur(1.5px);
  opacity: 0.6;
}

.hero-vignette {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(transparent 0%, rgba(0, 0, 0, 0) 70%, transparent 100%), linear-gradient(rgba(0, 0, 0, 0.08) 0%, transparent 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 755px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 208px 32px 64px;
  align-items: flex-start;
  justify-content: center;
}

.hero-content {
  display: flex;
  width: 100%;
  max-width: 768px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 31px;
  padding: 6px 16px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--primary));
  box-shadow: 0 0 16px hsl(var(--primary));
}

.hero h1 {
  margin: 24px 0 0;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-content > p {
  max-width: 672px;
  margin: 24px 0 0;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-benefits {
  display: flex;
  margin-top: 32px;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.hero-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.hero-benefit:hover .benefit-icon {
  filter: brightness(1.12);
  transform: translateY(-3px);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.75;
}

.hero-benefit > span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  min-width: 246px;
  height: 70px;
  margin-top: 32px;
  padding: 0 40px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.13), 0 16px 42px rgba(76, 29, 149, 0.35);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-cta:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(120deg, rgba(129, 140, 248, 0.36), rgba(168, 85, 247, 0.28));
  transform: translateY(-2px);
}

.section-shell {
  width: 100%;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.section-heading h2,
.blog-heading h2,
.faq-heading h2 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
}

.section-heading p,
.faq-heading span {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
}

.products-section {
  min-height: 896px;
  padding: 48px 100px 56px;
}

.product-grid {
  display: grid;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  direction: ltr;
}

.product-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
  animation: fade-in 0.55s ease both;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.24));
}

.product-info {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  direction: rtl;
}

.product-info h3 {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  font-weight: 600;
  line-height: 25.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-meta {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price strong {
  font-size: 18px;
  font-weight: 700;
}

.price small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.view-button {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.view-button:hover {
  background: rgba(255, 255, 255, 0.23);
}

.editorial-section {
  min-height: 456px;
  padding: 48px 32px;
}

.editorial-grid {
  display: grid;
  max-width: 1216px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.editorial-card,
.collection-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  cursor: pointer;
}

.editorial-card img,
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.editorial-card:hover img,
.collection-card:hover img {
  transform: scale(1.05);
}

.editorial-shade,
.collection-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48), transparent);
}

.editorial-copy,
.collection-copy {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  padding: 0 64px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.editorial-copy h2,
.collection-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.editorial-copy p,
.collection-copy p {
  max-width: 450px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 28px;
  text-align: left;
}

.pill-button {
  display: flex;
  min-width: 127px;
  height: 50px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pill-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.social-products-section {
  min-height: 549px;
  margin: 0 10px;
  padding: 48px 100px;
}

.carousel-shell {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.social-carousel {
  display: flex;
  width: 100%;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  direction: ltr;
}

.social-carousel::-webkit-scrollbar {
  display: none;
}

.social-carousel .product-card {
  width: 254px;
  min-width: 254px;
  height: 339px;
  aspect-ratio: auto;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 150px;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow--previous {
  left: 8px;
}

.carousel-arrow--next {
  right: 8px;
}

.collection-section {
  min-height: 456px;
  margin: 0 10px;
  padding: 48px 80px;
}

.collection-card {
  max-width: 1100px;
  margin: 0 auto;
}

.collection-copy {
  padding: 0 64px;
}

.collection-copy h2 {
  max-width: 520px;
}

.blog-section {
  min-height: 632px;
  margin: 0 10px;
  padding: 48px 100px 44px;
  overflow: hidden;
}

.blog-heading {
  margin-bottom: 53px;
  text-align: center;
  direction: rtl;
}

.blog-heading span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.blog-grid {
  display: grid;
  max-width: 1060px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  direction: ltr;
}

.blog-card {
  position: relative;
  height: 339px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  animation: fade-in 0.55s ease both;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 5, 12, 0.05) 16%, rgba(2, 5, 12, 0.4) 48%, rgba(2, 5, 12, 0.96) 100%);
}

.blog-card-content {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 24px;
  left: 32px;
  color: #fff;
  direction: rtl;
}

.blog-card-meta {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  direction: ltr;
}

.blog-card-meta b {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-card h3 {
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 17px;
  font-weight: 600;
  line-height: 23.4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 21px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  direction: ltr;
}

.blog-controls {
  display: flex;
  max-width: 1060px;
  margin: 24px auto 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.all-posts-button {
  height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.all-posts-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stats-section {
  width: 100%;
  min-height: 192px;
  padding: 40px 24px 48px;
}

.stats-grid {
  display: grid;
  max-width: 768px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  stroke-width: 1.5;
}

.stat-icon.blue { color: #60a5fa; }
.stat-icon.purple { color: #c084fc; }
.stat-icon.green { color: #34d399; }

.stat-item strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  direction: rtl;
}

.stat-item span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  direction: rtl;
}

.reasons-section {
  min-height: 150px;
  margin-bottom: 10px;
  padding: 0 24px 32px;
}

.reasons-card {
  max-width: 896px;
  min-height: 118px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 16px;
}

.reasons-card h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.reasons-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reasons-grid svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: hsl(var(--primary));
  stroke-width: 1.5;
}

.reasons-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.3;
}

.seo-section {
  min-height: 430px;
  padding: 64px 24px;
}

.seo-card {
  position: relative;
  max-width: 896px;
  height: 302px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.seo-content {
  position: relative;
  height: 238px;
  padding: 6px 32px 16px;
  overflow: hidden;
  transition: height 0.35s ease;
}

.seo-card.expanded {
  height: auto;
}

.seo-card.expanded .seo-content {
  height: auto;
  max-height: none;
}

.seo-prose {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.85;
  text-align: right;
}

.seo-prose h1 {
  margin: 24px 0 16px;
  color: #fff;
  font-size: 30px;
  line-height: 1.35;
}

.seo-prose h2 {
  margin: 22px 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
}

.seo-prose p,
.seo-prose ul {
  margin: 0 0 14px;
}

.seo-prose ul {
  padding-right: 22px;
}

.seo-prose strong {
  color: #fff;
}

.seo-prose hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #374151;
}

.seo-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(13, 18, 32, 0.95));
}

.seo-card.expanded .seo-fade {
  display: none;
}

.seo-toggle {
  display: flex;
  width: 100%;
  height: 64px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.seo-toggle:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-section {
  min-height: 510px;
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 24px;
}

.faq-heading {
  margin-bottom: 32px;
  text-align: center;
}

.faq-list {
  display: grid;
  max-width: 768px;
  margin: 0 auto;
  gap: 16px;
  direction: rtl;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 56px;
  padding: 14px 24px;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: right;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.07);
}

.faq-question span {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 2px 24px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.search-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  padding: 96px 24px 24px;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-overlay.open {
  visibility: visible;
  opacity: 1;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 5, 12, 0.74);
  cursor: default;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.search-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 120px);
  padding: 24px;
  overflow: auto;
  border-bottom: 1px solid hsl(var(--border-glass));
}

.search-dialog-head {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
}

.search-dialog h2 {
  margin: 0;
  font-size: 22px;
}

.search-field {
  display: flex;
  height: 54px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(3, 7, 18, 0.48);
  direction: rtl;
}

.search-field svg {
  width: 19px;
  height: 19px;
  color: rgba(255, 255, 255, 0.68);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  direction: rtl;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.search-results {
  display: grid;
  margin-top: 16px;
  gap: 8px;
}

.search-result {
  display: flex;
  width: 100%;
  padding: 13px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  text-align: right;
}

.search-result:hover {
  background: rgba(255, 255, 255, 0.12);
}

.search-result small {
  color: rgba(255, 255, 255, 0.55);
}

.search-empty {
  padding: 24px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 50%;
  bottom: 28px;
  max-width: calc(100vw - 32px);
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  direction: rtl;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(50%, 0);
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.78); }
}

@media (max-width: 1100px) {
  .products-section,
  .social-products-section,
  .blog-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .product-grid {
    gap: 20px;
  }

  .blog-grid {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .desktop-nav,
  .support-button {
    display: none;
  }

  .menu-trigger {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

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

  .products-section,
  .social-products-section,
  .blog-section,
  .editorial-section,
  .collection-section {
    min-height: 0;
    height: auto;
    padding: 40px 24px;
  }

  .editorial-copy,
  .collection-copy {
    padding: 0 36px;
  }

  .editorial-copy h2,
  .collection-copy h2 {
    font-size: 36px;
  }

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

  .seo-section,
  .faq-section {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 16px;
    right: 16px;
    left: 16px;
    height: 64px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 18px;
  }

  .mobile-menu {
    top: 74px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    padding: 136px 16px 48px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 38px;
    line-height: 1.15;
  }

  .hero-content > p {
    margin-top: 18px;
    padding: 0 4px;
    font-size: 16px;
    line-height: 1.8;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-benefits {
    margin-top: 26px;
    gap: 14px;
  }

  .benefit-icon {
    width: 68px;
    height: 68px;
  }

  .benefit-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-benefit > span {
    font-size: 12px;
  }

  .hero-cta {
    min-width: 218px;
    height: 60px;
    margin-top: 28px;
    font-size: 16px;
  }

  .section-heading h2,
  .blog-heading h2,
  .faq-heading h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .product-grid {
    max-width: 540px;
    gap: 14px;
  }

  .product-info {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 11px 12px;
    border-radius: 18px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .product-meta {
    margin-top: 6px;
  }

  .price strong {
    font-size: 15px;
  }

  .view-button {
    padding: 6px 10px;
    font-size: 11px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .collection-card {
    height: 300px;
  }

  .editorial-copy h2,
  .collection-copy h2 {
    font-size: 32px;
  }

  .editorial-copy p,
  .collection-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .social-products-section,
  .collection-section,
  .blog-section {
    margin-right: 0;
    margin-left: 0;
  }

  .social-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .social-carousel .product-card {
    scroll-snap-align: start;
  }

  .carousel-arrow {
    display: none;
  }

  .collection-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .blog-heading {
    margin-bottom: 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    height: 360px;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-item strong {
    font-size: 20px;
  }

  .stat-item span {
    font-size: 12px;
  }

  .reasons-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .reasons-card {
    padding: 20px 16px;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .seo-section {
    padding: 48px 16px;
  }

  .seo-card {
    height: 322px;
  }

  .seo-content {
    height: 258px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .seo-prose h1 {
    font-size: 24px;
  }

  .seo-prose h2 {
    font-size: 20px;
  }

  .faq-section {
    padding: 48px 16px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .search-overlay {
    padding: 80px 12px 12px;
  }
}

@media (max-width: 460px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 340px;
    margin: 0 auto;
  }

  .editorial-copy,
  .collection-copy {
    padding: 0 24px;
  }

  .editorial-copy h2,
  .collection-copy h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
