#geek-chat-widget,
#geek-chat-widget * {
    box-sizing: border-box;
}

#geek-chat-widget {
    --gc-primary: #6757e8;
    --gc-primary-dark: #4b3bcf;
    --gc-primary-light: #9b8fff;
    --gc-accent: #f4a4c0;
    --gc-accent-light: #ffd7e5;
    --gc-user: #6757e8;
    --gc-user-dark: #5141cf;
    --gc-user-text: #fff;
    --gc-bottom: 18px;
    --gc-text: #252235;
    --gc-muted: #777286;
    --gc-soft: #f7f6fb;
    --gc-border: #e9e6f1;
    --gc-success: #28ad6c;
    position: fixed;
    inset: auto 0 0 auto;
    z-index: 999997;
    direction: rtl;
    font-family: Peyda, peyda, "GeekChatVazir", Tahoma, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--gc-text);
}

#geek-chat-widget button,
#geek-chat-widget textarea,
#geek-chat-widget input {
    font: inherit;
}

#geek-chat-widget button {
    -webkit-tap-highlight-color: transparent;
}

html.geekchat-lock,
html.geekchat-lock body {
    overflow: hidden !important;
    overscroll-behavior: none;
}

#geekchat-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(22, 18, 38, .34);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}

#geek-chat-widget[data-open="true"] #geekchat-backdrop {
    opacity: 1;
    visibility: visible;
}

#geekchat-window {
    position: fixed;
    right: 20px;
    bottom: calc(var(--gc-bottom) + 76px);
    z-index: 2;
    display: flex;
    width: min(410px, calc(100vw - 32px));
    height: min(720px, calc(100vh - 118px));
    height: min(720px, calc(100dvh - 118px));
    min-height: 0;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(103, 87, 232, .12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(37, 28, 78, .22), 0 8px 24px rgba(35, 27, 67, .09);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.975);
    transform-origin: bottom right;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

#geek-chat-widget[data-open="true"] #geekchat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.geekchat-sheet-handle {
    display: none;
}

#geekchat-header {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 88px;
    padding: 18px 18px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% -20%, rgba(244, 164, 192, .34), transparent 48%),
        linear-gradient(135deg, #6f60ed 0%, #5748db 56%, #4939c7 100%);
    color: #fff;
}

.geekchat-header-glow {
    position: absolute;
    inset: auto -55px -70px auto;
    z-index: -1;
    width: 180px;
    height: 180px;
    border: 34px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.geekchat-header-content {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.geekchat-avatar-wrap {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 17px;
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
}

.geekchat-header-logo {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.geekchat-status-dot {
    position: absolute;
    right: -2px;
    bottom: -1px;
    width: 13px;
    height: 13px;
    border: 3px solid #5b4bdd;
    border-radius: 50%;
    background: #3ce18b;
    box-shadow: 0 0 0 3px rgba(60, 225, 139, .16);
}

.geekchat-header-copy {
    min-width: 0;
}

.geekchat-title-line {
    display: flex;
    align-items: center;
    gap: 7px;
}

#geekchat-title {
    max-width: 220px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.geekchat-title-line > span {
    display: inline-flex;
    min-height: 20px;
    padding: 1px 7px 0;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .5px;
}

.geekchat-header-copy small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .77);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.geekchat-header-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 6px;
}

.geekchat-icon-button {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

.geekchat-icon-button:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-1px);
}

.geekchat-icon-button img {
    display: block;
    filter: brightness(0) invert(1);
}

#geekchat-messages {
    position: relative;
    display: flex;
    min-height: 0;
    padding: 16px 14px 18px;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 11px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at 90% 3%, rgba(103, 87, 232, .055), transparent 28%),
        linear-gradient(180deg, #fbfaff 0%, #f8f7fb 100%);
    scrollbar-width: thin;
    scrollbar-color: rgba(103, 87, 232, .25) transparent;
}

#geekchat-messages::-webkit-scrollbar {
    width: 5px;
}

#geekchat-messages::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(103, 87, 232, .23);
}

.geekchat-start-card {
    position: relative;
    padding: 14px 3px 6px;
}

.geekchat-start-card[hidden] {
    display: none;
}

.geekchat-start-visual {
    display: flex;
    margin-bottom: 14px;
    align-items: center;
    justify-content: space-between;
}

