/* CKM Search PRO — Typeahead Dropdown */

.ckm-spro-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 480px;
    overflow-y: auto;
    margin-top: 6px;
    font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
}

.ckm-spro-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #1e293b;
    transition: background 0.12s;
}
.ckm-spro-item:hover {
    background: #f0f9ff;
}
.ckm-spro-item:last-of-type {
    border-bottom: none;
}

.ckm-spro-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    background: #f1f5f9;
    flex-shrink: 0;
}
.ckm-spro-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 12px;
}

.ckm-spro-info {
    flex: 1;
    min-width: 0;
}

.ckm-spro-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
    /* 2 satır kırp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ckm-spro-badge {
    display: inline-block;
    background: #0891b2;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 6px;
    text-transform: uppercase;
}

.ckm-spro-price {
    font-size: 13px;
    color: #16a34a;
    font-weight: 700;
    margin-top: 3px;
}

.ckm-spro-all {
    display: block;
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 2px solid #e2e8f0;
    color: #0073aa;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    transition: background 0.12s;
}
.ckm-spro-all:hover {
    background: #e0f2fe;
}

.ckm-spro-empty {
    padding: 18px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}
.ckm-spro-empty small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #94a3b8;
}

.ckm-spro-loading {
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    font-style: italic;
}

@media (max-width: 640px) {
    .ckm-spro-dropdown {
        max-height: 60vh;
    }
    .ckm-spro-thumb {
        width: 40px;
        height: 40px;
    }
    .ckm-spro-title {
        font-size: 13px;
    }
}
