/* ===== УТИЛИТАРНЫЕ СТИЛИ ===== */

/* Кнопки */
.btn,
button.btn,
a.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.btn-primary {
  background: #0f1724;
  color: white;
  box-shadow: 0 12px 36px rgba(15, 23, 36, 0.12);
}

.btn-primary:hover {
  background: #c4a03d;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(15, 23, 36, 0.4);
  color: var(--dark);
  background: rgba(15, 23, 36, 0.1);
}

.btn-ghost:hover {
  background: rgba(15, 23, 36, 0.25);
  border-color: rgba(15, 23, 36, 0.7);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(15, 23, 36, 0.08);
  color: var(--dark);
  background: transparent;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(214, 180, 74, 0.1);
  border-color: rgba(214, 180, 74, 0.3);
  color: var(--accent);
}

.btn-order {
  background: var(--accent);
  color: var(--dark);
}

.btn-order:hover {
  background: #c4a03d;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Кнопки в формах - ограниченная ширина */
.contact-form .btn {
  max-width: 220px;
  width: auto;
  margin: 0 auto;
  display: block;
  padding: 14px 24px;
  font-size: 16px;
}

/* Формы */
input,
textarea {
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(15, 23, 36, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

textarea {
  resize: none;
  min-height: 90px; /* 3 строки: 1.5 * 20px * 3 = 90px */
  max-height: 90px; /* 3 строки: 1.5 * 20px * 3 = 90px */
  line-height: 1.5;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

/* Ссылки */
a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

/* Списки */
ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 4px;
}

/* Утилитарные классы для замены inline стилей */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  font-weight: 800;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.nav-active {
  color: var(--accent);
}

.text-bold {
  font-weight: 700;
}

.text-muted {
  color: var(--muted);
}

.mt-0 {
  margin-top: 0;
}

.mt-6 {
  margin-top: 6px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-14 {
  margin-top: 14px;
}

.mb-8 {
  margin-bottom: 8px;
}

.text-center {
  text-align: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.gap-8 {
  gap: 8px;
}
