:root {
  --primary: #ff0f8a;
  --primary-dark: #cb0b6d;
  --secondary: #7a2cff;
  --accent: #ffd166;
  --background: #f6f7fb;
  --surface: #ffffff;
  --surface-alt: rgba(255, 255, 255, 0.92);
  --text: #17171c;
  --muted: #7b7b86;
  --shadow: 0 30px 60px -35px rgba(255, 15, 138, 0.45);
  --shadow-soft: 0 45px 90px -50px rgba(20, 15, 35, 0.35);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --gradient-primary: linear-gradient(135deg, #ff0f8a 0%, #7a2cff 100%);
  --gradient-soft: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 249, 0.9));
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.45);
  --menu-card-height: clamp(240px, 28vh, 300px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
  background: linear-gradient(180deg, #fff 0%, var(--background) 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
  min-height: 100vh;
}

body {
  scrollbar-color: rgba(255, 15, 138, 0.4) rgba(255, 255, 255, 0.4);
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.35);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 15, 138, 0.65), rgba(122, 44, 255, 0.65));
  border-radius: 999px;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.7;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s ease;
}

body::before {
  width: 520px;
  height: 520px;
  top: -240px;
  right: -160px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.22) 0%, rgba(255, 15, 138, 0) 70%);
}

body::after {
  width: 560px;
  height: 560px;
  bottom: -280px;
  left: -200px;
  background: radial-gradient(circle at center, rgba(122, 44, 255, 0.18) 0%, rgba(122, 44, 255, 0) 70%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.container.container--wide {
  width: min(1500px, 96vw);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 25px 50px -35px rgba(15, 12, 32, 0.35);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.site-header::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 15, 138, 0.08) 0%, rgba(122, 44, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.65;
  z-index: -1;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap; 
  white-space: nowrap; 
}

.brand-symbol {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-inline-start: auto;
  position: relative;
}

.nav-links__items {
  --nav-pill-padding-y: 0.78rem;
  --nav-pill-padding-x: 1.35rem;
  --nav-pill-font-size: 0.98rem;
  --nav-pill-font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 28, 0.08);
  background: #fff;
  color: var(--primary);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 18px 40px -28px rgba(16, 14, 30, 0.45);
}

.nav-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 45px -28px rgba(255, 15, 138, 0.4);
}

.nav-toggle__icon {
  display: grid;
  gap: 0.25rem;
}

.nav-toggle__icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle__label {
  font-size: 0.95rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--nav-pill-padding-y, 0.78rem) var(--nav-pill-padding-x, 1.35rem);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #2b2b32;
  font-size: var(--nav-pill-font-size, 0.98rem);
  font-weight: var(--nav-pill-font-weight, 600);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(12px);
}

.nav-link i {
  font-size: 1rem;
  color: var(--primary);
}

.nav-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 35px -25px rgba(11, 16, 31, 0.4);
}

.nav-link span {
  white-space: nowrap;
}

.nav-links__header,
.nav-links__footer {
  display: none;
}

.nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 24px -18px rgba(11, 16, 31, 0.35);
}

.nav-close i {
  font-size: 1.1rem;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.12), rgba(255, 155, 230, 0.18));
  color: var(--primary-dark);
  font-weight: 600;
  width: 100%;
  justify-content: space-between;
}

.nav-call i {
  font-size: 1.2rem;
  color: inherit;
}

.nav-links__note {
  margin: 0.75rem 0 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 23, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 95;
}

.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.has-nav-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

.nav-link--primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  padding-inline: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-link--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 24px 48px -24px rgba(203, 11, 109, 0.55);
}

.nav-link--primary i {
  color: #fff;
}

.hero-section {
  margin-top: 3rem;
  background: var(--gradient-soft);
  padding: clamp(2.6rem, 3vw, 3.4rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  position: relative;
  isolation: isolate;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, rgba(23, 23, 28, 0.85) 35%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0 0 1.5rem 0;
  color: rgba(58, 58, 68, 0.85);
  font-size: 1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  font-weight: 600;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 28px 55px -30px rgba(203, 11, 109, 0.55);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 70px -26px rgba(203, 11, 109, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 15, 138, 0.18);
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 20px 45px -30px rgba(15, 12, 32, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 60px -30px rgba(15, 12, 32, 0.4);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible {
  outline: 3px solid rgba(255, 15, 138, 0.35);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 15, 138, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 18px 40px -26px rgba(255, 15, 138, 0.4);
}

.btn-ghost i {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  z-index: 2;
}

.banner-container {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  min-height: 360px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 250, 0.9));
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px -38px rgba(23, 17, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  position: relative;
  animation: heroFloat 14s ease-in-out infinite;
}

.banner-container .swiper-wrapper,
.banner-container .swiper-slide {
  height: 100%;
}

.hero-banner-slide {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-container--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(248, 226, 239, 0.78));
}

.hero-banner-fallback {
  text-align: center;
  padding: 2rem;
  color: rgba(58, 58, 68, 0.8);
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.hero-banner-fallback i {
  font-size: 2rem;
  color: var(--primary);
}

.hero-banner-fallback h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-banner-fallback p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 20ch;
}

.hero-section {
  position: relative;
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.5px);
  opacity: 0.75;
  z-index: 1;
}

.hero-section::before {
  inset-inline-end: -140px;
  inset-block-start: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(122, 44, 255, 0.18) 0%, rgba(122, 44, 255, 0) 70%);
}

.hero-section::after {
  inset-inline-start: -120px;
  inset-block-end: -180px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.16) 0%, rgba(255, 15, 138, 0) 70%);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: clamp(240px, 35vw, 360px);
  height: clamp(240px, 35vw, 360px);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: heroPulse 16s ease-in-out infinite;
}

.hero-glow--1 {
  inset-inline-start: -12%;
  inset-block-start: -8%;
}

.hero-glow--2 {
  inset-inline-end: -18%;
  inset-block-end: -12%;
  animation-delay: 4s;
}

.hero-orb {
  position: absolute;
  width: clamp(120px, 18vw, 200px);
  height: clamp(120px, 18vw, 200px);
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(255, 15, 138, 0.42) 0%, rgba(255, 15, 138, 0) 70%);
  filter: blur(0.5px);
  opacity: 0.9;
  animation: heroOrbit 24s ease-in-out infinite;
}

.hero-orb--1 {
  inset-inline-start: 12%;
  inset-block-end: -18%;
}

.hero-orb--2 {
  inset-inline-end: -10%;
  inset-block-start: 8%;
  background: radial-gradient(circle at top, rgba(122, 44, 255, 0.35) 0%, rgba(122, 44, 255, 0) 70%);
  animation-delay: 6s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.2rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
  color: var(--primary-dark);
  box-shadow: 0 18px 38px -28px rgba(15, 12, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}

.hero-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px rgba(255, 15, 138, 0.15);
}

@keyframes heroFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0.5deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(-0.5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0.5deg);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

@keyframes heroOrbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, -18px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-highlights {
  list-style: none;
  margin: 1.75rem 0 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 18px 40px -30px rgba(15, 14, 30, 0.32);
  color: #474753;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.hero-highlights i {
  font-size: 1.05rem;
  color: var(--primary);
}

.section-title {
  margin: 3.5rem 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
}

.section-title-group {
  margin: 3.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.section-title-group .section-title {
  margin: 0;
}

.section-subtitle {
  margin: 0;
  color: rgba(71, 71, 83, 0.85);
  line-height: 1.9;
  max-width: 720px;
}

.section-title::before {
  content: '';
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(130deg, var(--primary), var(--accent));
  display: inline-block;
  box-shadow: var(--shadow);
}

.stats-section {
  margin-top: 4rem;
}

.stats-surface {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 238, 249, 0.9));
  border-radius: 32px;
  padding: 2.8rem 3rem;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 35px 80px -50px rgba(23, 18, 45, 0.45);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
}

.stats-surface::after {
  content: '';
  position: absolute;
  inset-inline-start: -140px;
  inset-block-end: -180px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.16) 0%, rgba(255, 15, 138, 0) 70%);
  pointer-events: none;
}

.stats-copy h2 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.stats-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.stats-copy__cta {
  margin-top: 1.8rem;
}

.stats-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stats-item {
  text-align: center;
}

.stats-item img {
  width: 100%;
  border-radius: 8px;
}

.banner-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

.stats-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 15, 138, 0.08);
  box-shadow: 0 25px 60px -45px rgba(23, 18, 45, 0.45);
  background: rgba(255, 255, 255, 0.92);
}

.stats-images--empty {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 15, 138, 0.25);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.stats-images__fallback i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 15, 138, 0.8);
}

.stats-images__fallback h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: var(--text);
}

