.chn-stat-card {
    background-color: var(--wd-main-bgcolor, #ffffff);
    border-radius: 20px;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    font-family: inherit;
    /* 使用主题默认字体 */
    max-width: 100%;
    box-sizing: border-box;
}

.chn-stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chn-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-title-color, #242424);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chn-stat-desc {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wd-text-color, #777777);
}

.chn-stat-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--e-global-color-9cdad10, #FAF9F6);
    /* Custom Light Beige */
    color: var(--wd-primary-color, #789614);
}

/* WoodMart Icon */
.chn-stat-icon-woodmart::before {
    content: "\f11d";
    font-family: "woodmart-font";
    font-weight: 400;
    font-size: 16px;
}

.chn-stat-star {
    color: #FFC107;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* Trusted by Brands Card */
.chn-trusted-card {
    justify-content: space-between;
    gap: 12px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.chn-trusted-avatars {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.chn-avatar-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: -8px;
    /* Overlap effect */
    border: 2px solid #FAF9F6;
    /* White border for separation */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
}

/* Correct color sequence from index.html */
.chn-avatar-circle:nth-child(1) {
    background-color: #E2E8F0 !important;
}

.chn-avatar-circle:nth-child(2) {
    background-color: #CBD5E1 !important;
}

.chn-avatar-circle:nth-child(3) {
    background-color: #94A3B8 !important;
}

.chn-avatar-circle:first-child {
    margin-left: 0;
}

.chn-avatar-plus {
    background-color: #C8B699 !important;
    /* Brand/Gold accent */
    color: #fff;
    z-index: 1;
    /* Ensure the plus is on top if needed, though DOM order handles it usually */
    position: relative;
}

.chn-avatar-plus svg {
    /* Ensure icon is perfectly centered */
    display: block;
}

.chn-trusted-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--wd-text-color, #777);
    /* Same as desc color */
    letter-spacing: 0.3px;
    white-space: nowrap;
}