/*!
 * Yatoon AI Concierge - chat window.
 *
 * Every rule here is written to survive a hostile host theme. The widget is a
 * plain <button> and a stack of <div>s in the page footer, which means Astra,
 * Brizy, Divi and friends will happily paint their global button skin, their
 * uppercase transform and their 16px/35px padding onto it. So each interactive
 * element restates its own box: background, border, radius, padding, font,
 * case and shadow. The `#id` prefixes are not decoration - they are what keeps
 * a theme rule at (0,1,0) from winning.
 *
 * Nothing here inherits a colour from the theme except --ycc-accent, which the
 * owner sets in Settings and PHP writes onto the two roots as an inline style.
 */

#yatoon-concierge-launcher,
#yatoon-concierge-panel {
    --ycc-ink: #111827;
    --ycc-ink-soft: #4b5563;
    --ycc-line: #e5e7eb;
    --ycc-surface: #ffffff;
    --ycc-surface-soft: #f6f7f9;
    --ycc-radius: 16px;
    --ycc-shadow: 0 18px 48px rgba(15, 23, 42, .18);
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#yatoon-concierge-launcher *,
#yatoon-concierge-panel * {
    box-sizing: border-box;
}

/* ---------------------------------------------------------------- launcher */

#yatoon-concierge-launcher {
    position: fixed;
    right: 16px;
    /* PHP sets --ycc-slot: 80px when the chat has taken over the Text Us
     * corner, or 138px when the owner kept both buttons. */
    bottom: var(--ycc-slot, 80px);
    z-index: 9986;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 0;
    margin: 0;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--ycc-accent, #111827);
    background-image: none;
    color: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .22);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    text-shadow: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease,
                padding .34s cubic-bezier(.4, 0, .2, 1),
                max-width .34s cubic-bezier(.4, 0, .2, 1),
                border-radius .34s ease;
}

#yatoon-concierge-launcher:hover {
    background: var(--ycc-accent, #111827);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .28);
}

#yatoon-concierge-launcher:focus-visible {
    outline: 2px solid var(--ycc-ink);
    outline-offset: 3px;
}

#yatoon-concierge-launcher svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

/* Collapsed: the same behaviour Text Us has, so the corner reads as one
 * familiar control. Shrinks to a 48px circle a few seconds after load and
 * opens back up on hover, focus or touch. */
#yatoon-concierge-launcher.is-tucked {
    width: 48px;
    max-width: 48px;
    padding: 13px;
    border-radius: 50%;
}

#yatoon-concierge-launcher.is-tucked span {
    width: 0;
    opacity: 0;
    overflow: hidden;
}

#yatoon-concierge-launcher.is-tucked:hover,
#yatoon-concierge-launcher.is-tucked:focus-visible {
    width: auto;
    max-width: 260px;
    padding: 12px 18px;
    border-radius: 999px;
}

#yatoon-concierge-launcher.is-tucked:hover span,
#yatoon-concierge-launcher.is-tucked:focus-visible span {
    width: auto;
    opacity: 1;
}

#yatoon-concierge-launcher span {
    display: inline-block;
    white-space: nowrap;
    transition: opacity .28s ease, width .34s cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------------------------------------------- panel */

#yatoon-concierge-panel {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    width: min(400px, calc(100vw - 32px));
    height: min(620px, calc(100vh - 32px));
    overflow: hidden;
    border: 1px solid var(--ycc-line);
    border-radius: var(--ycc-radius);
    background: var(--ycc-surface);
    color: var(--ycc-ink);
    box-shadow: var(--ycc-shadow);
    font-size: 14px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease;
}

#yatoon-concierge-panel.is-open {
    opacity: 1;
    transform: translateY(0);
}

/* The rule above sets display:flex at (0,1,0), which beats the user-agent's
 * [hidden]{display:none}. Without this the panel would be on screen from first
 * paint, before anyone clicked the launcher. */
