/* =========================================
   1. PHẦN FAQ (CÂU HỎI THƯỜNG GẶP)
   Wrapper: .hst-faq-container
   ========================================= */
.hst-faq-container {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hst-faq-container details.hst-faq-item {
    border-bottom: 1px solid #eee;
    margin: 0;
}
.hst-faq-container details.hst-faq-item:last-child {
    border-bottom: none;
}

.hst-faq-container .hst-faq-question {
    padding: 15px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0; 
}
.hst-faq-container .hst-faq-question::-webkit-details-marker {
    display: none;
}

.hst-faq-container .hst-faq-answer {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

.hst-faq-container details[open] .hst-faq-question {
    background: #f0f0f0;
    color: #000; 
}
.hst-faq-container details[open] .hst-icon {
    transform: rotate(45deg); 
}

.hst-qa-form-wrapper {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.hst-qa-form-wrapper .hst-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    align-items: flex-start;
}

.hst-qa-form-wrapper .hst-col-label {
    width: 15%;
    padding-right: 15px;
    padding-top: 8px;
    font-weight: bold;
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    text-align: right;
}

.hst-qa-form-wrapper .hst-col-input {
    width: 80%;
}

.hst-qa-form-wrapper input[type="text"],
.hst-qa-form-wrapper input[type="email"],
.hst-qa-form-wrapper textarea,
.hst-qa-form-wrapper select {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    padding: 8px 10px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    box-sizing: border-box;
    max-width: 100%;
    margin: 0;
}

.hst-qa-form-wrapper .req { color: red; margin-left: 3px; }
.hst-qa-form-wrapper .hst-note {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    border: 1px solid #eee;
    padding: 5px;
    display: inline-block;
    width: 100%;
}

.hst-qa-form-wrapper .btn-submit {
    background-color: #cc0000;
    color: #fff;
    border: none;
    padding: 2px 40px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 0;
}
.hst-qa-form-wrapper .btn-submit:hover { background-color: #a30000; }
.hst-qa-form-wrapper .btn-submit:disabled { background-color: #ccc; cursor: not-allowed; }

.hst-qa-form-wrapper .btn-reset {
    background-color: #0e74ff;
    color: #fff;
    border: none;
    padding: 2px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 0;
}
.hst-qa-form-wrapper .btn-reset:hover { background-color: #9ca6b3; }

.hst-qa-form-wrapper .hst-error-border {
    border: 1px solid #cc0000 !important;
    background-color: #fff6f6 !important;
}

.hst-qa-list-wrapper {
    max-width: 100%;
}

.hst-qa-card {
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    border-radius: 0 12px 12px 2px;
}

.hst-card-header {
    padding: 0;
    background: #f6f7f7;
    display: flex;
    align-items: flex-end; 
}

.hst-card-cat {
    position: relative; 
    display: inline-block;
    background: #eef6f9; 
    color: #006599; 
    padding: 11px 7px 11px 24px; 
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid #dbeff7;
    margin-bottom: -1px; 

    z-index: 2;
}

.hst-card-cat::after {
    content: "";
    position: absolute;
    top: -1px; 
    right: -20px; 
    bottom: 0; 
    width: 35px; 
    background: #eef6f9;
    border-top: 1px solid #dbeff7;
    border-right: 1px solid #dbeff7;
    transform: skewX(25deg);
    border-top-right-radius: 5px;
    border-bottom: 1px solid #dbeff7; 
    z-index: -1;
}

.hst-card-body {
    padding: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid #d8e8f1;
    border-radius: 0 12px 12px 2px;
    background: #fff;
}

.hst-card-content-col {
    flex: 1; 
}

.hst-card-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.hst-card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}
.hst-card-title a {
    color: #003350;
    text-decoration: none;
    transition: color 0.2s;
}
.hst-card-title a:hover {
    color: #0073aa;
}

.hst-card-excerpt {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.hst-card-readmore {
    font-size: 13px;
    color: #006599;
    font-weight: 600;
    text-decoration: none;
}
.hst-card-readmore:hover {
    text-decoration: underline;
}
.hst-card-icon-col {
    flex: 0 0 50px; 
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    padding-top: 2px; 
}

.hst-card-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
}

.hst-single-wrapper .hst-single-meta {
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.hst-single-wrapper .hst-meta-user {
    font-weight: bold;
    color: #333;
}
.hst-single-wrapper .hst-meta-right {
    text-align: right;
}
.hst-single-wrapper .hst-meta-address {
    color: #555;
    font-weight: normal;
}
.hst-single-wrapper .hst-section-header {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    margin-top: 0;
    border-bottom: none;
}

.hst-single-wrapper .hst-section-question {
    margin-bottom: 30px;
}
.hst-single-wrapper .hst-user-content {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.hst-single-wrapper .hst-section-answer {
    background-color: #f4fbfd;
    border: 1px solid #e1f0f5;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #d8e8f1;
}
.hst-single-wrapper .hst-section-answer .hst-section-header {
    color: #005a87;
}
.hst-single-wrapper .hst-answer-meta {
    margin-bottom: 15px;
    font-weight: 600;
    color: #0073aa;
}
.hst-single-wrapper .hst-admin-answer-content {
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

.hst-single-wrapper .hst-single-attachment img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    margin-top: 10px;
}
.hst-single-wrapper .hst-btn-download {
    text-decoration: none;
    color: #0073aa;
    font-weight: 600;
}

.hst-single-wrapper .hst-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    color: #666;
    font-size: 13px;
}

.hst-breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
}
.hst-breadcrumb a { color: #333; text-decoration: none; font-weight: 600; }
.hst-breadcrumb a:hover { color: #cc0000; }

.hst-related-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.hst-related-section .hst-section-header {
    font-size: 18px;
    color: #333;
    border-left: 4px solid #cc0000; 
    padding-left: 10px;
    margin-bottom: 15px;
}

.hst-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hst-related-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f1f1f1;
    position: relative;
    padding-left: 15px;
}

.hst-related-list li::before {
    content: "•";
    color: #cc0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0px;
}

.hst-related-list li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.2s;
    font-weight: bold;
}

.hst-related-list li a:hover {
    color: #0073aa;
}

.hst-file-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
#hst-remove-file {
    display: none; 
    font-size: 13px;
    color: #cc0000;
    cursor: pointer;
    border: 1px solid #cc0000;
    padding: 2px 8px;
    border-radius: 3px;
    background: #fff;
    transition: all 0.2s;
}
#hst-remove-file:hover {
    background: #cc0000;
    color: #fff;
}

.hst-qa-search-box {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}
.hst-qa-search-box form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.hst-qa-search-box input[type="text"] {
    flex: 2; 
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 40px;
    margin: 0;
    font-size: 14px;
}
.hst-qa-search-box select.hst-search-select {
    flex: 1; 
    min-width: 100px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 40px;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 14px;
}
.hst-qa-search-box button {
    flex: 0 0 auto;
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 0 15px;
    height: 40px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    flex-shrink: 0;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 0;
}
.hst-qa-search-box button:hover {
    background-color: #005177;
}

.hst-reset-search {
    white-space: nowrap;
    margin-left: 5px;
    color: #cc0000;
    font-size: 14px;
}
.hst-reset-search:hover {
    text-decoration: underline;
}


@media (max-width: 600px) {
    .hst-qa-search-box form {
        flex-wrap: wrap;
    }
    .hst-qa-search-box input[type="text"],
    .hst-qa-search-box select.hst-search-select,
    .hst-qa-search-box button {
        width: 100%;
        flex: none;
    }
    .hst-reset-search {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 5px;
    }
    .hst-qa-form-wrapper .hst-col-label, 
    .hst-qa-form-wrapper .hst-col-input {
        width: 100%;
        text-align: left;
    }
    .hst-single-wrapper .hst-single-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .hst-single-wrapper .hst-meta-right {
        text-align: left;
        margin-top: 5px;
    }
    .hst-pagination .page-numbers {
        padding: 6px 10px;
        font-size: 12px;
    }
    .hst_question-template-default .large-9.col {
        margin-bottom: 30px;
    }
    .hst-card-body {
        padding: 10px;
        gap: 10px;
    }
    .hst-card-icon-img {
        width: 35px; 
        height: 35px; 
    }
    .hst-card-cat {
        font-size: 14px;
    }
    .hst-breadcrumb {
        padding: 10px;
    }
    .hst-form-title {
        padding-left: 10px;
    }
    .hst-faq-search-box form {
        flex-direction: column;
        align-items: stretch;
    }
    .hst-faq-search-box input[type="text"],
    .hst-faq-search-box select.hst-search-select,
    .hst-faq-search-box button.search-submit {
        width: 100%;
        flex: none;
        margin-bottom: 5px;
    }
    .hst-bottom-toolbar {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }
}

.hst-no-result {
    padding: 20px;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 4px;
}
#hst_file, .hst-faq-answer p, .hst-disclaimer p, .hst_faq-template-default .entry-title {
    margin-bottom: 0;
}
.hst_question-template-default .entry-header-text, .hst_faq-template-default .entry-header-text {
    padding: 0;
}
.hst_question-template-default .entry-content, .hst_faq-template-default .entry-content {
    padding-top: 0.5em;
}
.hst-pagination {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.hst-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.2s;
}

.hst-pagination .page-numbers:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #000;
}

