#mimoza-chatbox {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#mimoza-chat-toggle {
    background: #111827;
    color: #f9fafb;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.35);
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#mimoza-chat-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15,23,42,0.45);
}

#mimoza-chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 340px;
    max-height: 520px;
    background: #0b1120;
    color: #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(15,23,42,0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(148,163,184,0.25);
}

#mimoza-chat-window.mimoza-hidden {
    display: none;
}

.mimoza-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: radial-gradient(circle at top left, #22c55e, #0f172a);
    border-bottom: 1px solid rgba(148,163,184,0.35);
}

.mimoza-chat-title strong {
    display: block;
    font-size: 14px;
    color: #f9fafb;
}

.mimoza-chat-title span {
    display: block;
    font-size: 11px;
    color: #d1fae5;
}

#mimoza-chat-close {
    background: transparent;
    border: none;
    color: #f9fafb;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

#mimoza-chat-messages {
    flex: 1;
    padding: 10px 12px;
    overflow-y: auto;
    font-size: 13px;
    background: radial-gradient(circle at top, #020617, #020617 40%, #0b1120 100%);
}

.msg {
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(15,23,42,0.8);
}

.msg.bot {
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.4);
}

.msg.error {
    border-color: #f97373;
    color: #fecaca;
}

.mimoza-kvkk-text {
    font-size: 12px;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.mimoza-kvkk-label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 12px;
}

.mimoza-kvkk-label input {
    margin-top: 3px;
}

#mimoza-chat-form {
    padding: 10px 12px 12px;
    background: #020617;
    border-top: 1px solid rgba(148,163,184,0.35);
}

.mimoza-step {
    display: none;
}

.mimoza-step.mimoza-active {
    display: block;
}

.mimoza-step-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e5e7eb;
}

#mimoza-chat-form label {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
    color: #e5e7eb;
}

#mimoza-chat-form input[type="text"],
#mimoza-chat-form input[type="email"],
#mimoza-chat-form input[type="url"],
#mimoza-chat-form select,
#mimoza-chat-form textarea {
    width: 100%;
    padding: 6px 8px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.8);
    color: #e5e7eb;
    font-size: 12px;
}

#mimoza-chat-form textarea {
    resize: vertical;
    min-height: 60px;
}

.mimoza-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 8px;
}

.mimoza-checkbox-grid label {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mimoza-btn,
.mimoza-btn-ghost {
    border-radius: 999px;
    padding: 6px 12px;
    border: none;
    font-size: 12px;
    cursor: pointer;
}

.mimoza-btn {
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: #052e16;
    font-weight: 600;
}

.mimoza-btn-ghost {
    background: transparent;
    border: 1px solid rgba(148,163,184,0.6);
    color: #e5e7eb;
}

.mimoza-step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.mimoza-offers {
    margin-top: 6px;
    font-size: 12px;
}

.mimoza-offers p {
    margin-bottom: 4px;
}

.mimoza-offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.mimoza-offer-card {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(21, 128, 61, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.4);
    text-decoration: none;
    color: #bbf7d0;
}

.mimoza-offer-title {
    font-size: 12px;
    font-weight: 600;
}

.mimoza-offer-price {
    font-size: 11px;
    margin-top: 2px;
}

.mimoza-offer-cta {
    font-size: 11px;
    margin-top: 2px;
    text-decoration: underline;
}

/* Küçük ekran uyumu */
@media (max-width: 600px) {
    #mimoza-chat-window {
        right: 10px;
        left: 10px;
        width: auto;
        max-height: 70vh;
    }

    #mimoza-chatbox {
        right: 10px;
        bottom: 16px;
    }
}
