.slmp-reviews-widget {
    background: #fff;
    padding: 40px 20px;
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #000;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.slmp-reviews-grid {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}

.slmp-reviews-grid > * {
  box-sizing: border-box;
  flex: 1 1 calc(30% - 1em);
  min-width: 200px;
}

.slmp-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, #ffffff 0%, #f7faf5 100%);
    border: 1px solid #dce8d7;
    border-top: 4px solid #77ad5c;
    border-radius: 0;
    padding: 22px 15px 20px;
    text-align: center;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.07),
        0 1px 3px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.slmp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #77ad5c 0%,
        #77ad5c 45%,
        #f26924 100%
    );
}

.slmp-card:hover {
    transform: translateY(-3px);
    border-color: #b9d3ae;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.10),
        0 2px 5px rgba(0, 0, 0, 0.05);
}

.slmp-card-count {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 7px;
}

.slmp-card-stars {
    color: #d9ded6;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 9px;
    line-height: 1;
}

.slmp-card-stars .filled {
    color: #f26924;
}

.slmp-card-title {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-bottom: 4px;
}

.slmp-card-subtext {
    font-size: 11px;
    color: #687268;
}

/* Middle Text Banner */

.slmp-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background:
        linear-gradient(
            100deg,
            rgba(119, 173, 92, 0.10),
            rgba(242, 105, 36, 0.08)
        );
    border: 1px solid #dce8d7;
    border-left: 4px solid #77ad5c;
    border-radius: 0;
    padding: 17px 24px;
    text-align: center;
    font-size: 14px;
    color: #596158;
    margin: 0 auto 30px auto;
    max-width: 750px;
    box-sizing: border-box;
}

.slmp-banner::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(242, 105, 36, 0.04)
    );
    pointer-events: none;
}

.slmp-banner-star {
    position: relative;
    z-index: 1;
    color: #f26924;
    font-size: 17px;
    margin-right: 4px;
}

.slmp-banner-text {
    position: relative;
    z-index: 1;
}

.slmp-banner-text strong {
    color: #000;
}

/* Call To Action Buttons */

.slmp-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.slmp-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.slmp-btn-primary {
    background: linear-gradient(
        135deg,
        #f26924 0%,
        #e85d17 100%
    );
    color: #fff;
    border: 2px solid #f26924;
    box-shadow: 0 4px 10px rgba(242, 105, 36, 0.20);
}

.slmp-btn-primary:hover {
    background: linear-gradient(
        135deg,
        #e85d17 0%,
        #d94f0c 100%
    );
    border-color: #d94f0c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(242, 105, 36, 0.25);
}

.slmp-btn-outline {
    background: #fff;
    color: #000;
    border: 2px solid #77ad5c;
}

.slmp-btn-outline:hover {
    background: #77ad5c;
    border-color: #77ad5c;
    color: #fff;
    transform: translateY(-2px);
}

/* Last Updated */

.slmp-meta-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #edf1eb;
}

.slmp-meta-footer small {
    color: #8a938a;
    font-size: 11px;
}