/* Card version (thank-you page, inline) */
.google-review-cta {
    padding: 32px 24px;
    text-align: center;
}

.google-review-cta__inner {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 24px;
}

.google-review-cta__text {
    margin: 0 0 16px;
    font-size: 16px;
    color: #1c1c1c;
}

.google-review-cta__btn {
    display: inline-block;
    background: #029dd5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.google-review-cta__btn:hover {
    background: #0286b3;
}

/* Popup version (thank-you page, modal) */
.google-review-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.google-review-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
}

.google-review-popup {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 32px 28px 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.google-review-popup-overlay.is-visible .google-review-popup {
    transform: translateY(0);
}

.google-review-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

.google-review-popup__text {
    margin: 0 0 20px;
    font-size: 16px;
    color: #1c1c1c;
}

.google-review-popup__btn {
    display: inline-block;
    background: #029dd5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.google-review-popup__btn:hover {
    background: #0286b3;
}

.google-review-popup__dismiss {
    display: block;
    margin: 14px auto 0;
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}
