.rwr-chatbot {
  --rwr-chat-bg: #fff;
  --rwr-chat-soft: #f7f8f7;
  --rwr-chat-bubble: #f1f3f1;
  --rwr-chat-text: #171a17;
  --rwr-chat-muted: #6e746e;
  --rwr-chat-green: #55ad2a;
  --rwr-chat-green-dark: #397d20;
  --rwr-chat-green-soft: #edf7e9;
  --rwr-chat-green-border: #d5e8cc;
  --rwr-chat-divider: #e7eae7;
  --rwr-chat-danger: #b9382f;
  --rwr-chat-shadow: 0 22px 64px rgba(21, 32, 19, .16), 0 3px 12px rgba(21, 32, 19, .07);
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  color: var(--rwr-chat-text);
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  transition: opacity .2s ease, visibility .2s ease;
}
.rwr-chatbot,
.rwr-chatbot * { box-sizing: border-box; }
.rwr-chatbot button,
.rwr-chatbot input,
.rwr-chatbot textarea { font: inherit; }
.rwr-chatbot .sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.rwr-chatbot [hidden] { display: none !important; }
.rwr-chatbot :where(button, a, textarea, input):focus-visible { outline: 3px solid rgba(85, 173, 42, .35); outline-offset: 2px; }
.rr-page .rwr-chatbot button { min-height: 44px; }
.modal-open .rwr-chatbot { opacity: 0; visibility: hidden; pointer-events: none; }

