/* EET eficient — base components (mobile-first) */

.eet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--eet-tap);
  padding: 0 20px;
  border-radius: var(--eet-radius-pill);
  border: none;
  font-family: var(--eet-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--eet-ease), box-shadow 0.2s var(--eet-ease), filter 0.2s var(--eet-ease);
}

.eet-btn:active {
  transform: scale(0.98);
}

.eet-btn--primary {
  background: linear-gradient(135deg, #ffe566 0%, var(--eet-yellow) 45%, var(--eet-yellow-dark) 100%);
  color: var(--eet-ink-900);
  box-shadow: 0 6px 18px rgba(253, 206, 43, 0.4);
}

.eet-btn--outline {
  background: transparent;
  color: var(--eet-ink-900);
  border: 1px solid var(--eet-line);
}

.eet-btn--dark {
  background: var(--eet-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(75, 162, 72, 0.35);
}

.eet-section-eyebrow {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eet-ink-500);
}

.eet-card {
  background: var(--eet-bg-white);
  border: 1px solid var(--eet-line);
  border-radius: var(--eet-radius);
  box-shadow: var(--eet-shadow-sm);
}

.eet-form-field {
  width: 100%;
  min-height: var(--eet-tap);
  padding: 12px 14px;
  border: 1px solid var(--eet-line);
  border-radius: var(--eet-radius-sm);
  font-family: var(--eet-font);
  font-size: 16px;
  color: var(--eet-ink-900);
  background: var(--eet-bg-white);
  box-sizing: border-box;
  transition: border-color 0.2s var(--eet-ease), box-shadow 0.2s var(--eet-ease);
}

.eet-form-field:focus {
  outline: none;
  border-color: var(--eet-green);
  box-shadow: 0 0 0 3px rgba(75, 162, 72, 0.14);
}

.eet-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eet-field__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--eet-ink-500);
}

.eet-field__control {
  width: 100%;
  min-height: var(--eet-tap);
  padding: 12px 14px;
  border: 1px solid var(--eet-line);
  border-radius: var(--eet-radius-sm);
  font-family: var(--eet-font);
  font-size: 15px;
  color: var(--eet-ink-900);
  background: var(--eet-bg-white);
  box-sizing: border-box;
}

.eet-btn--block {
  width: 100%;
  margin-top: 8px;
}

.eet-btn--ghost {
  background: transparent;
  color: var(--eet-ink-700);
  border: 1px solid var(--eet-line);
}

.eet-alert {
  padding: 14px 16px;
  border-radius: var(--eet-radius-sm);
  font-weight: 600;
}

.eet-alert--success {
  background: rgba(75, 162, 72, 0.12);
  color: var(--eet-green-dark);
  border: 1px solid rgba(75, 162, 72, 0.25);
}

@media (min-width: 768px) {
  .eet-btn {
    font-size: 15px;
    padding: 0 24px;
  }
}