.stats-images__fallback p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.collections-section {
  margin-top: 4.5rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 35px 70px -45px rgba(16, 14, 30, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(16px);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 90px -48px rgba(16, 14, 30, 0.55);
}

.collection-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.collection-card__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collection-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 15, 138, 0.2);
  box-shadow: 0 12px 30px -20px rgba(15, 12, 32, 0.35);
}

.collection-card__badge i {
  font-size: 0.85rem;
}

.collection-card__body h3 {
  margin: 0;
  font-size: 1.25rem;
}

.collection-card__body p {
  margin: 0;
  color: #3b3b47;
  line-height: 1.8;
}

.collection-card__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.collection-card__highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #474753;
  font-size: 0.95rem;
}

.collection-card__highlights i {
  color: var(--primary);
  font-size: 0.9rem;
}

.collection-card__link {
  margin-top: auto;
  align-self: flex-start;
}

.journey-section {
  margin-top: 4.5rem;
  text-align: center;
}

.journey-section .section-subtitle {
  max-width: 680px;
  margin: 0.75rem auto 0;
  color: var(--muted);
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.setup-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 249, 0.98));
  border-radius: 24px;
  border: 1.5px solid rgba(255, 105, 180, 0.35);
  box-shadow:
    0 0 0 6px rgba(255, 105, 180, 0.12),
    0 24px 60px -50px rgba(255, 105, 180, 0.55);
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.setup-step-image-small {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 60px -40px rgba(23, 18, 45, 0.4);
}

.setup-step-image-large {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 75px -48px rgba(23, 18, 45, 0.45);
}

.setup-step-description {
  margin: 0;
  font-size: 0.95rem;
  color: #4a4a56;
  line-height: 1.8;
}

.setup-steps-empty {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.testimonials-section {
  margin-top: 4.5rem;
}

.testimonials-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
  display: grid;
  gap: 0.75rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 32px 75px -50px rgba(23, 18, 45, 0.48);
  backdrop-filter: blur(18px);
}

.testimonial-card__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 38px -24px rgba(23, 18, 45, 0.55);
}

.testimonial-card__profile strong {
  display: block;
  font-size: 1.05rem;
}

.testimonial-card__profile span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-card__quote {
  margin: 0;
  color: #3b3b47;
  line-height: 1.9;
  font-size: 0.98rem;
}

.newsroom-section {
  margin-top: 4.5rem;
}

.newsroom-card {
  background: linear-gradient(140deg, rgba(255, 240, 248, 0.95), rgba(255, 255, 255, 0.95));
  border-radius: 32px;
  padding: 2.6rem 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  align-items: center;
  box-shadow: 0 40px 95px -55px rgba(23, 18, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
}

.newsroom-content h2 {
  margin: 0 0 0.8rem 0;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.newsroom-content p {
  margin: 0;
  color: #3b3b47;
  line-height: 1.9;
}

.newsroom-form {
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.newsroom-form input {
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 45px -32px rgba(23, 18, 45, 0.45);
  font-family: inherit;
  font-size: 0.95rem;
  color: #2f2f38;
}

.newsroom-form input:focus {
  outline: 2px solid rgba(255, 15, 138, 0.4);
}

.newsroom-form button {
  justify-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.newsroom-form__hint {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .section-title-group {
    margin: 3rem 0 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .collections-grid {
    gap: 1.4rem;
  }

  .collection-card__body {
    padding: 1.6rem;
  }

  .journey-section {
    margin-top: 3.5rem;
  }

  .journey-section .section-subtitle {
    margin-bottom: 1.5rem;
  }

  .setup-step {
    padding: 2rem 1.2rem 1.2rem;
  }

  .setup-step-image-large {
    height: 180px;
  }

  .testimonials-head {
    margin-bottom: 2rem;
  }

  .testimonials-grid {
    gap: 1.2rem;
  }

  .newsroom-card {
    padding: 2.2rem 1.8rem;
  }

  .newsroom-form {
    max-width: 100%;
  }
}

.support-section {
  margin: 4rem auto 4rem;
}

.support-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(253, 244, 255, 0.95));
  border-radius: 32px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 40px 90px -50px rgba(23, 18, 45, 0.5);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
}

.support-card::after {
  content: '';
  position: absolute;
  inset-inline-end: -120px;
  inset-block-start: -140px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.16) 0%, rgba(255, 15, 138, 0) 70%);
  pointer-events: none;
}

.support-content h2 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.support-content p {
  margin: 0 0 2rem 0;
  color: var(--muted);
  line-height: 1.9;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.support-meta {
  display: grid;
  gap: 1rem;
}

.support-meta__item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 1rem 1.3rem;
  box-shadow: 0 25px 60px -45px rgba(23, 18, 45, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
}

.support-meta__item i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 24px 50px -32px rgba(255, 15, 138, 0.55);
}

.support-meta__item strong {
  display: block;
  font-size: 1.05rem;
}

.support-meta__item span {
  color: var(--muted);
  font-size: 0.9rem;
}

#categories .category-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.category-tag {
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 15, 138, 0.12);
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-grid.product-grid--featured {
  --featured-grid-gap: clamp(1.5rem, 2vw, 2rem);
  gap: var(--featured-grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(11, 16, 31, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
}

.product-card.product-card--placeholder {
  border: 1px dashed rgba(255, 15, 138, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.product-card.product-card--placeholder .product-card__image {
  background: rgba(255, 255, 255, 0.8);
}

.product-card.product-card--placeholder .product-card__image img {
  filter: saturate(0.45);
  opacity: 0.9;
}

.product-image {
  position: relative;
  aspect-ratio: 960 / 697;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f8f8;
  width: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-image img.fit-contain {
  object-fit: contain !important;
  object-position: center;
}

.product-image.has-small-image {
  background: rgba(255, 255, 255, 0.92);
}

.product-image--hero {
  border-radius: 18px;
}

.product-image--thumb {
  background: rgba(244, 244, 252, 0.9);
}

img.img--fallback {
  filter: saturate(0.5);
  opacity: 0.95;
}

.product-card.product-card--placeholder .product-card__icon {
  background: linear-gradient(135deg, rgba(122, 44, 255, 0.18), rgba(255, 15, 138, 0.2));
  color: var(--primary-dark);
}

.product-card.product-card--placeholder .product-actions .price-tag {
  color: var(--muted);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(11, 16, 31, 0.18);
}

.product-card__image {
  position: relative;
  aspect-ratio: 960 / 697;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f8f8;
  width: 100%;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}


.product-card__image img.fit-contain {
  object-fit: contain !important;
  object-position: center;
}

.product-card__image.has-small-image {
  background: rgba(255, 255, 255, 0.92);
}

.product-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.15), rgba(122, 44, 255, 0.22));
  color: var(--primary);
  box-shadow: 0 14px 32px -22px rgba(255, 15, 138, 0.5);
  flex-shrink: 0;
}

.product-card__icon i {
  font-size: 1.05rem;
}

.product-card__titles {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-card__titles h3 {
  margin: 0;
}

.product-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.product-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card p {
  margin: 0;
  color: #474753;
  min-height: 60px;
}

.product-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-actions a {
  color: var(--primary);
  font-weight: 600;
}

.price-tag {
  font-weight: 700;
  color: var(--primary-dark);
}

.site-footer {
  margin-top: 4rem;
  background: #fff;
  padding: 3rem 0 2rem;
  box-shadow: 0 -20px 50px rgba(11, 16, 31, 0.08);
}

.footer-layout {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
  justify-items: center;
  justify-content: center;
  margin-inline: auto;
  width: min(100%, 1040px);
}

.footer-layout--single-contact {
  grid-template-columns: repeat(2, minmax(280px, 380px));
}

.footer-layout--dual-contact {
  grid-template-columns: minmax(280px, 360px) minmax(320px, 420px) minmax(280px, 360px);
}

.contact-card {
  background: linear-gradient(150deg, rgba(255, 15, 138, 0.2), rgba(122, 44, 255, 0.2));
  border-radius: 28px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 38px -28px rgba(15, 12, 32, 0.4);
}

.contact-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  display: block;
}

.contact-text {
  color: var(--muted);
  display: block;
}

.contact-phone:hover,
.contact-phone:focus {
  color: var(--primary);
}

.footer-main {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-main .footer-column {
  text-align: center;
  max-width: 420px;
}

.footer-main .footer-column ul {
  justify-items: center;
  text-align: center;
}

.footer-column h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.footer-column--highlight h3 {
  color: var(--primary-dark);
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-page {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.product-page__surface {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(11, 16, 31, 0.12);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.75rem);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: flex-start;
}

.product-hero__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.product-hero__title {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  color: var(--primary-dark);
}

.product-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.05rem;
}

.product-hero__meta i {
  color: var(--primary);
}

.product-hero__description {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.9;
}

.product-hero__description--empty {
  color: var(--muted);
}

.product-hero__price {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255, 63, 154, 0.12), rgba(122, 44, 255, 0.12));
  border-radius: 18px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.product-hero__price i {
  color: var(--primary);
}

.product-hero__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(14, 13, 28, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.6));
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.gallery-main img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.gallery-thumbs .product-image--thumb {
  width: 72px;
  border-radius: 18px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 22px rgba(18, 18, 42, 0.18);
}

.gallery-thumbs .product-image--thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs .product-image--thumb.is-active,
.gallery-thumbs .product-image--thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.product-hero__media .alert {
  margin-top: 1rem;
}

.product-section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
  color: var(--primary-dark);
}

