@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

#sektor-chat-wrapper {
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui;
    --chatly-ink: #0e1116;
    --chatly-paper: #fafaf6;
    --chatly-accent: #ff7a00;
    --chatly-accent-2: #ffb35c;
    --chatly-moss: #1d6b4f;
    --chatly-ocean: #1f3a5f;
    --chatly-shadow: rgba(14, 17, 22, 0.16);
    --chatly-shadow-lg: rgba(14, 17, 22, 0.22);
    --chatly-border: rgba(14, 17, 22, 0.08);
    --user-text: #0e1116;
    --bot-bg: #ffffff;
    --bot-text: #1f2937;
    --radius-lg: 22px;
    --radius-md: 14px;
    box-sizing: border-box;
    position: fixed; bottom: 0; right: 0; z-index: 99999;
    pointer-events: none;
}

#sektor-chat-wrapper * { box-sizing: border-box; pointer-events: auto; }

/* Body lock when chat is open in fullscreen mobile mode */
body.sektor-chat-fullscreen-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Toggle button */
.sektor-toggle-btn {
    position: fixed; bottom: 24px; right: 24px;
    background: linear-gradient(135deg, #111927 0%, #1f3a5f 100%) !important;
    color: #ffffff !important; border: none !important;
    border-radius: 999px !important; padding: 13px 20px 13px 16px !important;
    font-size: 14px !important; font-weight: 700 !important; cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    letter-spacing: 0.1px !important;
    box-shadow: 0 12px 28px rgba(14, 17, 22, 0.28), 0 2px 6px rgba(14, 17, 22, 0.12) !important;
    display: flex; align-items: center; gap: 10px;
    transition: opacity 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 99999;
    -webkit-tap-highlight-color: transparent;
}
.sektor-toggle-btn::before {
    content: '';
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--chatly-accent) 0%, var(--chatly-accent-2) 100%);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.45);
}
.sektor-toggle-btn i {
    position: absolute;
    left: 22px;
    font-size: 14px !important;
    color: #111927;
    z-index: 1;
}
.sektor-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(14, 17, 22, 0.32), 0 4px 10px rgba(14, 17, 22, 0.14) !important;
}
.sektor-toggle-btn.sektor-hidden-toggle { opacity: 0; pointer-events: none; transform: scale(0.85); }

/* Widget window */
.sektor-widget {
    position: fixed; bottom: 90px; right: 24px;
    width: 420px; height: 640px; max-height: 82vh;
    background: var(--chatly-paper) !important;
    border-radius: var(--radius-lg);
    box-shadow:
        0 24px 60px -12px var(--chatly-shadow-lg),
        0 8px 24px rgba(14, 17, 22, 0.08),
        0 0 0 1px var(--chatly-border);
    display: none; flex-direction: column; overflow: hidden;
    opacity: 0; transform: translateY(14px) scale(0.985);
    transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}
.sektor-widget::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 0, 0.07), transparent 46%),
        radial-gradient(circle at 10% 80%, rgba(31, 58, 95, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(250,250,246,0.96) 100%);
    pointer-events: none;
}
.sektor-widget.sektor-open { opacity: 1; transform: translateY(0) scale(1); }

/* Mobile: fullscreen webapp-style */
@media (max-width: 640px) {
    .sektor-widget {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        width: 100dvw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        transform: translateY(0) scale(1) !important;
        opacity: 0;
        transition: opacity 0.22s ease;
        box-shadow: none;
    }
    .sektor-widget.sektor-open { opacity: 1; }
    .sektor-toggle-btn {
        bottom: 18px; right: 18px;
        padding: 12px 18px 12px 14px !important;
        font-size: 13px !important;
    }
}

/* Header */
.sektor-header {
    position: relative;
    padding: 14px 16px;
    padding-top: max(14px, env(safe-area-inset-top));
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(135deg, #0e1116 0%, #1a2a43 50%, #1f3a5f 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    z-index: 2;
}
.sektor-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 100%, rgba(255, 122, 0, 0.18), transparent 55%);
    pointer-events: none;
}
.sektor-title-group { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.sektor-header-avatar {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--chatly-accent) 0%, var(--chatly-accent-2) 100%);
    color: #111927;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px;
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.35);
    flex-shrink: 0;
}
.sektor-title-wrap { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sektor-title {
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: 0.1px;
    color: #ffffff;
}
.sektor-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: rgba(199, 249, 223, 0.95);
}
.sektor-online-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    animation: sektorOnlinePulse 1.6s infinite;
    flex-shrink: 0;
}
.sektor-actions { display: flex; gap: 4px; position: relative; z-index: 1; }
.sektor-action-btn {
    color: rgba(255,255,255,0.65); cursor: pointer;
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px; transition: all 0.18s; font-size: 13px;
    -webkit-tap-highlight-color: transparent;
}
.sektor-action-btn:hover, .sektor-action-btn:active {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
}

