:root {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-dim: rgba(240, 180, 41, 0.12);
  --gold-border: rgba(240, 180, 41, 0.28);
  --bg: #080808;
  --bg-2: #0e0e0e;
  --bg-3: #151515;
  --text: #e8eaf0;
  --text-muted: #9a9da8;
  --white: #fff;
  --wa: #25d366;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --touch-min: 48px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: #000; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }

.order-site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 8, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.order-site-header__inner {
  max-width: 720px; margin: 0 auto; padding: 0.85rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.order-logo { font-weight: 800; font-size: 1.15rem; color: var(--white); display: flex; align-items: center; gap: 0.4rem; }
.order-header-right { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; justify-content: flex-end; }
.order-site-nav { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
.order-site-nav a { color: var(--text-muted); font-weight: 600; font-size: 0.88rem; }
.order-site-nav a:hover, .order-site-nav a[aria-current="page"] { color: var(--gold); }

.lang-switcher { position: relative; flex-shrink: 0; }
.lang-btn {
  display: flex; align-items: center; gap: 0.55rem; background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.08); color: var(--white); font-weight: 500;
  font-size: 0.82rem; padding: 0.45rem 0.75rem; border-radius: 12px;
  cursor: pointer; font-family: inherit; min-height: 44px;
}
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); overflow: hidden;
  width: 150px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.85); z-index: 200;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option { padding: 0.7rem 1rem; font-size: 0.85rem; color: var(--text); cursor: pointer; }
.lang-option:hover { background: rgba(255, 255, 255, 0.07); }
.lang-option.active { color: var(--gold); font-weight: 700; }

.reviews-main {
  max-width: 720px; margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
.reviews-head { margin-bottom: 1.5rem; }
.reviews-title {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 900; color: var(--white); margin-bottom: 0.4rem;
}
.reviews-sub { color: var(--text-muted); font-size: 0.92rem; }

.reviews-card {
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.15rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 0.4rem; }
.form-hint { color: var(--text-muted); font-weight: 400; font-size: 0.72rem; margin-left: 0.25rem; }
.form-input, .form-textarea {
  display: block; width: 100%; background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; color: var(--white); font-size: 0.9rem; font-family: inherit;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(240, 180, 41, 0.05);
}
.form-textarea { min-height: 7rem; resize: vertical; }

.star-rating {
  display: flex; gap: 0.35rem; align-items: center; flex-wrap: wrap;
}
.star-btn {
  background: none; border: none; cursor: pointer; padding: 0.15rem;
  font-size: 1.65rem; color: rgba(255, 255, 255, 0.2); line-height: 1;
  transition: color 0.15s, transform 0.15s;
}
.star-btn:hover, .star-btn.active { color: var(--gold); transform: scale(1.05); }

.submit-btn {
  width: 100%; padding: 0.95rem; border-radius: var(--radius-sm); border: none;
  background: var(--gold); color: #000; font-weight: 800; font-size: 1rem;
  font-family: inherit; cursor: pointer; min-height: var(--touch-min);
}
.submit-btn:hover { background: var(--gold-light); }
.submit-btn:disabled { opacity: 0.7; cursor: wait; }

.reviews-privacy {
  margin-top: 0.85rem; font-size: 0.75rem; color: var(--text-muted); text-align: center;
}

.order-site-footer {
  max-width: 720px; margin: 0 auto; padding: 1.5rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06); text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
}

.reviews-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(0, 0, 0, 0.75);
  opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
}
.reviews-modal.open { opacity: 1; visibility: visible; }
.reviews-modal__box {
  background: var(--bg-3); border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  max-width: 400px; width: 100%; text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.reviews-modal__icon {
  width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
  border-radius: 50%; background: rgba(74, 222, 128, 0.15);
  color: #4ade80; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.reviews-modal__title { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.reviews-modal__body { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.reviews-modal__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-sm);
  border: none; background: var(--gold); color: #000;
  font-weight: 700; font-family: inherit; cursor: pointer; min-width: 8rem;
}