.product-section-title i {
  color: var(--primary);
}

.product-section-title--plain {
  margin-bottom: 0.5rem;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #3c3c45;
  line-height: 1.9;
}

.product-description__empty {
  color: var(--muted);
}

.product-contact {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}

.product-contact .btn-back {
  align-self: flex-start;
}

.product-related {
  --product-related-padding: clamp(2rem, 3vw, 2.8rem);
  --product-related-gap: 1.8rem;
  --product-related-sheen: rgba(122, 44, 255, 0.14);
  margin-top: 3rem;
  border-radius: var(--radius-xl);
  padding: var(--product-related-padding);
  display: flex;
  flex-direction: column;
  gap: var(--product-related-gap);
  position: relative;
  overflow: hidden;
  background: radial-gradient(140% 140% at 100% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(244, 244, 252, 0.96) 38%, rgba(236, 235, 255, 0.96) 100%);
  box-shadow: 0 30px 70px rgba(11, 16, 31, 0.12);
}

.product-related::before,
.product-related::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.16), rgba(255, 255, 255, 0) 70%);
  filter: blur(0.5px);
  z-index: 0;
}

.product-related::before {
  inset-inline-end: -120px;
  top: -160px;
}

.product-related::after {
  inset-inline-start: -160px;
  bottom: -200px;
  background: radial-gradient(circle at center, var(--product-related-sheen), rgba(255, 255, 255, 0) 70%);
}

/* ==== Related Products – FINAL ==== */

.product-related__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ویوپورت: زمینه اسکرول افقی */
.product-related__viewport {
  position: relative;
  z-index: auto;
  margin-inline: 0;
  padding-inline: 0;
  padding-bottom: 0;
  overflow: visible;
  direction: rtl;
}

.product-related__viewport::before,
.product-related__viewport::after {
  display: none;
}

.product-grid--related {
  position: relative;
  display: grid;
  gap: var(--product-related-gap);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
  direction: rtl;
}

@media (max-width: 1280px) {
  .product-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .product-grid--related {
    grid-template-columns: 1fr;
  }
  .product-grid--related > .related-card {
    width: 100%;
  }
}

.product-grid--related > .related-card {
  width: min(100%, 280px);
}
/* کارت */
.related-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 30px;
  background: linear-gradient(165deg, rgba(255,255,255,0.96), rgba(248,241,255,0.92));
  box-shadow: 0 30px 60px -40px rgba(15,12,32,0.45);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.65);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  direction: rtl;
  z-index: 3; /* بالاتر از گرادیان‌ها */
}

.related-card::after {
  content: '';
  position: absolute;
  inset-inline-end: -30%;
  inset-block-start: -50%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,15,138,0.16), transparent 70%);
  pointer-events: none;
  filter: blur(0.5px);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 90px -45px rgba(15,12,32,0.55);
}

.related-card:hover::after { opacity: 0.85; }

/* مدیا داخل کارت */
.related-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 960 / 697;
  overflow: hidden;
  background: #f8f8f8;
  display: grid;
  place-items: center;
}

.related-card__media img,
.related-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 4;
  transition: transform 0.35s ease;
}

.related-card__media img.fit-contain,
.related-card__media.has-small-image img {
  object-fit: contain !important;
  object-position: center;
}

.related-card__media.has-small-image {
  background: rgba(255, 255, 255, 0.92);
}


.related-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.4rem 1.6rem 1.6rem;
  flex: 1;
}

.related-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.related-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  color: #1f1f2b;
}

.related-card__price {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 15, 138, 0.12);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.related-card__category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(52, 52, 70, 0.9);
}

.related-card__category::before {
  content: '\f02b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--primary);
}

.related-card__excerpt {
  margin: 0;
  color: #4a4a59;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8rem;
}

.related-card__excerpt--muted {
  color: #7b7b92;
}

.related-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.72rem 1.65rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #864bff 0%, #c64bf5 48%, #ff64a8 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 52px -30px rgba(105, 62, 255, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.related-card__cta::before,
.related-card__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.related-card__cta::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  opacity: 0.85;
}

.related-card__cta::after {
  inset: auto;
  top: 50%;
  inset-inline-start: -35%;
  width: 70%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-10%, -50%) rotate(16deg);
  opacity: 0;
}

.related-card__cta > span,
.related-card__cta > i {
  position: relative;
  z-index: 1;
}

.related-card__cta i {
  font-size: 0.9rem;
}

.related-card__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 66px -32px rgba(105, 62, 255, 0.82);
}

.related-card__cta:hover::after {
  opacity: 1;
  transform: translate(5%, -55%) rotate(8deg);
}

.related-card__cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(134, 75, 255, 0.22), 0 18px 52px -28px rgba(105, 62, 255, 0.7);
}

@media (max-width: 960px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-hero__media {
    order: -1;
  }

  .product-page__surface {
    padding: clamp(1.8rem, 5vw, 2.2rem);
  }

  .product-related {
    margin-top: 2.5rem;
  }
}

.cta-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.05rem 1.25rem;
  border-radius: 22px;
  background: var(
    --cta-gradient,
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82))
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 32px 80px -42px rgba(14, 10, 30, 0.65);
  backdrop-filter: blur(16px);
  color: var(--cta-foreground, #17171c);
  text-decoration: none;
  overflow: hidden;
  direction: rtl;
  transition: transform 0.35s cubic-bezier(0.17, 0.67, 0.29, 1.27), box-shadow 0.35s ease, filter 0.35s ease;
}

.cta-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  align-items: flex-start;
}

.cta-card__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cta-label-color, rgba(23, 23, 28, 0.7));
}

.cta-card__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cta-value-color, var(--cta-foreground, #17171c));
  text-align: start;
  direction: rtl;
  unicode-bidi: plaintext;
  white-space: nowrap;
}

.cta-card:hover,
.cta-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 46px 120px -50px rgba(11, 8, 24, 0.7);
}

.cta-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.cta-card--primary {
  --cta-gradient: linear-gradient(135deg, rgba(255, 63, 154, 0.96), rgba(122, 44, 255, 0.98));
  --cta-label-color: rgba(255, 255, 255, 0.82);
  --cta-value-color: #ffffff;
  --cta-foreground: #ffffff;
}

.cta-card--secondary {
  --cta-gradient: linear-gradient(135deg, rgba(111, 208, 255, 0.96), rgba(133, 88, 255, 0.98));
  --cta-label-color: rgba(255, 255, 255, 0.82);
  --cta-value-color: #ffffff;
  --cta-foreground: #ffffff;
}

