:root {
  --bg: #060914;
  --bg-2: #0b1020;
  --card: rgba(15, 23, 42, 0.76);
  --card-2: rgba(2, 6, 23, 0.48);
  --line: rgba(148, 163, 184, 0.18);
  --line-2: rgba(34, 211, 238, 0.34);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --green: #22c55e;
  --orange: #f97316;
  --gold: #f59e0b;
  --red: #ef4444;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.hidden {
  display: none !important;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.glow {
  position: fixed;
  z-index: -3;
  width: 370px;
  height: 370px;
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.27;
  pointer-events: none;
}

.glow-1 {
  top: 10%;
  left: -120px;
  background: var(--cyan);
}

.glow-2 {
  right: -130px;
  bottom: 8%;
  background: var(--purple);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(6, 9, 20, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.nav-container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gradient);
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 46px rgba(59, 130, 246, 0.3);
}

.brand-avatar {
  overflow: hidden;
  padding: 2px;
  background: var(--gradient);
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.1;
}

.verified-badge {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.35));
}

.verified-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.nav-menu a {
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: var(--cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  position: relative;
  z-index: 100;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.72));
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: 0.25s ease;
}

.hamburger:hover,
.hamburger.is-active {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 18px 48px rgba(34, 211, 238, 0.12);
}

.hamburger span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.28s ease, top 0.28s ease, opacity 0.22s ease, background 0.28s ease;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
  background: var(--cyan);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
  background: var(--cyan);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 32%),
    rgba(1, 4, 12, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 86px;
  right: 16px;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(34, 211, 238, 0.2);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 45%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
  border-radius: 28px;
  padding: 16px;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.mobile-menu .brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.mobile-menu .brand strong {
  font-size: 0.9rem;
}

.mobile-menu .brand small {
  font-size: 0.64rem;
}

.mobile-menu .verified-badge {
  width: 14px;
  height: 14px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  transition: 0.25s ease;
}

.mobile-close:hover {
  border-color: rgba(34, 211, 238, 0.5);
  color: var(--cyan);
}

.mobile-links {
  display: grid;
  gap: 10px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--muted-2);
  font-weight: 850;
  transition: 0.25s ease;
}

.mobile-links a span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  font-size: 0.92rem;
}

.mobile-links a:hover,
.mobile-links a.active {
  color: white;
  border-color: rgba(34, 211, 238, 0.38);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(139, 92, 246, 0.13));
  transform: translateX(-2px);
}

.mobile-links .mobile-cta {
  color: white;
  border-color: rgba(139, 92, 246, 0.36);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(139, 92, 246, 0.22));
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

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

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.btn-primary {
  color: white;
  background: var(--gradient);
  box-shadow: 0 18px 46px rgba(59, 130, 246, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 64px rgba(139, 92, 246, 0.34);
}

.btn-outline {
  color: var(--text);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(99, 102, 241, 0.44);
}

.btn-outline:hover {
  border-color: rgba(34, 211, 238, 0.58);
  box-shadow: 0 14px 40px rgba(34, 211, 238, 0.14);
}

.btn-ghost {
  color: var(--muted-2);
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.btn:disabled,
.btn-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.55);
  transform: none !important;
  box-shadow: none !important;
}

.btn-panel {
  color: white;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.22);
}

.btn-membership {
  color: white;
  background: linear-gradient(135deg, #fb7185, #ec4899, #be123c);
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.22);
}

.btn-bot {
  color: white;
  background: linear-gradient(135deg, #34d399, #16a34a);
  box-shadow: 0 18px 44px rgba(34, 197, 94, 0.22);
}

.btn-script {
  color: white;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 18px 44px rgba(139, 92, 246, 0.25);
}

.btn-other {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.24);
}

.btn-panel:hover,
.btn-membership:hover,
.btn-bot:hover,
.btn-script:hover,
.btn-other:hover {
  filter: brightness(1.08);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.badge,
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.08);
  color: #a5f3fc;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.badge span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.hero-copy h1 {
  margin-top: 20px;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.hero-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff, #a5f3fc, #ddd6fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin-top: 22px;
  max-width: 650px;
  color: var(--muted-2);
  font-size: 1.08rem;
}

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

