:root {
  --bg: #f5f9ff;
  --bg-2: #ffffff;
  --bg-3: #edf4ff;
  --text: #11233f;
  --muted: #5d718f;
  --line: rgba(20, 44, 84, .10);
  --blue: #6ab1ff;
  --blue-2: #4f95ef;
  --blue-3: #dceeff;
  --blue-dark: #2563c9;
  --shadow: 0 16px 36px rgba(37, 83, 149, .10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.wrap { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
}
.logo-link img { width: 54px; height: 54px; object-fit: contain; }
.main-nav {
  display: flex;
  gap: 10px;
}
.main-nav a {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--muted);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-3);
  color: var(--blue-dark);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.discord-btn,
.quick {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.discord-btn img,
.quick img { width: 24px; height: 24px; }
.ip-btn {
  border: 0;
  border-radius: 16px;
  min-height: 54px;
  padding: 0 20px;
  background: linear-gradient(180deg, #7fc0ff 0%, #5da9ff 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(75, 146, 230, .24);
  cursor: pointer;
  font-weight: 900;
}
.ip-btn big { font-size: 18px; }
.ip-btn small { color: rgba(255,255,255,.86); font-weight: 700; }
.ip-btn.big { min-height: 58px; }
.play-mark {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  margin-top: 24px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(37,83,149,.12);
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(37, 83, 149, .08);
}
.hero-copy h1 {
  margin: 14px 0 14px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.04em;
}
.hero-copy h1 span { color: var(--blue-dark); }
.hero-copy p {
  margin: 0;
  max-width: 630px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}
.hero-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-3);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  align-items: center;
}
.hero-image {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #eef5ff 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.name-box {
  min-width: 280px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.name-box label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 8px;
}
.name-box input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
  background: transparent;
  color: var(--text);
}

.category-band { padding: 10px 0 8px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  min-height: 108px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-2);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,26,51,.22) 0%, rgba(14,26,51,0) 58%);
}
.category-card span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  color: #fff;
  font-size: 26px;
  font-weight: 950;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickbar {
  position: fixed;
  top: 190px;
  right: max(14px, calc((100vw - 1380px) / 2));
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick {
  min-height: 72px;
  width: 72px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.92);
  cursor: pointer;
}
.quick.active {
  background: linear-gradient(180deg, #78bcff 0%, #5ea8ff 100%);
  color: #fff;
}
.quick strong { font-size: 12px; }

.products { padding: 34px 0; }
.section-title {
  margin-bottom: 18px;
}
.section-title h2 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -.03em;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}
.product-info { padding: 18px 18px 20px; }
.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #2f74d2;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}
.badge.blue { background: #dff0ff; color: #2b7ae2; }
.badge.dark { background: #d5e8ff; color: #1a57b8; }
.badge.light { background: #edf6ff; color: #5684c7; }
.product-info h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -.02em;
}
.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  min-height: 48px;
}
.buy-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.buy-row strong { font-size: 24px; }
.add-cart, .checkout-btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  background: linear-gradient(180deg, #7fc0ff 0%, #5da9ff 100%);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.community { padding: 22px 0 80px; }
.community-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.community-copy { padding: 30px; }
.community-copy h2 { margin: 14px 0 10px; font-size: 36px; letter-spacing: -.04em; }
.community-copy p { margin: 0 0 20px; color: var(--muted); line-height: 1.65; }
.community-image { background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%); }
.community-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: .24s ease;
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 40px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 { margin: 0; }
.cart-head button {
  width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--bg-3); cursor: pointer; font-size: 24px;
}
.cart-name, .cart-total, .checkout-btn { margin: 16px 20px 0; }
.cart-name {
  padding: 14px 16px; background: var(--bg); border-radius: 16px; color: var(--muted); font-weight: 700;
}
.cart-items {
  flex: 1; padding: 18px 20px; overflow: auto;
}
.cart-empty { color: var(--muted); }
.cart-item {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.cart-item strong { display: block; margin-bottom: 4px; }
.cart-item span { color: var(--muted); }
.cart-item button { border: 0; background: transparent; color: #d04f6a; cursor: pointer; font-weight: 800; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; background: var(--bg); border-radius: 18px; font-weight: 900;
}
.checkout-btn { margin-bottom: 22px; }
.drawer-bg {
  position: fixed; inset: 0; background: rgba(16,34,68,.24); z-index: 70; opacity: 0; pointer-events: none; transition: .24s ease;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); opacity: 0; background: #183763; color: #fff; padding: 12px 16px; border-radius: 12px; transition: .2s ease; z-index: 90;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1160px) {
  .quickbar { display: none; }
}
@media (max-width: 960px) {
  .hero, .community-card, .product-grid, .product-grid.two, .category-grid { grid-template-columns: 1fr; }
  .nav-wrap { flex-wrap: wrap; padding: 12px 0; }
  .main-nav { order: 3; width: 100%; overflow: auto; }
  .hero-copy h1 { font-size: 42px; }
}


