:root {
  --cl-accent: #f4f4f5;
  --cl-accent-rgb: 244, 244, 245;
  --cl-background-primary: #050505;
  --cl-background-secondary: #111111;
  --cl-border: #2a2a2a;
  --font-display: "Outfit", "Figtree", sans-serif;
  --font-body: "Figtree", sans-serif;
  --product-card-image-aspect-ratio: 16/9;
  --product-image-fit: cover;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background:
    radial-gradient(900px 420px at 50% -6%, rgba(255, 255, 255, 0.05), transparent 58%),
    #050505;
  color: #f2f2f2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.section-title,
.lyra-hero-title,
.lyra-review-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Shared 3D button look */
/* Soft gradient fill — same idea as the ImGui launch buttons */
.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(180deg, #f4f4f5 0%, #d4d4d8 48%, #a1a1aa 100%);
  color: #09090b !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 16px rgba(0, 0, 0, 0.28);
  transition: background 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, transform 0.12s ease;
  cursor: pointer;
}

.btn-3d:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e4e4e7 48%, #b4b4bb 100%);
  filter: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(0, 0, 0, 0.32);
}

.btn-3d:active {
  background: linear-gradient(180deg, #cfcfd4 0%, #a1a1aa 55%, #8b8b94 100%);
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn-3d-dark {
  background: linear-gradient(180deg, #3f3f46 0%, #27272a 55%, #18181b 100%);
  color: #fafafa !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.35);
}

.btn-3d-dark:hover {
  background: linear-gradient(180deg, #52525b 0%, #3f3f46 55%, #27272a 100%);
  filter: none;
}

/* Nav — always floating pill */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 12px 0;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.navbar.lyra-nav {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
}

.lyra-nav .nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.65rem 0.5rem 0.95rem;
  border-radius: 9999px;
  background: rgba(10, 10, 12, 0.82);
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lyra-nav .nav-shell.grad-outline::before {
  border-radius: inherit;
  opacity: 1;
}

.lyra-nav .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff !important;
  font-style: normal;
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.lyra-nav .navbar-brand img {
  max-height: 28px;
  width: auto;
  border-radius: 7px;
}

.lyra-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lyra-nav .nav-link {
  color: #a6a6ab !important;
  font-size: 0.86rem;
  font-weight: 550;
  padding: 0.45rem 0.85rem !important;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: color 0.15s ease, background 0.15s ease;
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
}

.lyra-nav .nav-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.72;
}

.lyra-nav .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06);
}

.lyra-nav .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.lyra-nav .nav-link.active svg {
  opacity: 1;
  stroke: currentColor;
  color: currentColor;
}

.lyra-nav .nav-link:hover svg,
.lyra-nav .nav-link.active svg {
  opacity: 1;
}

.lyra-nav .btn-outline-primary {
  min-height: 34px;
  padding: 0 1rem;
  font-size: 0.82rem;
}

.lyra-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .lyra-nav .nav-shell {
    border-radius: 18px;
  }

  .lyra-nav .nav-links {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Soft white outline that travels around the edge */
.grad-outline {
  position: relative;
}

.grad-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--grad-angle, 0deg),
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.75) 8%,
    rgba(255, 255, 255, 0.12) 18%,
    rgba(255, 255, 255, 0) 32%,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0.45) 68%,
    rgba(255, 255, 255, 0.08) 78%,
    rgba(255, 255, 255, 0) 90%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  animation: outlineSpin 4.5s linear infinite;
}

@keyframes outlineSpin {
  to {
    --grad-angle: 360deg;
  }
}

@property --grad-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.shine-line {
  display: block;
  height: 1px;
  width: min(420px, 70%);
  margin: 0 auto 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
  animation: shineSlide 3.2s ease-in-out infinite;
}

@keyframes shineSlide {
  0%,
  100% {
    background-position: 100% 0;
    opacity: 0.55;
  }
  50% {
    background-position: 0% 0;
    opacity: 1;
  }
}

/* Hero */
.lyra-hero {
  position: relative;
  background: #050505;
  padding: 118px 16px 110px;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: min(72vh, 720px);
}

.lyra-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lyra-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.15) contrast(1.18) brightness(0.92);
  transform: scale(1.04);
  opacity: 1;
}

.lyra-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.28) 35%, rgba(5, 5, 5, 0.78) 72%, #050505 100%),
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.lyra-hero-glow {
  position: absolute;
  left: 50%;
  top: -4%;
  z-index: 1;
  width: 54rem;
  height: 28rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  filter: blur(18px);
  animation: heroPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.06);
  }
}

