/* Canlı Destek - Kullanıcı Tarafı */
.scroll-to-bottom .live-chat-button {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: none;
    bottom: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-bottom:hover .live-chat-button {
    transform: scale(1.05);
}

.scroll-to-bottom .live-chat-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    max-width: 100%;
    max-height: 100%;
}

/* Chat Penceresi — header/nav (yüksek z-index) üzerinde */
.live-chat-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    height: 550px;
    background: #1e1e2e;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    z-index: 2000100;
    overflow: hidden;
    box-sizing: border-box; /* Box-sizing ekledim */
}

.live-chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil/tablet (≤768px): sohbet açıkken üst/alt krom gizli */
@media (max-width: 1024px) {
    body.chat-open .top-nav,
    body.chat-open header,
    body.chat-open .mobile-auth-row {
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.chat-open #mobileBottomNav,
    body.chat-open #mobileMenuToggle,
    body.chat-open #mobileMenuOverlay,
    body.chat-open #mobileCategoryDrawer {
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Chat Header */
.chat-header {
    background: #1a1a1a;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom: 1px solid #2a2a2a;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-icon {
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 0;
}

.chat-header-icon .chat-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-header-title h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.chat-header-title p {
    font-size: 11px;
    opacity: 0.9;
    margin: 2px 0 0 0;
}

.chat-close-btn {
    background: transparent !important;
    border: none !important;
    color: white !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s !important;
}

.chat-close-btn:hover {
    background: transparent !important;
}

/* Chat Body */
.chat-body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    padding: 15px;
    background: #1a1a1a;
}

/* Custom Scrollbar */
.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* Welcome Screen */
.chat-welcome {
    padding: 10px 10px 8px 5px;
}

.chat-welcome-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.chat-welcome-icon .chat-logo-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-welcome h2 {
    color: #ffffff;
    font-size: 16px;
    margin: 0 0 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-welcome p {
    color: #8a94a6;
    font-size: 11px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    padding-left: 40px;
}

/* Chat Form — yalnızca .live-chat-window içinde (sitedeki .form-group / .checkbox-group sızmasın) */
.live-chat-window .chat-form {
    background: #1a1a1a;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
    width: 100%; /* Genişlik kontrolü */
    box-sizing: border-box; /* Box-sizing ekledim */
    overflow: hidden; /* Taşan içeriği gizle */
    max-width: 100%; /* Max genişlik */
}

.live-chat-window .chat-form * {
    box-sizing: border-box; /* Tüm alt elementler için */
}

.live-chat-window .form-group {
    margin-bottom: 10px; /* Margin'i azalttım */
    width: 100%; /* Genişlik kontrolü */
    box-sizing: border-box; /* Box-sizing ekledim */
}

.live-chat-window .form-group label {
    display: block;
    color: #ffffff !important; /* Important ekledim */
    font-size: 11px !important; /* Important ekledim */
    margin-bottom: 5px;
    font-weight: 500;
    opacity: 1 !important; /* Opacity ekledim */
    visibility: visible !important; /* Visibility ekledim */
}

.live-chat-window .form-group label .required {
    color: #ef4444;
}

.live-chat-window .form-group input,
.live-chat-window .form-group textarea {
    width: 100%;
    padding: 8px;
    background: #0d0d0d !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 6px;
    color: #ffffff !important; /* Important ekledim */
    font-size: 11px !important; /* Important ekledim */
    transition: border-color 0.2s;
    box-sizing: border-box;
    max-width: 100%;
    min-height: 36px;
}

.live-chat-window .form-group input:focus,
.live-chat-window .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.live-chat-window .form-group input::placeholder,
.live-chat-window .form-group textarea::placeholder {
    color: #5a5a6e !important; /* Important ekledim */
    opacity: 1 !important; /* Opacity ekledim */
}

.live-chat-window .form-group textarea {
    resize: vertical;
    min-height: 70px;
    max-height: 150px;
    overflow-y: auto;
}

.live-chat-window .form-group textarea::-webkit-scrollbar {
    width: 8px;
}

.live-chat-window .form-group textarea::-webkit-scrollbar-track {
    background: #0d0d0d;
    border-radius: 4px;
}

.live-chat-window .form-group textarea::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 4px;
}

.live-chat-window .form-group textarea::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* Radio Buttons - Checkbox Round Style */
.live-chat-window .checkbox-round {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    background-color: white !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    vertical-align: middle !important;
    border: 1px solid #ddd !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.live-chat-window .checkbox-round:checked {
    background-color: white !important;
    border-color: #667eea !important;
}

.live-chat-window .checkbox-round:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 7px !important;
    height: 7px !important;
    background-color: #667eea !important;
    border-radius: 50% !important;
}