#yatoon-concierge-panel[hidden] {
    display: none !important;
}

/* On a phone the panel is a full-height sheet, so the button underneath it is
 * just a bump in the corner. */
@media (max-width: 520px) {
    body.ycc-open #yatoon-concierge-launcher {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 520px) {
    #yatoon-concierge-panel {
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 88vh;
        height: 88dvh;
        border-radius: var(--ycc-radius) var(--ycc-radius) 0 0;
        border-bottom: 0;
    }
    #yatoon-concierge-launcher {
        padding: 12px 16px;
    }
    /* The page behind a full-height sheet should not scroll under it. */
    body.ycc-open {
        overflow: hidden;
    }
}

/* -------------------------------------------------------------------- head */

#yatoon-concierge-panel .ycc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 0 0 auto;
    padding: 12px 14px;
    border-bottom: 1px solid var(--ycc-line);
    background: var(--ycc-surface);
}

#yatoon-concierge-panel .ycc-head-id {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

#yatoon-concierge-panel .ycc-avatar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    background: var(--ycc-surface-soft);
}

#yatoon-concierge-panel .ycc-avatar-letter {
    color: var(--ycc-ink);
    font-size: 16px;
    font-weight: 800;
}

#yatoon-concierge-panel .ycc-head-id strong {
    display: block;
    color: var(--ycc-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
}

#yatoon-concierge-panel .ycc-sub {
    display: block;
    color: var(--ycc-ink-soft);
    font-size: 12px;
    line-height: 1.3;
}

#yatoon-concierge-panel .ycc-head-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

#yatoon-concierge-panel .ycc-minimize,
#yatoon-concierge-panel .ycc-close,
#yatoon-concierge-panel .ycc-restart {
    flex: 0 0 auto;
    width: 34px;
    min-width: 0;
    height: 34px;
    padding: 0;
    border: 1px solid var(--ycc-line);
    border-radius: 10px;
    background: var(--ycc-surface-soft);
    background-image: none;
    color: var(--ycc-ink);
    box-shadow: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
}

#yatoon-concierge-panel .ycc-restart,
#yatoon-concierge-panel .ycc-minimize {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

#yatoon-concierge-panel .ycc-minimize,
#yatoon-concierge-panel .ycc-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#yatoon-concierge-panel .ycc-minimize svg,
#yatoon-concierge-panel .ycc-close svg {
    display: block;
    width: 18px;
    height: 18px;
}

#yatoon-concierge-panel .ycc-restart:hover,
#yatoon-concierge-panel .ycc-minimize:hover,
#yatoon-concierge-panel .ycc-close:hover {
    border-color: var(--ycc-accent, #111827);
    color: var(--ycc-accent, #111827);
}

#yatoon-concierge-panel .ycc-close:hover {
    border-color: #b42318;
    background: #fff5f4;
    color: #b42318;
}

#yatoon-concierge-panel .ycc-minimize:focus-visible,
#yatoon-concierge-panel .ycc-close:focus-visible,
#yatoon-concierge-panel .ycc-restart:focus-visible {
    outline: 2px solid var(--ycc-accent, #111827);
    outline-offset: 2px;
}

/* The X hides the floating widget for this page view after confirmation.
 * Refreshing the page makes the widget available again. */
#yatoon-concierge-launcher[hidden],
#yatoon-concierge-panel[hidden] {
    display: none !important;
}

/* In-page hide confirmation. This matches the booking dialogs instead of
 * exposing a browser-specific confirm box with an ambiguous "Cancel" action. */
#yatoon-concierge-hide-dialog[hidden] {
    display: none !important;
}

#yatoon-concierge-hide-dialog {
    position: fixed;
    inset: 0;
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(17, 24, 39, .56);
}

body.ycc-hide-dialog-open {
    overflow: hidden;
}