.cta-card--instagram {
  --cta-gradient: linear-gradient(135deg, #feda75 5%, #fa7e1e 35%, #d62976 65%, #962fbf 100%);
  --cta-label-color: rgba(255, 255, 255, 0.85);
  --cta-value-color: #ffffff;
  --cta-foreground: #ffffff;
}

.cta-card--instagram-alt {
  --cta-gradient: linear-gradient(135deg, #4c68d7 0%, #bc2a8d 55%, #f77737 100%);
  --cta-label-color: rgba(255, 255, 255, 0.85);
  --cta-value-color: #ffffff;
  --cta-foreground: #ffffff;
}

.cta-card--disabled {
  opacity: 0.55;
  filter: saturate(0.6) grayscale(0.15);
  pointer-events: none;
  box-shadow: none;
}

.cta-card--disabled .cta-card__eyebrow,
.cta-card--disabled .cta-card__value {
  opacity: 0.75;
}

.btn-back {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .cta-contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 0.95rem 1.1rem;
  }

  .cta-card__value {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-card {
    transition: none !important;
  }
}

.alert {
  background: rgba(255, 15, 138, 0.1);
  color: var(--primary-dark);
  border-radius: 18px;
  padding: 1rem 1.4rem;
}

@media (max-width: 820px) {
  .nav-bar {
    gap: 1.2rem;
  }

  .hero-section {
    padding: 2.1rem;
  }

  .hero-highlights {
    gap: 0.75rem;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .nav-bar {
    padding: 1rem 0;
    gap: 0.9rem;
  }

  .hero-decor {
    opacity: 0.45;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-symbol {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero-section {
    margin-top: 1.6rem;
    padding: 1.5rem;
    text-align: center;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-highlights {
    margin-top: 1.3rem;
  }

  .hero-highlights li {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    justify-content: center;
  }

  .banner-container {
    max-width: 100%;
    min-height: 320px;
  }

  .hero-banner-fallback h3 {
    font-size: 1rem;
  }

  .hero-banner-fallback p {
    font-size: 0.9rem;
  }

  .stats-section {
    margin-top: 3rem;
  }

  .stats-surface {
    padding: 1.9rem 1.5rem;
    gap: 1.8rem;
  }

  .stats-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-images img {
    aspect-ratio: 3 / 2;
  }

  .category-section__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .category-section__subtitle {
    font-size: 0.95rem;
  }

  .category-card {
    border-radius: 24px;
    padding: 1.4rem;
  }

  .category-card__groups {
    gap: 0.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-card__image {
    border-radius: 24px 24px 0 0;
  }

  .product-card-body {
    padding: 1.4rem;
    gap: 0.65rem;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .product-actions .price-tag {
    font-size: 1.05rem;
  }

  .product-actions a {
    display: inline-flex;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 15, 138, 0.08);
  }

  .support-card {
    padding: 2rem 1.6rem;
    text-align: center;
    gap: 1.8rem;
  }

  .support-content h2 {
    font-size: 1.35rem;
  }

  .support-content p {
    font-size: 0.95rem;
  }

  .support-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .support-meta {
    gap: 1rem;
  }

  .support-meta__item {
    justify-content: center;
    text-align: center;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-layout--single-contact,
  .footer-layout--dual-contact {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-page__surface {
    padding: 1.8rem 1.3rem;
  }

  .product-related {
    padding: 1.7rem 1.3rem;
  }
}

.admin-body {
  background: linear-gradient(180deg, #fdf2fb 0%, #eef2ff 55%, #ffffff 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.admin-body::before,
.admin-body::after {
  content: '';
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(0);
  opacity: 0.75;
  transition: opacity 0.5s ease;
}

.admin-body::before {
  top: -160px;
  right: -180px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
}

.admin-body::after {
  bottom: -200px;
  left: -160px;
  background: radial-gradient(circle at center, rgba(100, 84, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

.admin-topbar {
  width: min(1200px, 94vw);
  margin: 1.5rem auto 0;
  padding: 1.35rem 1.9rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 238, 255, 0.95));
  border: 1px solid rgba(149, 84, 255, 0.18);
  box-shadow: 0 30px 80px -38px rgba(24, 21, 60, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  position: sticky;
  top: 1rem;
  z-index: 40;
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.admin-topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 100% 0%, rgba(255, 15, 138, 0.12), transparent),
    radial-gradient(110% 140% at 0% 100%, rgba(122, 44, 255, 0.12), transparent);
  z-index: -1;
  opacity: 0.9;
}

.admin-topbar__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.admin-topbar__title {
  font-size: 1.4rem;
  font-weight: 700;
}

.admin-topbar__site {
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-topbar__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-topbar__meta > * {
  position: relative;
  z-index: 1;
}

.admin-topbar__greeting {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.45rem 0.9rem;
  border-radius: 18px;
}

.admin-topbar__greeting strong {
  color: var(--text);
  font-weight: 700;
}

.admin-topbar__greeting i {
  font-size: 1.4rem;
  color: var(--primary);
}

.admin-topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 18px;
  background: rgba(149, 84, 255, 0.12);
  border: 1px solid rgba(149, 84, 255, 0.22);
  box-shadow: 0 12px 24px -18px rgba(64, 48, 110, 0.4);
  color: #4c3d83;
}

.admin-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  background: linear-gradient(135deg, #34d399, #22c55e);
}

.admin-status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(34, 197, 94, 0.35);
  animation: adminPulse 1.9s ease-in-out infinite;
}

.admin-status-dot--online {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.admin-topbar__status-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.admin-topbar__status-label {
  font-weight: 600;
  color: #332b63;
}

.admin-topbar__status-time {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(74, 64, 121, 0.8);
}

.admin-topbar__clock {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.admin-topbar__date {
  font-size: 0.78rem;
  color: rgba(74, 64, 121, 0.75);
}

@keyframes adminPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.85;
  }
  60% {
    transform: scale(1.25);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.admin-topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-topbar__actions form {
  margin: 0;
}

.admin-main {
  padding: 3.5rem 0 5rem;
}

.admin-shell {
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.admin-dashboard-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.admin-actions-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  border: 1px dashed rgba(114, 105, 160, 0.25);
  background: rgba(246, 242, 255, 0.85);
}

.admin-actions-bar--footer {
  margin-top: -0.5rem;
}

.admin-actions-bar__info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(74, 74, 109, 0.85);
  font-size: 0.92rem;
}

.admin-actions-bar__info i {
  color: var(--primary);
}

.admin-products__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-products__hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(55, 65, 81, 0.85);
}

.admin-product-card__status {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  background: rgba(55, 65, 81, 0.05);
  color: rgba(55, 65, 81, 0.9);
  font-size: 0.85rem;
}

.admin-product-card__status[hidden] {
  display: none !important;
}

.admin-product-card__status i {
  font-size: 0.9rem;
}

.admin-product-card__status--pending,
.admin-product-card__status--warning {
  background: rgba(255, 181, 71, 0.18);
  color: #b45309;
}

.admin-product-card__status--saving {
  background: rgba(59, 130, 246, 0.18);
  color: #1d4ed8;
}

.admin-product-card__status--success {
  background: rgba(34, 197, 94, 0.18);
  color: #047857;
}

.admin-product-card__status--error {
  background: rgba(248, 113, 113, 0.18);
  color: #b91c1c;
}

.admin-product-card--dirty > summary {
  border-color: rgba(255, 181, 71, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 181, 71, 0.2);
}

.admin-new-products {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.admin-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  font-size: 0.95rem;
  border: 1px solid rgba(149, 84, 255, 0.2);
  box-shadow: 0 22px 48px -30px rgba(23, 18, 60, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.admin-alert i {
  font-size: 1.1rem;
}

.admin-alert--success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.08));
  color: #0f8d3b;
  border-color: rgba(34, 197, 94, 0.3);
}

.admin-alert--error {
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.16), rgba(255, 120, 173, 0.08));
  color: var(--primary-dark);
  border-color: rgba(255, 15, 138, 0.3);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.admin-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 255, 0.94));
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 28px 65px -36px rgba(18, 18, 52, 0.45);
  border: 1px solid rgba(149, 84, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.admin-card::before {
  content: '';
  position: absolute;
  inset: -50% -20% 60% auto;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.12), transparent 70%);
  opacity: 0.9;
}

.admin-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% 20%;
  background: radial-gradient(circle at center, rgba(122, 44, 255, 0.12), transparent 70%);
  opacity: 0.9;
}

.admin-card > * {
  position: relative;
  z-index: 1;
}

.admin-card__subtitle {
  margin: -0.2rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.admin-card__subtitle--muted {
  margin-top: -0.8rem;
  font-size: 0.85rem;
  color: rgba(82, 82, 110, 0.85);
}

.admin-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 2.5rem;
  padding: 2.8rem;
  border-radius: 34px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.96), rgba(241, 236, 255, 0.92) 55%, rgba(255, 245, 253, 0.9));
  border: 1px solid rgba(149, 84, 255, 0.15);
  box-shadow: 0 34px 80px -42px rgba(20, 18, 52, 0.5);
  overflow: hidden;
  align-items: center;
}

.admin-hero::before,
.admin-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
}

.admin-hero::before {
  width: 340px;
  height: 340px;
  top: -160px;
  right: -80px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
}

.admin-hero::after {
  width: 420px;
  height: 420px;
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle at center, rgba(109, 93, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
}

.admin-hero__content,
.admin-hero__card {
  position: relative;
  z-index: 1;
}

.admin-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.admin-hero__content h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.admin-hero__content p {
  margin: 0;
  font-size: 1rem;
  color: #57576a;
  line-height: 1.8;
}

.admin-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(149, 84, 255, 0.12);
  border: 1px solid rgba(149, 84, 255, 0.28);
  color: #43387a;
  font-size: 0.85rem;
  font-weight: 600;
}

.admin-hero__chip i {
  font-size: 0.95rem;
  color: var(--primary);
}

.admin-hero__chip--success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.28);
  color: #0f8d3b;
}

.admin-hero__chip--muted {
  background: rgba(120, 128, 149, 0.16);
  border-color: rgba(120, 128, 149, 0.3);
  color: #55586d;
}