.live-chat-window .radio-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.live-chat-window .radio-option {
    display: flex !important;
    align-items: center !important;
    padding: 12px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 40px !important;
    overflow: visible !important;
    gap: 12px !important;
}

.live-chat-window .radio-option:hover {
    background: transparent !important;
}

.live-chat-window .radio-option label {
    flex: 1;
    cursor: pointer;
    margin: 0;
    color: #8a94a6 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
    width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: color 0.2s ease !important;
}

.live-chat-window .radio-option:hover label {
    color: #ffffff !important;
}

/* Seçili radio option için stil */
.live-chat-window .radio-option input[type="radio"]:checked ~ label,
.live-chat-window .radio-option.selected label {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.live-chat-window .radio-option:has(input[type="radio"]:checked),
.live-chat-window .radio-option.selected {
    background: transparent !important;
}

/* Checkbox */
.live-chat-window .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.live-chat-window .checkbox-group input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 11 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.live-chat-window .checkbox-group input[type="checkbox"]:checked {
    background-color: #667eea !important;
    border-color: #667eea !important;
}

.live-chat-window .checkbox-group input[type="checkbox"]:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: bold !important;
}

.live-chat-window .checkbox-group label {
    color: #8a94a6 !important;
    font-size: 11px !important;
    cursor: pointer !important;
    margin: 0 !important;
    user-select: none !important;
    position: relative !important;
    z-index: 11 !important;
    flex: 1 !important;
    line-height: 1.3 !important;
    max-width: calc(100% - 24px) !important;
    word-wrap: break-word !important;
}

.live-chat-window .checkbox-group label a {
    color: #667eea !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 12 !important;
}

.live-chat-window .checkbox-group label a:hover {
    text-decoration: underline !important;
}

/* Submit Button */
.live-chat-window .chat-submit-btn {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.live-chat-window .chat-submit-btn:hover {
    background: #3a3a3a;
    border-color: #4a4a4a;
}

.live-chat-window .chat-submit-btn:active {
    background: #1a1a1a;
}

/* Connecting State */
.chat-connecting {
    text-align: center;
    padding: 60px 20px;
}

.chat-connecting .spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #2a2a3e;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.chat-connecting h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.chat-connecting p {
    color: #8a94a6;
    font-size: 14px;
}

/* Chat Messages — kullanıcı sağ/mavi, destek sol/gri */
.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 88%;
}

.chat-message.admin {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.chat-message.admin .message-content {
    align-items: flex-start;
}

.chat-message.user .message-content {
    align-items: flex-end;
}

.message-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    width: fit-content;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.chat-message.admin .message-bubble {
    background: #3d3d42;
    color: #f3f4f6;
    border-bottom-left-radius: 6px;
}

.chat-message.admin .message-bubble strong {
    color: #ffffff;
    font-weight: 600;
}

.chat-message.user .message-bubble {
    background: #2563eb;
    color: #ffffff;
    border-bottom-right-radius: 6px;
}

.message-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 11px;
    color: #6b7280;
}

.chat-message.user .message-info {
    justify-content: flex-end;
}

.message-sender {
    font-weight: 600;
}

.message-time {
    opacity: 0.85;
}

