:root {
  --accent: #f6a126;
  --accent-bright: #ffb13b;
  --accent-dark: #b86800;
  --accent-soft: #e88842;
  --bg: #120d09;
  --bg-deep: #0a0705;
  --panel: rgba(25, 19, 14, .96);
  --panel-2: rgba(31, 24, 18, .96);
  --panel-3: rgba(37, 28, 20, .92);
  --line: rgba(255, 222, 180, .08);
  --line-strong: rgba(255, 173, 55, .24);
  --text: #fff7ec;
  --muted: #9f9388;
  --danger: #ff3d4f;
  --blue: #3276ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .48);
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, .34);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 17%, rgba(255, 255, 255, .035) 0 36px, transparent 37px),
    radial-gradient(circle at 94% 7%, rgba(255, 255, 255, .025) 0 56px, transparent 57px),
    radial-gradient(circle at 83% 31%, rgba(255, 255, 255, .02) 0 30px, transparent 31px),
    linear-gradient(180deg, #120d09 0%, #0d0906 100%);
  font-family: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 55%, rgba(255, 166, 52, .035), transparent 28rem),
    radial-gradient(circle at 86% 75%, rgba(255, 144, 28, .03), transparent 34rem);
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: currentColor; }
.site-width { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }

.global-alert {
  position: relative;
  z-index: 50;
  width: min(1280px, calc(100% - 48px));
  margin: 12px auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 175, 55, .34);
  border-radius: 16px;
  background: rgba(246, 161, 38, .1);
  color: #ffe6bf;
  font-size: 13px;
  font-weight: 800;
}

/* Header */
.radiant-header {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 183, 78, .08);
  background-image:
    linear-gradient(180deg, rgba(17, 11, 7, .26), rgba(17, 11, 7, .58) 56%, rgba(13, 9, 6, .96)),
    var(--custom-header, url('header.png'));
  background-size: cover;
  background-position: center 48%;
}
.radiant-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 166, 37, .2), transparent 19rem),
    linear-gradient(90deg, rgba(13, 9, 6, .58), transparent 27%, transparent 73%, rgba(13, 9, 6, .58));
  pointer-events: none;
}
.radiant-header-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 7, .18), rgba(15, 10, 7, .16) 45%, rgba(12, 8, 5, .75) 100%);
  pointer-events: none;
}
.radiant-particles,
.radiant-particles::before,
.radiant-particles::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 181, 62, .7);
  box-shadow:
    100px 80px 0 rgba(255, 201, 117, .35),
    210px 154px 0 rgba(255, 178, 55, .3),
    390px 60px 0 rgba(255, 196, 98, .28),
    520px 190px 0 rgba(255, 174, 40, .35),
    760px 72px 0 rgba(255, 181, 62, .26),
    890px 172px 0 rgba(255, 186, 73, .28),
    1030px 102px 0 rgba(255, 192, 91, .24);
  opacity: .62;
  animation: emberFloat 8s ease-in-out infinite alternate;
}
.radiant-particles { left: 11%; top: 42px; }
.radiant-particles::before { left: 130px; top: 31px; transform: scale(.65); }
.radiant-particles::after { left: 470px; top: 84px; transform: scale(.42); animation-delay: -3s; }
@keyframes emberFloat { to { transform: translateY(-10px); opacity: .9; } }