.hst-pagination .page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
}

.hst-pagination .next, 
.hst-pagination .prev {
    font-weight: bold;
}

.hst-faq-container .hst-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    margin: 0;
}

.hst-faq-icon-q {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding-top: 3px;
    border: 1px solid #cc0000;
    color: #cc0000;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.hst-faq-container details[open] .hst-faq-icon-q {
    background-color: #cc0000;
    color: #fff;
}

.hst-btn-readmore {
    display: inline-block;
    color: #fff;
    background-color: #0073aa; 
    padding: 5px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s;
}
.hst-btn-readmore:hover {
    background-color: #cc0000;
    color: #fff;
}

.hst-pagination {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.hst-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.2s;
}

.hst-pagination .page-numbers.current {
    background-color: #cc0000; 
    color: #fff;
    border-color: #cc0000;
    font-weight: bold;
}

.hst-pagination .page-numbers:hover {
    background-color: #f0f0f0;
    color: #000;
}

.hst-line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 9.6em;
}
.hst-readmore-wrap {
    text-align: right;
    margin-top: 10px;
}

.hst-bottom-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.hst-toolbar-left {
    font-size: 14px;
    color: #333;
}

.hst-limit-select {
    display: inline-block !important;
    width: auto !important;
    padding: 2px 5px !important;
    margin: 0 5px !important;
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 30px !important;
    background: #fff;
    cursor: pointer;
}