/* Chat Input — main.css’teki yanlışlıkla input+body gruplamasından etkilenmesin */
.chat-input-area {
    padding: 15px 20px;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    min-height: 0;
}

.chat-input-area input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 44px;
    max-height: 48px;
    height: 44px;
    display: block;
    padding: 10px 16px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
}

.chat-input-area input:focus {
    outline: none;
    border-color: #667eea;
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chat-send-btn:hover {
    transform: scale(1.05);
}

/* Chat Header Avatar */
.chat-header-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End Chat Button */
.chat-end-btn {
    background: rgba(239, 68, 68, 0.2);
    border: none;
    color: #ef4444;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-end-btn:hover {
    background: rgba(239, 68, 68, 0.3);
}

/* Rating Screen */
.chat-rating {
    text-align: center;
    padding: 30px 20px;
}

.chat-rating h2 {
    color: #ffffff;
    font-size: 16px;
    margin: 25px 0 15px;
    font-weight: 500;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.rating-btn {
    width: 70px;
    height: 70px;
    border: 2px solid #2a2a3e;
    background: #16161e;
    border-radius: 12px;
    cursor: pointer;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.rating-btn.positive {
    color: #8a94a6;
}

.rating-btn.negative {
    color: #8a94a6;
}

.rating-btn.positive.selected {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
}

.rating-btn.negative.selected {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.star-rating i {
    font-size: 40px;
    color: #2a2a3e;
    cursor: pointer;
    transition: all 0.3s;
}

.star-rating i:hover,
.star-rating i.selected {
    color: #fbbf24;
    transform: scale(1.1);
}

.continue-btn {
    width: 100%;
    max-width: 250px;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: transform 0.2s;
}

.continue-btn:hover {
    transform: translateY(-2px);
}

/* Dokunmatik: sağ-alt yüzen widget gizli — panel tam ekran (.active) */
@media (max-width: 1024px) {
    .scroll-to-bottom,
    .scroll-to-bottom.show,
    #scrollToBottom,
    .canli-destek-label,
    #canliDestekLabel {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .live-chat-window:not(.active) {
        display: none !important;
    }

    .live-chat-window.active {
        display: flex !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        max-height: none !important;
        min-height: 100dvh !important;
        border-radius: 0 !important;
        z-index: 2147483000 !important;
        box-shadow: none !important;
    }
}

/* KVKK Modal */
.kvkk-modal-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    height: 550px;
    z-index: 2147483646;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.kvkk-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.kvkk-modal {
    background: #1a1a1a;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.kvkk-modal-overlay.active .kvkk-modal {
    transform: translateY(0);
}

.kvkk-modal-header {
    background: #1a1a1a;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #2a2a2a;
}

.kvkk-modal-header h2 {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.kvkk-modal-close {
    background: transparent;
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.kvkk-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.kvkk-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #1a1a1a;
    color: #e4e6eb;
}

.kvkk-modal-body::-webkit-scrollbar {
    width: 8px;
}

.kvkk-modal-body::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.kvkk-modal-body::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 4px;
}

.kvkk-modal-body::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

.kvkk-modal-body h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.kvkk-modal-body h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.kvkk-modal-body p {
    color: #e4e6eb;
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.kvkk-modal-body p strong {
    color: #ffffff;
    font-weight: 600;
}

.kvkk-modal-footer {
    padding: 15px 20px;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: flex-start;
}

.kvkk-accept-btn {
    width: auto;
    padding: 10px 20px;
    background: #0066ff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.kvkk-accept-btn:hover {
    background: #0052cc;
}

.kvkk-accept-btn:active {
    background: #0047b3;
}

@media (max-width: 1024px) {
    .kvkk-modal-overlay {
        width: calc(100% - 20px);
        height: calc(100vh - 120px);
        right: 10px;
        bottom: 80px;
    }
}
/* OVERRIDE GLOBAL STYLES */
.live-chat-window .form-group input,
.live-chat-window .form-group textarea,
.live-chat-window .radio-option {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 6px !important;
}

.live-chat-window .radio-option label {
    max-width: calc(100% - 22px) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}

.live-chat-window .chat-form {
    overflow: hidden !important;
    max-width: 100% !important;
}

.live-chat-window .form-group input,
.live-chat-window .form-group textarea {
    width: 100% !important;
    max-width: 100% !important;
    color: #ffffff !important;
    background: #0d0d0d !important;
    border: 1px solid #2a2a2a !important;
    box-sizing: border-box !important;
}

.live-chat-window .radio-option {
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    display: flex !important;
    padding: 10px !important;
    min-height: 40px !important;
    gap: 12px !important;
}

.live-chat-window .checkbox-round {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    background-color: white !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    vertical-align: middle !important;
    border: 1px solid #ddd !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.live-chat-window .checkbox-round:checked {
    background-color: white !important;
    border-color: #667eea !important;
}

.live-chat-window .checkbox-round:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 7px !important;
    height: 7px !important;
    background-color: #667eea !important;
    border-radius: 50% !important;
}

.live-chat-window .radio-option label {
    color: #8a94a6 !important;
    font-size: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex: 1 !important;
    width: auto !important;
    max-width: calc(100% - 25px) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    display: block !important;
    line-height: 1.4 !important;
    transition: color 0.2s ease !important;
}

.live-chat-window .radio-option:hover label {
    color: #ffffff !important;
}

.live-chat-window .radio-option.selected label,
.live-chat-window .radio-option input[type="radio"]:checked ~ label {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.live-chat-window .form-group label {
    color: #ffffff !important;
    font-size: 11px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.live-chat-window .radio-group {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important; /* Visible yaptım */
}

.live-chat-window .radio-option input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* FORCE ROUND RADIO BUTTONS - STRONGEST OVERRIDE */
.live-chat-window input[type="radio"].checkbox-round {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
    background-color: white !important;
    border: 1px solid #ddd !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    outline: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.live-chat-window input[type="radio"].checkbox-round:checked {
    background-color: white !important;
    border-color: #667eea !important;
}

.live-chat-window input[type="radio"].checkbox-round:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 7px !important;
    height: 7px !important;
    background-color: #667eea !important;
    border-radius: 50% !important;
}
/* FORCE RADIO OPTION TEXT COLORS - STRONGEST OVERRIDE */
.live-chat-window .radio-option label {
    color: #8a94a6 !important;
    transition: color 0.2s ease !important;
}

.live-chat-window .radio-option:hover label {
    color: #ffffff !important;
}

.live-chat-window .radio-option.selected label,
.live-chat-window .radio-option input[type="radio"]:checked ~ label {
    color: #ffffff !important;
    font-weight: 500 !important;
}
/* FORCE KVKK CHECKBOX STYLES - STRONGEST OVERRIDE */
.live-chat-window .checkbox-group {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.live-chat-window .checkbox-group input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 3px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: relative !important;
}

.live-chat-window .checkbox-group input[type="checkbox"]:checked {
    background-color: #667eea !important;
    border-color: #667eea !important;
}

.live-chat-window .checkbox-group input[type="checkbox"]:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: bold !important;
}

.live-chat-window .checkbox-group label {
    color: #8a94a6 !important;
    font-size: 11px !important;
    cursor: pointer !important;
    margin: 0 !important;
    flex: 1 !important;
    line-height: 1.3 !important;
    max-width: calc(100% - 24px) !important;
    word-wrap: break-word !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.live-chat-window .checkbox-group label a {
    color: #667eea !important;
    text-decoration: none !important;
}

.live-chat-window .checkbox-group label a:hover {
    text-decoration: underline !important;
}
/* FORCE CHAT CLOSE BUTTON NO BACKGROUND - STRONGEST OVERRIDE */
.live-chat-window .chat-close-btn {
    background: transparent !important;
    border: none !important;
    color: white !important;
    width: 28px !important;
    height: 28px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.live-chat-window .chat-close-btn:hover,
.live-chat-window .chat-close-btn:focus,
.live-chat-window .chat-close-btn:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}