  /* Forms */
  label.fld {
    font-size: 12px; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 600; display: block; margin-bottom: 3px;
  }
  input, select, textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-1);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.15s;
  }
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--product-color);
    box-shadow: 0 0 0 3px var(--product-soft);
  }
  input::placeholder, textarea::placeholder { color: var(--text-3); }
  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d6f9c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }
  textarea { resize: vertical; min-height: 80px; }
  input[type="color"] { padding: 4px; height: 42px; cursor: pointer; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; border-radius: 8px;
    font-size: 14px; font-weight: 500; cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-card); color: var(--text-1);
    font-family: inherit; transition: all 0.15s; white-space: nowrap;
  }
  .btn:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }
  .btn-primary {
    background: linear-gradient(135deg, var(--product-color), var(--gold)) !important;
    background-size: 200% 200% !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow:
      0 4px 14px rgba(59, 130, 246, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: btn-gradient-shift-app 5s ease infinite;
    transition: all 0.2s ease !important;
  }
  @keyframes btn-gradient-shift-app {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow:
      0 8px 24px rgba(59, 130, 246, 0.45),
      0 0 32px rgba(212, 160, 74, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  .btn-danger { color: var(--danger); }
  .btn-danger:hover { background: var(--danger-bg); border-color: var(--danger); }
  .btn-sm { padding: 6px 10px; font-size: 12px; }
  .btn svg { width: 14px; height: 14px; }
  .btn-block { width: 100%; justify-content: center; }
