:root {
  --bg: #000000;
  --bg-mid: #0a0a0a;
  --black-card: rgba(0, 0, 0, 0.75);
  --panel: rgba(8, 4, 14, 0.92);
  --purple: #a855f7;
  --purple-light: #e9d5ff;
  --purple-deep: #6d28d9;
  --accent: #d946ef;
  --accent-blue: #818cf8;
  --purple-glow: rgba(168, 85, 247, 0.5);
  --border: rgba(216, 180, 254, 0.32);
  --text: #faf5ff;
  --muted: rgba(233, 213, 255, 0.72);
  --font: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Orbitron", "Cairo", sans-serif;
  --content-max: 1180px;
}

html {
  font-size: 15px;
}

@media (min-width: 900px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page-main {
  flex: 1 0 auto;
  width: 100%;
}

/* Animated background */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}

.bg-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

/* no center glow — space stars only */

#bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
}

.bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000000;
}

.stars {
  position: absolute;
  inset: -25%;
  z-index: 3;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(2px 2px at 28% 62%, rgba(233, 213, 255, 0.55), transparent),
    radial-gradient(2.5px 2.5px at 52% 12%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 68% 78%, rgba(192, 132, 252, 0.55), transparent),
    radial-gradient(2px 2px at 88% 38%, rgba(255, 255, 255, 0.45), transparent);
  background-size: 220% 220%;
  pointer-events: none;
}

.stars-drift {
  animation: starDrift 80s linear infinite, twinkle 6s ease-in-out infinite alternate;
}

.stars-drift-alt {
  opacity: 0.65;
  transform: scale(1.1);
  animation: starDrift 110s linear infinite reverse, twinkle 8s ease-in-out infinite alternate-reverse;
}

@keyframes centerPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes starDrift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes twinkle {
  to {
    opacity: 0.7;
  }
}

a {
  color: var(--purple-light);
  text-decoration: none;
}

/* Header */
.top-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem 1.75rem;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.cart-link {
  justify-self: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--purple-light);
  border: 1px solid rgba(168, 85, 247, 0.55);
  border-radius: 10px;
  background: #000000;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.cart-link:hover {
  border-color: var(--purple-light);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.cart-link svg {
  width: 22px;
  height: 22px;
}

.cart-link .cart-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 6px;
  background: var(--purple);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge.is-empty {
  opacity: 0.45;
}

.top-nav {
  display: flex;
  gap: 2rem;
  justify-self: center;
}

.top-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.85;
}

.top-nav a:hover,
.top-nav a.active {
  opacity: 1;
  color: var(--purple-light);
}

.brand {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #fff;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--purple-glow));
}

/* Home hero */
.hero-home {
  text-align: center;
  padding: 1.75rem 1.25rem 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-logo-box {
  display: inline-block;
  padding: 1rem 1.35rem;
  margin-bottom: 1.35rem;
  background: #000000;
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 14px;
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.4),
    inset 0 0 30px rgba(168, 85, 247, 0.05);
}

.hero-logo-box img {
  width: min(300px, 78vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.hero-title-split {
  font-family: var(--font-en);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.title-shadow {
  display: block;
  font-size: clamp(2.2rem, 7vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c084fc;
}

.title-store {
  display: block;
  font-size: clamp(2.2rem, 7vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.65rem;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-solid {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--accent) 55%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.45);
}

.btn-outline,
.btn-black {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(168, 85, 247, 0.55);
}

.btn-outline:hover,
.btn-black:hover {
  border-color: var(--purple-light);
  background: rgba(168, 85, 247, 0.12);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.35);
  color: #fff;
}

.scroll-hint {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--purple-light), transparent);
  margin: 0.5rem auto 0;
}

/* Products listing */
.products-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem 2rem 3.5rem;
}

.page-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
}

.page-heading {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  text-shadow: 0 0 24px var(--purple-glow);
}

