.cr-wrapper-69562 {
    background-color: #1A5F44; /* Dark green default */
    border-radius: 20px;
    padding: 30px;
    font-family: Arial, sans-serif;
}

.cr-header-69562 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.cr-header-rating-badge-69562 {
    background-color: #F39C12; /* Orange default */
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.cr-header-rating-badge-69562::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #F39C12 transparent transparent transparent;
}

.cr-header-stars-69562 {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.cr-header-stars-69562 svg {
    fill: #ffffff; /* White default for header badge */
}

.cr-header-title-69562 {
    color: #ffffff;
    font-size: 32px;
    margin: 15px 0 10px;
    font-weight: bold;
}

.cr-header-subtitle-wrapper-69562 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cr-header-subtitle-69562 {
    color: #ffffff;
    font-size: 18px;
}

.cr-header-subtitle-wrapper-69562 .cr-header-stars-69562 svg {
    fill: #F39C12; /* Orange default for subtitle stars */
}

.cr-list-69562 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cr-item-69562 {
    display: flex;
    align-items: stretch;
    gap: 20px;
    position: relative;
}

.cr-item-content-69562 {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    position: relative;
}

.cr-item-69562::after {
    content: '';
    position: absolute;
    right: 140px; /* Adjust based on image width */
    top: 50%;
    transform: translateY(-50%);
    border-width: 20px 0 20px 20px;
    border-style: solid;
    border-color: transparent transparent transparent #fcd34d; /* Yellow arrow default */
    z-index: 1;
}

.cr-item-header-69562 {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.cr-verified-badge-69562 {
    background-color: #e5e7eb;
    color: #374151;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cr-verified-badge-69562 svg {
    fill: #2563eb;
}

.cr-item-meta-69562 {
    text-align: left; /* RTL context */
    margin-bottom: 15px;
}

.cr-reviewer-name-69562 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

.cr-stars-69562 {
    display: flex;
    gap: 2px;
}

.cr-stars-69562 svg {
    fill: #F39C12;
}

.cr-review-text-69562 {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
    text-align: right;
}

.cr-item-image-wrapper-69562 {
    width: 120px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-reviewer-image-69562 {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cr-item-69562 {
        flex-direction: column-reverse;
    }
    .cr-item-69562::after {
        display: none;
    }
    .cr-item-image-wrapper-69562 {
        width: 100%;
        height: 150px;
    }
    .cr-reviewer-image-69562 {
        height: 100%;
    }
}