/* Body */
.sektor-body {
    flex: 1; padding: 22px 22px 12px 22px; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex; flex-direction: column;
    scroll-behavior: smooth; position: relative; z-index: 1;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 122, 0, 0.05), transparent 42%),
        radial-gradient(circle at 92% 18%, rgba(31, 58, 95, 0.06), transparent 46%),
        linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}
.sektor-body::-webkit-scrollbar { width: 5px; }
.sektor-body::-webkit-scrollbar-track { background: transparent; }
.sektor-body::-webkit-scrollbar-thumb { background: rgba(14, 17, 22, 0.14); border-radius: 10px; }
.sektor-body::-webkit-scrollbar-thumb:hover { background: rgba(14, 17, 22, 0.28); }

/* Welcome */
.sektor-welcome { text-align: left; margin-top: 6px; animation: sektorFadeIn 0.5s ease; }
.sektor-logo {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.16) 0%, rgba(255, 179, 92, 0.16) 100%);
    color: var(--chatly-accent); border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 14px;
    box-shadow: 0 10px 22px rgba(255, 122, 0, 0.2);
}
.sektor-greeting h3 {
    margin: 0 0 6px 0; font-size: 19px;
    color: var(--chatly-ink); font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
}
.sektor-greeting p { color: #4b5563; margin: 0 0 18px 0; font-size: 13.5px; line-height: 1.6; }

/* Quick actions */
.sektor-quick-action {
    display: flex; align-items: center; text-align: left;
    background: #ffffff;
    border: 1px solid var(--chatly-border);
    padding: 12px 14px; border-radius: 12px;
    margin-bottom: 8px; cursor: pointer;
    transition: all 0.18s ease;
    color: #3f4754; font-size: 13px; font-weight: 600;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 2px rgba(14, 17, 22, 0.03);
}
.sektor-quick-action:hover, .sektor-quick-action:active {
    background: #fffaf3;
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateX(2px);
    color: var(--chatly-ink);
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.1);
}
.sektor-quick-action i {
    margin-right: 11px; font-size: 14px;
    color: var(--chatly-accent);
    width: 18px; text-align: center;
    transition: transform 0.18s;
}
.sektor-quick-action:hover i { transform: scale(1.1); }

/* Messages */
.sektor-message {
    max-width: 86%; margin-bottom: 16px;
    line-height: 1.6; position: relative;
    animation: sektorSlideUp 0.3s ease forwards;
    word-wrap: break-word; font-size: 13.75px;
}
.sektor-message.sektor-user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--chatly-accent-2) 0%, var(--chatly-accent) 100%);
    color: var(--chatly-ink);
    padding: 11px 16px;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.22);
    font-weight: 500;
}
.sektor-message.sektor-bot { align-self: flex-start; width: 100%; max-width: 100%; }

/* Bot elements */
.sektor-bot-info { display: flex; align-items: center; margin-bottom: 6px; gap: 8px; margin-left: 2px; }
.sektor-bot-avatar {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, #1f3a5f 0%, #111927 100%);
    color: var(--chatly-accent-2); border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(14, 17, 22, 0.18);
}
.sektor-bot-name { font-weight: 600; font-size: 12px; color: #6b7280; letter-spacing: 0.1px; }
.sektor-bot-bubble {
    background: var(--bot-bg); color: var(--bot-text);
    padding: 14px 16px;
    border-radius: 4px 18px 18px 18px;
    display: inline-block; width: fit-content; max-width: 92%;
    border: 1px solid var(--chatly-border);
    box-shadow: 0 6px 18px rgba(14, 17, 22, 0.05), 0 1px 3px rgba(14, 17, 22, 0.03);
}

.sektor-bot-content { white-space: pre-wrap; }
.sektor-bot-content p { margin: 0 0 8px 0; }
.sektor-bot-content p:last-child { margin: 0; }
.sektor-bot-content strong { color: #111927; font-weight: 700; }
.sektor-bot-content a { color: var(--chatly-ocean); text-decoration: none; font-weight: 600; }
.sektor-bot-content ul { padding-left: 18px; margin: 6px 0; }
.sektor-bot-content li { margin-bottom: 3px; }
.sektor-bot-content .sektor-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 8px 4px 0;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 0, 0.32);
    background: linear-gradient(135deg, #fff8ef 0%, #ffeccf 100%);
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1px;
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.15);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.sektor-bot-content .sektor-link-cta::after {
    content: '→';
    font-size: 12px;
    opacity: 0.75;
}
.sektor-bot-content .sektor-link-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 0, 0.6);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.22);
}