.page-lead {
  color: var(--muted);
  margin: 0 0 2.5rem;
  max-width: 600px;
  font-size: 1.1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.catalog-card {
  background: linear-gradient(180deg, var(--black-card) 0%, var(--panel) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
}

.catalog-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 32px var(--purple-glow);
  transform: translateY(-4px);
  text-decoration: none;
}

.catalog-card-banner {
  min-height: 240px;
  height: auto;
  background: linear-gradient(180deg, rgba(88, 28, 135, 0.2), #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.catalog-card-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 220px;
  min-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(168, 85, 247, 0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.catalog-card:hover .catalog-card-banner img {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 36px rgba(217, 70, 239, 0.5));
}

.catalog-card-body {
  padding: 0.85rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.catalog-card-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.catalog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.currency-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(147, 51, 234, 0.25);
  color: var(--purple-light);
  border: 1px solid var(--border);
}

.order-link {
  font-weight: 700;
  color: var(--purple-light);
  font-size: 1.05rem;
}

/* Product detail page */
.product-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 2rem;
  text-align: center;
}

.product-showcase {
  margin: 0 auto 1.25rem;
  padding: 1rem;
  max-width: 100%;
  background: #000000;
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 16px;
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.25);
}

.product-showcase img,
.product-hero-img img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  height: auto;
  min-height: 200px;
  max-height: min(52vh, 420px);
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 10px 32px rgba(192, 132, 252, 0.4));
}

.product-hero-img {
  margin-bottom: 0;
}

.product-page-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.product-page-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.product-panel {
  text-align: right;
  background: linear-gradient(180deg, #000000 0%, var(--panel) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.panel-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.pick-grid {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.pick-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 480px) {
  .pick-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pick-card {
  background: #000000;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  color: inherit;
  font-family: var(--font);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.pick-card:hover {
  border-color: var(--purple-light);
}

.pick-card.selected {
  border-color: var(--purple-light);
  background: rgba(147, 51, 234, 0.2);
  box-shadow: 0 0 20px var(--purple-glow);
}

.pick-amt {
  font-weight: 800;
  font-size: 1rem;
}

.pick-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.pick-price {
  font-size: 1rem;
  color: var(--purple-light);
  font-weight: 600;
}

.pick-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.8rem 1rem;
  background: #000000;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  cursor: pointer;
  color: inherit;
  font-family: var(--font);
  text-align: right;
  transition: background 0.2s, border-color 0.2s;
}

.pick-row:hover {
  background: rgba(147, 51, 234, 0.12);
}

.pick-row.selected {
  border-color: var(--purple-light);
  background: rgba(147, 51, 234, 0.18);
}

.pick-row-price {
  font-weight: 700;
  color: var(--purple-light);
  white-space: nowrap;
}

.pick-row-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pick-row-text strong {
  font-size: 0.95rem;
}

.pick-row-text small {
  color: var(--muted);
  font-size: 0.95rem;
}

.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.toggle-btn {
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.selected {
  background: linear-gradient(135deg, var(--purple-deep), var(--accent));
  border-color: transparent;
  box-shadow: 0 0 20px var(--purple-glow);
}

.field-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.field-input:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.25);
}

.field-textarea {
  min-height: 110px;
  resize: vertical;
}

.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  font-size: 1.05rem;
}

.total-bar strong {
  font-size: 1.2rem;
  color: var(--purple-light);
}

.btn-add {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--accent) 50%, var(--purple) 100%);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 24px var(--purple-glow);
  transition: transform 0.2s;
}

.btn-add:hover {
  transform: translateY(-2px);
}

/* Cart & payment */
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}

.section-heading {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  text-align: center;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.75rem;
}

.cart-item h4 {
  margin: 0 0 0.35rem;
}

.cart-item .meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.cart-summary {
  background: var(--panel);
  border: 1px solid var(--purple-light);
  border-radius: 16px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  box-shadow: 0 0 28px var(--purple-glow);
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cart-summary .total {
  font-size: 1.25rem;
  font-weight: 800;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.pay-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.pay-card h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.iban-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.iban-row input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  direction: ltr;
}

.btn-green {
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-blue {
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn-orange {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  margin-bottom: 0.65rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

/* Image-only sections grid */
.products-page-minimal {
  padding: 1.25rem 1rem 3rem;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.sections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .sections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.section-tile {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.4);
  background: #000;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.7s ease backwards;
}

.section-tile:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--purple-light);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.45);
}

.section-tile img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 140px;
  object-fit: contain;
  background: #000;
}

.section-tile:nth-child(1) {
  animation-delay: 0.05s;
}
.section-tile:nth-child(2) {
  animation-delay: 0.1s;
}
.section-tile:nth-child(3) {
  animation-delay: 0.15s;
}
.section-tile:nth-child(4) {
  animation-delay: 0.2s;
}
.section-tile:nth-child(5) {
  animation-delay: 0.25s;
}

/* Product inner page */
.product-panel-inner {
  max-width: 640px;
  margin: 0 auto;
}

.product-pricing-img {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: #000;
}

.product-pricing-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Payment */
.pay-card-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.pay-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.pay-subtitle {
  font-size: 1.1rem;
  color: var(--purple-light);
  margin: 1.75rem 0 1rem;
  text-align: center;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  margin: 0.4rem 0;
}

