/* Poll widget Roal */
.roal-poll {
  background: var(--cream, #FAF6F0);
  border: 1px solid var(--border, #E5DFD5);
  border-left: 4px solid var(--orange, #FF6B35);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 32px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.roal-poll-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--orange, #FF6B35);
  margin-bottom: 8px;
}
.roal-poll h3 {
  font-size: 19px; font-weight: 800;
  margin: 0 0 6px;
  color: var(--charcoal, #1F1A17);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.roal-poll-sub {
  font-size: 13px; color: var(--grey, #6B6661);
  margin-bottom: 18px;
}
.roal-poll-options {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.roal-poll-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border, #E5DFD5);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px; line-height: 1.45;
  color: var(--charcoal, #1F1A17);
  transition: border-color 0.15s, background 0.15s;
}
.roal-poll-option:hover { border-color: var(--orange, #FF6B35); }
.roal-poll-option input[type=radio] {
  margin-top: 2px; flex-shrink: 0; accent-color: var(--orange, #FF6B35);
  width: 16px; height: 16px;
}
.roal-poll-option.selected {
  background: rgba(255,107,53,0.08);
  border-color: var(--orange, #FF6B35);
}
.roal-poll-custom {
  width: 100%; padding: 12px 14px;
  background: #fff; border: 1px solid var(--border, #E5DFD5); border-radius: 10px;
  font-family: inherit; font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.15s;
}
.roal-poll-custom:focus { border-color: var(--orange, #FF6B35); }
.roal-poll-email {
  width: 100%; padding: 12px 14px;
  background: #fff; border: 1px solid var(--border, #E5DFD5); border-radius: 10px;
  font-family: inherit; font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}
.roal-poll-email:focus { border-color: var(--orange, #FF6B35); }
.roal-poll-row {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.roal-poll-submit {
  background: var(--orange, #FF6B35); color: white;
  padding: 11px 22px; border-radius: 8px; border: none;
  font-family: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.roal-poll-submit:hover { background: var(--orange-dark, #E85A28); }
.roal-poll-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.roal-poll-help {
  font-size: 12px; color: var(--grey, #6B6661);
}
.roal-poll-thanks {
  display: none;
  background: rgba(46,166,74,0.1);
  border: 1px solid rgba(46,166,74,0.3);
  color: #1f7a35;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.roal-poll-thanks.show { display: block; }
.roal-poll-error {
  display: none; color: #aa1414;
  font-size: 13px; margin-top: 8px;
}
.roal-poll-error.show { display: block; }
