/* Alfredaz Shop – single page styles */

:root {
  --bg0: #070A12;
  --bg1: #0B1224;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --muted2: rgba(255, 255, 255, 0.58);
  --brand: #7C5CFF;
  --brand2: #39D3FF;
  --good: #23E5A2;

  --r: 18px;
  --r2: 14px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 16% 18%, rgba(124, 92, 255, 0.24), transparent 60%),
    radial-gradient(700px 520px at 86% 18%, rgba(57, 211, 255, 0.18), transparent 58%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 10, 18, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  padding: 42px 0 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.hero-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-art {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.15px;
  border: 1px solid var(--stroke);
  transition: 160ms ease;
}

.btn-primary {
  border-color: transparent;
  color: rgba(10, 12, 18, 0.95);
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 26px 0;
}

.section-head {
  margin-bottom: 12px;
}

.section-title {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
}

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

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.card {
  display: block;
  padding: 16px;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  text-decoration: none;
  color: var(--text);
  transition: 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.05));
}

.card-title {
  font-weight: 800;
  margin-bottom: 6px;
}

.card-text {
  color: var(--muted);
  font-size: 14px;
}

/* Panels / lists */
.panel {
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  padding: 14px;
}

details.panel {
  padding: 0;
  overflow: hidden;
}

.panel-title {
  margin: 2px 0 10px;
  font-size: 16px;
}

.panel-summary {
  cursor: pointer;
  list-style: none;
  padding: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.panel-summary::after {
  content: "▾";
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  transform: rotate(-90deg);
  transition: 200ms ease;
}

details.panel[open] .panel-summary::after {
  transform: rotate(0deg);
}

.panel-summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.panel-summary::-webkit-details-marker { display: none; }

details.panel[open] .panel-summary {
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.list {
  margin: 0;
  padding: 10px 18px 14px;
  color: var(--muted);
}

.list li { margin: 7px 0; }

.stack {
  display: grid;
  gap: 12px;
}

/* Price lists (Discord botai) */
.panel-body {
  padding: 12px 14px 14px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-item {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px;
}

.price-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
}

.code {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  min-width: 44px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(10, 12, 18, 0.95);
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(57, 211, 255, 0.85));
}

.name {
  color: var(--text);
  font-weight: 750;
}

.price {
  font-weight: 850;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.94);
}

.meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 8px;
}

.em {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.sub-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.sub-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.14);
}

.sub-name {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.sub-price {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

/* Payments */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pay-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.pay-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  padding: 6px;
}

.pay-item--lg img {
  width: 46px;
  height: 46px;
  padding: 7px;
}

.pay-item span {
  color: var(--text);
  font-weight: 700;
}

/* Contact */
.contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.contact-row + .contact-row { margin-top: 10px; }

.contact-row img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
}

.contact-label {
  font-size: 12px;
  color: var(--muted2);
}

.contact-value {
  font-weight: 800;
}

.muted { color: var(--muted); }

.link {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

/* Footer */
.footer {
  padding: 22px 0 30px;
  border-top: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.16);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 940px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image { height: 240px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(1100px, calc(100% - 28px)); }
  .cards { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .nav { gap: 6px; }
  .nav-link { padding: 7px 9px; }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .price-row {
    grid-template-columns: 44px 1fr;
  }

  .price {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .nav-link { transition: none; }
}