.hero-actions.center {
  justify-content: center;
}

.snapshot-card,
.intro-card,
.feature-card,
.step-card,
.contact-card,
.cta-card,
.product-card,
.category-head,
.admin-login-card,
.admin-topbar,
.summary-card,
.admin-panel {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.snapshot-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.66)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(139, 92, 246, 0.13));
  box-shadow: var(--shadow);
}

.snapshot-card::before,
.product-card::before,
.contact-card::before,
.cta-card::before,
.intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 38%);
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}

.snapshot-card:hover::before,
.product-card:hover::before,
.contact-card:hover::before,
.cta-card:hover::before,
.intro-card:hover::before {
  opacity: 1;
}

.snapshot-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.snapshot-top small {
  color: var(--muted);
}

.snapshot-top h3 {
  font-size: 1.55rem;
}

.status-pill {
  height: fit-content;
  padding: 7px 12px;
  border-radius: 99px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
  font-weight: 850;
  font-size: 0.78rem;
}

.stats-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-2);
}

.stat-card span,
.summary-card span,
.contact-list span,
.footer-contact span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.stat-card strong,
.summary-card strong {
  display: block;
  margin-top: 7px;
  font-size: 1.55rem;
}

.terminal-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.68);
  color: var(--muted-2);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
}

.dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.dots i {
  width: 10px;
  height: 10px;
  background: var(--muted);
  border-radius: 99px;
}

.terminal-card p + p {
  margin-top: 8px;
}

.terminal-card span {
  color: var(--cyan);
}

.muted-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-heading,
.page-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.page-heading h1,
.intro-card h2,
.contact-card h2,
.cta-card h2,
.auth-heading h1,
.admin-topbar h1 {
  margin-top: 15px;
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.page-heading p,
.intro-card p,
.contact-card p,
.cta-card p,
.auth-heading p,
.admin-topbar p {
  margin-top: 13px;
  color: var(--muted-2);
}

.intro-section {
  padding-top: 20px;
}

.intro-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.intro-list {
  display: grid;
  gap: 14px;
}

.intro-list div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card-2);
}

.intro-list strong {
  display: block;
  margin-bottom: 4px;
}

.intro-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.step-card {
  padding: 22px;
  transition: 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
}

.feature-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(34, 211, 238, 0.1);
  font-size: 1.35rem;
}

.feature-card h3,
.step-card h3 {
  font-size: 1.12rem;
}

.feature-card p,
.step-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.94rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step-card b {
  display: inline-flex;
  color: var(--cyan);
  margin-bottom: 16px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-list div {
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--card-2);
  border-radius: 18px;
}

.contact-list strong,
.footer-contact strong {
  display: block;
  margin-top: 4px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 42px 24px;
  text-align: center;
}

.product-hero {
  padding-top: 86px;
}

.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 260px;
  min-height: 54px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}

.search-box span {
  color: var(--cyan);
  font-size: 1.2rem;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.66);
  color: var(--muted-2);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 850;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(139, 92, 246, 0.18));
}

.category-sections {
  display: grid;
  gap: 58px;
}

.product-category-section {
  display: grid;
  gap: 20px;
}

.category-head {
  padding: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  background: rgba(15, 23, 42, 0.52);
}

.category-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-head h2 {
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.category-head p {
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted-2);
}

.category-count {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: var(--card-2);
  color: var(--muted-2);
  border-radius: 99px;
  font-size: 0.86rem;
  font-weight: 850;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 428px;
  padding: 22px;
  transition: 0.25s ease;
}

.product-card.soldout {
  opacity: 0.62;
}

.product-card.soldout:hover {
  transform: none;
}

.product-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-badge,
.product-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 99px;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 950;
}

.product-status.available {
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.1);
  color: #bbf7d0;
}

.product-status.soldout {
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
}

.cat-panel {
  border: 1px solid rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.11);
  color: #a5f3fc;
}

.cat-membership {
  border: 1px solid rgba(236, 72, 153, 0.32);
  background: rgba(236, 72, 153, 0.12);
  color: #fbcfe8;
}

.cat-bot {
  border: 1px solid rgba(34, 197, 94, 0.32);
  background: rgba(34, 197, 94, 0.11);
  color: #bbf7d0;
}