.hst-pagination {
    margin-top: 0 !important;
}

.hst-faq-search-box {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.hst-faq-search-box form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hst-faq-search-box input[type="text"] {
    flex: 2; 
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 40px;
    margin: 0;
    font-size: 14px;
}

.hst-faq-search-box select.hst-search-select {
    flex: 1; 
    min-width: 150px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 40px !important;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 14px;
}

.hst-faq-search-box button.search-submit {
    flex: 0 0 auto;
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 0 20px;
    height: 40px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 14px;
    margin-right: 0;
}
.hst-faq-search-box button.search-submit:hover {
    background-color: #005177;
}
.hst-related-section li {
    margin-left: 0 !important;
}

/* =========================================
   RATING SYSTEM - HỆ THỐNG ĐÁNH GIÁ SAO
   ========================================= */

/* Rating hiển thị trong danh sách */
.hst-card-rating {
    margin: 8px 0;
    font-size: 14px;
    text-align: right;
    float: right;
    clear: both;
}

.hst-stars-display .hst-star {
    color: #ffc107;
    font-size: 16px !important;
    margin-right: 2px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    line-height: 1 !important;
}

.hst-stars-display .hst-star-filled {
    color: #ffc107;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 16px !important;
}

.hst-stars-display .hst-star-partial {
    position: relative;
    display: inline-block;
    color: #ddd;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 16px !important;
}

.hst-stars-display .hst-star-partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc107;
    overflow: hidden;
    width: var(--fill-width, 50%);
    white-space: nowrap;
}

