:root {
  --bg-main: #0f2a23;
  --bg-deep: #0b1f1a;
  --gold: #c6a55c;
  --gold-light: #e0c27a;
  --text-main: #f5f5f5;
  --text-muted: #a8b3ae;
  --card: #102720;
  --radius: 10px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 26, 0.92);
  border-bottom: 1px solid rgba(198, 165, 92, 0.25);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 112px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(79%) sepia(24%) saturate(553%) hue-rotate(356deg) brightness(90%) contrast(91%);
}

.logo-wordmark {
  line-height: 1;
}

.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-select {
  position: relative;
}

.lang-current,
.lang-option,
.btn {
  border-radius: 8px;
  border: 1px solid rgba(198, 165, 92, 0.45);
  background: transparent;
  color: var(--gold);
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.lang-current::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.75rem;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(11, 31, 26, 0.98);
  border: 1px solid rgba(198, 165, 92, 0.25);
  border-radius: 8px;
  padding: 8px;
}

.lang-menu.open { display: flex; }

.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-outline:hover,
.lang-current:hover,
.lang-option:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.main-content {
  padding: 22px 0 40px;
}

.hero-card {
  border: 1px solid rgba(198, 165, 92, 0.2);
  border-radius: 14px;
  background: radial-gradient(circle at 85% 10%, rgba(198, 165, 92, 0.15), transparent 48%), #0f2a23;
  padding: 24px;
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 10px;
}

p { margin: 0; color: var(--text-muted); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  background: var(--card);
  border: 1px solid rgba(198, 165, 92, 0.2);
  border-radius: var(--radius);
  padding: 16px;
}

.offer-products {
  margin: 12px 0;
  display: grid;
  gap: 8px;
}

.offer-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(198, 165, 92, 0.18);
  padding-bottom: 7px;
}

.offer-checks {
  margin: 0;
  padding-left: 16px;
  color: var(--text-muted);
}

.offer-checks li.ok { color: #b7ddc8; }
.offer-checks li.no { color: #e2b3b3; }

.price-box {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
}

.price-set strong {
  color: var(--gold-light);
}

.order-btn {
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #1b170d;
  font-weight: 700;
  cursor: pointer;
}

.order-btn:hover {
  background: var(--gold-light);
}

.empty-box {
  border: 1px dashed rgba(198, 165, 92, 0.4);
  border-radius: 10px;
  padding: 16px;
  color: var(--text-muted);
}

.bottom-back-btn {
  position: fixed;
  left: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(198, 165, 92, 0.62);
  background: rgba(11, 31, 26, 0.94);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  z-index: 120;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.bottom-back-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold-light);
  color: var(--gold);
  background: rgba(15, 42, 35, 0.98);
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}
