/* FeedbackIndex – Customer Feedback & Reviews summary */
.feedback-index {
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: "HarmonyOS Sans", Arial, sans-serif;
    color: #26272A;
}

.feedback-index__title {
    margin: 0 0 24px;
    font-size: var(--aiv-size-11, 24px);
    font-weight: 700;
    line-height: 1.35;
    color: #26272A;
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 700;
font-size: 34px;
line-height: 40px;
color: #242631;




}

.feedback-index__card {
    background: #EDF5FF;
    border-radius: var(--aiv-radio-xxl, 8px);
    padding: 24px 28px 28px;
    box-sizing: border-box;
}

.feedback-index__overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.feedback-index__rating {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.feedback-index__stars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    font-size: 0;
}

.feedback-index__stars-track {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.feedback-index__stars-base,
.feedback-index__stars-active {
    display: flex;
    align-items: center;
    gap: 2px;
}

.feedback-index__stars-active {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.feedback-index__stars svg,
.feedback-index__stars img {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.feedback-index__score {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-family: "HarmonyOS Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #26272A;
}

.feedback-index__count {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-family: "HarmonyOS Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #535D6D;
}

.feedback-index__write-link {
    font-size: var(--aiv-size-7, 14px);
    font-weight: 500;
    color: var(--primary-color, #0060FF);
    white-space: nowrap;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 22px;
/* or 157% */

color: #0060FF;


}

.feedback-index__write-link:hover {
    color: var(--primary-color__hover, #3E86FD);
    text-decoration: underline;
}

.feedback-index__summary {
    margin-top: 24px;
}

.feedback-index__summary-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
}

.feedback-index__summary-title {
    margin: 0;
    font-size: var(--aiv-size-8, 16px);
    font-weight: 700;
    color: #26272A;
    line-height: 1.4;
}

.feedback-index__summary-tag {
    font-size: var(--aiv-size-6, 12px);
    font-weight: 400;
    color: #8A94A6;
    line-height: 1.4;
}

.feedback-index__summary-body {
    font-size: var(--aiv-size-7, 14px);
    line-height: 1.65;
    color: #535D6D;
}

.feedback-index__summary-text {
    margin: 0;
}

.feedback-index__summary-content {
    display: block;
    position: relative;
}

.feedback-index__summary-copy {
    display: block;
    
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 22px;
/* or 157% */

color: #26272A;
}

.feedback-index__summary-content--collapsed.feedback-index__summary-content--truncatable .feedback-index__summary-copy {
    max-height: calc(1.65em * 4);
    overflow: hidden;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 22px;
/* or 157% */

color: #26272A;


}

.feedback-index__see-more {
    display: none;
    font-size: var(--aiv-size-7, 14px);
    font-weight: 500;
    color: var(--primary-color, #0060FF);
    text-decoration: underline;
    white-space: nowrap;
}

.feedback-index__summary-content--truncatable.feedback-index__summary-content--collapsed .feedback-index__see-more {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 1.65;
    padding-left: 48px;
    background: linear-gradient(to right, rgba(237, 245, 255, 0) 0%, #EDF5FF 30%);
}

.feedback-index__summary-content--expanded.feedback-index__summary-content--truncatable .feedback-index__summary-copy {
    display: inline;
    max-height: none;
    overflow: visible;
}

.feedback-index__summary-content--expanded.feedback-index__summary-content--truncatable .feedback-index__see-more {
    display: inline;
    position: static;
    margin-left: 4px;
    padding-left: 0;
    background: none;
}

.feedback-index__see-more:hover {
    color: var(--primary-color__hover, #3E86FD);
    text-decoration: underline;
}

/* Review cards grid */
.feedback-index--list {
    padding-top: 0;
}

.feedback-index__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feedback-index__review-item {
    margin: 0;
    padding: 0;
    min-width: 0;
}

.feedback-index__review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: var(--aiv-radio-xxl, 8px);
    box-sizing: border-box;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feedback-index__review-card:hover {
    /* box-shadow: 0 4px 16px rgba(0, 96, 255, 0.08); */
}

.feedback-index__review-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 280 / 180;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #F3F3F4;
    line-height: 0;
}

.feedback-index__review-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px;
}

.feedback-index__review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.feedback-index__review-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.feedback-index__review-stars img,
.feedback-index__review-stars svg {
    width: 16px;
    height: 16px;
    display: block;
}

.feedback-index__review-tag {
    flex-shrink: 0;
    padding: 4px 8px;
    font-size: var(--aiv-size-6, 12px);
    font-weight: 500;
    color: var(--primary-color, #0060FF);
    background: #E8F1FF;
    border-radius: 2px;
    line-height: 1.4;
    white-space: nowrap;
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 9px;
line-height: 11px;
text-align: center;

color: #0060FF;


}

.feedback-index__review-user {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    font-size: var(--aiv-size-6, 12px);
    line-height: 1.4;
}

.feedback-index__review-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.feedback-index__review-name {
    font-weight: 500;
    color: #26272A;
}

.feedback-index__review-flag {
    width: 18px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.feedback-index__review-date {
    color: #8A94A6;
    white-space: nowrap;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 14px;

color: #828282;


}

.feedback-index__review-specs {
    margin: 0 0 8px;
    font-size: var(--aiv-size-6, 12px);
    line-height: 1.5;
    color: #535D6D;
    word-break: break-word;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 14px;

color: #828282;


}

.feedback-index__review-content {
    margin: 0 0 10px;
    font-size: var(--aiv-size-7, 14px);
    line-height: 1.55;
    color: #26272A;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    flex: 1;

height: 60px;
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* or 143% */

color: #26272A;


}

.feedback-index__review-manufacture {
    display: inline-block;
    margin-bottom: 6px;
    font-size: var(--aiv-size-7, 14px);
    font-weight: 500;
    color: var(--primary-color, #0060FF);
    text-decoration: underline;
    line-height: 1.4;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
text-decoration-line: underline;

color: #0060FF;


}

.feedback-index__review-manufacture:hover {
    color: var(--primary-color__hover, #3E86FD);
}

.feedback-index__review-footer {
    margin-top: auto;
    padding-top: 4px;
}

.feedback-index__review-share-wrap {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.feedback-index__review-share {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--aiv-size-6, 12px);
    color: #8A94A6;
    line-height: 1;
}

.feedback-index__review-share:hover,
.feedback-index__review-share[aria-expanded="true"] {
    color: var(--primary-color, #0060FF);
}

.feedback-index__review-share svg {
    display: block;
    flex-shrink: 0;
}

.feedback-index__review-share-panel {
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    z-index: 5;
    min-width: 300px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.feedback-index__review-share-panel--hidden {
    display: none;
}

.feedback-index__review-share-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 0;
}

.feedback-index__review-share-dot {
    font-size: 1.2rem;
    margin: 0 0.25rem;
    color: #333;
}

.feedback-index__review-share-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333333;
    background: #ebebeb;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.feedback-index__review-share-icon-btn svg {
    fill: #333333;
}

.feedback-index__review-share-icon-btn:hover {
    background: #353535;
    color: #fff;
}

.feedback-index__review-share-icon-btn:hover svg {
    fill: #fff;
}

.feedback-index__review-share-notice {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #26272A;
    line-height: 1.4;
}

/* Pagination */
.feedback-index__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 32px;
    margin-top: 48px;
    font-family: "HarmonyOS Sans", Arial, sans-serif;
}

.feedback-index__page-group {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.feedback-index__page-group--next {
    gap: 14px;
}

.feedback-index__page-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    box-sizing: border-box;
}

.feedback-index__page-arrow-icon {
    display: block;
    width: 44px;
    height: 44px;
}

.feedback-index__page-arrow-icon__ring {
    fill: none;
    stroke: #DADCE0;
    stroke-width: 1;
    transition: stroke 0.2s ease;
}

.feedback-index__page-arrow-icon__chevron {
    fill: none;
    stroke: #5F6368;
    stroke-width: 2;
    transition: stroke 0.2s ease;
}

a.feedback-index__page-arrow:hover .feedback-index__page-arrow-icon__ring,
a.feedback-index__page-arrow:hover .feedback-index__page-arrow-icon__chevron {
    stroke: var(--primary-color, #0060FF);
}

.feedback-index__page-arrow--disabled {
    cursor: not-allowed;
}

.feedback-index__page-arrow--disabled .feedback-index__page-arrow-icon__ring,
.feedback-index__page-arrow--disabled .feedback-index__page-arrow-icon__chevron {
    stroke: #DADCE0;
}

.feedback-index__page-text {
    font-size: 14px;
    font-weight: 400;
    color: #535D6D;
    line-height: 44px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

a.feedback-index__page-text:hover {
    color: var(--primary-color, #0060FF);
}

.feedback-index__page-text--disabled {
    color: #C5CAD3;
    cursor: not-allowed;
}

.feedback-index__page-list {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.feedback-index__page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 4px;
    border-radius: 50%;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
text-align: center;

color: #595959;


}

.feedback-index__page-num:hover {
    color: var(--primary-color, #0060FF);
}

.feedback-index__page-num--active,
.feedback-index__page-num--active:hover {
    background: #EFF5FF;
    color: #595959;
}

.feedback-index__page-ellipsis {
    min-width: 16px;
    color: #535D6D;
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
}

@media (max-width: 1200px) {
    .feedback-index__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .feedback-index {
        padding: 24px 12px 40px;
    }

    .feedback-index--list {
        padding-bottom: 24px;
    }

    .feedback-index__title {
        font-size: var(--aiv-size-9, 18px);
        margin-bottom: 16px;
    }

    .feedback-index__card {
        padding: 20px 16px;
    }

    .feedback-index__overview {
        flex-direction: column;
        align-items: flex-start;
    }

    .feedback-index__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feedback-index__review-date {
        margin-left: 0;
        width: 100%;
    }

    .feedback-index__pagination {
        margin-top: 28px;
        gap: 0 16px;
    }

    .feedback-index__page-list {
        gap: 10px;
    }

    .feedback-index__page-text {
        display: none;
    }
}