.lyra-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.lyra-hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.25rem);
  font-weight: 650;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.lyra-hero-title .accent {
  background: linear-gradient(180deg, #ffffff 10%, #c8c8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lyra-hero-subtitle {
  max-width: 540px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.lyra-hero-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 540px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.72), rgba(12, 12, 12, 0.78));
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 7px 7px 7px 46px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.15s ease;
  backdrop-filter: blur(10px);
}

.lyra-hero-search:focus-within {
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.4);
}

.lyra-hero-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.lyra-hero-search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 0.92rem;
  padding: 8px 4px;
  min-width: 0;
  font-family: inherit;
}

.lyra-hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.lyra-hero-search-btn {
  min-height: 38px;
  padding: 0 18px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #ececec;
  font-size: 0.84rem;
  font-weight: 500;
}

.trust-badge svg {
  stroke: #e8e8e8;
}

/* Discord banner */
.paypal-banner {
  padding: 1rem 0;
}

.paypal-banner .paypal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: #101014;
  border: 1px solid transparent;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .paypal-banner .paypal-card {
    flex-direction: row;
    align-items: center;
  }
}

.paypal-banner .paypal-title {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.paypal-banner .paypal-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.paypal-banner .paypal-btn {
  min-height: 40px;
  padding: 0 1.2rem;
}

/* Products */
.lyra-products {
  padding: 2.75rem 1rem;
  background: transparent;
}

.lyra-products .lyra-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(15, 15, 18, 0.82);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.lyra-products h2.section-title {
  color: #fff;
  font-weight: 650;
  font-size: 1.45rem;
  margin: 0 0 1.25rem 0;
}

.lyra-products .products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .lyra-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lyra-products .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lyra-products .product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #121218;
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  scroll-margin-top: 96px;
}

.lyra-products .product:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.lyra-products .product .image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
}

.lyra-products .product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lyra-products .product-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #d0d0d0;
  background: linear-gradient(145deg, #0a0a0a, #171717);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lyra-products .product .image .stock-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lyra-products .product .image .stock-overlay .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0f0f0;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
}

.lyra-products .product .text {
  padding: 1rem;
}

.lyra-products .product .text .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lyra-products .product .text h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.lyra-products .product .text .online-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8e8e8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  white-space: nowrap;
}

.lyra-products .product .text .online-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f2f2f2;
}

.lyra-products .product .text .starting {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin: 12px 0 8px 0;
}

.lyra-products .product .text .row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lyra-products .product .text .price-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-weight: 650;
  font-size: 0.88rem;
  color: #fafafa;
  background: linear-gradient(180deg, #3f3f46 0%, #27272a 55%, #18181b 100%);
  border: none;
  border-radius: 9999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.lyra-products .product .text .view-btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 9999px;
}

.lyra-products .product.is-hidden {
  display: none;
}

/* Why */
.lyra-why.component {
  padding: 3.5rem 1rem;
  background: transparent;
}

.lyra-why .lyra-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: #0f0f12;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.lyra-why .lyra-head {
  text-align: center;
  margin-bottom: 2rem;
}

.lyra-why .lyra-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 650;
  color: #ffffff;
  margin: 0 0 0.65rem;
  letter-spacing: -0.035em;
}

.lyra-why .lyra-head h2 .accent {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.lyra-why .lyra-head p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.94rem;
  margin: 0;
}

.lyra-why .lyra-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .lyra-why .lyra-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lyra-why .lyra-feature {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lyra-why .lyra-feature:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.lyra-why .lyra-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #09090b;
  background: linear-gradient(180deg, #f4f4f5 0%, #d4d4d8 48%, #a1a1aa 100%);
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 16px rgba(0, 0, 0, 0.28);
}

.lyra-why .lyra-feature h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.lyra-why .lyra-feature p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Reviews */
.lyra-reviews {
  background: #080808;
  padding: 4.5rem 1rem;
}

.lyra-review-header {
  text-align: center;
  margin-bottom: 40px;
}

.lyra-review-header h1 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  margin: 0;
}

.lyra-review-header p {
  color: #8f8f8f;
  font-size: 0.95rem;
  margin-top: 10px;
}

.lyra-review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lyra-card {
  position: relative;
  background: #121218;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.lyra-card:hover {
  transform: translateY(-3px);
}

.lyra-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.lyra-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lyra-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2a2a2a, #161616);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 650;
  font-family: var(--font-display);
}