.admin-hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.admin-highlight {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 233, 255, 0.75));
  border: 1px solid rgba(149, 84, 255, 0.1);
  box-shadow: 0 18px 38px -32px rgba(20, 16, 48, 0.45);
}

.admin-highlight__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.admin-highlight__icon--primary {
  background: linear-gradient(135deg, #7a2cff, #5e22e3);
}

.admin-highlight__icon--warning {
  background: linear-gradient(135deg, #f97316, #fb7185);
}

.admin-highlight__icon--accent {
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
}

.admin-highlight__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-highlight__label {
  font-size: 0.85rem;
  color: rgba(74, 64, 121, 0.85);
  font-weight: 600;
}

.admin-highlight__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #241f47;
  line-height: 1.2;
}

.admin-highlight__meta {
  font-size: 0.8rem;
  color: rgba(82, 72, 130, 0.75);
}

.admin-highlight__hint {
  font-size: 0.75rem;
  color: rgba(82, 72, 130, 0.6);
}

.admin-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(122, 44, 255, 0.12);
  overflow: hidden;
  margin: 0.2rem 0 0.3rem;
}

.admin-progress__bar {
  position: absolute;
  inset: 0;
  width: var(--progress, 0%);
  max-width: 100%;
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.85), rgba(122, 44, 255, 0.85));
  border-radius: inherit;
  transition: width 0.5s ease;
}

.admin-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.admin-hero__card {
  background: radial-gradient(150% 150% at 100% 0%, rgba(46, 18, 61, 0.92), rgba(26, 21, 48, 0.92));
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 32px 80px -40px rgba(14, 12, 35, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.admin-hero__card::before {
  content: '';
  position: absolute;
  inset: -30% 40% auto -30%;
  height: 260px;
  background: radial-gradient(circle at center, rgba(255, 170, 244, 0.3), transparent 70%);
  opacity: 0.9;
}

.admin-hero__card::after {
  content: '';
  position: absolute;
  inset: auto -30% -30% 30%;
  height: 220px;
  background: radial-gradient(circle at center, rgba(122, 44, 255, 0.35), transparent 70%);
  opacity: 0.8;
}

.admin-hero__card > * {
  position: relative;
  z-index: 1;
}

.admin-hero__card-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-hero__card-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.admin-hero__card-header p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.admin-hero__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.admin-hero__card li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.admin-hero__card li i {
  color: var(--accent);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.admin-hero__card span {
  display: inline-block;
}

.admin-hero__card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.admin-hero__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: #fff;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.admin-hero__card-cta:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  font-family: inherit;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #faf9ff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: rgba(82, 72, 130, 0.55);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 15, 138, 0.15);
  background: #fff;
}

.admin-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
}

.admin-checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
}

.admin-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-category-control {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.admin-category-control__selects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-category-control__selects select {
  flex: 1 1 200px;
  min-width: 0;
  background: #fff;
}

.admin-form__actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.admin-form__actions--between {
  justify-content: space-between;
}

.admin-form__actions--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.admin-checkbox--danger span {
  color: #d14343;
  font-weight: 600;
}

.admin-submit {
  align-self: flex-start;
}

.btn-danger {
  background: #ff4d6d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 77, 109, 0.35);
}




.admin-product__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.admin-product__meta {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.badge--success {
  background: rgba(34, 197, 94, 0.14);
  color: #0f8d3b;
}

.badge--muted {
  background: rgba(120, 128, 149, 0.16);
  color: #6f7284;
}

.admin-empty {
  padding: 1.6rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  text-align: center;
}

.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

.admin-auth__card {
  background: #fff;
  padding: 3rem 2.4rem;
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(14, 13, 28, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 420px;
  width: min(95vw, 420px);
}

.admin-auth__card h1 {
  margin: 0;
  font-size: 1.8rem;
}

.admin-auth__subtitle {
  margin: 0;
  color: var(--muted);
}

.admin-auth .admin-form {
  gap: 1.2rem;
}

.admin-inline-delete {
  display: inline-flex;
}

@media (max-width: 720px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-inline-delete {
    width: 100%;
  }

.admin-inline-delete button {
  width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Navigation dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--nav-pill-padding-y, 0.78rem) var(--nav-pill-padding-x, 1.35rem);
  font: inherit;
  font-size: var(--nav-pill-font-size, 0.98rem);
  font-weight: var(--nav-pill-font-weight, 600);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease,
    color 0.3s ease;
}

.nav-dropdown__label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.nav-dropdown__toggle i:first-child {
  color: var(--primary);
  font-size: 1rem;
}

.nav-dropdown__toggle i:last-child {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-dropdown__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 15, 138, 0.22);
}

.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown:hover .nav-dropdown__toggle {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.9);
  color: #2b2b32;
  box-shadow: 0 18px 35px -25px rgba(11, 16, 31, 0.4);
}

.nav-dropdown.is-open .nav-dropdown__toggle i:last-child {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown__panel {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 18px);
  width: min(960px, calc(100vw - 2.5rem));
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(380px, 1fr);
  gap: 1.8rem;
  padding: 1.9rem;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 249, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 38px 80px -40px rgba(12, 11, 30, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 210;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
  overflow-y: auto;
  max-height: min(72vh, 640px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 15, 138, 0.35) transparent;
}

.nav-dropdown__panel::before,
.nav-dropdown__panel::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.nav-dropdown__panel::before {
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 15, 138, 0.12), transparent 65%);
}

.nav-dropdown__panel::after {
  width: 280px;
  height: 280px;
  right: -140px;
  bottom: -160px;
  background: radial-gradient(circle at center, rgba(122, 44, 255, 0.18), transparent 70%);
}

.nav-dropdown__panel > * {
  position: relative;
  z-index: 1;
}

.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

.nav-dropdown__panel::-webkit-scrollbar {
  width: 6px;
}

.nav-dropdown__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 15, 138, 0.35);
  border-radius: 999px;
}

.nav-dropdown__head {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.25rem 1.1rem;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.85), rgba(255, 240, 248, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 48px -36px rgba(23, 16, 45, 0.4);
  overflow: hidden;
}

.nav-dropdown__head::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at bottom right, rgba(255, 15, 138, 0.08), transparent 75%);
  z-index: 0;
}

.nav-dropdown__head > * {
  position: relative;
  z-index: 1;
}

.nav-dropdown__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: flex-start;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  color: var(--primary-dark);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.25s ease,
    color 0.25s ease;
  text-align: right;
}

.nav-dropdown__chip i {
  font-size: 0.95rem;
  color: inherit;
  opacity: 0.8;
}

.nav-dropdown__chip span {
  flex: 1 1 auto;
}

.nav-dropdown__chip:hover,
.nav-dropdown__chip:focus-visible {
  outline: none;
  transform: translateX(-4px);
  box-shadow: 0 20px 38px -26px rgba(15, 15, 45, 0.35);
  border-color: rgba(255, 15, 138, 0.25);
  background: rgba(255, 255, 255, 0.75);
}

.nav-dropdown__chip.is-active {
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.18), rgba(122, 44, 255, 0.22));
  color: #3c1147;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 26px 50px -28px rgba(203, 11, 109, 0.45);
  transform: translateX(-2px);
}

.nav-dropdown__chip.is-active i {
  opacity: 1;
  color: inherit;
}

.nav-dropdown__content {
  display: block;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 32px 70px -42px rgba(15, 15, 35, 0.45);
}

.nav-dropdown__column-set {
  display: none;
  gap: 1.6rem;
  animation: navDropdownFade 0.28s ease;
}

.nav-dropdown__column-set.is-active {
  display: grid;
}

.nav-dropdown__column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 15, 138, 0.12);
}

.nav-dropdown__column-head h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.nav-dropdown__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 15, 138, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-dropdown__see-all:hover,
.nav-dropdown__see-all:focus-visible {
  outline: none;
  background: rgba(255, 15, 138, 0.18);
  transform: translateX(-3px);
  box-shadow: 0 16px 32px -26px rgba(255, 15, 138, 0.4);
}

.nav-dropdown__see-all i {
  font-size: 0.75rem;
}

.nav-dropdown__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.nav-dropdown__group {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 250, 0.94));
  border-radius: 22px;
  padding: 1.1rem 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 54px -34px rgba(203, 11, 109, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
  height: var(--menu-card-height);
  min-height: 240px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}

.nav-dropdown__group:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 15, 138, 0.22);
  box-shadow: 0 30px 65px -36px rgba(203, 11, 109, 0.45);
}

.nav-dropdown__group h4 {
  margin: 0;
}

.nav-dropdown__group-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown__group-title span {
  flex: 1 1 auto;
}