/* Hover effects */
.discord-btn,
.ip-btn,
.quick,
.add-cart,
.checkout-btn,
.main-nav a,
.category-card,
.product-card,
.logo-link {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.discord-btn:hover,
.ip-btn:hover,
.quick:hover,
.add-cart:hover,
.checkout-btn:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-2px);
}
.discord-btn:hover,
.quick:hover {
  box-shadow: 0 18px 34px rgba(37, 83, 149, .16);
}
.ip-btn:hover,
.add-cart:hover,
.checkout-btn:hover {
  box-shadow: 0 16px 30px rgba(75, 146, 230, .34);
  filter: brightness(1.03);
}
.product-card:hover {
  box-shadow: 0 18px 38px rgba(37, 83, 149, .14);
}
.category-card:hover {
  box-shadow: 0 18px 38px rgba(37, 83, 149, .14);
}
.logo-link:hover { transform: translateY(-1px); }
.main-nav a:hover { transform: translateY(-1px); }
.discord-btn img { width: 26px; height: 26px; }


.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.category-band .wrap {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(37,83,149,.12);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(37, 83, 149, .08);
  padding: 18px;
}
.category-card {
  min-height: 126px;
  border: 1px solid rgba(37,83,149,.14);
  box-shadow: 0 12px 30px rgba(37, 83, 149, .10);
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.38) 0%, rgba(14,26,51,.10) 45%, rgba(14,26,51,0) 78%);
}
.category-card span {
  left: 20px;
  top: 20px;
  font-size: 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.quickbar {
  position: fixed;
  top: 210px;
  right: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products,
.community {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(37,83,149,.12);
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(37, 83, 149, .08);
  padding: 30px 28px;
  margin-top: 26px;
}
.products:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(246,250,255,.92) 100%);
}
.section-title {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(37,83,149,.10);
}
.product-card {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(37,83,149,.12);
  box-shadow: 0 12px 28px rgba(37, 83, 149, .09);
}
.community-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
@media (max-width: 960px) {
  .category-grid { grid-template-columns: 1fr; }
  .hero { padding: 24px; }
  .products, .community { padding: 22px 18px; }
}


/* nav: only hover, no selected state */
.main-nav a.active {
  background: transparent !important;
  color: var(--muted) !important;
}
.main-nav a:hover {
  background: rgba(110, 170, 255, .22) !important;
  color: var(--blue-dark) !important;
}

