/* Google Review QR — Banner Zone (wide short).
 * 3 columns inside a 60% wide card:
 *   25% (logo) / 50% (QR + headline) / 25% (stars + Thank you!)
 */

.grqr-banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg,
        #4285F4 0% 35%,
        #ffffff 35% 40%,
        #EA4335 40% 65%,
        #ffffff 65% 70%,
        #34A853 70% 100%);
}
.grqr-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        #4285F4 0% 35%,
        #ffffff 35% 40%,
        #FBBC04 40% 65%,
        #ffffff 65% 70%,
        #34A853 70% 100%);
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    pointer-events: none;
}

.grqr-banner-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    color: #202124;
    padding: 4cqh 3cqw;
    width: 60%;
    height: 80%;
    word-break: break-word;
    box-sizing: border-box;
    border-radius: 2cqh;
    box-shadow: 0 1cqh 2.5cqh rgba(0, 0, 0, 0.12);
}

.grqr-banner-col-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.grqr-banner-col-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5cqh;
    height: 100%;
    min-width: 0;
}
.grqr-banner-col-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8cqh;
    height: 100%;
}

.grqr-banner-google-badge {
    width: 50cqh;
    height: 50cqh;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.4cqh 1cqh rgba(0, 0, 0, 0.12);
}
.grqr-banner-google {
    width: 65% !important;
    height: 65% !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}

.grqr-banner-qr-wrap {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 1.5cqh;
}
.grqr-banner-qr-corner {
    position: absolute;
    width: 8cqh;
    height: 8cqh;
    border-style: solid;
    border-width: 0;
}
.grqr-banner-qr-corner.tl { top: 0; left: 0; border-top-width: 1.5cqh; border-left-width: 1.5cqh; border-color: #4285F4; }
.grqr-banner-qr-corner.tr { top: 0; right: 0; border-top-width: 1.5cqh; border-right-width: 1.5cqh; border-color: #EA4335; }
.grqr-banner-qr-corner.bl { bottom: 0; left: 0; border-bottom-width: 1.5cqh; border-left-width: 1.5cqh; border-color: #34A853; }
.grqr-banner-qr-corner.br { bottom: 0; right: 0; border-bottom-width: 1.5cqh; border-right-width: 1.5cqh; border-color: #FBBC04; }
.grqr-banner-qr {
    width: 40cqh;
    height: 40cqh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grqr-banner-qr svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.grqr-banner-headline {
    font-size: 7cqh !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif;
    color: #202124;
    line-height: 1.2 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.grqr-banner-rainbow-stars {
    font-size: 11cqh !important;
    letter-spacing: 0.15em !important;
    line-height: 1 !important;
}
.grqr-banner-rainbow-stars .s1 { color: #4285F4; }
.grqr-banner-rainbow-stars .s2 { color: #EA4335; }
.grqr-banner-rainbow-stars .s3 { color: #FBBC04; }
.grqr-banner-rainbow-stars .s4 { color: #34A853; }
.grqr-banner-rainbow-stars .s5 { color: #4285F4; }

.grqr-banner-thanks {
    font-size: 11cqh !important;
    font-weight: 400 !important;
    font-family: 'Oleo Script', cursive;
    color: #202124;
    line-height: 1 !important;
}