.nav-dropdown__group-title i {
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown__group-title:hover,
.nav-dropdown__group-title:focus-visible {
  outline: none;
  color: var(--primary);
}

.nav-dropdown__group-title:hover i,
.nav-dropdown__group-title:focus-visible i {
  color: var(--primary);
  transform: translateX(-4px);
}


.nav-dropdown__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-inline-end: 2px;
  width: 100%;
  scrollbar-width: thin;
}

.nav-dropdown__items::-webkit-scrollbar {
  width: 6px;
}

.nav-dropdown__items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

.nav-dropdown__items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: #45455a;
  line-height: 1.7;
}

.nav-dropdown__items li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.65), rgba(122, 44, 255, 0.65));
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

.nav-dropdown__items li span {
  display: block;
  flex: 1 1 auto;
  line-height: 1.6;
}

.nav-dropdown__empty {
  margin: 0;
  padding: 1.4rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 22px;
  background: rgba(255, 15, 138, 0.12);
  border: 1px dashed rgba(255, 15, 138, 0.28);
  color: var(--primary-dark);
}

@keyframes navDropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .nav-dropdown__panel {
    width: min(900px, calc(100vw - 2rem));
    grid-template-columns: minmax(210px, 240px) minmax(320px, 1fr);
    gap: 1.5rem;
  }

  .nav-dropdown__columns {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 992px) {
  :root {
    --menu-card-height: 260px;
  }
}

@media (max-width: 960px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links__items {
    --nav-pill-padding-x: 1.2rem;
  }

  .nav-dropdown__panel {
    position: static;
    inset: auto;
    margin-top: 0.75rem;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 15, 138, 0.12);
    grid-template-columns: 1fr;
    padding: 1.4rem 1.2rem;
    max-height: none;
    overflow: visible;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    display: grid;
  }

  .nav-dropdown__head,
  .nav-dropdown__content {
    box-shadow: none;
  }

  .nav-dropdown__head {
    position: relative;
    padding: 1.1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --menu-card-height: auto;
  }

  .nav-dropdown__group {
    height: auto;
    min-height: 0;
  }

  .nav-dropdown__items {
    overflow: visible;
    padding-inline-end: 0;
  }
}

@media (max-width: 720px) {
  .nav-links__items {
    --nav-pill-font-size: 0.94rem;
    --nav-pill-padding-x: 1.1rem;
  }

  .nav-dropdown__toggle i:first-child {
    min-width: 32px;
    min-height: 32px;
  }

  .nav-dropdown__chip {
    font-size: 0.92rem;
    padding: 0.75rem 0.95rem;
  }

  .nav-dropdown__content {
    padding: 1.2rem 1.15rem 1.3rem;
  }

  .nav-dropdown__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-dropdown__toggle {
    gap: 0.5rem;
  }

  .nav-links__items {
    --nav-pill-padding-x: 1rem;
    --nav-pill-font-size: 0.9rem;
  }

  .nav-dropdown__chip {
    padding: 0.7rem 0.85rem;
  }

  .nav-dropdown__see-all {
    font-size: 0.82rem;
  }
}
/* Categories grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.category-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(11, 16, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.category-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.category-card a {
  color: #50505f;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.category-card a:hover {
  color: var(--primary);
}

.more-link {
  margin-top: 2rem;
  text-align: center;
}

.more-link .btn-secondary {
  font-weight: 600;
}

/* Shop page */
.shop-page {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 2rem;
  align-items: start;
}

.shop-sidebar {
  background: #fff;
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(11, 16, 31, 0.08);
  display: grid;
  gap: 1.6rem;
}

.shop-filters {
  display: grid;
  gap: 1rem;
}

.shop-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.shop-filters input,
.shop-filters select {
  font-family: inherit;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #faf9ff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-filters input:focus,
.shop-filters select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 15, 138, 0.15);
  background: #fff;
}

.shop-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.shop-categories a {
  color: #4b4b59;
  font-size: 0.92rem;
}

.shop-content {
  display: grid;
  gap: 1.4rem;
}

.shop-content h1 {
  margin: 0;
}

.product-grid.product-grid--shop {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (min-width: 1200px) {
  .container.container--wide {
    width: min(1600px, 94vw);
  }

  .product-grid.product-grid--featured {
    --featured-grid-gap: clamp(1.5rem, 1.5vw, 1.85rem);
    --featured-grid-columns: 5;
    --featured-column-width: calc(
      (100% - (var(--featured-grid-columns) - 1) * var(--featured-grid-gap)) /
        var(--featured-grid-columns)
    );
    grid-template-columns: repeat(var(--featured-grid-columns), minmax(var(--featured-column-width), 1fr));
    justify-items: stretch;
  }

  .product-grid.product-grid--featured .product-card {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .product-grid.product-grid--shop {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.shop-empty {
  background: rgba(255, 15, 138, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
  color: var(--primary-dark);
  text-align: center;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-column ul a {
  color: #525262;
  transition: color 0.2s ease;
}

.footer-column ul a:hover {
  color: var(--primary);
}

.footer-column ul span {
  color: var(--muted);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: min(340px, 88vw);
    max-width: 92vw;
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(254, 242, 251, 0.95) 100%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: -22px 0 65px rgba(15, 14, 30, 0.28);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 120;
    pointer-events: none;
    will-change: transform;
    backdrop-filter: blur(24px);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.6);
  }

  .nav-links.is-open {
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-links__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: calc(1.4rem + env(safe-area-inset-top, 0px)) 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 238, 249, 0.92) 85%, rgba(255, 238, 249, 0));
    z-index: 2;
  }

  .nav-links__title {
    font-weight: 700;
    font-size: 1.05rem;
  }

  .nav-links__items {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    flex: 1 1 auto;
    padding: 0 2rem 0.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links__footer {
    display: grid;
    gap: 1rem;
    margin-top: auto;
    padding: 1.5rem 2rem calc(2rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(180deg, rgba(255, 245, 252, 0.92) 0%, rgba(255, 239, 249, 0.85) 60%, rgba(255, 239, 249, 0));
  }

  .stats-surface {
    grid-template-columns: 1fr;
    padding: 2.4rem 2rem;
    text-align: center;
  }

  .stats-copy__cta {
    margin-inline: auto;
  }

  .support-card {
    padding: 2.4rem 2rem;
    grid-template-columns: 1fr;
  }

  .support-meta {
    grid-template-columns: 1fr;
  }

  .support-meta__item {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .nav-links {
    right: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    border-inline-start: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(100%);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 240, 250, 0.92) 55%,
      rgba(255, 233, 247, 0.88) 100%
    );
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links__header {
    padding: calc(1.2rem + env(safe-area-inset-top, 0px)) clamp(1.2rem, 6vw, 1.8rem) 1rem;
  }

  .nav-links__items {
    padding: 0 clamp(1.2rem, 6vw, 1.8rem) 0.75rem;
    gap: 0.75rem;
  }

  .nav-links__footer {
    padding: 1.25rem clamp(1.2rem, 6vw, 1.8rem) calc(1.6rem + env(safe-area-inset-bottom, 0px));
  }

  .nav-link,
  .nav-dropdown__toggle {
    border-radius: 18px;
  }

  .nav-dropdown__panel {
    padding: 1.1rem clamp(1rem, 5vw, 1.5rem);
    margin-inline: calc(-1 * clamp(1rem, 5vw, 1.5rem));
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 15, 138, 0.16);
    box-shadow: none;
  }
}

@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.admin-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-bottom: 0;
}

.admin-card--form h2 {
  margin: 0 0 1rem;
}

.admin-card--form {
  backdrop-filter: blur(6px);
}

.admin-card--form::before {
  inset: -60% -10% 55% auto;
  opacity: 0.7;
}

.admin-card--form::after {
  inset: auto -30% -55% 10%;
  opacity: 0.6;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.admin-form--full {
  grid-column: 1 / -1;
}

.admin-form__section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 0.5rem;
}

.admin-form__section-title i {
  color: var(--primary);
}

.admin-products__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 234, 255, 0.9));
  border: 1px solid rgba(149, 84, 255, 0.12);
  box-shadow: 0 22px 48px -32px rgba(22, 18, 52, 0.4);
}

.admin-products__description {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(70, 64, 110, 0.75);
  max-width: 520px;
}

.admin-products__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.admin-search {
  width: clamp(220px, 32vw, 320px);
  border: 1px solid rgba(149, 84, 255, 0.22);
  border-radius: 18px;
  padding: 0.75rem 1.1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 30px -20px rgba(64, 48, 110, 0.4);
}

.admin-search::placeholder {
  color: rgba(74, 64, 121, 0.5);
}

.admin-products__filters select {
  border-radius: 18px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(149, 84, 255, 0.18);
  background: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  color: rgba(64, 52, 112, 0.85);
  box-shadow: 0 12px 28px -22px rgba(64, 48, 110, 0.45);
}