#yatoon-concierge-hide-dialog .ycc-hide-dialog-card {
    width: min(380px, 100%);
    padding: 28px 24px 24px;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .3);
    text-align: center;
}

#yatoon-concierge-hide-dialog .ycc-hide-dialog-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

#yatoon-concierge-hide-dialog h2 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

#yatoon-concierge-hide-dialog p {
    margin: 0 0 22px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
}

#yatoon-concierge-hide-dialog .ycc-hide-dialog-actions {
    display: flex;
    gap: 10px;
}

#yatoon-concierge-hide-dialog .ycc-hide-dialog-actions button {
    flex: 1 1 0;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 9px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}

#yatoon-concierge-hide-dialog .ycc-hide-dismiss {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
}

#yatoon-concierge-hide-dialog .ycc-hide-dismiss:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

#yatoon-concierge-hide-dialog .ycc-hide-confirm {
    border: 1px solid var(--ycc-accent, #111827);
    background: var(--ycc-accent, #111827);
    color: #fff;
}

#yatoon-concierge-hide-dialog .ycc-hide-confirm:hover {
    filter: brightness(.92);
}

#yatoon-concierge-hide-dialog .ycc-hide-dialog-actions button:focus-visible {
    outline: 2px solid var(--ycc-accent, #111827);
    outline-offset: 2px;
}

@media (max-width: 520px) {
    #yatoon-concierge-hide-dialog {
        align-items: center;
        padding: 16px;
    }
    #yatoon-concierge-hide-dialog .ycc-hide-dialog-card {
        padding: 24px 18px 18px;
        border-radius: 16px;
    }
}

/* --------------------------------------------------------------------- log */

#yatoon-concierge-panel .ycc-log {
    flex: 1 1 auto;
    min-height: 0;
    padding: 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--ycc-surface-soft);
    -webkit-overflow-scrolling: touch;
}

#yatoon-concierge-panel .ycc-row {
    display: flex;
    margin-bottom: 10px;
}

#yatoon-concierge-panel .ycc-row-me {
    justify-content: flex-end;
}

#yatoon-concierge-panel .ycc-bubble {
    max-width: 84%;
    padding: 10px 13px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

#yatoon-concierge-panel .ycc-bubble-bot {
    border: 1px solid var(--ycc-line);
    border-bottom-left-radius: 5px;
    background: var(--ycc-surface);
    color: var(--ycc-ink);
}

#yatoon-concierge-panel .ycc-bubble-me {
    border-bottom-right-radius: 5px;
    background: var(--ycc-accent, #111827);
    color: #fff;
}

#yatoon-concierge-panel .ycc-link-inline {
    color: var(--ycc-accent, #111827);
    text-decoration: underline;
    text-decoration-color: currentColor;
    font-weight: 600;
    word-break: break-word;
}

#yatoon-concierge-panel .ycc-link-inline:hover,
#yatoon-concierge-panel .ycc-link-inline:focus-visible {
    text-decoration-thickness: 2px;
}

#yatoon-concierge-panel .ycc-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 13px;
}

#yatoon-concierge-panel .ycc-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9ca3af;
    animation: yccBlink 1.2s infinite ease-in-out;
}

#yatoon-concierge-panel .ycc-typing span:nth-child(2) { animation-delay: .18s; }
#yatoon-concierge-panel .ycc-typing span:nth-child(3) { animation-delay: .36s; }

@keyframes yccBlink {
    0%, 80%, 100% { opacity: .25; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
    #yatoon-concierge-panel,
    #yatoon-concierge-launcher,
    #yatoon-concierge-panel .ycc-typing span {
        transition: none;
        animation: none;
    }
}

/* ----------------------------------------------------------------- widgets */

#yatoon-concierge-panel .ycc-widget {
    margin: 2px 0 12px;
}

#yatoon-concierge-panel .ycc-hint {
    margin: 0 0 8px;
    color: var(--ycc-ink-soft);
    font-size: 12.5px;
    font-weight: 600;
}