.geekchat-start-orb {
    position: relative;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 21px;
    background: linear-gradient(145deg, #fff, #f0edff);
    box-shadow: 0 12px 28px rgba(91, 74, 208, .15), inset 0 0 0 1px rgba(103, 87, 232, .11);
}

.geekchat-start-orb::after {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gc-accent), #ffd2e1);
    box-shadow: 0 3px 8px rgba(244, 164, 192, .35);
    content: "";
}

.geekchat-start-orb img {
    width: 56px;
    height: 56px;
}

.geekchat-mini-pill {
    display: inline-flex;
    min-height: 29px;
    padding: 5px 10px;
    align-items: center;
    border: 1px solid rgba(103, 87, 232, .1);
    border-radius: 999px;
    background: #fff;
    color: #6d6484;
    box-shadow: 0 7px 16px rgba(43, 34, 75, .05);
    font-size: 10px;
    font-weight: 800;
}

.geekchat-start-kicker {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--gc-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -.1px;
}

.geekchat-start-card h2 {
    margin: 0;
    color: #282438;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.45;
    letter-spacing: -.55px;
}

.geekchat-start-card > p {
    margin: 8px 0 0;
    color: #6f6a7d;
    font-size: 12.5px;
    line-height: 1.95;
}

.geekchat-trust-row {
    display: flex;
    margin: 13px 0 15px;
    flex-wrap: wrap;
    gap: 7px 12px;
    color: #716b7e;
    font-size: 10px;
    font-weight: 750;
}

.geekchat-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.geekchat-trust-row i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gc-success);
    box-shadow: 0 0 0 3px rgba(40, 173, 108, .1);
}

.geekchat-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.geekchat-quick-action {
    position: relative;
    display: grid;
    min-height: 67px;
    padding: 11px 11px 10px;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    border: 1px solid #e8e5f0;
    border-radius: 17px;
    background: #fff;
    color: #393447;
    box-shadow: 0 8px 20px rgba(45, 36, 78, .04);
    cursor: pointer;
    text-align: right;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.geekchat-quick-action::before {
    position: absolute;
    inset: auto auto -30px -30px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(103, 87, 232, .04);
    content: "";
}

.geekchat-quick-action:hover {
    border-color: rgba(103, 87, 232, .33);
    box-shadow: 0 12px 24px rgba(67, 50, 132, .08);
    transform: translateY(-2px);
}

.geekchat-action-icon {
    position: relative;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(103, 87, 232, .12), rgba(244, 164, 192, .16));
}

.geekchat-action-icon::before {
    color: var(--gc-primary);
    font-size: 14px;
    font-weight: 900;
    content: "✦";
}

.geekchat-quick-action[data-index="1"] .geekchat-action-icon::before {
    content: "◎";
}

.geekchat-quick-action[data-index="2"] .geekchat-action-icon::before {
    content: "؟";
}

.geekchat-quick-action[data-action="goftino"] .geekchat-action-icon::before {
    content: "◌";
}

.geekchat-quick-action strong {
    position: relative;
    z-index: 1;
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1.55;
}

.geekchat-quick-action > b {
    position: relative;
    z-index: 1;
    color: #a19baa;
    font-size: 14px;
    font-weight: 500;
}

.geekchat-message {
    display: flex;
    width: 100%;
    align-items: flex-end;
    gap: 7px;
    animation: geekchat-message-in .2s ease both;
}