.admin-products__filters select:focus-visible,
.admin-search:focus-visible {
  outline: none;
  border-color: rgba(255, 15, 138, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 15, 138, 0.15), 0 18px 36px -28px rgba(64, 48, 110, 0.5);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.2s ease;
}

.btn-icon:hover {
  transform: translateY(-2px);
}

.admin-products__overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.admin-kpi {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(238, 234, 255, 0.9));
  border: 1px solid rgba(149, 84, 255, 0.14);
  box-shadow: 0 24px 54px -34px rgba(18, 16, 44, 0.45);
  overflow: hidden;
}

.admin-kpi::after {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  height: 180px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.12), transparent 70%);
  opacity: 0.9;
}

.admin-kpi > * {
  position: relative;
  z-index: 1;
}

.admin-kpi__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 16px 36px -24px rgba(43, 28, 85, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.admin-kpi__icon--accent {
  background: linear-gradient(135deg, #ff5e7d, #ffa260);
}

.admin-kpi__icon--success {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}

.admin-kpi__icon--muted {
  background: linear-gradient(135deg, #c7cadc, #9ba0b8);
}

.admin-kpi__icon--primary {
  background: linear-gradient(135deg, var(--primary), #6a5cff);
}

.admin-kpi__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-kpi__label {
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-kpi__value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.admin-product-groups {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.admin-group {
  position: relative;
  border: 1px solid rgba(149, 84, 255, 0.18);
  border-radius: 28px;
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 52px -34px rgba(30, 16, 70, 0.38);
  overflow: hidden;
}

.admin-group::before {
  content: '';
  position: absolute;
  inset: -50% auto auto -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(122, 44, 255, 0.16), transparent 70%);
  opacity: 0.9;
}

.admin-group::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(255, 15, 138, 0.12), transparent 70%);
  opacity: 0.8;
}

.admin-group > * {
  position: relative;
  z-index: 1;
}

.admin-group > summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(149, 84, 255, 0.12);
}

.admin-group[open] > summary {
  margin-bottom: 1.2rem;
}

.admin-group__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #2e275b;
}

.admin-group__title i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.16), rgba(102, 84, 255, 0.22));
  color: var(--primary-dark);
  box-shadow: 0 14px 32px -24px rgba(40, 28, 90, 0.45);
}

.admin-group__count {
  min-width: 42px;
  height: 36px;
  border-radius: 999px;
  background: rgba(123, 123, 134, 0.12);
  color: rgba(76, 68, 118, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0 1rem;
  font-variant-numeric: tabular-nums;
}

.admin-group__list {
  display: grid;
  gap: 1.4rem;
}

.admin-product-card {
  position: relative;
  border: 1px solid rgba(149, 84, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 242, 255, 0.95) 100%);
  padding: 1.5rem 1.7rem;
  box-shadow: 0 24px 48px -32px rgba(23, 18, 60, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -32px rgba(23, 18, 60, 0.4);
  border-color: rgba(149, 84, 255, 0.3);
}

.admin-product-card > summary {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.2rem;
  cursor: pointer;
}

.admin-product-card__primary {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.admin-product-card__primary strong {
  color: #2b2755;
}

.admin-product-card__media {
  flex-shrink: 0;
}

.admin-product-card__thumb {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(15, 21, 38, 0.18);
  border: 1px solid rgba(149, 84, 255, 0.2);
}

.admin-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.admin-product-card__info strong {
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-product-card__category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-product-card__category i {
  color: var(--primary);
  font-size: 0.85rem;
}

.admin-product-card__separator {
  color: rgba(123, 123, 134, 0.6);
}

.admin-product-card__excerpt {
  margin: 0;
  font-size: 0.85rem;
  color: #4c4d5f;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 440px;
}

.admin-product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  min-width: 140px;
}

.admin-product-card__meta .badge {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.admin-product-card__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.admin-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  align-items: flex-end;
}

.admin-product-card__price-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.admin-view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--primary);
  background: rgba(255, 15, 138, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.admin-view-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 15, 138, 0.18);
}

.admin-form--inline {
  margin-top: 1.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px dashed rgba(149, 84, 255, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.admin-form--inline .admin-form-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-inline-delete {
  justify-content: flex-end;
  gap: 0.6rem;
}

.admin-inline-delete .btn-danger {
  border-radius: 999px;
  padding-inline: 1.1rem;
}

@media (max-width: 720px) {
  .admin-topbar__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .admin-topbar__greeting,
  .admin-topbar__status,
  .admin-topbar__actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .admin-topbar__actions {
    justify-content: flex-start;
  }

  .admin-products__filters {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-search {
    width: 100%;
  }

  .admin-products__overview {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .admin-kpi {
    padding: 0.9rem 1rem;
  }

  .admin-product-card > summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .admin-product-card__meta {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .admin-product-card__price {
    align-items: flex-start;
  }

  .admin-card--form,
  .admin-card--products {
    padding: 1.6rem;
  }
}
/* Layout refresh */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

.brand-symbol {
  width: 60px;
  height: 60px;
  padding: 6px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 14, 36, 0.1);
  object-fit: contain;
  box-shadow: var(--shadow);
  display: block;
}


.nav-category-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-category-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(245, 246, 254, 0.85);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-category-bar__item i {
  color: var(--primary);
  font-size: 0.9rem;
}

.nav-category-bar__item:hover,
.nav-category-bar__item:focus {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 32px -24px rgba(28, 17, 42, 0.4);
}


/* Admin dashboard polish */
.admin-card--products {
  padding: 2.4rem;
  border-radius: 30px;
  background: linear-gradient(140deg, #ffffff 0%, #f7f5ff 100%);
  box-shadow: 0 28px 70px -30px rgba(18, 17, 43, 0.3);
}

.admin-products__header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 234, 255, 0.9));
  border-radius: 24px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 22px 48px -32px rgba(22, 18, 52, 0.4);
}

.admin-products__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

summary::-webkit-details-marker {
  display: none;
}

.admin-group > summary {
  list-style: none; /* Hide the default marker in Firefox */
}

.admin-group > summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.admin-group[open] > summary::after {
  transform: rotate(180deg);
  color: var(--primary);
}

.admin-product-card > summary {
  list-style: none; /* Hide the default marker in Firefox */
}

.admin-product-card > summary::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--muted);
  margin-inline-start: 0.5rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.admin-product-card[open] > summary::after {
  transform: rotate(180deg);
  color: var(--primary);
}

@media (max-width: 960px) {
  .brand-symbol {
    width: 52px;
    height: 52px;
  }

  .nav-links__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .nav-links__items {
    justify-content: flex-end;
  }

  .nav-category-bar {
    justify-content: flex-start;
  }

  .admin-card--products {
    padding: 1.8rem;
  }

  .admin-products__header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-topbar {
    padding: 1.1rem 1.4rem;
    gap: 1rem;
  }

  .admin-hero {
    grid-template-columns: 1fr;
    padding: 2.4rem;
  }

  .admin-hero__highlights {
    grid-template-columns: 1fr;
  }

  .admin-hero__card {
    order: -1;
    margin-bottom: 1.8rem;
  }
}

@media (max-width: 720px) {
  .admin-product-card > summary {
    align-items: stretch;
  }
}
.contact-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 5vw, 2rem);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 30, 0.72);
  backdrop-filter: blur(6px);
}

.contact-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 231, 255, 0.96));
  border-radius: 34px;
  box-shadow: 0 38px 90px -32px rgba(26, 20, 54, 0.55);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.29, 1.27), opacity 0.35s ease;
}

.contact-modal.is-open .contact-modal__dialog {
  opacity: 1;
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 1.2rem;
  inset-inline-end: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 18px 40px -28px rgba(14, 10, 30, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 52px -28px rgba(24, 18, 52, 0.7);
  outline: none;
}

.contact-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 2.4rem);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-modal__map {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 72px -40px rgba(32, 24, 68, 0.5);
  min-height: 320px;
  background: radial-gradient(circle at 20% 20%, rgba(134, 75, 255, 0.35), transparent 58%);
}

.contact-modal__map-canvas {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: inherit;
  background-color: rgba(32, 24, 68, 0.1);
  direction: ltr;
}

.contact-modal__map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
  border-radius: inherit;
}

.contact-modal__map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(54, 38, 105, 0.92), rgba(25, 16, 57, 0.88));
  color: #f7f2ff;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-modal__map-fallback i {
  font-size: 2.6rem;
}

.contact-modal__map-fallback p {
  margin: 0;
}

.contact-modal__map-fallback.is-hidden {
  display: none;
}

.contact-modal__map-link {
  position: absolute;
  inset-inline-end: 1rem;
  inset-block-end: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(134, 75, 255, 0.92), rgba(255, 100, 168, 0.92));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 22px 48px -28px rgba(94, 58, 255, 0.7);
  z-index: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-modal__map-link:hover,