#yatoon-concierge-panel .ycc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#yatoon-concierge-panel .ycc-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: auto;
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 9px 13px;
    border: 1px solid var(--ycc-line);
    border-radius: 12px;
    background: var(--ycc-surface);
    background-image: none;
    color: var(--ycc-ink);
    box-shadow: none;
    text-shadow: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

#yatoon-concierge-panel .ycc-chip:hover {
    border-color: var(--ycc-accent, #111827);
    background: var(--ycc-surface);
    color: var(--ycc-ink);
}

#yatoon-concierge-panel .ycc-chip-meta {
    color: var(--ycc-ink-soft);
    font-size: 11.5px;
    font-weight: 500;
}

/* ------------------------------------------------------------------- forms */

#yatoon-concierge-panel .ycc-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 13px;
    border: 1px solid var(--ycc-line);
    border-radius: 14px;
    background: var(--ycc-surface);
}

#yatoon-concierge-panel .ycc-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#yatoon-concierge-panel .ycc-field-label {
    color: var(--ycc-ink-soft);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

#yatoon-concierge-panel .ycc-input {
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--ycc-line);
    border-radius: 10px;
    background: var(--ycc-surface);
    color: var(--ycc-ink);
    box-shadow: none;
    font-family: inherit;
    font-size: 15px; /* 16px-ish keeps iOS Safari from zooming on focus. */
    line-height: 1.3;
}

#yatoon-concierge-panel .ycc-input:focus {
    outline: 0;
    border-color: var(--ycc-accent, #111827);
    box-shadow: 0 0 0 3px rgba(17, 24, 39, .08);
}

#yatoon-concierge-panel .ycc-code {
    letter-spacing: .35em;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

#yatoon-concierge-panel .ycc-error {
    margin: 0;
    color: #b91c1c;
    font-size: 12.5px;
}

#yatoon-concierge-panel .ycc-textarea {
    width: 100%;
    min-height: 84px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--ycc-line);
    border-radius: 10px;
    background: var(--ycc-surface);
    color: var(--ycc-ink);
    box-shadow: none;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    resize: vertical;
}

#yatoon-concierge-panel .ycc-primary,
#yatoon-concierge-panel .ycc-secondary,
#yatoon-concierge-panel .ycc-danger {
    width: auto;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 11px 16px;
    border-radius: 999px;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    cursor: pointer;
}

#yatoon-concierge-panel .ycc-primary {
    border: 1px solid var(--ycc-accent, #111827);
    background: var(--ycc-accent, #111827);
    color: #fff;
}

#yatoon-concierge-panel .ycc-primary[disabled] {
    opacity: .6;
    cursor: progress;
}

#yatoon-concierge-panel .ycc-form-status {
    margin: 10px 0 0;
    color: var(--ycc-accent, #111827);
    font-size: 13px;
    line-height: 1.45;
}

#yatoon-concierge-panel .ycc-form-status.is-error {
    color: #b42318;
}

#yatoon-concierge-panel .ycc-secondary {
    border: 1px solid var(--ycc-line);
    background: var(--ycc-surface);
    color: var(--ycc-ink);
}

#yatoon-concierge-panel .ycc-danger {
    border: 1px solid #fecaca;
    background: #fff;
    color: #dc2626;
}

/* ------------------------------------------------------- confirmation card */

#yatoon-concierge-panel .ycc-card {
    padding: 14px;
    border: 1px solid var(--ycc-line);
    border-radius: 14px;
    background: var(--ycc-surface);
}

#yatoon-concierge-panel .ycc-card-title {
    margin: 0 0 10px;
    color: var(--ycc-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: none;
}

#yatoon-concierge-panel .ycc-card-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #f3f4f6;
}

#yatoon-concierge-panel .ycc-card-key {
    flex: 0 0 auto;
    color: var(--ycc-ink-soft);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