/* Streaming cursor */
.sektor-stream-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    margin-left: 1px;
    background: var(--chatly-accent);
    border-radius: 1px;
    vertical-align: text-bottom;
    animation: sektorBlink 0.85s steps(2, end) infinite;
}
@keyframes sektorBlink {
    50% { opacity: 0; }
}

/* Loading */
.sektor-message.sektor-loading .sektor-bot-bubble {
    display: flex; align-items: center; gap: 10px; padding: 12px 14px;
    background: #fff7ed;
    border: 1px solid rgba(255, 122, 0, 0.25);
    transition: border-color 0.3s;
    animation: sektorPulseBorder 2s infinite;
}

@keyframes sektorPulseBorder {
    0% { border-color: rgba(255, 122, 0, 0.16); }
    50% { border-color: rgba(255, 122, 0, 0.4); }
    100% { border-color: rgba(255, 122, 0, 0.16); }
}

.sektor-loading-dots { display: flex; align-items: center; gap: 4px; }
.sektor-loading-dot {
    width: 6px; height: 6px; background: var(--chatly-accent); border-radius: 50%;
    animation: sektorTypingPulse 1.4s infinite ease-in-out both;
    opacity: 0.6;
}
.sektor-loading-dot:nth-child(1) { animation-delay: -0.32s; }
.sektor-loading-dot:nth-child(2) { animation-delay: -0.16s; }

.sektor-loading-text {
    font-size: 12.5px; color: #6b7280; font-style: italic;
    min-width: 60px; transition: opacity 0.3s ease; white-space: nowrap;
}

@keyframes sektorTypingPulse { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; } 40% { transform: scale(1); opacity: 1; } }

/* Product cards */
.sektor-product-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; width: 100%; }
.sektor-product-card {
    display: flex; flex-direction: row;
    background: #ffffff;
    border: 1px solid var(--chatly-border);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 3px 10px rgba(14, 17, 22, 0.04);
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%; align-items: center; position: relative;
}
.sektor-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 17, 22, 0.1);
    border-color: rgba(255, 122, 0, 0.4);
}
.sektor-pc-img-wrap {
    width: 84px; height: 84px; flex-shrink: 0;
    background: #fff7ed;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
    border-right: 1px solid var(--chatly-border);
}
.sektor-pc-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.sektor-pc-content { padding: 10px 14px; display: flex; flex-direction: column; justify-content: center; flex-grow: 1; min-width: 0; }
.sektor-pc-badge {
    position: absolute; top: 6px; left: 6px;
    background: var(--chatly-accent);
    color: #111; font-size: 9px; font-weight: 700;
    padding: 2px 6px; border-radius: 8px; z-index: 2;
}
.sektor-pc-title {
    font-size: 13px; font-weight: 600; color: #1f2937;
    margin-bottom: 4px; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sektor-pc-price { font-size: 13.5px; font-weight: 700; color: var(--chatly-ocean); margin-bottom: 4px; }
.sektor-pc-cta { font-size: 11px; font-weight: 600; color: #6b7280; display: flex; align-items: center; gap: 4px; margin-top: auto; }
.sektor-product-card:hover .sektor-pc-cta i { transform: translateX(3px); color: var(--chatly-accent); }

/* Action cards */
.sektor-action-stack {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 12px;
    width: 100%;
}
.sektor-action-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 13px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8ef 100%);
    border: 1px solid rgba(255, 122, 0, 0.28);
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.1);
    text-decoration: none;
    color: #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.sektor-action-card:hover, .sektor-action-card:active {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 0, 0.55);
    box-shadow: 0 12px 24px rgba(255, 122, 0, 0.18);
    background: linear-gradient(135deg, #fff8ef 0%, #ffeccf 100%);
}
.sektor-action-card-btn {
    appearance: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}
.sektor-action-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px rgba(14, 17, 22, 0.05);
}
.sektor-action-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}
.sektor-action-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}
.sektor-action-subtitle {
    font-size: 11.5px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}
.sektor-action-arrow {
    margin-left: auto;
    color: var(--chatly-accent);
    font-size: 12px;
    flex-shrink: 0;
}

