/* Container Utama */
.bk-container {
    font-family: inherit;
    margin: 40px 0;
    max-width: 800px;
}

/* Trust Badge (Jika Tidak Ada Review) */
.bk-no-reviews {
    background: #f9fbfd;
    border: 1px solid #e1e8ed;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.bk-trust-item {
    display: flex;
    gap: 12px;
}
.bk-trust-icon {
    color: var(--main-color);
    font-weight: 700;
}
.bk-trust-content h4 {
    margin: 0 0 5px;
    font-size: 15px;
}
.bk-trust-content p {
    margin-bottom: 0!important;
    font-size: 14px;
}
.bk-trust-link {
    display: inline-block;
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #0073aa;
}
.bk-trust-link:hover {
    color: #005177;
    border-bottom: 1px solid #005177;
}
/* Summary Header */
.bk-summary {
    background-color: var(--bg-white); border: 1px solid #eee; border-radius: 12px;
    padding: 30px; margin-bottom: 30px; display: flex; align-items: center; gap: 30px;
}
.bk-score-box { text-align: center; min-width: 120px; border-right: 1px solid #ddd; padding-right: 30px;}
.bk-big-score { font-size: 48px; font-weight: 700; line-height: 1; }
.bk-total-text { font-size: 13px; margin-top: 5px; }
.bk-score-details { flex-grow: 1; }
.bk-main-stars { margin-top: 10px; }
.bk-verdict { font-size: 18px; font-weight: 600;}

@media (max-width: 600px) {
    .bk-summary {
        padding: 20px;
        gap: 15px;
    }
    .bk-score-box {
        padding-right: 20px;
    }
    .bk-score-details { width: 100%; }
}

/* Review Cards */
.bk-card-review {
    border-bottom: 1px solid #eee;
    padding: 25px;
    background: var(--bg-white);
}
.bk-card-review:last-child {
    border-bottom: none;
}
.bk-card-review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.bk-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bk-user-info strong {
    display: block;
    font-size: 15px;
    color: #222;
}
.bk-user-info span {
    font-size: 12px;
    font-style: italic;
}
.bk-avatar {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex: 0 0 40px;
}

/* Form & Buttons */
.bk-btn-toggle {
    background: var(--main-color);
    color: var(--text-white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}
.bk-btn-toggle:hover {
    background: #555;
}
.bk-form-box {
    display: none; /* Default hidden */
    background: var(--bg-white);
    border: 1px solid #ddd;
    padding: 25px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.bk-form-group {
    margin-bottom: 15px;
}
.bk-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}
.bk-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.bk-alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}
.bk-hidden {
    display: none;
}
/* ... CSS sebelumnya ... */

/* Ganti style .bk-stars-gold yang lama dengan yang ini */
.bk-card .bk-loop-stars-wrapper{
    margin-top: 5px;
}
.bk-loop-stars-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
}
.bk-stars-svg {
    display: flex;
    align-items: center;
    gap: 1px; /* Jarak antar bintang */
}
.bk-loop-count {
    font-size: 12px;
    color: #222;
}
.bk-star-icon {
    width: 18px;  /* Ukuran bintang di list review */
    height: 18px;
    display: block;
}
.bk-loop-stars-wrapper .bk-star-icon {
    width: 16px;
    height: 16px;
}
/* Ukuran khusus untuk Summary (Header) yang lebih besar */
.bk-summary .bk-star-icon {
    width: 24px;
    height: 24px;
}