.rwr-contact-rail { display: flex; flex-direction: column; align-items: flex-end; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.rwr-contact-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; transition: max-height .22s ease, margin .22s ease, opacity .2s ease, transform .2s ease, visibility .2s ease; }
.rwr-contact-link,
.rwr-contact-toggle { min-width: 48px; height: 48px; display: flex; align-items: center; justify-content: flex-end; padding: 0; overflow: hidden; border: 1px solid rgba(218, 224, 207, .26); border-radius: 12px; background: rgba(14, 19, 15, .96); color: #eef3e9; box-shadow: 0 7px 20px rgba(0, 0, 0, .3); cursor: pointer; text-decoration: none; transition: width .2s ease, padding .2s ease, transform .2s ease, border-color .2s ease; }
.rwr-contact-link { width: 48px; }
.rwr-contact-link span,
.rwr-contact-toggle span { max-width: 0; opacity: 0; overflow: hidden; font-size: 12px; font-weight: 700; white-space: nowrap; transform: translateX(7px); transition: max-width .2s ease, opacity .16s ease, transform .2s ease; }
.rwr-contact-link i,
.rwr-contact-toggle i { width: 46px; min-width: 46px; display: grid; place-items: center; color: #9bd362; font-size: 18px; }
.rwr-contact-link:hover,
.rwr-contact-link:focus-visible { width: 154px; padding-left: 14px; border-color: rgba(139, 211, 76, .68); transform: translateY(-2px); }
.rwr-contact-link:hover span,
.rwr-contact-link:focus-visible span { max-width: 94px; opacity: 1; transform: none; }
.rwr-contact-toggle { display: none; width: auto; }
.rwr-chatbot.is-open .rwr-contact-rail { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); }

.rwr-chatbot-launcher { position: relative; z-index: 1; width: 64px; min-width: 64px; height: 64px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: linear-gradient(145deg, #62ba35, #397d20); color: #fff; box-shadow: 0 12px 28px rgba(38, 93, 25, .32); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.rwr-chatbot-launcher::before,
.rwr-chatbot-launcher::after { content: ""; position: absolute; z-index: -1; inset: -7px; border: 2px solid rgba(85, 173, 42, .5); border-radius: inherit; pointer-events: none; animation: rwrLauncherPulse 2.4s ease-out infinite; }
.rwr-chatbot-launcher::after { animation-delay: 1.2s; }
.rwr-chatbot-launcher > i { position: relative; z-index: 1; font-size: 25px; }
.rwr-chatbot-launcher:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 34px rgba(38, 93, 25, .38); }
.rwr-chatbot-unread { position: absolute; top: 1px; right: 2px; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: #e55b50; }
.rwr-chatbot-prompt { position: absolute; right: 80px; bottom: 7px; width: max-content; max-width: min(220px, calc(100vw - 116px)); min-height: 50px; display: grid; align-content: center; gap: 1px; padding: 8px 15px; border: 1px solid var(--rwr-chat-green-border); border-radius: 15px; background: #fff; color: var(--rwr-chat-text); box-shadow: 0 9px 28px rgba(21, 32, 19, .16); text-align: left; cursor: pointer; animation: rwrChatbotPromptIn .35s ease-out both; }
.rwr-chatbot-prompt::after { content: ""; position: absolute; right: -6px; top: 50%; width: 11px; height: 11px; border-top: 1px solid var(--rwr-chat-green-border); border-right: 1px solid var(--rwr-chat-green-border); background: #fff; transform: translateY(-50%) rotate(45deg); }
.rwr-chatbot-prompt strong,
.rwr-chatbot-prompt span { display: block; white-space: nowrap; }
.rwr-chatbot-prompt strong { color: var(--rwr-chat-green-dark); font-size: 13px; line-height: 1.2; font-weight: 800; }
.rwr-chatbot-prompt span { color: #505750; font-size: 12px; line-height: 1.35; }
.rwr-chatbot-prompt:hover { border-color: #a8d594; background: var(--rwr-chat-green-soft); transform: translateY(-2px); }
.rwr-chatbot-prompt:hover::after { background: var(--rwr-chat-green-soft); }

.rwr-chatbot-panel { position: absolute; right: 0; bottom: 80px; width: min(420px, calc(100vw - 24px)); height: min(650px, calc(100dvh - 112px)); max-height: calc(var(--rwr-chatbot-vh, 100vh) - 112px); grid-template-rows: auto auto minmax(0, 1fr) auto auto; overflow: hidden; border: 1px solid var(--rwr-chat-divider); border-radius: 19px; background: var(--rwr-chat-bg); color: var(--rwr-chat-text); box-shadow: var(--rwr-chat-shadow); isolation: isolate; }
.rwr-chatbot-panel:not([hidden]) { display: grid; animation: rwrChatbotIn .2s cubic-bezier(.2, .8, .2, 1); }
.rwr-chatbot-header { grid-row: 1; }
.rwr-chatbot-offline { grid-row: 2; }
.rwr-chatbot-messages { grid-row: 3; }
.rwr-chatbot-suggestions { grid-row: 4; }
.rwr-chatbot-footer { grid-row: 5; }
.rwr-chatbot-header { display: grid; grid-template-columns: 78px 1fr 44px; align-items: center; gap: 12px; min-height: 92px; padding: 15px 18px; border-bottom: 1px solid var(--rwr-chat-divider); background: #fff; }
.rwr-chatbot-avatar { width: 78px; height: 52px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: #fff; }
.rwr-chatbot-avatar img { display: block; width: 100%; height: 100%; object-fit: contain; }
.rwr-chatbot-header strong,
.rwr-chatbot-header small { display: block; }
.rwr-chatbot-header strong { color: #161916; font-size: 20px; line-height: 1.2; font-weight: 750; letter-spacing: -.02em; }
.rwr-chatbot-header small { margin-top: 5px; color: var(--rwr-chat-muted); font-size: 13px; }
.rwr-chatbot-header small i { display: inline-block; width: 10px; height: 10px; margin-right: 7px; border-radius: 50%; background: var(--rwr-chat-green); }
.rwr-chatbot-header > button { width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 12px; background: transparent; color: #202520; cursor: pointer; }
.rwr-chatbot-header > button:hover { background: var(--rwr-chat-soft); }
.rwr-chatbot-header > button i { font-size: 19px; }

.rwr-chatbot-offline { padding: 9px 18px; border-bottom: 1px solid #efd7d4; background: #fff3f1; color: #7e2d27; font-size: 12px; text-align: center; }
.rwr-chatbot-messages { min-height: 0; padding: 22px 18px 26px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #cbd4c8 transparent; background: #fff; scroll-behavior: smooth; }
.rwr-chatbot-messages article { width: fit-content; max-width: 82%; display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 10px; align-items: start; margin: 0 0 13px; }
.rwr-chatbot-messages article > span { width: 36px; height: 36px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--rwr-chat-divider); border-radius: 50%; background: #fff; color: var(--rwr-chat-muted); font-size: 13px; }
.rwr-chatbot-messages article > span img { width: 29px; height: 29px; object-fit: contain; }
.rwr-chatbot-messages article > p,
.rwr-chatbot-messages article > .rwr-chatbot-copy { min-width: 0; margin: 0; padding: 12px 15px; overflow-wrap: anywhere; border: 1px solid #eceeec; border-radius: 6px 17px 17px 17px; background: var(--rwr-chat-bubble); color: var(--rwr-chat-text); font-size: 14px; line-height: 1.55; white-space: pre-wrap; }
.rwr-chatbot-messages article > .rwr-chatbot-copy p { margin: 0 0 .7em; }
.rwr-chatbot-messages article > .rwr-chatbot-copy p:last-child { margin-bottom: 0; }
.rwr-chatbot-messages article > .rwr-chatbot-copy ul { margin: .4em 0; padding-left: 1.2em; white-space: normal; }
.rwr-chatbot-messages article > .rwr-chatbot-copy strong { color: #111411; font-weight: 750; }
.rwr-chatbot-messages .is-user { grid-template-columns: minmax(0, 1fr); margin-left: auto; }
.rwr-chatbot-messages .is-user > span { display: none; }
.rwr-chatbot-messages .is-user > p,
.rwr-chatbot-messages .is-user > .rwr-chatbot-copy { grid-column: 1; border-color: var(--rwr-chat-green-dark); border-radius: 17px 17px 6px 17px; background: var(--rwr-chat-green-dark); color: #fff; }
.rwr-chatbot-messages .is-error > .rwr-chatbot-copy { border-color: #f0cbc8; background: #fff5f4; }
.rwr-chatbot-retry { display: block; min-height: 44px; margin: 10px 0 0; padding: 0 16px; border: 1px solid var(--rwr-chat-green); border-radius: 12px; background: #fff; color: var(--rwr-chat-green-dark); font-weight: 700; cursor: pointer; }
.rwr-chatbot-typing-text { margin-right: 9px; color: var(--rwr-chat-muted); font-size: 13px; }
.rwr-chatbot-typing { display: inline-flex; align-items: center; gap: 4px; vertical-align: middle; }
.rwr-chatbot-typing i { width: 5px; height: 5px; border-radius: 50%; background: #899087; animation: rwrTyping 1.15s ease-in-out infinite; }
.rwr-chatbot-typing i:nth-child(2) { animation-delay: .15s; }
.rwr-chatbot-typing i:nth-child(3) { animation-delay: .3s; }
.rwr-chatbot-new-message { position: absolute; z-index: 3; left: 50%; bottom: 152px; min-height: 38px; padding: 0 14px; border: 1px solid var(--rwr-chat-green-border); border-radius: 18px; background: #fff; color: var(--rwr-chat-green-dark); box-shadow: 0 5px 18px rgba(32, 57, 26, .16); font-size: 12px; font-weight: 700; transform: translateX(-50%); cursor: pointer; }

.rwr-chatbot-handoff { width: calc(100% - 46px); margin: 4px 0 16px 46px; padding: 16px; overflow-wrap: anywhere; border: 1px solid var(--rwr-chat-green-border); border-radius: 16px; background: var(--rwr-chat-green-soft); color: var(--rwr-chat-text); }
.rwr-chatbot-handoff h3 { margin: 0 0 8px; color: #214f14; font-family: Inter, system-ui, sans-serif; font-size: 16px; line-height: 1.3; font-weight: 750; letter-spacing: normal; text-transform: none; }
.rwr-chatbot-handoff > ul { margin: 0 0 12px; padding-left: 18px; color: #374137; font-size: 12px; line-height: 1.55; }
.rwr-chatbot-handoff > p { margin: 0 0 12px; color: var(--rwr-chat-muted); font-size: 12px; line-height: 1.5; }
.rwr-chatbot-routes { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 12px 0; }
.rwr-chatbot-photo-link,
.rwr-chatbot-routes a { min-height: 44px; display: flex; align-items: center; justify-content: center; padding: 9px 12px; border: 1px solid var(--rwr-chat-green-border); border-radius: 12px; background: #fff; color: var(--rwr-chat-green-dark); font-size: 12px; font-weight: 700; text-align: center; text-decoration: none; }
.rwr-chatbot-handoff form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rwr-chatbot-handoff form label { display: grid; gap: 5px; color: #515851; font-size: 11px; font-weight: 650; }
.rwr-chatbot-handoff form input:not([type="checkbox"]) { min-width: 0; min-height: 44px; padding: 9px 11px; border: 1px solid #d6dcd4; border-radius: 10px; background: #fff; color: var(--rwr-chat-text); font-size: 13px; }
.rwr-chatbot-handoff form .is-wide { grid-column: 1 / -1; }
.rwr-chatbot-consent { grid-template-columns: 18px 1fr; align-items: start; line-height: 1.4; }
.rwr-chatbot-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--rwr-chat-green-dark); }
.rwr-chatbot-handoff form > button { min-height: 46px; padding: 10px 14px; border: 0; border-radius: 12px; background: var(--rwr-chat-green-dark); color: #fff; font-weight: 750; cursor: pointer; }
.rwr-chatbot-handoff form > button:disabled { opacity: .55; cursor: wait; }
.rwr-chatbot-handoff [role="status"] { margin: 0; color: #765819; font-size: 11px; }
.rwr-chatbot-honeypot { position: absolute !important; left: -9999px !important; }
.rwr-chatbot-confirmation strong { color: #245715; font-size: 14px; }
.rwr-chatbot-confirmation p { margin: 6px 0 0; color: #495149; font-size: 12px; line-height: 1.5; }

.rwr-chatbot-suggestions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding: 4px 18px 16px; background: #fff; }
.rwr-chatbot-suggestions button { min-width: 0; min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid var(--rwr-chat-green-border); border-radius: 18px; background: #fff; color: #252a25; font-size: 12px; line-height: 1.25; text-align: left; cursor: pointer; }
.rwr-chatbot-suggestions button i { flex: 0 0 18px; color: var(--rwr-chat-green); font-size: 16px; text-align: center; }
.rwr-chatbot-suggestions button:hover { border-color: #a8d594; background: var(--rwr-chat-green-soft); }
.rwr-chatbot-footer { border-top: 1px solid var(--rwr-chat-divider); background: #fff; }
.rwr-chatbot-composer { display: grid; grid-template-columns: 44px minmax(0, 1fr) 52px; align-items: end; gap: 7px; padding: 14px 14px 8px; }
.rwr-chatbot-composer textarea { width: 100%; min-height: 52px; max-height: 110px; padding: 14px 12px; border: 1px solid #dfe3df; border-radius: 14px; background: #fff; color: var(--rwr-chat-text); font-size: 14px; line-height: 1.5; resize: none; outline: 0; }
.rwr-chatbot-composer textarea::placeholder { color: #939993; opacity: 1; }
.rwr-chatbot-photo { width: 44px; height: 44px; margin-bottom: 4px; display: grid; place-items: center; border: 0; border-radius: 12px; background: var(--rwr-chat-soft); color: var(--rwr-chat-green-dark); cursor: pointer; }
.rwr-chatbot-send { width: 52px; height: 52px; display: grid; place-items: center; border: 0; border-radius: 13px; background: linear-gradient(145deg, var(--rwr-chat-green), var(--rwr-chat-green-dark)); color: #fff; box-shadow: 0 6px 14px rgba(57, 125, 32, .2); cursor: pointer; }
.rwr-chatbot-send i { font-size: 18px; transform: translateX(-1px); }
.rwr-chatbot-composer button:disabled { opacity: .46; cursor: not-allowed; }
.rwr-chatbot-composer.is-offline textarea { background: var(--rwr-chat-soft); }
.rwr-chatbot-note { margin: 0; padding: 6px 14px 12px; color: #7c837c; font-size: 10px; line-height: 1.4; text-align: center; }
.rwr-chatbot-note i { margin-right: 5px; color: #7d857c; }

@keyframes rwrChatbotIn { from { opacity: 0; transform: translateY(9px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes rwrChatbotPromptIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
@keyframes rwrLauncherPulse { 0% { opacity: .72; transform: scale(.86); } 72%, 100% { opacity: 0; transform: scale(1.3); } }
@keyframes rwrTyping { 0%, 60%, 100% { opacity: .34; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

@media (max-width: 600px) {
  .rwr-chatbot { right: 10px; bottom: 10px; }
  .rwr-contact-menu { max-height: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); }
  .rwr-contact-toggle { display: flex; min-width: 110px; padding-left: 13px; }
  .rwr-contact-toggle span { max-width: 70px; opacity: 1; transform: none; }
  .rwr-contact-toggle i { width: 34px; min-width: 34px; font-size: 14px; }
  .rwr-chatbot.is-contact-open .rwr-contact-menu { max-height: 230px; margin-bottom: 9px; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .rwr-chatbot.is-contact-open .rwr-contact-toggle i { transform: rotate(45deg); }
  .rwr-contact-link { width: 154px; padding-left: 14px; }
  .rwr-contact-link span { max-width: 94px; opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  html.rwr-chatbot-open { height: 100%; overflow: hidden !important; overscroll-behavior: none; }
  html.rwr-chatbot-open body { position: fixed !important; top: var(--rwr-chatbot-page-top, 0) !important; right: 0; bottom: auto; left: 0; width: 100%; overflow: hidden !important; overscroll-behavior: none; }
  .rwr-chatbot { inset: 0; align-items: stretch; pointer-events: none; }
  .rwr-chatbot > * { pointer-events: auto; }
  .rwr-chatbot-launcher { position: fixed; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); align-self: flex-end; }
  .rwr-chatbot-prompt { position: fixed; right: 96px; bottom: max(27px, calc(env(safe-area-inset-bottom) + 7px)); max-width: calc(100vw - 116px); }
  .rwr-chatbot-panel { position: fixed; top: var(--rwr-chatbot-top, 0px); right: 0; bottom: auto; left: 0; width: 100%; height: var(--rwr-chatbot-vh, 100dvh); max-height: none; border: 0; border-radius: 0; padding-top: env(safe-area-inset-top); touch-action: none; transition: top .18s ease-out, height .18s ease-out; }
  .rwr-chatbot.is-open .rwr-chatbot-launcher { visibility: hidden; }
  .rwr-chatbot-header { min-height: 80px; grid-template-columns: 68px 1fr 44px; padding: 10px 14px; }
  .rwr-chatbot-avatar { width: 68px; height: 47px; }
  .rwr-chatbot-messages { padding: 18px 14px 22px; touch-action: pan-y; }
  .rwr-chatbot-messages article { max-width: 88%; }
  .rwr-chatbot-suggestions { padding: 4px 14px 13px; gap: 8px; }
  .rwr-chatbot-suggestions button { min-height: 46px; padding: 9px 10px; font-size: 11px; }
  .rwr-chatbot-footer { padding-bottom: env(safe-area-inset-bottom); }
  .rwr-chatbot-composer { grid-template-columns: 40px minmax(0, 1fr) 48px; gap: 6px; padding: 11px 10px 6px; }
  .rwr-chatbot-photo { width: 40px; height: 40px; margin-bottom: 4px; }
  .rwr-chatbot-send { width: 48px; height: 48px; }
  .rwr-chatbot-composer textarea { min-height: 48px; padding: 12px 10px; font-size: 16px; }
  .rwr-chatbot-handoff form input:not([type="checkbox"]) { font-size: 16px; }
  .rwr-chatbot :where(textarea,input,button,a,label) { touch-action: manipulation; }
  .rwr-chatbot-note { padding-bottom: 8px; }
  .rwr-chatbot-handoff { width: calc(100% - 42px); margin-left: 42px; }
  .rwr-chatbot-handoff form { grid-template-columns: 1fr; }
  .rwr-chatbot-handoff form .is-wide { grid-column: 1; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-panel { padding-top: 0; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-header { min-height: 56px; grid-template-columns: 48px 1fr 40px; padding: 4px 10px; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-avatar { width: 48px; height: 34px; border-radius: 8px; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-header strong { font-size: 16px; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-header small { margin-top: 1px; font-size: 11px; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-header > button { width: 40px; height: 40px; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-suggestions,
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-note { display: none; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-messages { padding-block: 10px; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-footer { padding-bottom: 0; }
  .rwr-chatbot.is-keyboard-open .rwr-chatbot-composer { padding-top: 7px; padding-bottom: 7px; }
}

@media (max-width: 350px) {
  .rwr-chatbot-prompt { right: 94px; max-width: calc(100vw - 112px); padding-inline: 12px; }
  .rwr-chatbot-prompt strong { font-size: 12px; }
  .rwr-chatbot-prompt span { overflow: hidden; font-size: 11px; text-overflow: ellipsis; }
  .rwr-chatbot-suggestions { grid-template-columns: 1fr; }
  .rwr-chatbot-header strong { font-size: 18px; }
  .rwr-chatbot-messages article { max-width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
  .rwr-chatbot-panel:not([hidden]) { animation: none; }
  .rwr-chatbot-launcher::before,
  .rwr-chatbot-launcher::after,
  .rwr-chatbot-prompt { animation: none; }
  .rwr-chatbot-typing i { animation: none; opacity: .7; }
  .rwr-chatbot,
  .rwr-contact-rail,
  .rwr-contact-menu,
  .rwr-contact-link,
  .rwr-contact-link span,
  .rwr-contact-toggle,
  .rwr-chatbot-launcher,
  .rwr-chatbot-panel,
  .rwr-chatbot-messages { transition: none; scroll-behavior: auto; }
}