.contact-modal__map-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px -30px rgba(94, 58, 255, 0.8);
  outline: none;
}

.contact-modal__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
  justify-content: center;
}

.contact-modal__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-modal__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--primary-dark);
}

.contact-modal__description {
  margin: 0;
  color: rgba(23, 23, 28, 0.78);
  line-height: 1.8;
}

.contact-modal__phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-modal__phones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-modal__phone {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(134, 75, 255, 0.08);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 20px 50px -36px rgba(16, 10, 38, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-modal__phone i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(134, 75, 255, 0.15), rgba(255, 100, 168, 0.18));
  color: var(--primary);
  font-size: 1.05rem;
}

.contact-modal__phone-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(23, 23, 28, 0.6);
}

.contact-modal__phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: plaintext;
  white-space: nowrap;
}

.contact-modal__phone:hover,
.contact-modal__phone:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -34px rgba(24, 18, 52, 0.75);
  outline: none;
}

.contact-modal__address {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: rgba(245, 245, 255, 0.72);
  color: rgba(23, 23, 28, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-modal__address i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.contact-modal__address-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(23, 23, 28, 0.6);
}

.contact-modal__address-text {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.contact-modal__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0;
  margin: 0 0 0.6rem;
  list-style: none;
  align-self: center;
}

.contact-modal__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.55rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-modal__social-link:hover,
.contact-modal__social-link:focus-visible {
  transform: translateY(-3px);
  color: var(--primary);
  outline: none;
}

body.has-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .contact-modal__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-modal__map {
    order: -1;
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .contact-modal__dialog {
    border-radius: 28px;
  }

  .contact-modal__grid {
    padding: 1.5rem;
  }

  .contact-modal__close {
    width: 38px;
    height: 38px;
    top: 0.9rem;
    inset-inline-end: 0.9rem;
  }

  .contact-modal__map-link {
    inset-inline-end: 0.75rem;
    inset-block-end: 0.75rem;
  }

  .contact-modal__social {
    gap: 0.75rem;
  }
}

/* Contact card logo */
.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

/* Section title icons */
.section-title--with-icon::before {
  display: none;
}

.section-title__badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(130deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.section-title__badge i {
  font-size: 1.05rem;
}
.admin-products__title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 1.4rem;
}

.admin-products__title-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(92, 67, 255, 0.18), rgba(255, 15, 138, 0.24));
  color: var(--primary-dark);
  box-shadow: 0 16px 36px -24px rgba(40, 28, 85, 0.45);
}

.admin-products__title-icon i {
  font-size: 1.2rem;
}

.admin-products__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* About page */
.about-page {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 247, 251, 1) 100%);
}

.about-page main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-block: 4rem 6rem;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 233, 255, 0.94));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(255, 15, 138, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(122, 44, 255, 0.14), transparent 50%);
  mix-blend-mode: screen;
}

.about-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-hero__eyebrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: inline-block;
}

.about-hero__content h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #120f1c;
}

.about-hero__description {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 48ch;
}

.about-hero__description p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(23, 23, 28, 0.78);
}

.about-hero__visual {
  position: relative;
  z-index: 1;
}

.about-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.about-hero__image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 55px -30px rgba(40, 28, 85, 0.45);
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero__image--1 {
  transform: translateY(-24px);
}

.about-hero__image--2 {
  transform: translateY(24px);
}

.about-hero__image--3 {
  grid-column: span 2;
  max-width: 380px;
}

.about-hero__chip {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px -28px rgba(122, 44, 255, 0.5);
}

.about-hero__chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__chip--1 {
  top: -32px;
  left: 24px;
}

.about-hero__chip--2 {
  bottom: -32px;
  right: 32px;
}

.about-hero__placeholder {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  border: 2px dashed rgba(122, 44, 255, 0.35);
  display: grid;
  place-items: center;
  color: rgba(122, 44, 255, 0.6);
  font-size: 2rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 60ch;
}

.section-heading h2 {
  margin: 0;
  font-size: 2rem;
  color: #120f1c;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
  align-items: center;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-card {
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px -48px rgba(20, 15, 35, 0.35);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 15, 138, 0.12), rgba(122, 44, 255, 0.18));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.6rem;
}

.about-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-card__index {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(23, 23, 28, 0.36);
  letter-spacing: 0.25em;
}

.about-card__body h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #1d1831;
}

.about-card__body p {
  margin: 0;
  color: rgba(23, 23, 28, 0.7);
  line-height: 1.75;
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.about-gallery__item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px -40px rgba(20, 15, 35, 0.4);
  display: flex;
  flex-direction: column;
}

.about-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.about-gallery__item figcaption {
  padding: 1rem 1.4rem 1.4rem;
  font-size: 0.95rem;
  color: rgba(23, 23, 28, 0.72);
}

.about-gallery__empty {
  grid-column: 1 / -1;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(122, 44, 255, 0.2);
  text-align: center;
  color: rgba(122, 44, 255, 0.7);
  display: grid;
  gap: 1rem;
  place-items: center;
}

.about-gallery__empty i {
  font-size: 2.4rem;
}

.about-contact {
  display: flex;
  justify-content: center;
}

.about-contact__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  width: 100%;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(122, 44, 255, 0.12), rgba(255, 15, 138, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 80px -50px rgba(20, 15, 35, 0.38);
  align-items: center;
}

.about-contact__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-contact__eyebrow {
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-contact__content h2 {
  margin: 0;
  font-size: 2rem;
  color: #1d1831;
}

.about-contact__content p {
  margin: 0;
  color: rgba(23, 23, 28, 0.72);
  line-height: 1.8;
}

.about-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 3rem;
  }

  .about-hero__grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .about-hero__chip {
    display: none;
  }

  .about-contact__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-contact__actions {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .about-page main {
    gap: 4rem;
  }

  .about-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 2.5rem 2rem;
  }

  .about-hero__content h1 {
    font-size: 2.1rem;
  }

  .about-hero__description p {
    font-size: 1rem;
  }

  .about-cards__grid {
    grid-template-columns: 1fr;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .about-contact__card {
    padding: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-page main {
    padding-block: 3rem 5rem;
  }

  .about-gallery__item img {
    height: 200px;
  }
}

/* Unified Image Frame template for all product/related images */
.image-frame {
  width: 100%;
  aspect-ratio: 960 / 697;
  background: #f6f6f6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.image-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.92);
  transform-origin: center center;
}
.image-frame:hover img {
  transform: scale(0.96);
}
.product-card:hover .image-frame img,
.related-card:hover .image-frame img,
.product-image:hover .image-frame img {
  transform: scale(0.96);
}
.image-frame img.img--fallback {
  opacity: 0.9;
  filter: saturate(0.6);
}

.download-page main {
  padding-bottom: clamp(4rem, 12vw, 6rem);
}

.download-hero {
  margin-top: clamp(3rem, 10vw, 5rem);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.download-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 15, 138, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.download-hero__content h1 {
  margin: 1rem 0;
  font-size: clamp(2rem, 6vw, 2.6rem);
  color: var(--text);
}

.download-hero__description {
  color: var(--muted);
  display: grid;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.download-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-hero__icon {
  width: clamp(140px, 22vw, 220px);
  height: clamp(140px, 22vw, 220px);
  border-radius: 50%;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(3rem, 9vw, 4.5rem);
  box-shadow: var(--shadow);
}

.download-section {
  margin-top: clamp(3rem, 8vw, 5rem);
}

.download-accordion {
  display: grid;
  gap: 1.5rem;
}

.download-item {
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 28, 0.06);
}

.download-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem;
  cursor: pointer;
  position: relative;
}

.download-item__summary::-webkit-details-marker {
  display: none;
}

.download-item__summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--muted);
  margin-right: auto;
  transition: transform 0.3s ease;
}

.download-item[open] .download-item__summary::after {
  transform: rotate(180deg);
  color: var(--primary);
}

.download-item__summary-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(122, 44, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--secondary);
  font-size: 1.4rem;
}

.download-item__summary-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.3rem;
}

.download-item__summary-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.download-item__content {
  padding: 0 1.6rem 1.6rem;
  display: grid;
  gap: 1.25rem;
}

.download-item__description p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.download-item__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.download-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.download-item__video video,
.download-item__iframe-wrapper {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.download-item__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.download-item__iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.download-empty {
  margin: 3rem auto 0;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.download-empty i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .download-hero {
    padding: 2rem;
  }

  .download-item__summary {
    flex-wrap: wrap;
    padding: 1.25rem;
  }

  .download-item__content {
    padding: 0 1.25rem 1.25rem;
  }
}