/* a bit more color */
.topbar {
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(244,249,255,.92) 100%);
}
.hero {
  background: linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(241,247,255,.92) 62%, rgba(232,244,255,.92) 100%);
}
.hero-badge.alt {
  background: #e8ecff;
  color: #5565d8;
}
.products:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(247,250,255,.95) 100%);
}
.section-title h2 {
  color: #123a78;
}
.section-title p {
  color: #4e6992;
}
.badge.pink { background: #ffe6f0; color: #cc4b84; }
.badge.gold { background: #fff1cc; color: #b27b00; }
.buy-row strong { color: #0d3067; }
.add-cart {
  background: linear-gradient(180deg, #7cb8ff 0%, #5da8ff 100%);
}
.discord-cta {
  background: linear-gradient(180deg, #7b89ff 0%, #6171ff 100%);
}

/* categories only two, more visible */
.categories-shell {
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(242,247,255,.92) 100%);
  border: 1px solid rgba(37,83,149,.12);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(37, 83, 149, .08);
  padding: 18px;
}
.categories-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(37,83,149,.10);
}
.categories-head h2 {
  margin: 0;
  color: #123a78;
  font-size: 28px;
}
.categories-head p {
  margin: 0;
  color: #5a7397;
}
.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* footer */
.site-footer {
  margin-top: 34px;
  background: linear-gradient(180deg, #142843 0%, #0d1b31 100%);
  color: #eef5ff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .9fr;
  gap: 54px;
  padding: 34px 0 38px;
}
.footer-col h3 {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: .03em;
  color: #ffffff;
}
.footer-col p {
  margin: 0;
  max-width: 430px;
  color: rgba(238,245,255,.86);
  line-height: 1.65;
}
.footer-col a {
  display: block;
  color: rgba(238,245,255,.92);
  margin: 10px 0;
  transition: color .18s ease, transform .18s ease;
}
.footer-col a:hover {
  color: #84bfff;
  transform: translateX(2px);
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  margin: 0;
}
.footer-socials img { width: 22px; height: 22px; }
.footer-socials span { font-weight: 900; color: white; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .categories-head { display:block; }
  .categories-head p { margin-top: 6px; }
  .category-grid { grid-template-columns: 1fr !important; }
}


/* smaller, lower-key category cards */
.categories-shell {
  padding: 14px;
}
.categories-head {
  margin-bottom: 12px;
  padding: 0 2px 10px;
}
.categories-head h2 {
  font-size: 23px;
}
.categories-head p {
  font-size: 14px;
}
.category-grid {
  gap: 14px !important;
}
.category-card {
  min-height: 78px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(37,83,149,.08);
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.18) 0%, rgba(14,26,51,.06) 40%, rgba(14,26,51,0) 78%);
}
.category-card span {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0,0,0,.10);
}
.category-card img {
  object-position: center;
  filter: saturate(.92) brightness(.98);
}
@media (max-width: 960px) {
  .category-card {
    min-height: 72px;
  }
  .category-card span {
    font-size: 17px;
  }
}

/* Mehr Farbe, aber weiterhin clean */
:root {
  --cyan: #32c7ff;
  --purple: #8a6cff;
  --pink: #ff6aa7;
  --gold: #ffc857;
}
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(50,199,255,.18) 0%, transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(138,108,255,.14) 0%, transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #eef5ff 100%);
}
.topbar {
  border-bottom: 1px solid rgba(87,145,230,.20);
}
.hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(239,248,255,.96) 50%, rgba(238,240,255,.96) 100%);
  border-color: rgba(87,145,230,.18);
}
.hero-badge {
  background: linear-gradient(90deg, rgba(50,199,255,.18), rgba(138,108,255,.16));
  color: #235fc4;
}
.hero-copy h1 span {
  background: linear-gradient(90deg, #248cff, #7d6bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.categories-shell {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(239,247,255,.94)),
    radial-gradient(circle at 80% 30%, rgba(255,106,167,.16), transparent 32%);
}
.category-card:nth-child(1) {
  background: linear-gradient(135deg, #5db2ff, #7f7cff);
}
.category-card:nth-child(2) {
  background: linear-gradient(135deg, #34c7ff, #2f8cff);
}
.product-card:nth-child(1) .badge,
.badge.blue {
  background: #e4f2ff;
  color: #1477df;
}
.product-card:nth-child(2) .badge,
.badge.dark {
  background: #efe9ff;
  color: #7655e8;
}
.badge.pink {
  background: #ffe6f0;
  color: #d84d8a;
}
.badge.gold {
  background: #fff1cc;
  color: #b27b00;
}
.product-card {
  border-color: rgba(87,145,230,.16);
}
.product-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #5da9ff, #8a6cff, #ff6aa7);
}
.product-card:nth-child(2)::before {
  background: linear-gradient(90deg, #8a6cff, #5da9ff);
}
.product-card:nth-child(3)::before {
  background: linear-gradient(90deg, #32c7ff, #ffc857);
}
.products {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.96) 100%);
}
.ip-btn,
.add-cart,
.checkout-btn {
  background: linear-gradient(180deg, #6fb8ff 0%, #4e98ff 100%);
}
.ip-btn.big {
  background: linear-gradient(90deg, #4e98ff, #7c6cff);
}
.discord-cta {
  background: linear-gradient(90deg, #5865F2, #7b61ff) !important;
}
.footer-socials a:nth-child(2) {
  background: rgba(50,199,255,.16);
}
.footer-socials a:nth-child(3) {
  background: rgba(255,106,167,.16);
}


/* Final category sizing */
.categories-shell {
  padding: 12px 14px !important;
}
.categories-head {
  margin-bottom: 10px !important;
  padding: 0 2px 8px !important;
}
.categories-head h2 {
  font-size: 20px !important;
}
.categories-head p {
  font-size: 13px !important;
}
.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
.category-card {
  min-height: 60px !important;
  max-height: 60px;
  border-radius: 12px !important;
  box-shadow: 0 6px 16px rgba(37,83,149,.08) !important;
}
.category-card span {
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 17px !important;
  line-height: 1 !important;
}
.category-card img {
  object-position: right center !important;
  filter: saturate(.95) brightness(.98) !important;
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.17) 0%, rgba(14,26,51,.04) 40%, rgba(14,26,51,0) 70%) !important;
}
.footer-socials a:nth-child(2) {
  background: rgba(255,0,51,.14) !important;
}
.footer-socials a:nth-child(3) {
  background: rgba(37,244,238,.10) !important;
}
.footer-socials img {
  width: 21px;
  height: 21px;
}
.legal-box {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(37,83,149,.10);
  border-radius: 18px;
  padding: 22px;
  color: #4f6688;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .category-grid {
    grid-template-columns: 1fr !important;
  }
  .category-card {
    min-height: 58px !important;
    max-height: 58px;
  }
}


/* clearer header */
.topbar {
  background: linear-gradient(180deg, rgba(18,44,82,.96) 0%, rgba(22,56,104,.94) 100%) !important;
  border-bottom: 1px solid rgba(122,181,255,.22) !important;
  box-shadow: 0 14px 30px rgba(9, 24, 48, .22);
}
.nav-wrap {
  min-height: 92px;
}
.logo-link {
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.logo-link span {
  color: #ffffff;
  letter-spacing: .01em;
}
.main-nav {
  padding: 6px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  gap: 6px;
}
.main-nav a {
  color: rgba(255,255,255,.86) !important;
  padding: 12px 16px;
  border-radius: 14px;
}
.main-nav a:hover {
  background: rgba(124,184,255,.22) !important;
  color: #ffffff !important;
}
.discord-btn {
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.ip-btn {
  box-shadow: 0 12px 28px rgba(36, 92, 181, .35);
}
@media (max-width: 960px) {
  .topbar {
    padding-bottom: 10px;
  }
  .main-nav {
    width: 100%;
    justify-content: space-between;
    overflow: auto;
  }
  .logo-link {
    width: auto;
  }
}


/* Lighter, clearer header */
.topbar {
  background: linear-gradient(180deg, rgba(228,239,255,.95) 0%, rgba(240,247,255,.93) 100%) !important;
  border-bottom: 1px solid rgba(95,145,220,.20) !important;
  box-shadow: 0 10px 24px rgba(49, 92, 160, .10) !important;
}
.logo-link {
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(102,146,212,.14) !important;
  color: #173a72 !important;
}
.logo-link span { color: #173a72 !important; }
.main-nav {
  background: rgba(255,255,255,.66) !important;
  border: 1px solid rgba(102,146,212,.12) !important;
}
.main-nav a {
  color: #47638b !important;
}
.main-nav a:hover {
  background: rgba(116,176,255,.22) !important;
  color: #14438a !important;
}
.discord-btn {
  background: rgba(255,255,255,.74) !important;
  border: 1px solid rgba(102,146,212,.12) !important;
  box-shadow: 0 8px 20px rgba(49, 92, 160, .08) !important;
}

/* Slightly thicker, clearer categories */
.categories-shell {
  padding: 14px 16px !important;
  border-radius: 24px !important;
}
.category-grid {
  gap: 14px !important;
}
.category-card {
  min-height: 74px !important;
  max-height: 74px !important;
  border-radius: 14px !important;
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.13) 0%, rgba(14,26,51,.03) 42%, rgba(14,26,51,0) 72%) !important;
}
.category-card span {
  font-size: 18px !important;
}
.category-card img {
  object-fit: cover !important;
  object-position: right center !important;
  filter: saturate(1) brightness(1.02) !important;
}

/* More overview / clearer modules */
main {
  padding-bottom: 12px;
}
.hero,
.categories-shell,
.products,
.community {
  position: relative;
  overflow: hidden;
}
.hero::before,
.categories-shell::before,
.products::before,
.community::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
}
.hero::before { background: linear-gradient(90deg, #69b3ff, #8f7dff); }
.categories-shell::before { background: linear-gradient(90deg, #6fc0ff, #3bd1d1); }
.products::before { background: linear-gradient(90deg, #76b8ff, #9b8cff, #ff90be); }
.community::before { background: linear-gradient(90deg, #7f8bff, #5d76ff); }
.hero {
  margin-bottom: 22px !important;
}
.category-band {
  margin-bottom: 8px;
}
.products {
  padding: 30px 30px 28px !important;
  margin-top: 24px !important;
  border-radius: 28px !important;
  box-shadow: 0 16px 36px rgba(37,83,149,.07), 0 2px 0 rgba(255,255,255,.75) inset !important;
}
.community {
  padding: 26px 28px !important;
}
.section-title {
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(73,118,186,.10) !important;
}
.section-title h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-title h2::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6eaaff 0%, #8a6cff 100%);
  box-shadow: 0 0 0 6px rgba(110,170,255,.12);
}
.product-grid,
.product-grid.two {
  gap: 24px !important;
}
.product-card {
  border-radius: 22px !important;
}
.product-info {
  padding: 20px 20px 22px !important;
}
.product-info p {
  min-height: 58px !important;
}
.site-footer {
  margin-top: 38px !important;
}

@media (max-width: 960px) {
  .category-card {
    min-height: 68px !important;
    max-height: 68px !important;
  }
  .products,
  .community {
    padding: 22px 18px !important;
  }
}


/* softer visible blue header */
.topbar {
  background: linear-gradient(180deg, rgba(208,225,248,.96) 0%, rgba(224,237,252,.94) 100%) !important;
  border-bottom: 1px solid rgba(92,141,214,.22) !important;
  box-shadow: 0 10px 24px rgba(49, 92, 160, .12) !important;
}
.logo-link {
  background: rgba(255,255,255,.58) !important;
  border: 1px solid rgba(102,146,212,.16) !important;
  color: #173a72 !important;
}
.logo-link span { color: #173a72 !important; }
.main-nav {
  background: rgba(255,255,255,.50) !important;
  border: 1px solid rgba(102,146,212,.14) !important;
}
.main-nav a {
  color: #456287 !important;
}
.main-nav a:hover {
  background: rgba(116,176,255,.20) !important;
  color: #14438a !important;
}
.discord-btn {
  background: rgba(255,255,255,.56) !important;
  border: 1px solid rgba(102,146,212,.14) !important;
  box-shadow: 0 8px 20px rgba(49, 92, 160, .08) !important;
}


/* category images more visible */
.categories-shell {
  padding: 14px 16px !important;
}
.category-grid {
  gap: 14px !important;
}
.category-card {
  min-height: 92px !important;
  max-height: 92px !important;
  border-radius: 16px !important;
  overflow: hidden;
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.08) 0%, rgba(14,26,51,.02) 28%, rgba(14,26,51,0) 54%) !important;
}
.category-card span {
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 16px !important;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(20, 38, 68, .26);
  backdrop-filter: blur(4px);
  color: #fff !important;
  text-shadow: none !important;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.03);
  filter: saturate(1.02) brightness(1.03) !important;
}
@media (max-width: 960px) {
  .category-card {
    min-height: 86px !important;
    max-height: 86px !important;
  }
}


.quick-account img {
  width: 42px;
  height: 42px;
  image-rendering: pixelated;
  border-radius: 10px;
}
.account-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 25, 46, .42);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
  z-index: 95;
}
.account-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.account-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(.98);
  width: min(760px, calc(100vw - 28px));
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,249,255,.98) 100%);
  border: 1px solid rgba(80,124,191,.14);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(11, 30, 60, .24);
  padding: 28px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: .24s ease;
}
.account-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.account-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #e8eff9;
  color: #445a7e;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.account-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
}
.account-hero-preview {
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(180deg, #edf4ff 0%, #dfeaf9 100%);
  border: 1px solid rgba(80,124,191,.14);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.account-hero-preview img {
  width: 180px;
  height: 180px;
  image-rendering: pixelated;
}
.account-hero-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: .98;
  letter-spacing: -.03em;
  color: #162c4a;
}
.account-hero-copy p {
  margin: 0;
  color: #5a7091;
  line-height: 1.65;
}
.account-form-wrap {
  max-width: 390px;
  margin: 0 auto;
  text-align: center;
}
.account-form-wrap label {
  display: block;
  margin-bottom: 10px;
  text-align: left;
  color: #4d668b;
  font-weight: 900;
  font-size: 14px;
}
.account-form-wrap input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(80,124,191,.20);
  background: #f0f5fc;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
  font-size: 20px;
  font-weight: 700;
  color: #233a5d;
  outline: none;
}
.account-form-wrap input:focus {
  border-color: rgba(80,124,191,.35);
  box-shadow: 0 0 0 4px rgba(109,164,255,.14);
}
.account-login-btn {
  margin-top: 16px;
  border: 0;
  border-radius: 16px;
  min-height: 52px;
  min-width: 190px;
  padding: 0 24px;
  background: linear-gradient(180deg, #ffd35a 0%, #f3b91a 100%);
  color: #20242d;
  font-weight: 900;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(219, 167, 28, .24);
}
.account-note {
  margin: 14px 0 0;
  color: #5a7091;
  line-height: 1.6;
  font-size: 14px;
}
@media (max-width: 760px) {
  .account-modal {
    padding: 22px;
  }
  .account-hero {
    grid-template-columns: 1fr;
  }
  .account-hero-preview {
    min-height: 180px;
  }
  .account-hero-preview img {
    width: 132px;
    height: 132px;
  }
}


/* ===== Dynamic, more varied section design ===== */
body {
  background:
    radial-gradient(circle at 8% 10%, rgba(92,175,255,.12) 0%, transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(138,108,255,.10) 0%, transparent 26%),
    radial-gradient(circle at 80% 72%, rgba(255,124,168,.08) 0%, transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%) !important;
}
main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 12px;
}
.hero::before,
.categories-shell::before,
.products::before,
.community::before,
.product-card::before {
  display: none !important;
}
.hero {
  background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(240,247,255,.98) 60%, rgba(242,239,255,.94) 100%) !important;
  border-radius: 38px !important;
  box-shadow: 0 18px 40px rgba(39,84,145,.08) !important;
  margin-bottom: 0 !important;
}
.category-band {
  margin: 0 !important;
}
.categories-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(243,248,255,.97) 60%, rgba(239,250,255,.95) 100%) !important;
  border-radius: 26px !important;
  border: 1px solid rgba(79,126,200,.10) !important;
  box-shadow: 0 14px 34px rgba(39,84,145,.07) !important;
}
.categories-shell::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,190,255,.18) 0%, rgba(122,190,255,0) 68%);
  pointer-events: none;
}
.categories-head {
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px !important;
  margin-bottom: 14px !important;
  border-bottom: 1px solid rgba(73,118,186,.08) !important;
}
.categories-head h2 {
  font-size: 22px !important;
}
.categories-head p {
  max-width: 340px;
  text-align: right;
  color: #6a7f9f !important;
}
.category-card {
  min-height: 84px !important;
  max-height: 84px !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 22px rgba(39,84,145,.08) !important;
  border: 1px solid rgba(93,140,214,.14) !important;
}
.category-card:nth-child(1) {
  background: linear-gradient(90deg, #6aafff 0%, #74a8ff 45%, #7e8dff 100%) !important;
}
.category-card:nth-child(2) {
  background: linear-gradient(90deg, #42c5ff 0%, #56b7ff 42%, #6998ff 100%) !important;
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.10) 0%, rgba(14,26,51,.02) 30%, rgba(14,26,51,0) 58%) !important;
}
.category-card span {
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 12px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
}
.category-card img {
  object-position: center !important;
  transform: scale(1.08);
}
.products {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 28px !important;
  box-shadow: 0 18px 40px rgba(39,84,145,.07) !important;
  border: 1px solid rgba(79,126,200,.10) !important;
}
.products > * {
  position: relative;
  z-index: 1;
}
#angebote.products {
  background: linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(249,252,255,.97) 70%, rgba(240,247,255,.97) 100%) !important;
  border-radius: 36px 24px 36px 24px !important;
}
#angebote.products::after {
  content: "";
  position: absolute;
  top: -55px;
  right: -35px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,184,255,.18) 0%, rgba(111,184,255,0) 72%);
}
#ranks.products {
  background: linear-gradient(135deg, rgba(241,248,255,.97) 0%, rgba(255,255,255,.98) 58%, rgba(242,241,255,.97) 100%) !important;
  border-radius: 24px 42px 24px 42px !important;
  width: min(1180px, calc(100% - 56px));
  margin-left: auto !important;
  margin-right: auto !important;
}
#ranks.products::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,108,255,.14) 0%, rgba(138,108,255,0) 72%);
}
#crystals.products {
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(247,251,255,.98) 55%, rgba(255,243,249,.95) 100%) !important;
  border-radius: 42px 24px 24px 42px !important;
}
#crystals.products::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -75px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,167,.12) 0%, rgba(255,106,167,0) 70%);
}
.section-title {
  margin-bottom: 22px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(73,118,186,.09) !important;
}
.section-title h2 {
  color: #173b77 !important;
}
.section-title p {
  color: #647999 !important;
  max-width: 520px;
}
.section-title h2::before {
  width: 12px !important;
  height: 12px !important;
  box-shadow: 0 0 0 7px rgba(110,170,255,.10) !important;
}
#ranks .product-grid.two .product-card:first-child {
  transform: translateY(8px);
}
#ranks .product-grid.two .product-card:last-child {
  transform: translateY(-8px);
}
#crystals .product-grid .product-card:nth-child(2) {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 40px rgba(63, 114, 194, .12) !important;
}
.product-card {
  background: rgba(255,255,255,.98) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 30px rgba(39,84,145,.08) !important;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 38px rgba(39,84,145,.12) !important;
}
.product-card > img {
  border-bottom: 1px solid rgba(79,126,200,.08);
}
.community {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.community-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(240,245,255,.97) 100%) !important;
  border: 1px solid rgba(79,126,200,.10) !important;
  border-radius: 28px 44px 28px 44px !important;
  box-shadow: 0 18px 40px rgba(39,84,145,.07) !important;
}
.community-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,132,255,.18) 0%, rgba(120,132,255,0) 72%);
}
.community-copy, .community-image {
  position: relative;
  z-index: 1;
}
.site-footer {
  margin-top: 34px !important;
}
@media (max-width: 960px) {
  main {
    gap: 18px;
  }
  .categories-head {
    display: block !important;
  }
  .categories-head p {
    text-align: left;
    margin-top: 6px;
  }
  .products {
    padding: 22px 18px !important;
    width: min(100%, calc(100% - 24px)) !important;
  }
  .category-card {
    min-height: 78px !important;
    max-height: 78px !important;
  }
  #ranks .product-grid.two .product-card:first-child,
  #ranks .product-grid.two .product-card:last-child,
  #crystals .product-grid .product-card:nth-child(2) {
    transform: none !important;
  }
}


