/* ===== BunnyTime.ru — purple theme ===== */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap");

:root {
  --bg: #0e0a14;
  --bg-2: #140d1f;
  --panel: rgba(20, 13, 31, 0.72);
  --panel-solid: #161021;
  --accent: #a855f7;
  --accent-2: #c084fc;
  --accent-strong: #9333ea;
  --accent-glow: rgba(168, 85, 247, 0.55);
  --text: #e8e2f2;
  --text-dim: #b9a9d4;
  --muted: #6f6485;
  --line: rgba(168, 85, 247, 0.25);
  --font: "Nunito", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@keyframes bg-drift {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.03); }
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: none; }
}
@keyframes panel-glow {
  0%, 100% { box-shadow: 0 0 14px var(--accent-glow); }
  50% { box-shadow: 0 0 22px rgba(192, 132, 252, 0.65); }
}
@keyframes logo-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 18px rgba(192, 132, 252, 0.45); }
}
@keyframes detail-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes icon-pop {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-in {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Background scene */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(168, 85, 247, 0.18), transparent 60%),
    linear-gradient(180deg, #0c0812 0%, #0e0a14 40%, #0a0710 100%);
  animation: bg-drift 18s ease-in-out infinite;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../assets/bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px) saturate(1.1);
  animation: bg-drift 24s ease-in-out infinite reverse;
}

a { color: inherit; text-decoration: none; }

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  animation: fade-down 0.65s var(--ease-out) both;
}
.logo {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1px;
  transition: transform 0.25s var(--ease-out);
}
.logo:hover { transform: scale(1.03); }
.logo .logo-accent {
  color: var(--accent-2);
  animation: logo-glow 4s ease-in-out infinite;
}
.logo .logo-dim { color: var(--muted); }

.nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
}
.nav a {
  color: var(--text-dim);
  padding-bottom: 6px;
  transition: color 0.25s, transform 0.25s var(--ease-out);
  position: relative;
}
.nav a:hover { color: var(--text); transform: translateY(-1px); }
.nav a.active {
  color: #fff;
  font-weight: 700;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-2));
  box-shadow: 0 0 10px var(--accent-glow);
  transition: left 0.3s var(--ease-out), right 0.3s var(--ease-out);
}
.nav a:hover::after,
.nav a.active::after {
  left: 0; right: 0;
}

/* ===== Layout ===== */
.main {
  flex: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px 80px;
  animation: fade-up 0.7s var(--ease-out) 0.1s both;
}

/* Panel base with glowing top edge */
.panel {
  background: var(--panel);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  position: relative;
  padding: 26px 30px;
  animation: fade-up 0.55s var(--ease-out) both;
}
.shop .panel:nth-child(1) { animation-delay: 0.15s; }
.shop .panel:nth-child(2) { animation-delay: 0.25s; }
.promo-grid .promo-card:nth-child(1) { animation-delay: 0.12s; }
.promo-grid .promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-grid .promo-card:nth-child(3) { animation-delay: 0.28s; }
.promo-grid .promo-card:nth-child(4) { animation-delay: 0.36s; }
.rules-list .rule-section:nth-child(1) { animation-delay: 0.1s; }
.rules-list .rule-section:nth-child(2) { animation-delay: 0.18s; }
.rules-list .rule-section:nth-child(3) { animation-delay: 0.26s; }
.rules-list .rule-section:nth-child(4) { animation-delay: 0.34s; }
.rules-list .rule-section:nth-child(5) { animation-delay: 0.42s; }
.rules-list .rule-section:nth-child(6) { animation-delay: 0.5s; }

.panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-2), var(--accent-strong), var(--accent-2), var(--accent-strong));
  background-size: 200% auto;
  animation: shimmer 4s linear infinite, panel-glow 3s ease-in-out infinite;
}

.panel-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* ===== Shop layout ===== */
.shop {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 26px;
  align-items: start;
}

.product-list { display: flex; flex-direction: column; gap: 4px; }
.product-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px 6px;
}
.product-cat:first-child { padding-top: 2px; }
.product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.22s var(--ease-out);
  border: 1px solid transparent;
  animation: slide-in-left 0.45s var(--ease-out) both;
}
.product-list .product:nth-child(2) { animation-delay: 0.04s; }
.product-list .product:nth-child(3) { animation-delay: 0.08s; }
.product-list .product:nth-child(4) { animation-delay: 0.12s; }
.product-list .product:nth-child(5) { animation-delay: 0.16s; }
.product-list .product:nth-child(6) { animation-delay: 0.2s; }
.product-list .product:nth-child(7) { animation-delay: 0.24s; }
.product-list .product:nth-child(8) { animation-delay: 0.28s; }
.product-list .product:nth-child(9) { animation-delay: 0.32s; }
.product-list .product:nth-child(10) { animation-delay: 0.36s; }
.product-list .product:nth-child(11) { animation-delay: 0.4s; }
.product-list .product:nth-child(12) { animation-delay: 0.44s; }
.product:hover {
  background: rgba(168, 85, 247, 0.08);
  transform: translateX(4px);
}
.product.active {
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.45), rgba(147, 51, 234, 0.05));
  border-color: var(--line);
  box-shadow: inset 3px 0 0 var(--accent-2);
}
.product .icon {
  width: 34px; height: 34px;
  flex: none;
  object-fit: contain;
  image-rendering: pixelated;
  transition: transform 0.3s var(--ease-spring);
}
.product:hover .icon,
.product.active .icon { transform: scale(1.12) rotate(-3deg); }
.product .p-name { font-weight: 600; font-size: 15px; flex: 1; }
.product .p-price { color: var(--accent-2); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }

/* Right detail panel */
#detail.detail-animate {
  animation: detail-in 0.38s var(--ease-out) both;
}
.detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.detail-head .detail-icon {
  width: 48px; height: 48px;
  object-fit: contain;
  image-rendering: pixelated;
  flex: none;
}
.detail-name { font-size: 19px; font-weight: 800; color: #fff; }
.detail-forever { font-size: 13px; color: var(--accent-2); font-weight: 600; margin-top: 3px; }

.detail-block { margin-bottom: 22px; }
.detail-block h4 {
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.feature-list li { font-size: 14px; color: var(--text-dim); line-height: 1.4; }
.feature-list li .hl { color: var(--accent-2); font-weight: 600; }
.feature-list li .cmd { color: var(--accent-2); font-weight: 700; }

.detail-desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.misc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.misc-list li { font-size: 14px; color: var(--text-dim); }
.misc-list li b { color: var(--accent-2); font-weight: 700; }

.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
}
.price-tag { font-size: 14px; color: var(--accent-2); font-weight: 700; }
.price-tag .price-value { color: #fff; font-size: 21px; font-weight: 800; margin-left: 8px; }

.btn {
  font-family: var(--font);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.25s;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--accent);
  padding: 14px 34px;
}
.btn-outline:hover {
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 0 18px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0) scale(0.98); }
.btn-fill {
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  color: #fff;
  border: none;
  padding: 14px 30px;
}
.btn-fill:hover {
  box-shadow: 0 0 22px var(--accent-glow);
  transform: translateY(-2px);
  animation: btn-pulse 1.6s ease infinite;
}
.btn-fill:active { transform: translateY(0) scale(0.98); animation: none; }

/* ===== Promotions ===== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.promo-card {
  padding: 24px 30px 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}
.promo-card .promo-icon {
  transition: transform 0.35s var(--ease-spring);
}
.promo-card:hover .promo-icon { transform: scale(1.15) rotate(5deg); }
.promo-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.promo-card h3 .accent { color: var(--accent-2); }
.promo-card h3 .promo-icon {
  width: 30px; height: 30px;
  object-fit: contain;
  image-rendering: pixelated;
  flex: none;
}
.promo-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 10px; }
.promo-items { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.promo-items li { font-size: 14px; color: var(--text-dim); }
.promo-items li .x { color: var(--accent-2); font-weight: 600; }
.promo-good { color: var(--accent-2); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.promo-left { color: var(--accent-2); font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.promo-left b { color: #fff; }
.promo-buy { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.promo-cost { font-size: 14px; color: var(--accent-2); font-weight: 700; line-height: 1.4; }
.promo-cost b { color: #fff; display: block; font-size: 16px; }

/* ===== Rules ===== */
.rules-list { display: flex; flex-direction: column; gap: 22px; }
.rule-section { padding: 0; overflow: hidden; }
.rule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s;
}
.rule-head:hover { background: rgba(168, 85, 247, 0.06); }
.rule-head h3 { font-size: 17px; font-weight: 700; color: #fff; }
.rule-toggle { color: var(--text-dim); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.rule-toggle .chev { transition: transform 0.25s; }
.rule-body {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out), opacity 0.35s;
  opacity: 0;
}
.rule-section.open .rule-body { opacity: 1; }
.rule-section.open .rule-body { max-height: 1400px; padding: 0 30px 26px; }
.rule-section.open .rule-toggle .chev { transform: rotate(180deg); }
.rule-body ol { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.rule-body li { font-size: 14px; color: var(--text-dim); line-height: 1.5; }
.rule-body li .num { color: var(--accent-2); font-weight: 700; margin-right: 6px; }
.rule-body .rule-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--accent-2);
  font-style: italic;
  line-height: 1.5;
}
.rule-body .rule-inline-note { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ===== Contacts ===== */
.contacts-panel { padding: 34px 40px 40px; }
.contacts-panel > h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 34px;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  animation: fade-up 0.5s var(--ease-out) both;
}
.contacts-panel .contact-row:nth-child(2) { animation-delay: 0.15s; }
.contacts-panel .contact-row:nth-child(3) { animation-delay: 0.25s; }
.contacts-panel .contact-row:nth-child(4) { animation-delay: 0.35s; }
.contacts-panel > h2 { animation: fade-up 0.55s var(--ease-out) both; }
.contact-row + .contact-row { border-top: 1px solid rgba(168,85,247,0.08); }
.contact-text { font-size: 15px; color: var(--text-dim); line-height: 1.5; max-width: 60%; }
.contact-text b { color: var(--text); }
.contact-row .btn, .contact-row .mail-box {
  min-width: 200px;
  text-align: center;
}
.mail-box {
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  padding: 14px 24px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.mail-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px var(--accent-glow);
  border-color: var(--accent-2);
}