@keyframes geekchat-message-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.geekchat-message-avatar,
.geekchat-typing-avatar {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 1px solid rgba(103, 87, 232, .12);
    border-radius: 10px;
    background: linear-gradient(145deg, #fff, #efecff);
    color: var(--gc-primary);
    box-shadow: 0 4px 10px rgba(66, 52, 122, .08);
    font-size: 12px;
}

.geekchat-bubble {
    max-width: 88%;
    padding: 10px 12px 8px;
    border-radius: 17px 17px 5px 17px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(38, 31, 63, .055);
    border: 1px solid #ebe8f1;
}

.geekchat-bubble-content {
    color: #393447;
    font-size: 12.5px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.geekchat-bubble-content p {
    margin: 0;
    white-space: pre-wrap;
}

.geekchat-bubble-content p + p,
.geekchat-bubble-content ul + p,
.geekchat-bubble-content p + ul {
    margin-top: 8px;
}

.geekchat-bubble-content ul {
    margin: 7px 0 0;
    padding: 0 18px 0 0;
}

.geekchat-bubble-content li + li {
    margin-top: 4px;
}

.geekchat-bubble small {
    display: block;
    margin-top: 5px;
    color: #a29cab;
    font-size: 10px;
    font-weight: 650;
}

.geekchat-user {
    flex-direction: row-reverse;
}

.geekchat-user .geekchat-bubble {
    border: 0;
    border-radius: 17px 17px 17px 5px;
    background: linear-gradient(145deg, var(--gc-user), var(--gc-user-dark));
    box-shadow: 0 7px 18px rgba(82, 65, 191, .18);
}

.geekchat-user .geekchat-bubble-content {
    color: var(--gc-user-text);
}

.geekchat-user .geekchat-bubble small {
    color: rgba(255, 255, 255, .68);
    text-align: left;
}

.geekchat-system {
    justify-content: center;
}

.geekchat-system .geekchat-bubble {
    max-width: 92%;
    padding: 8px 12px;
    border: 1px dashed rgba(103, 87, 232, .22);
    border-radius: 12px;
    background: rgba(103, 87, 232, .055);
    box-shadow: none;
}

.geekchat-system .geekchat-bubble-content {
    color: #645e73;
    font-size: 9.5px;
    text-align: center;
}

#geekchat-typing {
    align-items: center;
}

#geekchat-typing[hidden] {
    display: none;
}

#geekchat-typing > div:last-child {
    display: flex;
    min-width: 148px;
    min-height: 45px;
    padding: 9px 12px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ebe8f1;
    border-radius: 15px 15px 5px 15px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(38, 31, 63, .05);
}

.geekchat-typing-label {
    color: #80798d;
    font-size: 10px;
    font-weight: 800;
}

.geekchat-dot-flashing {
    display: flex;
    margin-top: 4px;
    gap: 4px;
}

.geekchat-dot-flashing i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gc-primary);
    animation: geekchat-dots 1s infinite ease-in-out;
}

.geekchat-dot-flashing i:nth-child(2) { animation-delay: .12s; }
.geekchat-dot-flashing i:nth-child(3) { animation-delay: .24s; }

@keyframes geekchat-dots {
    0%, 60%, 100% { opacity: .25; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-2px); }
}

.geekchat-product-section {
    width: 100%;
    margin: 3px 0 7px;
    padding-right: 35px;
    animation: geekchat-message-in .24s ease both;
}

.geekchat-product-heading {
    display: flex;
    padding: 0 2px 8px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.geekchat-product-heading strong {
    color: #413a4d;
    font-size: 11.5px;
    font-weight: 950;
}

.geekchat-product-heading span {
    color: #928b9c;
    font-size: 10px;
    text-align: left;
}

.geekchat-product-list {
    display: grid;
    gap: 9px;
}

.geekchat-product-card {
    position: relative;
    display: grid;
    min-width: 0;
    padding: 10px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 11px;
    overflow: hidden;
    border: 1px solid #e7e3ef;
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0, rgba(103, 87, 232, .055), transparent 34%),
        #fff;
    box-shadow: 0 10px 24px rgba(45, 36, 78, .065);
}

.geekchat-product-card::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    content: "";
    pointer-events: none;
}

.geekchat-product-media {
    position: relative;
    display: block;
    width: 82px;
    height: 94px;
    overflow: hidden;
    border: 1px solid #efedf3;
    border-radius: 15px;
    background: #f5f3f8;
}

.geekchat-product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.geekchat-product-media:hover img {
    transform: scale(1.035);
}

.geekchat-product-discount {
    position: absolute;
    top: 6px;
    left: 6px;
    display: inline-flex;
    min-width: 30px;
    min-height: 24px;
    padding: 2px 6px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #d84e72;
    color: #fff;
    box-shadow: 0 5px 12px rgba(216, 78, 114, .24);
    font-size: 10px;
    font-weight: 950;
}