.top-nav {
  position: relative;
  z-index: 3;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-link,
.giftcard-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 248, 238, .84);
  font-size: 12px;
  font-weight: 800;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.top-link:hover { color: #fff; transform: translateY(-1px); }
.top-link svg { font-size: 13px; }
.top-actions { display: flex; align-items: center; gap: 24px; }
.giftcard-button {
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}
.giftcard-button:hover { background: rgba(255, 255, 255, .14); }

.hero-row {
  position: relative;
  z-index: 3;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 42px;
  padding: 6px 22px 48px;
}
.hero-side {
  border: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  color: #fff;
  transition: transform .18s ease, filter .18s ease;
}
.hero-side:hover { transform: translateY(-2px); filter: brightness(1.08); }
.hero-server { justify-self: end; text-align: right; }
.hero-discord { justify-self: start; text-align: left; }
.hero-side-copy strong { display: block; font-size: 17px; line-height: 1.05; font-weight: 950; letter-spacing: -.015em; }
.hero-side-copy small { display: block; margin-top: 5px; color: rgba(255, 244, 229, .58); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.hero-orb {
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 184, 70, .38);
  border-radius: 50%;
  background: linear-gradient(145deg, #f8aa2e, #c97508);
  color: white;
  box-shadow: 0 13px 30px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .22);
}
.hero-orb svg { font-size: 22px; }
.hero-orb-play b {
  position: absolute;
  right: -11px;
  top: -9px;
  min-width: 31px;
  height: 20px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f23f3f;
  border: 2px solid rgba(39, 21, 12, .6);
  color: #fff;
  font-size: 9px;
  font-weight: 950;
}
.hero-brand {
  justify-self: center;
  min-width: 270px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .48));
  transition: transform .2s ease;
}
.hero-brand:hover { transform: scale(1.015); }
.hero-brand img { max-width: 350px; max-height: 132px; object-fit: contain; }
.logo-crown {
  color: #ffd173;
  font-size: 26px;
  line-height: 1;
  text-shadow: 0 0 25px rgba(255, 166, 41, .62);
}
.hero-wordmark {
  display: block;
  margin-top: -2px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .93;
  font-weight: 1000;
  letter-spacing: -.08em;
  font-style: italic;
  color: #ffb535;
  text-shadow:
    0 4px 0 #8b4200,
    0 7px 0 #3d1d00,
    0 13px 28px rgba(0, 0, 0, .7);
  -webkit-text-stroke: 1px rgba(255, 229, 172, .34);
}
.hero-submark {
  margin-top: 10px;
  color: #ffdb95;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .34em;
}

/* Main store */
.store-stage {
  position: relative;
  z-index: 8;
  margin-top: -62px;
  padding-bottom: 58px;
}
.store-layout {
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}
.store-sidebar {
  position: relative;
  z-index: 4;
}
.cart-label {
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 9px;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: .08em;
}
.mini-cart {
  min-height: 68px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 205, 114, .42);
  border-radius: 11px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .18) 0 24px, transparent 25px),
    linear-gradient(135deg, #ffb43d, #e78417);
  color: white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .28);
  transition: transform .18s ease, filter .18s ease;
}
.mini-cart:hover { transform: translateY(-2px); filter: brightness(1.05); }
.cart-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #ffd75b;
  color: #6c4700;
  font-weight: 1000;
}
.cart-avatar img { width: 100%; height: 100%; object-fit: cover; image-rendering: pixelated; }
.cart-copy { min-width: 0; }
.cart-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 1000; }
.cart-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 1px; color: rgba(255, 255, 255, .92); font-size: 9px; font-weight: 900; }
.cart-basket { display: grid; place-items: center; font-size: 29px; color: white; }