/* ===== Footer ===== */
.site-footer {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 26px 48px 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(168,85,247,0.08);
  animation: fade-in 0.8s var(--ease-out) 0.35s both;
}
.footer-legal { font-size: 12px; color: var(--muted); line-height: 1.7; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 10px;
}
.footer-links a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-2); }
.footer-right { text-align: right; font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ===== Legal pages ===== */
.legal-doc {
  padding: 36px 42px 40px;
  max-width: 860px;
  margin: 0 auto;
  animation: fade-up 0.55s var(--ease-out) both;
}
.legal-doc h1 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.legal-doc .legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(168,85,247,0.1);
}
.legal-doc section { margin-bottom: 26px; }
.legal-doc h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.legal-doc p,
.legal-doc li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.legal-doc p { margin-bottom: 10px; }
.legal-doc ul,
.legal-doc ol {
  margin: 8px 0 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-doc .legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.15);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.pay-icons { display: flex; align-items: center; gap: 16px; margin-top: 14px; justify-content: flex-end; }
.pay-icons img {
  height: 22px;
  opacity: 0.9;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}
.pay-icons img:hover { transform: scale(1.12); opacity: 1; }

/* ===== Status pages ===== */
.status-panel {
  text-align: center;
  padding: 50px 40px 46px;
  max-width: 620px;
  margin: 20px auto 0;
  animation: fade-up 0.65s var(--ease-out) 0.12s both;
}
.status-panel h2 { font-size: 26px; color: #fff; margin-bottom: 16px; }
.status-panel p { font-size: 15px; color: var(--text-dim); line-height: 1.6; margin-bottom: 14px; }
.status-panel .status-sub { font-size: 13px; color: var(--muted); }
.status-panel .btn { margin-top: 18px; display: inline-block; }
.status-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 800;
  margin: 0 auto 22px;
  animation: icon-pop 0.6s var(--ease-spring) 0.35s both;
}
.status-ok { background: rgba(34,197,94,0.15); color: #22c55e; box-shadow: 0 0 30px rgba(34,197,94,0.25); }
.status-bad { background: rgba(255,107,107,0.15); color: #ff6b6b; box-shadow: 0 0 30px rgba(255,107,107,0.25); }

/* ===== Buy modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 4, 12, 0.78);
  backdrop-filter: blur(4px);
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
  animation: overlay-in 0.25s ease both;
}
.modal {
  width: 100%;
  max-width: 420px;
  background: var(--panel-solid);
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 26px 26px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(168,85,247,0.18);
  animation: modal-in 0.35s var(--ease-spring) both;
}
.modal::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-2), var(--accent-strong));
  box-shadow: 0 0 14px var(--accent-glow);
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
}
.modal-close:hover { color: #fff; }
.modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.modal-head img { width: 42px; height: 42px; object-fit: contain; image-rendering: pixelated; }
.modal-title { font-size: 20px; font-weight: 800; color: #fff; }

.field { display: block; margin-bottom: 16px; }
.field-label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 7px; font-weight: 600; }
.field-label .opt { color: var(--muted); font-weight: 400; }
.field input[type="text"], .field input[type="number"] {
  width: 100%;
  background: #0e0a16;
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 6px;
  padding: 11px 13px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.18);
  transform: translateY(-1px);
}
.field-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }

.pay-opts { display: flex; gap: 10px; }
.pay-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dim);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.pay-opt:hover { transform: translateY(-2px); }
.pay-opt:hover { border-color: var(--accent); color: var(--text); }
.pay-opt input { accent-color: var(--accent); }
.pay-opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(168,85,247,0.12);
  color: #fff;
}

.modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(168,85,247,0.12);
  font-size: 15px;
  color: var(--text-dim);
}
.modal-total-val { font-size: 22px; font-weight: 800; color: #fff; }
.modal-error { color: #ff6b6b; font-size: 13px; min-height: 18px; margin-bottom: 10px; line-height: 1.4; }
.modal-pay { width: 100%; padding: 14px; font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .shop, .promo-grid { grid-template-columns: 1fr; }
  .site-header, .main, .site-footer { padding-left: 22px; padding-right: 22px; }
  .legal-doc { padding: 28px 22px 32px; }
  .nav { gap: 18px; font-size: 14px; }
  .contact-text { max-width: 100%; }
  .contact-row { flex-direction: column; align-items: flex-start; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-right, .pay-icons { text-align: left; justify-content: flex-start; }
}
@media (max-width: 560px) {
  .site-header { flex-direction: column; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