.cat-script {
  border: 1px solid rgba(139, 92, 246, 0.32);
  background: rgba(139, 92, 246, 0.12);
  color: #ddd6fe;
}

.cat-other {
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.12);
  color: #fed7aa;
}

.product-card h3 {
  position: relative;
  margin-top: 18px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.price {
  position: relative;
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #ffffff, #a5f3fc, #ddd6fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-desc {
  position: relative;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.benefit-list {
  position: relative;
  margin: 18px 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 9px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.benefit-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 950;
}

.product-meta {
  position: relative;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card .btn {
  position: relative;
  width: 100%;
  margin-top: 16px;
}

.empty-state {
  text-align: center;
  padding: 48px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted-2);
}

.footer {
  padding: 42px 0 24px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 28px;
}

.footer p {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted-2);
}

.footer-links a:hover {
  color: var(--cyan);
}

.copyright {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-entry-nav {
  position: fixed;
  width: 100%;
}

.admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 108px 16px 32px;
}

.admin-login-card {
  width: min(100%, 540px);
  padding: 30px;
}

.admin-login-brand {
  margin-bottom: 28px;
}

.auth-heading {
  margin-bottom: 18px;
}

.security-note {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.08);
  color: #fde68a;
  border-radius: 18px;
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
  transition: 0.25s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.form-error {
  min-height: 22px;
  color: #fecaca;
  font-weight: 850;
}

.back-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--muted-2);
  font-weight: 850;
}

.back-link:hover {
  color: var(--cyan);
}

.admin-dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(18px);
}

.admin-nav {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.admin-nav a,
.admin-nav button {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.58);
  color: var(--muted-2);
  border-radius: 16px;
  text-align: left;
  font-weight: 850;
  transition: 0.25s ease;
}

.admin-nav a:hover,
.admin-nav button:hover {
  color: var(--text);
  border-color: var(--line-2);
}

.admin-content {
  width: min(100%, 1320px);
  padding: 28px;
  display: grid;
  gap: 22px;
}

.admin-topbar {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.admin-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.summary-card {
  padding: 20px;
}

.summary-card strong {
  font-size: 2rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  align-items: start;
}

.admin-panel {
  padding: 22px;
}

.panel-title {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-title h2 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.panel-title p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted-2);
  font-size: 0.84rem;
}

td {
  color: var(--text);
  font-size: 0.9rem;
}

.table-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 950;
}

.table-status.available {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.table-status.soldout {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.action-btn {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  color: var(--text);
  border-radius: 12px;
  font-weight: 850;
  transition: 0.25s ease;
}

.action-btn:hover {
  border-color: var(--line-2);
}

.action-btn.delete {
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.24);
}

.action-btn.delete:hover {
  background: rgba(239, 68, 68, 0.12);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  min-width: 240px;
  max-width: calc(100vw - 36px);
  padding: 14px 16px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 0.75s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.28s;
}

.delay-4 {
  animation-delay: 0.36s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .admin-dashboard {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }

  .admin-nav {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .admin-nav a,
  .admin-nav button {
    width: auto;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .intro-card,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .category-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .table-wrap {
    overflow: visible;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 14px;
  }

  tr {
    border: 1px solid var(--line);
    background: var(--card-2);
    border-radius: 18px;
    padding: 12px;
  }

  td {
    border-bottom: 0;
    padding: 10px 4px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }

  td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 850;
  }

  .table-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .nav-container {
    height: 72px;
  }

  .mobile-menu {
    top: 80px;
    right: 12px;
    width: calc(100vw - 24px);
    border-radius: 24px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .hero-actions,
  .contact-actions,
  .admin-top-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .admin-top-actions .btn {
    width: 100%;
  }

  .snapshot-card,
  .intro-card,
  .contact-card,
  .cta-card,
  .admin-login-card,
  .admin-topbar,
  .admin-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .stats-grid,
  .feature-grid,
  .steps-grid,
  .products-grid,
  .summary-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    display: grid;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .product-card {
    min-height: auto;
  }

  .admin-content,
  .admin-sidebar {
    padding: 16px;
  }

  .panel-title {
    flex-direction: column;
  }
}