.hst-stars-display .hst-star-empty {
    color: #ddd;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 16px !important;
}

.hst-rating-text {
    color: #666;
    font-size: 13px;
    margin-left: 5px;
}

/* Form rating tương tác */
.hst-rating-interaction-box {
    border-radius: 12px;
    margin: 20px;
    text-align: center;
}

.hst-rating-question-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.hst-rating-thanks-message {
    background: #d4edda;
    color: var(--hst-rating-box-text-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #c3e6cb;
}

.hst-rating-prompt-message {
    background: #e3f2fd;
    color: var(--hst-rating-box-text-color);
    padding: 15px 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #bbdefb;
}

.hst-rating-summary-bottom {
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hst-rating-text {
    color: #495057;
    font-weight: 500;
}

.hst-rating-count-text {
    color: #6c757d;
    font-style: italic;
    font-size: 13px;
}

.hst-rating-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffc107, #28a745, #17a2b8, #ffc107);
    z-index: -1;
    border-radius: 14px;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.hst-rating-section h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hst-stars-container {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.hst-rating-form .hst-rating-message {
    min-height: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.hst-star-btn {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.hst-star-btn:hover {
    color: #ffd700;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes starPulse {
    0% { transform: scale(1.2); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.2); }
}

.hst-star-btn.hst-star-hover {
    color: #ffc107;
}

.hst-rating-form .hst-rating-message {
    min-height: 24px;
    font-size: 14px;
}

.hst-rating-thanks {
    color: var(--hst-rating-box-text-color);
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hst-rating-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.hst-rating-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 12px 20px;
    border-radius: 25px;
    margin-top: 15px;
    border: 1px solid rgba(158, 158, 158, 0.2);
}

.hst-rating-avg {
    color: #333;
    font-weight: 500;
}

.hst-rating-count {
    color: #666;
    font-style: italic;
}

/* Rating Overview mới */
.hst-rating-overview {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.hst-rating-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.hst-rating-score-display {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1;
}

.hst-rating-max-score {
    font-size: 24px;
    opacity: 0.8;
    margin-left: 5px;
}

.hst-rating-stars-container {
    margin: 15px 0;
}

.hst-rating-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Container rating đơn giản */
.hst-rating-container {
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hst-rating-section-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.hst-rating-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hst-rating-title::before {
    content: '⭐';
    font-size: 18px;
}

.hst-rating-stars-large {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.hst-rating-stars-large .hst-star {
    font-size: 32px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hst-rating-stars-large .hst-star-filled {
    color: #ffd700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.hst-rating-stars-large .hst-star-empty {
    color: rgba(255, 255, 255, 0.4);
}

.hst-rating-summary-large {
    display: none; /* Ẩn vì đã có thiết kế mới */
}

.hst-rating-summary-large .hst-rating-score-line {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.hst-rating-number {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 0;
    display: inline;
}

.hst-rating-text-large {
    font-size: 20px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 400;
    display: inline;
    margin-left: 2px;
}

.hst-rating-count-large {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .hst-star-btn {
        font-size: 28px;
    }
    
    .hst-stars-container {
        gap: 6px;
        padding: 12px;
    }
    
    .hst-rating-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .hst-rating-section h4 {
        font-size: 17px;
    }
    
    .hst-rating-question {
        font-size: 15px;
        padding: 8px 12px;
    }
    
    .hst-rating-interaction-box {
        margin: 15px;
        padding: 20px;
    }
    
    .hst-star-btn {
        font-size: 28px;
    }
    
    .hst-rating-summary-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .hst-rating-overview {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 0;
    }
    
    .hst-rating-stars-large .hst-star {
        font-size: 24px;
    }
    
    .hst-rating-number {
        font-size: 32px;
    }
    
    .hst-rating-text-large {
        font-size: 18px;
    }
    
    .hst-rating-count-large {
        font-size: 13px;
    }
    
    .hst-rating-summary-large {
        align-items: center;
    }
}