/** Shopify CDN: Minification failed

Line 167:3 Expected "}" to go with "{"

**/
/************* Review Badge *************/
#review-summary {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.star-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}
.star-rating .star {
    display: inline-block !important;
    flex-shrink: 0 !important;
}
.star.full {
    color: #333;
}
.star.half {
    position: relative;
    color: #ccc;
}
    .star.half::before {
        content: '★';
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        overflow: hidden;
        color: #333;
    } 
.rating-text {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    color: #666;
}


@media (max-width: 768px) {
    /* change font-size and gap */
    #review-summary {
        font-size: 12px !important;
        gap: 6px !important;
    }

    /* Review Stars */
    .star-rating {
        gap: 0.2rem;
        margin: 0;
    }
    .star-rating .star {
        font-size: 0.9rem;
    }
    .rating-text {
        font-size: 0.75rem;
    }
}
/************* Review Badge *************/


/* =========================
   REVIEWS - PREMIUM LAYOUT
   ========================= */

.stamped-review {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 30px 0;
    margin-bottom: 0;
}

/* Left Column: Reviewer Info - Updated Alignment */
.stamped-review-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers everything */
    justify-content: center;
    border-right: 1px solid #eee;
    padding-right: 20px;
    text-align: center;
    gap: 10px;
    min-height: 200px; /* Ensure vertical centering shows */

.stamped-review-header .stamped-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin: 0 auto 10px auto; /* center horizontally */
}

.stamped-review-header .stamped-review-name {
    font-weight: 600;
    font-size: 14px;
}

.stamped-review-header .stamped-review-country {
    font-size: 12px;
    color: #888;
}

.stamped-review-header .stamped-review-verified-badge {
    font-size: 12px;
    color: #999;
    background: none;
    padding: 0;
}

/* Right Column: Review Content */
.stamped-review-content {
    padding-left: 10px;
}

.stamped-review-content .stamped-review-rating {
    margin-bottom: 5px;
}

.stamped-review-content .stamped-review-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.stamped-review-content .stamped-review-body {
    color: #555;
    margin-bottom: 10px;
}

.stamped-review-content .stamped-review-actions {
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
}
.stamped-review-avatar-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
}

.stamped-review-avatar-col .stamped-review-avatar-date,
.stamped-review-avatar-col .stamped-review-avatar-name,
.stamped-review-avatar-col .stamped-review-avatar-badge,
.stamped-review-avatar-col .stamped-review-avatar-country,
.stamped-review-avatar-col .stamped-review-avatar-rating {
    width: 100%;
    text-align: left;
}  