.lyra-user h3 {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.lyra-user span {
  color: #7a7a7a;
  font-size: 12px;
}

.stars {
  color: #ececec;
  letter-spacing: 1px;
  font-size: 12px;
  font-family: var(--font-body);
}

.lyra-card p {
  margin: 0;
  color: #a8a8a8;
  font-size: 0.875rem;
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .lyra-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .lyra-review-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer.component {
  background: rgba(10, 10, 10, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.75rem 0 1.75rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.footer .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin: 0;
  align-items: start;
}

.footer .brand-col {
  min-width: 0;
}

@media (max-width: 768px) {
  .footer .row {
    grid-template-columns: 1fr 1fr;
  }

  .footer .brand-col {
    grid-column: 1 / -1;
  }
}

.footer .kyzorz-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer .kyzorz-logo-row img {
  max-height: 40px;
  border-radius: 8px;
}

.footer .kyzorz-shop-name {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 650;
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.footer .kyzorz-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
}

.footer .kyzorz-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.footer .kyzorz-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #1f1f1f, #121212);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.footer .kyzorz-socials a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  clear: both;
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.4;
}

.footer h5 {
  color: #f0f0f0;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.footer .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .nav-link {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.875rem;
  padding: 0.35rem 0 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s ease;
}

.footer .nav-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8d8d8;
  flex-shrink: 0;
}

.footer .nav-link:hover {
  color: #ffffff !important;
}

.product-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 16px 64px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.product-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid transparent;
  width: 100%;
}

.product-media.is-muted {
  opacity: 0.72;
  filter: grayscale(0.35);
}

.product-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-info {
  position: relative;
  border-radius: 16px;
  background: #101014;
  border: 1px solid transparent;
  padding: 1.4rem 1.45rem 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.product-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-info .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #d6d6d6;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info .pill-warn {
  border-color: rgba(255, 255, 255, 0.18);
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.08);
}

.product-info h1 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  letter-spacing: -0.035em;
  font-weight: 650;
}

.product-info-price {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #f5f5f5;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.product-info > p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  font-size: 0.94rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.option-label {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 68px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141418;
  color: inherit;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.price-option:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: #18181d;
}

.price-option.is-selected {
  border-color: rgba(255, 255, 255, 0.55);
  background: #1c1c22;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.price-option.is-selected .price-term {
  color: rgba(255, 255, 255, 0.7);
}

.price-option.is-selected .price-amount {
  color: #ffffff;
}

.price-option.disabled {
  pointer-events: none;
  opacity: 0.7;
}

.price-term {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);
}

.price-amount {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: #ececec;
  font-variant-numeric: tabular-nums;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 1.15rem;
}

.product-actions .btn-3d {
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  font-size: 0.95rem;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: #9a9a9a;
  font-size: 0.9rem;
  font-weight: 550;
}

.product-back:hover {
  color: #fff;
}

.product-features-block {
  margin-top: 2rem;
}

.product-features-block > h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.features-soon {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.feature-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-cat {
  position: relative;
  border-radius: 14px;
  background: #101014;
  border: 1px solid transparent;
  padding: 1.05rem 1.15rem 1.15rem;
}

.feature-cat h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.feature-cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.feature-cat li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.4;
}

.feature-cat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8e8e8;
}

.lyra-products .product.is-unreleased .image img {
  filter: grayscale(0.4);
  opacity: 0.85;
}

.stock-overlay-muted,
.online-pill-muted {
  opacity: 0.9;
}

.stock-overlay-muted .dot,
.online-pill-muted .dot {
  display: none;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .feature-cats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Delivery + admin */
.delivery-card,
.admin-card,
.admin-simple,
.admin-gate-card {
  position: relative;
  border-radius: 16px;
  background: #101014;
  border: 1px solid transparent;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

body.admin-locked {
  background: #121214;
}

body.admin-locked::before {
  display: none;
}

.admin-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.admin-gate-card {
  width: min(100%, 420px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 16px;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.admin-gate-card h1 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #fff;
}

.admin-gate-sub {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.45;
}

.admin-gate-card .admin-label {
  margin-top: 1.35rem;
}

.admin-gate-card .admin-input {
  margin-bottom: 1rem;
  border-radius: 10px;
  background: #121214;
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-gate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 9999px;
  background: #f4f4f5;
  color: #111;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.12s ease;
}

.admin-gate-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.admin-simple-top {
  display: grid;
  gap: 0.35rem 0;
  margin-bottom: 0.5rem;
}

.admin-simple-top strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0.15rem 0 0.15rem;
}

.admin-select {
  appearance: none;
  cursor: pointer;
}

.delivery-card h1,
.admin-card h1,
.admin-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.delivery-card > p,
.admin-card > p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.delivery-meta {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.delivery-label,
.admin-label {
  display: block;
  margin: 1.1rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.delivery-key,
.admin-input,
.admin-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0c10;
  color: #f2f2f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.admin-input {
  font-family: var(--font-body);
  margin-bottom: 0.9rem;
}

.admin-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 16px 64px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.9rem;
}

.admin-note,
.admin-error {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.admin-error {
  color: #ffb4b4;
  text-align: center;
}

.admin-revenue-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.admin-revenue-meta {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.admin-card code {
  font-size: 0.85em;
  color: #fff;
}