.category-panel,
.sidebar-modules {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(23, 18, 13, .96);
  box-shadow: var(--shadow-soft);
}
.category-panel { padding: 10px 0; }
.category-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #d6cec4;
  font-size: 14px;
  font-weight: 900;
  transition: color .18s ease, background .18s ease, padding .18s ease;
}
.category-item:hover,
.category-item.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(246, 161, 38, .12), transparent);
  padding-left: 17px;
}
.category-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: relative;
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, .3));
}
.category-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category-icon-fallback {
  color: #f6a126;
  font-size: 27px;
  line-height: 1;
}
.quick-category-icon {
  width: 43px;
  height: 43px;
}
.category-arrow { color: #8b8177; font-size: 11px; }

.sidebar-modules {
  padding: 0;
}
.sidebar-modules:empty { display: none; }
.module-card,
.sidebar-modules > section,
.sidebar-modules > div {
  position: relative;
  min-height: 76px;
  padding: 14px 14px 14px 16px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.sidebar-modules > :last-child { border-bottom: 0; }
.module-card h3,
.module-card h4,
.sidebar-modules h3,
.sidebar-modules h4 {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 1000;
}
.module-card p,
.sidebar-modules p,
.sidebar-modules small {
  margin: 0;
  color: #9b9187;
  font-size: 9px;
  line-height: 1.4;
}
.module-card img,
.sidebar-modules img { max-width: 46px; border-radius: 5px; image-rendering: pixelated; }
.mini-progress { height: 5px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: #0c0906; }
.mini-progress span { display: block; height: 100%; background: linear-gradient(90deg, #c06c0d, #ffaf35); }

.store-main-card,
.catalog-card,
.package-page-card,
.basket-card,
.form-card,
.content-page-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 161, 38, .045), transparent 20rem),
    linear-gradient(180deg, rgba(28, 22, 16, .97), rgba(20, 16, 12, .985));
  box-shadow: var(--shadow);
}
.store-main-card {
  min-height: 430px;
  padding: 34px 36px 28px;
  overflow: visible;
}
.store-intro { max-width: 620px; min-height: 204px; }
.store-intro h1 {
  margin: 0;
  color: var(--accent);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -.025em;
}
.store-intro h2 {
  margin: 7px 0 22px;
  color: #8b8178;
  font-size: 15px;
  font-weight: 900;
}
.store-description {
  max-width: 590px;
  color: #c6bbb0;
  font-size: 13px;
  line-height: 1.75;
}
.store-description p { margin: 0 0 19px; }

.featured-cluster {
  position: absolute;
  right: 28px;
  top: -23px;
  width: 235px;
  height: 135px;
  pointer-events: none;
}
.featured-image-circle,
.featured-main-circle {
  pointer-events: auto;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  border: 2px solid #9d5800;
  background: radial-gradient(circle at 35% 28%, #a36112, #684000 62%, #3e2600);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 227, 164, .15);
}
.featured-image-circle {
  left: 0;
  top: 31px;
  width: 84px;
  height: 84px;
  z-index: 1;
}
.featured-image-circle img { width: 53px; height: 53px; object-fit: contain; filter: drop-shadow(0 9px 8px rgba(0, 0, 0, .35)); }
.featured-image-circle span { color: #eee7dd; font-weight: 1000; font-size: 18px; }
.featured-main-circle {
  left: 67px;
  top: 0;
  width: 125px;
  height: 125px;
  z-index: 2;
  text-align: center;
}
.featured-main-circle small { color: #e1bd78; font-size: 7px; line-height: 1.1; font-weight: 900; }
.featured-main-circle strong { max-width: 84px; margin: 7px 0 5px; font-size: 16px; line-height: 1.12; font-weight: 1000; }
.featured-main-circle span { color: #d7ab66; font-size: 9px; font-weight: 800; }
.featured-dots {
  position: absolute;
  right: 0;
  top: 53px;
  color: #655a50;
  letter-spacing: 2px;
  transform: rotate(90deg);
}

.store-social-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 23px;
  min-height: 92px;
  padding: 12px 0 18px;
}
.recent-customers { display: flex; align-items: center; gap: 12px; }
.recent-star { color: #ffab28; font-size: 50px; line-height: 1; filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .3)); }
.recent-customers strong,
.payment-goal strong { display: block; color: var(--accent); font-size: 11px; font-weight: 1000; }
.customer-faces { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.face {
  width: 24px;
  height: 24px;
  border: 2px solid #252019;
  border-radius: 4px;
  image-rendering: pixelated;
  box-shadow: inset 0 -7px rgba(0, 0, 0, .12);
}
.face-1 { background: linear-gradient(#bce6ff 0 35%, #42392e 36% 54%, #d7a574 55%); }
.face-2 { background: linear-gradient(#ffe2b2 0 28%, #6a4128 29% 47%, #ddaa77 48%); }
.face-3 { background: linear-gradient(#ffc6a9 0 31%, #426f46 32% 49%, #df9b72 50%); }
.face-4 { background: linear-gradient(#ac6541 0 42%, #392723 43% 58%, #905038 59%); }
.face-5 { background: linear-gradient(#586674 0 36%, #15202b 37% 56%, #303944 57%); }
.face-6 { background: linear-gradient(#fff28c 0 34%, #bb8227 35% 53%, #f3bd55 54%); }
.payment-goal { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 13px; }
.goal-ring {
  --goal: 0%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#f6a126 var(--goal), #4a4641 0);
  position: relative;
}
.goal-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #1c1712;
}
.goal-ring b { position: relative; z-index: 1; color: #d3cbc2; font-size: 10px; }
.payment-goal p { margin: 3px 0 0; color: #9e948b; font-size: 10px; line-height: 1.35; }

.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.policy-card {
  position: relative;
  min-height: 99px;
  display: grid;
  place-items: center;
  padding: 23px 19px 14px;
  border: 2px solid var(--danger);
  border-radius: 14px;
  background: rgba(28, 22, 17, .76);
  text-align: center;
}
.policy-card p { margin: 0; color: #bbb1a8; font-size: 10px; line-height: 1.45; }
.policy-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  min-width: 80px;
  height: 29px;
  padding: 0 13px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 1000;
}
.refund-policy { border-color: var(--blue); }
.refund-policy .policy-pill { background: var(--blue); }

/* Home category shortcuts */
.quick-categories { margin-top: 28px; }
.section-heading { text-align: center; margin-bottom: 18px; }
.section-heading span,
.page-kicker,
.catalog-heading > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .17em;
}
.section-heading h2 { margin: 4px 0 0; font-size: 25px; line-height: 1.1; font-weight: 1000; letter-spacing: -.035em; }
.quick-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.quick-category-card {
  min-height: 87px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(31, 24, 18, .94), rgba(21, 16, 12, .97));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease;
}
.quick-category-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.quick-category-card strong { display: block; font-size: 12px; font-weight: 1000; }
.quick-category-card small { display: block; color: var(--muted); font-size: 9px; }
.quick-category-card b { color: var(--accent); }

/* Inner pages */
.inner-stage { margin-top: -62px; }
.inner-sidebar { align-self: start; }
.catalog-card { min-height: 430px; padding: 34px 36px 36px; }
.catalog-heading { margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.catalog-heading h1,
.package-page-copy h1,
.basket-head h1,
.form-card h1,
.content-page-card h1 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: -.045em;
}
.catalog-heading div { max-width: 760px; margin-top: 10px; color: #aaa097; font-size: 13px; line-height: 1.65; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; align-items: stretch; }
.package-grid[data-package-count="1"] { grid-template-columns: minmax(300px, 390px); }
.package-grid[data-package-count="2"] { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
.package-card {
  position: relative;
  min-height: 375px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37, 29, 21, .94), rgba(24, 18, 13, .98));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.package-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 20px 36px rgba(0, 0, 0, .32); }
.package-badge { position: absolute; z-index: 2; right: 12px; top: 12px; padding: 5px 8px; border-radius: 999px; background: var(--danger); color: white; font-size: 8px; font-weight: 1000; }
.package-image {
  height: 172px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 170, 40, .16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
  border-bottom: 1px solid var(--line);
}
.package-image img { max-width: 138px; max-height: 138px; object-fit: contain; filter: drop-shadow(0 20px 16px rgba(0, 0, 0, .42)); transition: transform .22s ease; }
.package-card:hover .package-image img { transform: translateY(-3px) scale(1.035); }
.package-placeholder { color: #ffad32; font-size: 62px; filter: drop-shadow(0 12px 10px rgba(0, 0, 0, .35)); }
.package-body { display: flex; flex: 1; flex-direction: column; padding: 19px 20px 20px; }
.package-title-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.package-body h2 { margin: 0; font-size: 18px; line-height: 1.15; font-weight: 1000; }
.package-details-link { flex: 0 0 auto; color: var(--accent); font-size: 10px; font-weight: 1000; opacity: .78; }
.package-details-link:hover { opacity: 1; }
.package-summary {
  flex: 1;
  max-height: 76px;
  margin: 10px 0 18px;
  overflow: hidden;
  color: #aaa097;
  font-size: 12px;
  line-height: 1.55;
}
.package-summary > :first-child { margin-top: 0; }
.package-summary > :last-child { margin-bottom: 0; }
.package-summary p,
.package-summary ul,
.package-summary ol { margin: 0 0 5px; }
.package-summary img,
.package-summary iframe,
.package-summary video { display: none; }
.package-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.package-price span { display: block; margin-bottom: 1px; color: #81776e; font-size: 8px; font-weight: 1000; letter-spacing: .12em; text-transform: uppercase; }
.package-price strong { display: block; font-size: 20px; line-height: 1; font-weight: 1000; }
.package-price small { color: #94877a; font-size: 9px; }
.orange-button,
.disabled-button,
.remove-button {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffb13b, #eb8b17);
  color: white;
  font-size: 11px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(191, 102, 2, .2), inset 0 1px rgba(255, 255, 255, .22);
  transition: transform .18s ease, filter .18s ease;
}
.orange-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.disabled-button { border: 1px solid rgba(255,255,255,.07); background: #332d28; color: #9f958c; box-shadow: none; cursor: default; }
.large-button { min-height: 46px; padding: 0 20px; font-size: 12px; }
.package-card-glow { position: absolute; z-index: 0; left: 16%; right: 16%; top: -38px; height: 90px; border-radius: 50%; background: rgba(246,161,38,.12); filter: blur(32px); pointer-events: none; }
.package-card::after { content:""; position:absolute; left:0; right:0; top:0; height:2px; background:linear-gradient(90deg,transparent,rgba(255,177,59,.78),transparent); opacity:.72; }
.package-card > *:not(.package-card-glow) { position: relative; z-index: 1; }

.package-page-card { padding: 30px; }
.back-category { display: inline-flex; margin-bottom: 20px; color: var(--muted); font-size: 11px; font-weight: 900; }
.back-category:hover { color: var(--accent); }
.package-page-grid { display: grid; grid-template-columns: 260px 1fr; gap: 30px; }
.package-page-media {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: radial-gradient(circle, rgba(255, 163, 39, .12), transparent 62%);
}
.package-page-media img { max-width: 210px; max-height: 240px; object-fit: contain; filter: drop-shadow(0 22px 20px rgba(0, 0, 0, .42)); }
.package-page-media span { color: var(--accent); font-size: 110px; }
.package-page-actions { display: flex; align-items: center; gap: 18px; margin: 20px 0; }
.package-page-price { font-size: 24px; font-weight: 1000; }
.package-page-price small { color: var(--muted); font-size: 10px; }
.rich-copy { color: #b5aaa0; font-size: 12px; line-height: 1.7; }
.rich-copy h2,
.rich-copy h3 { color: #fff; }
.rich-copy a { color: var(--accent); }
.rich-copy img { border-radius: 10px; }

.empty-state { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-state > span { color: var(--accent); font-size: 64px; }
.empty-state h2 { margin: 7px 0 2px; font-size: 24px; }
.empty-state p { margin: 0 0 18px; color: var(--muted); font-size: 12px; }

/* Basket */
.basket-stage { margin-top: -74px; }
.basket-card { padding: 28px; }
.basket-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.basket-count { padding: 7px 11px; border-radius: 999px; background: rgba(246, 161, 38, .1); color: var(--accent); font-size: 10px; font-weight: 1000; }
.basket-items { display: grid; }
.basket-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.basket-item-main h2 { margin: 0 0 5px; font-size: 16px; }
.basket-item-main small { display: block; color: var(--muted); font-size: 10px; }
.basket-item-main strong { display: block; margin-top: 7px; color: var(--accent); font-size: 13px; }
.quantity-control { display: grid; grid-template-columns: 34px 52px 34px; align-items: center; }
.quantity-control button,
.quantity-control input {
  height: 36px;
  border: 1px solid var(--line);
  background: #14100c;
  color: white;
  text-align: center;
}
.quantity-control button { cursor: pointer; font-weight: 1000; }
.quantity-control button:first-child { border-radius: 8px 0 0 8px; }
.quantity-control button:last-child { border-radius: 0 8px 8px 0; }
.quantity-control input { width: 52px; border-inline: 0; outline: none; }
.remove-button { background: rgba(255, 255, 255, .05); color: #c2b7ac; box-shadow: none; }
.remove-button:hover { color: white; background: rgba(255, 63, 77, .15); }
.basket-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 23px; }
.basket-footer span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; font-weight: 900; }
.basket-footer strong { display: block; font-size: 22px; font-weight: 1000; }
.checkout-button { min-width: 240px; min-height: 47px; font-size: 12px; }

/* Forms */
.form-stage { margin-top: -68px; display: grid; place-items: center; }
.form-card { width: min(510px, 100%); padding: 34px; }
.login-card { text-align: center; }
.form-card > p { margin: 10px auto 23px; color: var(--muted); font-size: 12px; }
.field-label { display: grid; gap: 7px; margin: 0 0 16px; color: #d8cec4; font-size: 10px; font-weight: 900; text-align: left; }
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 13px;
  background: #100c09;
  color: white;
  outline: none;
}
input:focus,
select:focus,
textarea:focus { border-color: var(--line-strong); box-shadow: 0 0 0 4px rgba(246, 161, 38, .08); }
.username-field { display: grid; grid-template-columns: 1fr 46px; }
.username-field input { border-radius: 8px 0 0 8px; }
.username-field button { border: 0; border-radius: 0 8px 8px 0; background: linear-gradient(180deg, #ffb13b, #e78a18); color: white; cursor: pointer; font-weight: 1000; }
.store-form { display: grid; }
.content-page-card { width: min(780px, 100%); padding: 34px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: rgba(8, 6, 4, .72); }
.footer-row { min-height: 100px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; color: #786f67; font-size: 10px; }
.footer-row > div:first-child strong { display: block; color: #ddd3c9; font-size: 13px; }
.footer-row > div:first-child span { color: var(--accent); font-weight: 900; }
.footer-row p { margin: 0; text-align: center; }
.footer-links { display: flex; gap: 14px; }
.footer-links a:hover { color: var(--accent); }
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  transform: translate(-50%, 140%);
  padding: 11px 15px;
  border-radius: 11px;
  background: #fff3df;
  color: #3b220b;
  box-shadow: var(--shadow);
  font-size: 11px;
  font-weight: 1000;
  transition: transform .22s ease;
}
.copy-toast.is-visible { transform: translate(-50%, 0); }

/* Responsive */
@media (max-width: 980px) {
  .site-width { width: min(1100px, calc(100% - 32px)); }
  .hero-row { grid-template-columns: 1fr 1.2fr 1fr; gap: 16px; }
  .store-layout { grid-template-columns: 224px minmax(0, 1fr); gap: 18px; }
  .featured-cluster { transform: scale(.88); transform-origin: top right; }
  .store-intro { max-width: 430px; }
  .quick-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .radiant-header { min-height: 500px; }
  .top-nav { height: 60px; }
  .top-actions { gap: 12px; }
  .top-actions .top-link span { display: none; }
  .hero-row { grid-template-columns: 1fr 1fr; padding-top: 30px; padding-bottom: 105px; }
  .hero-brand { grid-column: 1 / -1; grid-row: 1; }
  .hero-server { grid-column: 1; grid-row: 2; justify-self: end; }
  .hero-discord { grid-column: 2; grid-row: 2; justify-self: start; }
  .store-stage { margin-top: -96px; }
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cart-label { display: none; }
  .mini-cart { margin: 0; }
  .category-panel { margin: 0; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-item { border-bottom: 1px solid var(--line); }
  .sidebar-modules { margin: 0; }
  .store-main-card { margin-top: 4px; padding-top: 155px; }
  .featured-cluster { left: 50%; right: auto; top: 12px; transform: translateX(-50%) scale(.92); transform-origin: top center; }
  .store-intro { max-width: none; text-align: center; }
  .store-social-row { grid-template-columns: 1fr; }
  .recent-customers,
  .payment-goal { justify-content: center; }
  .policy-grid { grid-template-columns: 1fr; gap: 22px; }
  .inner-stage { margin-top: -95px; }
  .inner-sidebar { grid-template-columns: 1fr; }
  .package-page-grid { grid-template-columns: 1fr; }
  .package-page-media { min-height: 240px; }
}

@media (max-width: 540px) {
  .site-width { width: min(100% - 20px, 1040px); }
  .giftcard-button { padding: 0 10px; }
  .hero-row { gap: 22px 8px; }
  .hero-brand { min-width: 0; }
  .hero-wordmark { font-size: 47px; }
  .hero-side { gap: 9px; }
  .hero-side-copy strong { font-size: 14px; }
  .hero-side-copy small { max-width: 105px; font-size: 8px; }
  .hero-orb { width: 44px; height: 44px; flex-basis: 44px; }
  .store-sidebar { grid-template-columns: 1fr; }
  .category-panel { grid-template-columns: 1fr; }
  .store-main-card,
  .catalog-card,
  .package-page-card,
  .basket-card,
  .form-card,
  .content-page-card { padding: 20px; }
  .store-main-card { padding-top: 145px; }
  .recent-customers { align-items: flex-start; }
  .recent-star { font-size: 40px; }
  .customer-faces { flex-wrap: wrap; }
  .quick-category-grid,
  .package-grid { grid-template-columns: 1fr; }
  .package-page-actions { align-items: stretch; flex-direction: column; }
  .basket-item { grid-template-columns: 1fr; }
  .quantity-control { width: max-content; }
  .basket-footer { align-items: stretch; flex-direction: column; }
  .checkout-button { min-width: 0; width: 100%; }
  .footer-row { grid-template-columns: 1fr; padding: 25px 0; text-align: center; }
  .footer-row p { order: 3; }
  .footer-links { justify-content: center; }
}
.copy-toast:empty { display: none; }

/* Live recent-payment and goal modules */
.sidebar-modules.is-empty-modules { display: none !important; }
.live-module-slot { min-width: 0; }
.radiant-live-module {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.radiant-live-module.is-mounted-live {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.radiant-payments-module .recent-payment-copy,
.radiant-goal-module .goal-module-copy { min-width: 0; }
.radiant-payments-module strong,
.radiant-goal-module strong {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 1000;
}
.customer-face {
  width: 24px;
  height: 24px;
  display: block;
  overflow: hidden;
  flex: 0 0 24px;
  border: 2px solid #29231d;
  border-radius: 4px;
  background: #17120e;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .28);
}
.customer-face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}
.recent-module-empty,
.live-module-placeholder p {
  margin: 5px 0 0;
  color: #8e847a;
  font-size: 9px;
  line-height: 1.35;
}
.radiant-goal-module { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 13px; }
.radiant-goal-module p,
.radiant-goal-module .goal-description,
.radiant-goal-module .goal-description p {
  margin: 3px 0 0;
  color: #9e948b;
  font-size: 11px;
  line-height: 1.35;
}
.sidebar-modules .radiant-live-module:not(.is-mounted-live) {
  min-height: 76px;
  padding: 14px 14px 14px 16px;
  border-bottom: 1px solid var(--line);
}
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .recent-star { font-size: 34px; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .customer-faces { gap: 4px; flex-wrap: wrap; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .customer-face { width: 20px; height: 20px; flex-basis: 20px; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .goal-ring { width: 46px; height: 46px; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .goal-ring::after { inset: 7px; }

/* Login popup */
.login-modal-root:empty { display: none; }
body.login-modal-open { overflow: hidden; }
.login-page-anchor { min-height: 1px; }
.login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(5, 5, 5, .76);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}
.login-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.login-modal-panel {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  min-height: 470px;
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  background: #222;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .72);
  animation: login-pop .2s ease both;
}
@keyframes login-pop {
  from { transform: translateY(12px) scale(.985); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.login-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(10, 10, 10, .5);
  color: #b9b3ac;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
  transition: color .15s ease, background .15s ease;
}
.login-modal-close:hover { color: white; background: rgba(255, 255, 255, .08); }
.login-skin-column {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 42px 24px 24px;
  background:
    radial-gradient(circle at 50% 70%, rgba(246, 161, 38, .16), transparent 44%),
    linear-gradient(150deg, #292929, #1b1b1b);
}
.login-skin-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black);
}
.login-skin-glow {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 220px;
  height: 72px;
  border-radius: 50%;
  background: rgba(246, 161, 38, .16);
  filter: blur(24px);
  transform: translateX(-50%);
}
.login-skin-column img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 210px;
  height: 345px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 23px 18px rgba(0, 0, 0, .55));
}
.login-form-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 72px 52px;
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 161, 38, .055), transparent 21rem),
    #232323;
}
.login-eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
}
.login-form-column h1 {
  margin: 7px 0 9px;
  color: #fff;
  font-size: clamp(29px, 3.2vw, 39px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.035em;
}
.login-form-column > p {
  margin: 0 0 28px;
  color: #c6beb6;
  font-size: 16px;
}
.login-message {
  margin: -9px 0 18px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 84, 84, .38);
  border-radius: 7px;
  background: rgba(255, 57, 57, .08);
  color: #ffb7b7;
  font-size: 11px;
  line-height: 1.45;
}
.login-edition-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 28px;
}
.login-edition-tab {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 7px;
  background: #1d1d1d;
  color: #c9c2bb;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}
.login-edition-tab:hover { transform: translateY(-1px); color: white; }
.login-edition-tab.is-active {
  border-color: rgba(246, 161, 38, .32);
  background: #2c2c2c;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(246, 161, 38, .08);
}
.edition-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(246, 161, 38, .12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
}
.login-edition-tab span:last-child { text-align: left; }
.login-edition-tab strong { display: block; font-size: 15px; font-weight: 1000; }
.login-edition-tab small { display: block; margin-top: 2px; color: #777; font-size: 9px; font-weight: 800; }
.login-field-label {
  display: block;
  margin-bottom: 8px;
  color: #a9a19a;
  font-size: 11px;
  font-weight: 900;
}
.login-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 12px;
}
.login-input-row input {
  min-width: 0;
  min-height: 58px;
  border-color: rgba(255, 255, 255, .06);
  border-radius: 7px;
  padding: 0 18px;
  background: #1b1b1b;
  font-size: 15px;
}
.login-submit-button {
  min-height: 58px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  padding: 0 22px;
  background: linear-gradient(180deg, #ffb13b, #e78a18);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(231, 138, 24, .18);
  transition: filter .16s ease, transform .16s ease;
}
.login-submit-button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.login-submit-button:disabled { opacity: .58; cursor: wait; transform: none; }
.login-external-button { width: min(300px, 100%); }
.login-edition-note {
  margin: 10px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 1.45;
}
.login-loading-card {
  min-width: 230px;
  min-height: 135px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: #222;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .62);
  color: white;
  font-size: 12px;
}
.login-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, .12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: login-spin .7s linear infinite;
}
@keyframes login-spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .login-modal-overlay { padding: 14px; }
  .login-modal-panel {
    width: min(560px, calc(100vw - 28px));
    grid-template-columns: 1fr;
  }
  .login-skin-column {
    min-height: 190px;
    padding: 20px 20px 0;
  }
  .login-skin-column img { height: 205px; }
  .login-skin-glow { bottom: -5px; }
  .login-form-column { padding: 34px 26px 30px; }
  .login-form-column > p { margin-bottom: 22px; font-size: 13px; }
}

@media (max-width: 480px) {
  .login-modal-panel { width: calc(100vw - 20px); }
  .login-skin-column { min-height: 145px; }
  .login-skin-column img { height: 166px; }
  .login-form-column { padding: 29px 18px 23px; }
  .login-edition-tabs { gap: 8px; }
  .login-edition-tab { min-height: 72px; gap: 7px; }
  .edition-icon { width: 26px; height: 26px; }
  .login-edition-tab small { display: none; }
  .login-input-row { grid-template-columns: 1fr; }
  .login-submit-button { width: 100%; }
}


/* Premium desktop refinements */
@media (min-width: 1180px) {
  .hero-side-copy strong { font-size: 19px; }
  .hero-side-copy small { font-size: 10px; }
  .store-sidebar { position: sticky; top: 18px; }
}

.category-panel { padding: 8px 0; }
.category-item + .category-item { border-top: 1px solid rgba(255,255,255,.025); }
.category-item.is-active { box-shadow: inset 3px 0 var(--accent); }
.category-item.is-active .category-icon { transform: scale(1.05); }

.catalog-card { overflow: hidden; }
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246,161,38,.035), transparent);
}
.catalog-heading, .package-grid, .empty-state { position: relative; z-index: 1; }

.package-card { isolation: isolate; }
.package-image { position: relative; }
.package-image::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 18px;
  width: 110px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  filter: blur(10px);
  transform: translateX(-50%);
  z-index: -1;
}
.login-to-buy { min-width: 108px; }

.top-customer-module {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  align-items: center;
  gap: 12px;
}
.top-customer-avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid rgba(246,161,38,.28);
  border-radius: 10px;
  background: #17120e;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}
.top-customer-avatar img { width:100%; height:100%; object-fit:cover; image-rendering:pixelated; }
.top-customer-copy { min-width:0; }
.top-customer-copy small { display:block; color:var(--accent); font-size:9px; font-weight:1000; }
.top-customer-copy strong { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; margin-top:2px; font-size:13px; }
.top-customer-copy b { display:block; margin-top:2px; color:#a79d94; font-size:9px; }

.sidebar-modules .radiant-live-module:not(.is-mounted-live) { min-height: 84px; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .recent-star { font-size: 38px; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .customer-face { width: 24px; height: 24px; flex-basis: 24px; }
.sidebar-modules .radiant-live-module:not(.is-mounted-live) .goal-ring { width: 52px; height: 52px; }
.radiant-payments-module strong, .radiant-goal-module strong { font-size: 12px; }

@media (max-width: 1100px) {
  .package-grid[data-package-count="2"] { grid-template-columns: repeat(2, minmax(230px, 1fr)); }
}

@media (max-width: 760px) {
  .radiant-header { min-height: 455px; }
  .hero-row { padding-bottom: 88px; }
  .store-stage, .inner-stage { margin-top: -88px; }
  .catalog-card { min-height: 0; padding: 26px 22px 28px; }
  .package-grid[data-package-count="1"],
  .package-grid[data-package-count="2"] { grid-template-columns: 1fr; }
  .package-card { min-height: 350px; }
}