/* category images fully visible */
.category-card {
  min-height: 96px !important;
  max-height: 96px !important;
}
.category-card span {
  z-index: 3;
}
.category-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0 18px 0 74px;
  filter: saturate(1.03) brightness(1.02) !important;
}
.category-card:nth-child(1) img {
  padding-left: 84px;
  padding-right: 14px;
}
.category-card:nth-child(2) img {
  padding-left: 86px;
  padding-right: 18px;
}
.category-card::after {
  background: linear-gradient(90deg, rgba(14,26,51,.06) 0%, rgba(14,26,51,.015) 22%, rgba(14,26,51,0) 44%) !important;
}
@media (max-width: 960px) {
  .category-card {
    min-height: 88px !important;
    max-height: 88px !important;
  }
  .category-card img {
    padding-left: 78px;
    padding-right: 14px;
  }
}


/* Cytooxien-inspired shop structure, but original Lurix styling */
main { display: block !important; }
.hero { margin-bottom: 24px !important; }
.category-band {
  background: rgba(226,235,248,.72);
  border-top: 1px solid rgba(80,124,191,.10);
  border-bottom: 1px solid rgba(80,124,191,.10);
  padding: 14px 0 !important;
  margin: 0 0 34px !important;
}
.category-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}
.category-card {
  min-height: 92px !important;
  max-height: 92px !important;
  border-radius: 12px !important;
  background: #eaf3ff !important;
  border: 1px solid rgba(73,118,186,.16) !important;
  box-shadow: 0 10px 22px rgba(39,84,145,.08) !important;
}
.category-card img {
  object-fit: contain !important;
  object-position: right center !important;
  padding: 4px 18px 4px 86px !important;
  transform: none !important;
  filter: saturate(1.03) brightness(1.02) !important;
}
.category-card::after {
  background: linear-gradient(90deg, rgba(10,33,70,.18) 0%, rgba(10,33,70,.03) 38%, rgba(10,33,70,0) 62%) !important;
}
.category-card span {
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 3;
  background: rgba(255,255,255,.20) !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  font-size: 17px !important;
  color: #fff !important;
}
.shop-stage {
  margin-top: 0;
  margin-bottom: 34px;
}
.shop-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}
.shop-title-row h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.04em;
  color: #102b56;
}
.shop-title-row p {
  margin: 0;
  color: #5f7393;
  max-width: 380px;
  line-height: 1.55;
}
.shop-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(95,169,255,.16), rgba(138,108,255,.14));
  color: #2262be;
  font-weight: 900;
  font-size: 13px;
}
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
}
.catalog {
  display: grid;
  gap: 42px;
}
.catalog-group {
  position: relative;
}
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(73,118,186,.10);
}
.catalog-head div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.catalog-head span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, #69b3ff, #8274ff);
  box-shadow: 0 10px 18px rgba(96,147,235,.18);
}
.catalog-head h3 {
  margin: 0;
  font-size: 30px;
  color: #123a78;
  letter-spacing: -.03em;
}
.catalog-head p {
  margin: 0;
  color: #647999;
}
.product-grid,
.product-grid.two,
.crystals-products {
  display: grid !important;
  gap: 24px !important;
}
.product-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.crystals-products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.product-card {
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(73,118,186,.12) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 32px rgba(40,87,150,.09) !important;
  overflow: hidden;
}
.product-card::before { display: none !important; }
.product-card > img {
  aspect-ratio: 4 / 3 !important;
  border-bottom: 1px solid rgba(73,118,186,.08);
}
.featured-card {
  transform: translateY(-6px);
  border-color: rgba(95,169,255,.28) !important;
  box-shadow: 0 18px 42px rgba(40,87,150,.13) !important;
}
.product-card:hover { transform: translateY(-4px) !important; }
.featured-card:hover { transform: translateY(-10px) !important; }
.shop-aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}
.aside-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(73,118,186,.12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(40,87,150,.08);
  color: inherit;
}
.aside-card h3 { margin: 0 0 8px; color: #123a78; }
.aside-card p { margin: 0; color: #637895; line-height: 1.55; }
.account-card { display: grid; grid-template-columns: 58px 1fr; gap: 14px; align-items: start; }
.account-card > img { width: 58px; height: 58px; image-rendering: pixelated; border-radius: 12px; }
.side-link {
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: #e4f1ff;
  color: #2262be;
  font-weight: 900;
  cursor: pointer;
}
.info-card { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,250,255,.98)); }
.discord-card { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.discord-card > img { width: 44px; height: 44px; }
.shop-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,247,255,.96));
  border: 1px solid rgba(73,118,186,.12);
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: 0 14px 32px rgba(40,87,150,.08);
  margin-bottom: 34px;
}
.shop-notice strong { color: #123a78; }
.shop-notice p { margin: 4px 0 0; color: #637895; }
.products { background: transparent !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; }
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .shop-title-row, .catalog-head, .shop-notice { display: block; }
  .shop-title-row p, .catalog-head p { margin-top: 8px; }
  .product-grid.two, .crystals-products, .shop-aside, .category-grid { grid-template-columns: 1fr !important; }
  .featured-card, .featured-card:hover { transform: none !important; }
  .category-card { min-height: 86px !important; max-height: 86px !important; }
  .category-card img { padding-left: 84px !important; }
}