.geekchat-product-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.geekchat-product-topline {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.geekchat-product-topline > span:first-child {
    overflow: hidden;
    color: #8a8296;
    font-size: 10px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.geekchat-product-topline > span:last-child {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 900;
}

.geekchat-product-topline > span:last-child::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.geekchat-product-topline .is-stock { color: #209d61; }
.geekchat-product-topline .is-out { color: #d64d62; }

.geekchat-product-name {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: #302a39;
    font-size: 11.5px;
    font-weight: 950;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.geekchat-product-price {
    display: flex;
    margin-top: auto;
    padding-top: 8px;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px 7px;
}

.geekchat-product-price strong {
    color: var(--gc-primary-dark);
    font-size: 11px;
    font-weight: 950;
}

.geekchat-product-price del {
    color: #aaa3b2;
    font-size: 10px;
    text-decoration-thickness: 1px;
}

.geekchat-product-actions {
    display: flex;
    grid-column: 1 / -1;
    gap: 7px;
}

.geekchat-product-actions a,
.geekchat-product-actions button,
.geekchat-product-link-disabled {
    display: inline-flex;
    min-height: 36px;
    padding: 7px 10px;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 950;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.geekchat-product-actions a,
.geekchat-product-link-disabled {
    border: 1px solid #e8e4ef;
    background: #f7f5fa;
    color: #5f5869;
}

.geekchat-product-actions button {
    background: linear-gradient(145deg, var(--gc-primary), var(--gc-primary-dark));
    color: #fff;
    box-shadow: 0 7px 15px rgba(83, 65, 194, .17);
}

.geekchat-product-actions a:hover,
.geekchat-product-actions button:hover {
    transform: translateY(-1px);
}

.geekchat-product-actions button:disabled {
    opacity: .7;
    cursor: wait;
    transform: none;
}

.geekchat-inline-handoff {
    display: flex;
    padding: 11px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(103, 87, 232, .15);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(103, 87, 232, .07), rgba(244, 164, 192, .08));
}

.geekchat-inline-handoff strong,
.geekchat-inline-handoff span {
    display: block;
}

.geekchat-inline-handoff strong {
    color: #474052;
    font-size: 10px;
    font-weight: 900;
}

.geekchat-inline-handoff span {
    margin-top: 2px;
    color: #827b8e;
    font-size: 10px;
}

.geekchat-inline-handoff button {
    min-width: 68px;
    min-height: 34px;
    border: 0;
    border-radius: 11px;
    background: var(--gc-primary);
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
}

.geekchat-retry-action {
    display: flex;
    margin-right: 35px;
    padding: 11px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(229, 157, 59, .25);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 247, 232, .96), rgba(255, 252, 246, .96));
}

.geekchat-retry-action strong,
.geekchat-retry-action span {
    display: block;
}

.geekchat-retry-action strong {
    color: #534633;
    font-size: 10px;
    font-weight: 950;
}

.geekchat-retry-action span {
    margin-top: 2px;
    color: #8d7b62;
    font-size: 10px;
}

.geekchat-retry-action button {
    min-width: 82px;
    min-height: 35px;
    padding: 6px 10px;
    border: 0;
    border-radius: 11px;
    background: #5f50dc;
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 950;
}

#geekchat-human-strip {
    flex: 0 0 auto;
    padding: 8px 12px 0;
    background: #fff;
}

#geekchat-request-goftino {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 50px;
    padding: 8px 10px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(103, 87, 232, .14);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(103, 87, 232, .055), rgba(244, 164, 192, .075));
    color: #3d3748;
    cursor: pointer;
    text-align: right;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

#geekchat-request-goftino:hover {
    border-color: rgba(103, 87, 232, .32);
    background: linear-gradient(135deg, rgba(103, 87, 232, .09), rgba(244, 164, 192, .1));
    transform: translateY(-1px);
}

#geekchat-request-goftino:disabled {
    opacity: .7;
    cursor: wait;
}

.geekchat-human-icon {
    position: relative;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(64, 49, 117, .09);
}

.geekchat-human-icon i:first-child {
    position: absolute;
    top: 8px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--gc-primary);
    border-radius: 50%;
}

.geekchat-human-icon i:last-child {
    position: absolute;
    bottom: 7px;
    width: 17px;
    height: 9px;
    border: 2px solid var(--gc-primary);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

#geekchat-request-goftino > span:nth-child(2) {
    min-width: 0;
}

#geekchat-request-goftino strong,
#geekchat-request-goftino small {
    display: block;
}

#geekchat-request-goftino strong {
    font-size: 10.5px;
    font-weight: 950;
}

#geekchat-request-goftino small {
    margin-top: 1px;
    color: #817a8d;
    font-size: 10px;
    font-weight: 650;
}

#geekchat-request-goftino > b {
    color: var(--gc-primary);
    font-size: 15px;
    font-weight: 500;
}