.pay-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}

.banks-pay-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 720px) {
  .banks-pay-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.pay-bank-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 0;
}

.pay-bank-card.rajhi-card .rajhi-name {
  margin-bottom: 0;
}

.iban-highlight-box {
  background: #1a1a1a;
  border: 1px solid rgba(126, 184, 255, 0.35);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.iban-display {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.78rem, 2.8vw, 0.95rem);
  font-weight: 700;
  color: #fff;
  margin: 0.35rem 0 0.85rem;
  word-break: break-all;
  line-height: 1.45;
}

.iban-highlight-box .btn-copy-blue {
  width: 100%;
  max-width: 140px;
}

.bank-img-square {
  aspect-ratio: 1;
  max-width: 100%;
  margin: 0 auto;
  background: #121212;
  border: 2px solid rgba(168, 85, 247, 0.35);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g2a-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.g2a-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 1.25rem 1rem;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid #f5a623;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.g2a-box:hover {
  transform: translateY(-4px);
  border-color: #ffc04d;
  box-shadow: 0 0 28px rgba(245, 166, 35, 0.35);
}

.g2a-logo {
  font-family: var(--font-en, Orbitron), Orbitron, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #f5a623;
  letter-spacing: 0.06em;
}

.g2a-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.pay-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.pay-value {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.pay-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.pay-bank-card .iban-row input {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
}

.btn-copy-blue {
  background: #7eb8ff;
  color: #0a1628;
  border: none;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.wallet-card {
  background: #0a0a0a;
  border: 2px solid rgba(168, 85, 247, 0.35);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wallet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.3);
}

.qr-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.qr-box {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.25rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 16px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.qr-box canvas,
.qr-box .qr-img {
  display: block;
  border-radius: 8px;
}

.site-link-card {
  border-color: rgba(168, 85, 247, 0.5);
}

.site-url-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.5rem;
}

.site-url-input {
  flex: 1;
  min-width: 200px;
  direction: ltr;
  text-align: left;
  font-size: 0.9rem;
}

.site-url-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-url-hint span {
  color: var(--purple-light);
}

.qr-box-sm {
  margin-bottom: 1rem;
}

.pay-bank-card-secondary {
  margin-top: 1.25rem;
}

.pay-alt-bank {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.wallet-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 20px;
}

.order-send-card .field-input {
  width: 100%;
  margin-bottom: 0.85rem;
}

.order-send-card .field-file {
  padding: 0.65rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
}

.btn-send-order {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  font-size: 1.05rem;
}

.sent-banner {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.wallet-vodafone {
  border-color: rgba(230, 0, 0, 0.45);
}

.wallet-instapay {
  border-color: rgba(111, 45, 189, 0.55);
}

.wallet-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.wallet-num {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--purple-light);
}

.contact-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-copy,
.btn-open {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.btn-copy {
  background: rgba(168, 85, 247, 0.3);
}

.btn-open {
  background: #22c55e;
}

/* Footers */
.site-footer-wrap {
  flex-shrink: 0;
  margin-top: auto;
}

.footer-mini {
  border-top: 1px solid rgba(168, 85, 247, 0.25);
  padding: 1rem 1.5rem;
  background: #000000;
}

.footer-mini-inner {
  max-width: var(--content-max);
  font-size: 0.95rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-mini a {
  color: var(--muted);
  text-decoration: none;
}

.footer-mini a:hover {
  color: var(--purple-light);
}

.footer-mini-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-service-block {
  background: linear-gradient(180deg, #000000, #0a0512);
  border-top: 2px solid rgba(168, 85, 247, 0.35);
}

.service-tagline {
  text-align: center;
  margin: 0;
  padding: 0.75rem 1rem 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-light);
}

.footer-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1rem 1rem;
}

.footer-bar > div {
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-bar > div:first-child {
  border-left: none;
}

.fi {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #22c55e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  opacity: 0;
  transition: 0.3s;
  z-index: 300;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .bg-animated {
    animation: none !important;
  }

  #bg-canvas {
    opacity: 0.5;
  }
}

@media (max-width: 640px) {
  .catalog-card-banner {
    min-height: 200px;
  }

  .catalog-card-banner img {
    min-height: 150px;
    max-height: 180px;
  }

  .product-showcase img {
    max-height: 38vh;
    min-height: 160px;
  }

  .top-header {
    padding: 0.85rem 1rem;
    gap: 0.5rem;
  }

  .top-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .brand-text {
    display: none;
  }

  .footer-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bar > div:nth-child(odd) {
    border-left: none;
  }
}