/* Rating */
.sektor-rating { display: flex; gap: 12px; margin-top: 6px; margin-left: 2px; opacity: 0; transition: opacity 0.2s; }
.sektor-message.sektor-bot:hover .sektor-rating { opacity: 1; }
.sektor-rating i { cursor: pointer; font-size: 13px; color: #cbd5e1; transition: all 0.18s; }
.sektor-rating i:hover { color: var(--chatly-accent); transform: scale(1.12); }
.sektor-rating i.sektor-active { color: var(--chatly-accent); }

/* Footer */
.sektor-footer {
    padding: 12px 18px 14px 18px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--chatly-border);
    flex-shrink: 0; position: relative; z-index: 2;
}
.sektor-input-wrapper {
    position: relative;
    border: 1px solid rgba(14, 17, 22, 0.1) !important;
    border-radius: 999px !important;
    background: white !important;
    display: flex !important; align-items: center !important;
    padding: 5px 5px 5px 16px !important; min-height: 46px !important;
    box-shadow: 0 4px 12px rgba(14, 17, 22, 0.05) !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sektor-input-wrapper:focus-within {
    border-color: rgba(255, 122, 0, 0.6) !important;
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.14) !important;
}
.sektor-input-wrapper textarea {
    border: none !important; box-shadow: none !important; background: transparent !important;
    margin: 0 !important; padding: 0 !important; resize: none !important; width: 100% !important;
    outline: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16px !important;
    line-height: 22px !important;
    color: #111827 !important;
    max-height: 110px !important;
}
.sektor-input-wrapper textarea::placeholder {
    color: #9aa3af;
}
.sektor-send-btn {
    background: linear-gradient(135deg, var(--chatly-accent) 0%, var(--chatly-accent-2) 100%) !important;
    border: none !important;
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important;
    color: #111927 !important;
    cursor: pointer !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    transition: all 0.22s !important;
    margin-left: 8px !important; flex-shrink: 0 !important;
    opacity: 0.45;
    pointer-events: none;
    transform: scale(0.92);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
    -webkit-tap-highlight-color: transparent;
}
.sektor-send-btn.sektor-active {
    opacity: 1; pointer-events: all; transform: scale(1);
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.4);
}
.sektor-send-btn:hover {
    box-shadow: 0 8px 18px rgba(255, 122, 0, 0.5) !important;
    transform: scale(1.04) !important;
}
.sektor-send-btn i { font-size: 13px; }

/* Powered by */
.sektor-powered {
    display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px;
    font-size: 10px; color: rgba(14, 17, 22, 0.4);
    font-weight: 600; user-select: none;
    letter-spacing: 0.1px;
}
.sektor-powered-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #0e1116;
    letter-spacing: 0.2px;
    text-decoration: none;
}
.sektor-powered-text span {
    color: var(--chatly-accent);
}
.sektor-hidden { display: none !important; }

@keyframes sektorFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sektorSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sektorOnlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Proactive bubble */
.sektor-proactive-bubble {
    position: fixed;
    bottom: 90px; right: 24px;
    width: 290px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(14, 17, 22, 0.14), 0 0 0 1px var(--chatly-border);
    padding: 14px;
    z-index: 99998;
    display: none;
    flex-direction: column;
    animation: sektorPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transform-origin: bottom right;
}

.sektor-proactive-bubble.sektor-visible { display: flex; }

.sektor-proactive-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px; right: 34px;
    width: 12px; height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-bottom: 1px solid var(--chatly-border);
    border-right: 1px solid var(--chatly-border);
}

.sektor-pb-close {
    position: absolute;
    top: -8px; right: -8px;
    width: 24px; height: 24px;
    background: #fff; border-radius: 50%;
    box-shadow: 0 2px 6px rgba(14, 17, 22, 0.16);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #9aa3af; font-size: 12px;
    transition: all 0.2s; border: 1px solid var(--chatly-border);
}
.sektor-pb-close:hover { color: #ef4444; transform: scale(1.08); }

.sektor-pb-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sektor-pb-avatar {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--chatly-accent) 0%, var(--chatly-accent-2) 100%);
    color: #111927; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}
.sektor-pb-text { font-size: 13.5px; color: #111827; line-height: 1.4; font-weight: 600; }

.sektor-pb-actions { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.sektor-pb-btn {
    background: linear-gradient(135deg, #fff7ed 0%, #ffefd9 100%);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 9px 12px; border-radius: 10px;
    font-size: 12.5px; color: #111827; cursor: pointer; text-align: left;
    transition: all 0.2s; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between;
    font-family: inherit;
}
.sektor-pb-btn:hover {
    background: linear-gradient(135deg, #ffefd9 0%, #ffe4b3 100%);
    border-color: rgba(255, 122, 0, 0.5);
    transform: translateX(2px);
}
.sektor-pb-btn i { font-size: 10px; opacity: 0.6; }

@keyframes sektorPopIn {
    from { opacity: 0; transform: scale(0.85) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 640px) {
    .sektor-proactive-bubble { width: calc(100vw - 36px); max-width: 320px; right: 18px; bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
