/* FORCESSET Client — styles */
:root {
  --bg: #0b0f14;
  --bg2: #121820;
  --bg3: #1a222d;
  --card: #151c26;
  --border: #243041;
  --text: #e8eef6;
  --muted: #8b9bb0;
  --accent: #3b82f6;
  --accent2: #22c55e;
  --danger: #ef4444;
  --warn: #f59e0b;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,.35);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,15,20,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  line-height: 1.15; min-width: 0;
}
.logo-img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 10px; flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255,255,255,.12);
  animation: logoGlow 3.5s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
  background: #0a0a0a;
}
.logo:hover .logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(180,200,230,.25);
  animation-play-state: paused;
}
.logo-text { display: flex; flex-direction: column; min-width: 0; }
.logo-brand {
  font-weight: 800; font-size: 1.15rem; letter-spacing: .04em;
  background: linear-gradient(90deg, #9aa8bc 0%, #e8eef6 40%, #9aa8bc 60%, #c0c8d4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metalShine 4s ease-in-out infinite;
}
.logo-sub {
  font-size: .7rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,255,255,.06); filter: brightness(1); }
  50% { box-shadow: 0 0 18px rgba(200,210,230,.2); filter: brightness(1.08); }
}
@keyframes metalShine {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(30,38,50,.95), rgba(14,18,26,.98));
  border: 1px solid rgba(120,140,170,.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 6px 16px rgba(0,0,0,.35);
  display: grid; place-items: center;
  color: #c5d0e0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  overflow: hidden;
}
.icon-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.icon-btn .ico { width: 20px; height: 20px; position: relative; z-index: 1; }
.icon-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(99,140,255,.45);
  box-shadow:
    0 1px 0 rgba(255,255,255,.1) inset,
    0 8px 22px rgba(40,80,180,.25),
    0 0 0 1px rgba(80,120,255,.12);
}
.icon-btn:hover::before { opacity: 1; animation: btnShine 1.2s ease; }
.icon-btn:active { transform: translateY(0) scale(.96); }
@keyframes btnShine {
  from { background-position: 120% 0; }
  to { background-position: -20% 0; }
}
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: .68rem; font-weight: 800;
  border-radius: 999px; display: grid; place-items: center;
  box-shadow: 0 0 0 2px #0b0f14, 0 4px 10px rgba(37,99,235,.45);
  z-index: 2;
  transition: transform .2s;
}
.cart-btn:hover .cart-count { transform: scale(1.08); }
.cart-count:not([data-empty="0"]) { animation: badgePop .35s ease; }
@keyframes badgePop {
  0% { transform: scale(.6); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Search */
.search-bar {
  max-width: 1200px; margin: 0 auto; padding: 0 16px 12px;
  display: none;
}
.search-bar.active { display: block; }
.search-bar input {
  width: 100%; padding: 12px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 1rem; outline: none;
}
.search-bar input:focus { border-color: var(--accent); }

/* Holiday banner */
.holiday-banner {
  display: none;
  background: linear-gradient(90deg, #1e3a5f, #0f172a);
  border-bottom: 1px solid var(--border);
}
.holiday-banner-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 10px 16px; display: flex; align-items: center; gap: 14px;
  position: relative;
}
.hb-img, .hb-video { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.hb-text { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; flex: 1; }
.hb-text strong { font-size: .95rem; }
.hb-text span { color: var(--muted); font-size: .9rem; }
.hb-link {
  background: var(--accent); color: #fff; padding: 6px 12px;
  border-radius: 8px; font-size: .85rem; font-weight: 600;
}
.hb-close {
  position: absolute; right: 12px; top: 8px;
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(0,0,0,.3); font-size: 1rem;
}

/* Hero — брендовый тёмный металлический фон */
.hero {
  position: relative;
  background-color: #050505;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(40,48,60,.45) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  background-size: cover;
  background-position: center;
  padding: 36px 16px 48px;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%),
    radial-gradient(circle at 50% 30%, transparent 0%, rgba(0,0,0,.5) 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 20px;
  max-width: min(320px, 85vw);
}
.hero-logo {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  object-fit: cover;
  aspect-ratio: 1500 / 1429;
  animation:
    heroLogoIn .9s cubic-bezier(.22,1,.36,1) both,
    heroLogoPulse 4s ease-in-out 1s infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,.12) 48%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.12) 52%,
    transparent 65%
  );
  background-size: 220% 100%;
  animation: shineSweep 5s ease-in-out 1.2s infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.hero h1, .hero-slogan {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700; margin-bottom: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c8d0dc;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
  animation: fadeUp .8s ease .35s both;
}
.hero p {
  color: #8b95a5; font-size: .95rem; margin-bottom: 22px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  animation: fadeUp .8s ease .5s both;
}
.hero-contacts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  animation: fadeUp .8s ease .65s both;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(.88) translateY(16px);
    filter: brightness(.6);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: brightness(1);
  }
}
@keyframes heroLogoPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 0 rgba(180,200,230,0); }
  50% { box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 32px rgba(180,200,230,.15); }
}
@keyframes shineSweep {
  0% { background-position: 120% 0; opacity: 0; }
  15% { opacity: 1; }
  50% { background-position: -20% 0; opacity: 1; }
  65%, 100% { background-position: -20% 0; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-img, .logo-brand, .hero-logo, .hero-logo-wrap::after,
  .hero-slogan, .hero p, .hero-contacts {
    animation: none !important;
  }
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff; font-weight: 650;
  font-size: .9rem;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 6px 18px rgba(37,99,235,.35), 0 1px 0 rgba(255,255,255,.12) inset;
  transition: transform .2s, box-shadow .2s, filter .2s;
  text-decoration: none !important;
}
.contact-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(37,99,235,.45), 0 1px 0 rgba(255,255,255,.15) inset;
}
.contact-btn:active { transform: translateY(0); }
.contact-btn.tg {
  background: linear-gradient(135deg, #2aabee, #1a8bc7);
  box-shadow: 0 6px 18px rgba(42,171,238,.3), 0 1px 0 rgba(255,255,255,.12) inset;
}
.contact-btn.secondary {
  background: linear-gradient(145deg, #1e2633, #151b24);
  border: 1px solid rgba(120,140,170,.25);
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}

/* Promo banners */
.promo-banners {
  max-width: 1200px; margin: 20px auto 0; padding: 0 16px;
  display: none; gap: 12px; overflow-x: auto;
}
.promo-card {
  flex: 0 0 280px; border-radius: var(--radius);
  overflow: hidden; background: var(--card);
  border: 1px solid var(--border); position: relative;
}
.promo-card img { width: 100%; height: 120px; object-fit: cover; }
.promo-placeholder {
  height: 120px; display: grid; place-items: center;
  background: var(--bg3); color: var(--muted); font-weight: 600;
}
.promo-label {
  display: block; padding: 8px 12px; font-size: .85rem; color: var(--muted);
}

/* Categories */
.categories {
  max-width: 1200px; margin: 24px auto 0; padding: 0 16px;
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
}
.categories::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0; padding: 9px 18px; border-radius: 999px;
  background: linear-gradient(145deg, rgba(30,38,50,.9), rgba(18,22,30,.95));
  border: 1px solid rgba(120,140,170,.2);
  font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: .2s; letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.cat-btn:hover {
  border-color: rgba(99,140,255,.4);
  color: #e8eef6;
  transform: translateY(-1px);
}
.cat-btn.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}

/* Products */
.section { max-width: 1200px; margin: 0 auto; padding: 24px 16px 48px; }
.section-title {
  font-size: 1.25rem; font-weight: 700; margin-bottom: 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: .2s; box-shadow: var(--shadow);
}
.product-card:hover {
  border-color: rgba(99,140,255,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.4), 0 0 0 1px rgba(80,120,255,.08);
}
.product-card {
  background: linear-gradient(165deg, #181f2a 0%, #121820 100%);
}
.product-card.out-of-stock { opacity: .7; }
.product-img {
  height: 160px; background: var(--bg3);
  display: grid; place-items: center; position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .placeholder { font-size: 3rem; }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
}
.product-info { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-name { font-weight: 600; font-size: .95rem; line-height: 1.3; }
.product-art { font-size: .8rem; color: var(--muted); }
.product-box { font-size: .8rem; color: var(--muted); }
.product-stock { font-size: .85rem; font-weight: 600; }
.stock-ok { color: var(--accent2); }
.stock-out { color: var(--danger); }
.product-price {
  font-size: 1.15rem; font-weight: 800; margin-top: 4px;
  color: #fff;
}
.qty-row {
  display: flex; align-items: center; gap: 6px; margin-top: 8px;
}
.qty-mini, .qty-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 1rem; font-weight: 600;
}
.qty-input, .cart-qty-input {
  width: 48px; height: 32px; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: .9rem;
}
.add-btn {
  flex: 1; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-weight: 700; font-size: .88rem;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.add-btn:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,99,235,.4);
}
.add-btn.added {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 12px rgba(34,197,94,.3);
}
.add-btn.disabled, .add-btn:disabled {
  background: linear-gradient(145deg, #1a222d, #121820);
  color: var(--muted); cursor: not-allowed;
  box-shadow: none; border-color: var(--border);
}
.no-results {
  display: none; text-align: center; padding: 48px 16px;
  color: var(--muted); font-size: 1.05rem;
}

/* Giveaway */
.giveaway-block {
  display: none; max-width: 1200px; margin: 0 auto 24px; padding: 0 16px;
}
.giveaway-inner {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 20px; align-items: flex-start;
}
.giveaway-img { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; }
.giveaway-badge {
  display: inline-block; background: var(--warn); color: #000;
  font-size: .75rem; font-weight: 700; padding: 3px 8px;
  border-radius: 6px; margin-bottom: 8px;
}
.giveaway-prize { color: var(--accent2); font-weight: 600; margin: 6px 0; }
.giveaway-date, .giveaway-rules { font-size: .85rem; color: var(--muted); margin-top: 6px; }

/* Cart sidebar */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 200; opacity: 0; pointer-events: none; transition: .2s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100%);
  background: var(--bg2); z-index: 210;
  transform: translateX(100%); transition: .25s;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-sidebar.active { transform: translateX(0); }
.cart-header {
  padding: 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h2 { font-size: 1.15rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px; }
.empty-cart { text-align: center; color: var(--muted); padding: 32px 16px; }
.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 56px; height: 56px; border-radius: 8px;
  background: var(--bg3); display: grid; place-items: center;
  font-size: 1.5rem; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.cart-item-price { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.box-hint { font-size: .75rem; }
.cart-item-controls { display: flex; align-items: center; gap: 6px; }
.remove-btn {
  margin-left: auto; color: var(--danger); font-size: .8rem; font-weight: 600;
}
.cart-footer {
  padding: 16px; border-top: 1px solid var(--border);
  background: var(--bg);
}
.cart-total-row {
  display: flex; justify-content: space-between;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 8px;
}
.cart-note { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.btn-primary {
  width: 100%; padding: 14px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 1rem; transition: .15s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

/* Modals */
.modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.6);
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.modal.active { display: flex; }
.modal-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; width: min(480px, 100%);
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h2 { font-size: 1.15rem; }
.modal-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg3); font-size: 1.1rem;
}
.modal-body { padding: 20px; }
.order-summary {
  background: var(--bg3); border-radius: 10px;
  padding: 12px; margin-bottom: 16px;
}
.order-summary .item {
  display: flex; justify-content: space-between;
  font-size: .9rem; padding: 4px 0;
}
.order-summary .item.total {
  border-top: 1px solid var(--border);
  margin-top: 8px; padding-top: 8px;
  font-weight: 700; font-size: 1rem;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: .85rem; color: var(--muted);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: .95rem;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea { min-height: 70px; resize: vertical; }
.delivery-options {
  display: flex; gap: 12px; margin-bottom: 14px;
}
.delivery-options label {
  flex: 1; padding: 12px; border-radius: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  cursor: pointer; text-align: center; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.delivery-options input { accent-color: var(--accent); }
.pickup-info {
  background: var(--bg3); border-radius: 10px;
  padding: 12px; font-size: .9rem; color: var(--muted);
  margin-bottom: 14px;
}
.transport-fields { display: none; }

/* Docs */
.doc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  margin-bottom: 8px; color: var(--text);
  transition: .15s;
}
.doc-item:hover { border-color: var(--accent); text-decoration: none; }
.doc-icon { font-size: 1.25rem; }
.doc-name { flex: 1; font-weight: 500; }
.doc-arrow { color: var(--muted); }

/* Footer */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 40px 16px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand { font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.footer-tagline { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.footer-contacts p { margin-bottom: 8px; font-size: .9rem; }
.footer-contacts a { color: var(--text); }
.footer-contacts a:hover { color: var(--accent); }
.footer-addr {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.footer-addr a { color: var(--accent); font-weight: 600; }
.map-wrap {
  margin-top: 16px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  height: 220px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  padding-top: 16px; border-top: 1px solid var(--border);
  text-align: center; color: var(--muted); font-size: .8rem;
}

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(145deg, #1a222d, #121820);
  border: 1px solid rgba(120,140,170,.25);
  color: var(--text); padding: 13px 22px;
  border-radius: 14px; font-weight: 650; font-size: .9rem;
  z-index: 400; opacity: 0; transition: .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 12px 32px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.06) inset;
  pointer-events: none; backdrop-filter: blur(8px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success {
  border-color: rgba(34,197,94,.4);
  background: linear-gradient(145deg, #0f2a1a, #0a1f14);
  box-shadow: 0 12px 32px rgba(34,197,94,.15), 0 1px 0 rgba(255,255,255,.06) inset;
}

/* Scroll top */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(30,38,50,.95), rgba(14,18,26,.98));
  border: 1px solid rgba(120,140,170,.25);
  color: #c5d0e0; z-index: 90;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.06) inset;
  transition: transform .2s, border-color .2s, color .2s, box-shadow .2s;
}
.scroll-top .ico { width: 22px; height: 22px; }
.scroll-top:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(99,140,255,.45);
  box-shadow: 0 12px 28px rgba(40,80,180,.3), 0 1px 0 rgba(255,255,255,.1) inset;
}


/* Footer brand logo */
.footer-logo-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.footer-logo-img {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(255,255,255,.1);
}