#geekchat-request-goftino.is-loading > b {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(103, 87, 232, .22);
    border-top-color: var(--gc-primary);
    border-radius: 50%;
    color: transparent;
    animation: geekchat-spin .7s linear infinite;
}

@keyframes geekchat-spin {
    to { transform: rotate(360deg); }
}

#geekchat-goftino-counter {
    position: absolute;
    top: -5px;
    left: -5px;
    display: grid;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ee4e6e;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

#geekchat-goftino-counter[hidden] {
    display: none;
}

#geekchat-input-container {
    position: relative;
    display: flex;
    min-height: 62px;
    padding: 8px 11px 7px;
    flex: 0 0 auto;
    align-items: flex-end;
    gap: 8px;
    background: #fff;
}

#geekchat-input {
    width: 100%;
    min-height: 46px;
    max-height: 96px;
    margin: 0;
    padding: 12px 13px;
    resize: none;
    border: 0 !important;
    border-radius: 15px;
    outline: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    background: #f8f7fa;
    color: #393342;
    box-shadow: none !important;
    font-size: 10.5px;
    line-height: 1.8;
    transition: background .18s ease;
}

#geekchat-input::placeholder {
    color: #aaa4b1;
}

#geekchat-input:focus,
#geekchat-input:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    background: #f8f7fa;
    box-shadow: none !important;
}

#geekchat-input:disabled {
    opacity: .65;
}

#geekchat-send {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    flex: 0 0 46px;
    place-items: center;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--gc-primary), var(--gc-primary-dark));
    box-shadow: 0 8px 18px rgba(81, 63, 190, .22);
    cursor: pointer;
    transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}

#geekchat-send:hover:not(:disabled) {
    box-shadow: 0 10px 22px rgba(81, 63, 190, .28);
    transform: translateY(-1px);
}

#geekchat-send:disabled {
    opacity: .35;
    box-shadow: none;
    cursor: default;
}

#geekchat-send img {
    display: block;
    filter: brightness(0) invert(1);
}

.geekchat-powered {
    min-height: 24px;
    padding: 0 12px 7px;
    flex: 0 0 auto;
    background: #fff;
    color: #aaa4b1;
    font-size: 7.5px;
    text-align: center;
}

.geekchat-launcher-wrap {
    position: fixed;
    right: 18px;
    bottom: calc(var(--gc-bottom) + env(safe-area-inset-bottom));
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: opacity .18s ease, transform .18s ease;
}

#geek-chat-widget[data-open="true"] .geekchat-launcher-wrap {
    opacity: 0;
    pointer-events: none;
    transform: translateY(7px);
}

#geekchat-toggle {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 21px;
    background: linear-gradient(145deg, var(--gc-primary-light), var(--gc-primary-dark));
    box-shadow: 0 15px 32px rgba(71, 52, 167, .32), inset 0 1px 0 rgba(255, 255, 255, .28);
    cursor: pointer;
    isolation: isolate;
    transition: transform .2s ease, box-shadow .2s ease;
}

#geekchat-toggle:hover {
    box-shadow: 0 18px 38px rgba(71, 52, 167, .38), inset 0 1px 0 rgba(255, 255, 255, .28);
    transform: translateY(-2px);
}

.geekchat-toggle-ring {
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 1px solid rgba(103, 87, 232, .18);
    border-radius: 25px;
    background: rgba(255, 255, 255, .5);
}

#geekchat-toggle img {
    display: block;
    width: 42px;
    height: 42px;
}

#geekchat-unread {
    position: absolute;
    top: -6px;
    left: -6px;
    display: grid;
    min-width: 23px;
    height: 23px;
    padding: 0 5px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 999px;
    background: #ef4f72;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

#geekchat-unread[hidden] {
    display: none;
}

#geekchat-launcher-label {
    display: flex;
    min-width: 132px;
    min-height: 48px;
    padding: 8px 13px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid rgba(103, 87, 232, .11);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(40, 31, 75, .13);
    color: #393342;
    cursor: pointer;
    text-align: right;
}

#geekchat-launcher-label strong,
#geekchat-launcher-label small {
    display: block;
}

#geekchat-launcher-label strong {
    font-size: 10px;
    font-weight: 950;
}

