/* Kökkuş Teknoloji Kurumsal Renk: #A7011D */

/* Ana Tetikleyici Buton */
.kokkus-support-trigger-btn {
    background-color: #A7011D !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(167, 1, 29, 0.25);
}

.kokkus-support-trigger-btn:hover {
    background-color: #830016 !important; /* Bir tık koyu kırmızı */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(167, 1, 29, 0.35);
}

/* Modal Arka Plan Overlay */
.ks-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* Modal Kutusu */
.ks-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Kapat Butonu */
.ks-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

/* Modal Başlık */
.ks-modal-header h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #222;
}
.ks-modal-header p {
    margin: 0 0 20px 0;
    font-size: 13px;
    color: #666;
}

/* Sekmeler (Tabs) */
.ks-modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.ks-tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: 0.2s;
}
.ks-tab-btn.active {
    background: #A7011D !important;
    color: #fff !important;
}

/* Tutar Seçenek Kartları */
.ks-options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.ks-option-card {
    display: flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.2s;
}
.ks-option-card:hover {
    border-color: #A7011D;
}
.ks-option-card input[type="radio"] {
    margin-right: 12px;
    accent-color: #A7011D; /* Radio butonu kırmızı yapar */
}
.ks-option-content {
    display: flex;
    align-items: center;
    width: 100%;
}
.ks-icon { font-size: 20px; margin-right: 10px; }
.ks-title { font-weight: 600; color: #333; }
.ks-price { margin-left: auto; font-weight: bold; color: #A7011D; }

#ks-custom-amount-input {
    margin-left: auto;
    width: 100px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Primary Ödeme Butonu */
.ks-primary-btn {
    width: 100%;
    background: #28a745;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.ks-primary-btn:hover {
    background: #218838;
}

/* Kripto Sekmesi */
.ks-crypto-box {
    text-align: center;
}
.ks-network-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}
.ks-qr-code img {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ks-wallet-address-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.ks-wallet-address-wrapper input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    background: #fafafa;
}
.ks-wallet-address-wrapper button {
    background: #A7011D !important;
    color: #fff !important;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.ks-crypto-warning {
    font-size: 12px;
    color: #d9534f;
    margin-top: 10px;
}