#yatoon-concierge-panel .ycc-card-val {
    flex: 1 1 auto;
    color: var(--ycc-ink);
    font-size: 13.5px;
    font-weight: 600;
    text-align: right;
    overflow-wrap: anywhere;
}

#yatoon-concierge-panel .ycc-card-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--ycc-line);
    color: var(--ycc-ink-soft);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
}

#yatoon-concierge-panel .ycc-card-total strong {
    color: var(--ycc-ink);
    font-size: 16px;
    font-weight: 800;
    text-transform: none;
}

#yatoon-concierge-panel .ycc-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

#yatoon-concierge-panel .ycc-card-actions .ycc-primary {
    flex: 1 1 auto;
}

/* ------------------------------------------------------- mini booking rows */

#yatoon-concierge-panel .ycc-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
    padding: 12px;
    border: 1px solid var(--ycc-line);
    border-radius: 12px;
    background: var(--ycc-surface);
}

#yatoon-concierge-panel .ycc-mini strong {
    color: var(--ycc-ink);
    font-size: 13.5px;
    font-weight: 700;
}

#yatoon-concierge-panel .ycc-mini-meta {
    color: var(--ycc-ink-soft);
    font-size: 12px;
}

#yatoon-concierge-panel .ycc-mini-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

#yatoon-concierge-panel .ycc-mini-actions button {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
}

/* -------------------------------------------------------------------- done */

#yatoon-concierge-panel .ycc-done {
    padding: 16px;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    background: #f0fdf4;
    text-align: center;
}

#yatoon-concierge-panel .ycc-done-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

#yatoon-concierge-panel .ycc-done p {
    margin: 0 0 6px;
    color: var(--ycc-ink);
    font-weight: 700;
}

#yatoon-concierge-panel .ycc-link {
    display: inline-block;
    color: var(--ycc-ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ----------------------------------------------------- consent and compose */

#yatoon-concierge-panel .ycc-consent {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-top: 1px solid var(--ycc-line);
    background: var(--ycc-surface);
    transition: background .2s ease;
}

#yatoon-concierge-panel .ycc-consent.ycc-consent-flash {
    background: #fffbeb;
}

#yatoon-concierge-panel .ycc-consent label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    color: var(--ycc-ink-soft);
    font-size: 11.5px;
    line-height: 1.4;
    cursor: pointer;
}

#yatoon-concierge-panel .ycc-consent input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    accent-color: var(--ycc-accent, #111827);
}

#yatoon-concierge-panel .ycc-consent-error {
    margin: 6px 0 0 24px;
    color: #b91c1c;
    font-size: 11.5px;
    line-height: 1.35;
}

#yatoon-concierge-panel .ycc-compose {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    padding: 10px 14px 4px;
    border-top: 1px solid var(--ycc-line);
    background: var(--ycc-surface);
}

#yatoon-concierge-panel .ycc-compose textarea {
    flex: 1 1 auto;
    width: 100%;
    min-height: 44px;
    max-height: 96px;
    margin: 0;
    padding: 11px 13px;
    border: 1px solid var(--ycc-line);
    border-radius: 14px;
    background: var(--ycc-surface);
    color: var(--ycc-ink);
    box-shadow: none;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.35;
    resize: none;
    overflow-y: auto;
}

#yatoon-concierge-panel .ycc-compose textarea:focus {
    outline: 0;
    border-color: var(--ycc-accent, #111827);
}

#yatoon-concierge-panel .ycc-send {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ycc-accent, #111827);
    background-image: none;
    color: #fff;
    box-shadow: none;
    cursor: pointer;
}

#yatoon-concierge-panel .ycc-foot {
    flex: 0 0 auto;
    margin: 0;
    padding: 4px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--ycc-surface);
    color: #9ca3af;
    font-size: 10.5px;
    line-height: 1.4;
    text-align: center;
}

#yatoon-concierge-panel .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