#geekchat-launcher-label small {
    display: inline-flex;
    margin-top: 1px;
    align-items: center;
    gap: 5px;
    color: #837d8d;
    font-size: 7.5px;
    font-weight: 700;
}

#geekchat-launcher-label i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2fc879;
    box-shadow: 0 0 0 3px rgba(47, 200, 121, .12);
}

.geekchat-toast {
    position: fixed;
    right: 20px;
    bottom: calc(var(--gc-bottom) + 84px);
    z-index: 5;
    max-width: min(340px, calc(100vw - 32px));
    padding: 10px 13px;
    border: 1px solid rgba(103, 87, 232, .13);
    border-radius: 13px;
    background: #fff;
    color: #514b5c;
    box-shadow: 0 12px 32px rgba(39, 31, 70, .16);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    font-size: 9.5px;
    font-weight: 800;
}

.geekchat-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.geekchat-toast[data-kind="success"] {
    border-color: rgba(40, 173, 108, .2);
    color: #19784b;
}

.geekchat-toast[data-kind="error"] {
    border-color: rgba(215, 74, 94, .2);
    color: #a93447;
}

.screen-reader-text {
    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;
}

@media (max-width: 640px) {
    #geekchat-backdrop {
        background: rgba(20, 16, 34, .48);
    }

    #geekchat-window {
        right: 0;
        bottom: 0;
        width: 100%;
        height: min(94vh, 820px);
        height: min(94dvh, 820px);
        max-height: 100vh;
        max-height: 100dvh;
        min-height: 0;
        border: 0;
        border-radius: 25px 25px 0 0;
        box-shadow: 0 -18px 48px rgba(31, 22, 61, .2);
        transform: translateY(100%);
        transform-origin: bottom center;
    }

    #geek-chat-widget[data-open="true"] #geekchat-window {
        transform: translateY(0);
    }

    .geekchat-sheet-handle {
        position: absolute;
        top: 7px;
        right: 50%;
        z-index: 5;
        display: block;
        width: 36px;
        height: 4px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .4);
        transform: translateX(50%);
    }

    #geekchat-header {
        min-height: 91px;
        padding-top: 21px;
        padding-right: 15px;
        padding-left: 15px;
    }

    #geekchat-title {
        max-width: 175px;
    }

    .geekchat-header-copy small {
        max-width: 185px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #geekchat-messages {
        padding-right: 12px;
        padding-left: 12px;
    }

    .geekchat-product-section,
    .geekchat-retry-action {
        margin-right: 0;
        padding-right: 0;
    }

    .geekchat-product-card {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .geekchat-start-card h2 {
        font-size: 20px;
    }

    .geekchat-start-card > p {
        font-size: 11px;
    }

    .geekchat-quick-action {
        min-height: 64px;
        padding: 9px;
        grid-template-columns: 28px minmax(0, 1fr) auto;
        gap: 7px;
    }

    .geekchat-action-icon {
        width: 28px;
        height: 28px;
    }

    .geekchat-quick-action strong {
        font-size: 9.5px;
    }

    #geekchat-human-strip {
        padding-right: 10px;
        padding-left: 10px;
    }

    #geekchat-input-container {
        padding-right: 10px;
        padding-bottom: 7px;
        padding-left: 10px;
    }

    .geekchat-powered {
        padding-bottom: calc(7px + env(safe-area-inset-bottom));
    }

    .geekchat-launcher-wrap {
        right: 14px;
    }

    #geekchat-launcher-label {
        display: none;
    }

    #geekchat-toggle {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    #geekchat-toggle img {
        width: 39px;
        height: 39px;
    }

    .geekchat-toast {
        right: 14px;
        bottom: calc(var(--gc-bottom) + 76px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 370px) {
    .geekchat-quick-actions {
        grid-template-columns: 1fr;
    }

    .geekchat-quick-action {
        min-height: 56px;
    }

    .geekchat-start-visual {
        margin-bottom: 10px;
    }

    .geekchat-start-orb {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .geekchat-start-orb img {
        width: 49px;
        height: 49px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #geek-chat-widget *,
    #geek-chat-widget *::before,
    #geek-chat-widget *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.geekchat-product-link-disabled {
    opacity: .68;
    cursor: not-allowed;
}

.geekchat-degraded-response .geekchat-bubble,
.geekchat-product-section.geekchat-degraded-response {
    border-style: dashed;
}
#geek-chat-widget button:focus-visible,
#geek-chat-widget a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

