@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800;900&display=swap');

.public-review-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background:
        var(--grb-body-bg,
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 34rem),
        linear-gradient(180deg, #f7fbff 0%, #eef5f8 100%));
    color: #14213d;
    font-family: 'Roboto', Arial, sans-serif;
}

.review-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(88px, 118px) 1fr;
    gap: 18px;
    align-items: center;
    height: auto !important;
    min-height: 150px;
    padding: 18px clamp(18px, 5vw, 72px);
    overflow: hidden;
    box-shadow: none;
    border-radius: 0 0 20px 20px;
}

.review-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -58% 42%;
    height: 170px;
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(-7deg);
}

.review-logo-card {
    position: relative;
    z-index: 1;
    width: clamp(78px, 9vw, 104px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.review-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none !important;
}

.review-hero-content {
    position: relative;
    z-index: 1;
    justify-self: end;
    max-width: 520px;
    text-align: right;
    color: #ffffff;
}

.review-hero-title {
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.05;
    font-weight: 800;
}

.review-hero-subtitle {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 500;
}

.review-page-main {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    align-content: start;
    width: min(880px, calc(100% - 32px));
    margin: -22px auto 20px;
    display: grid;
    gap: 16px;
    text-align: center;
}

.review-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    padding: clamp(16px, 2.2vw, 22px);
}

.review-panel:hover {
    transform: none;
}

.review-question {
    margin: 0 0 8px;
    color: #14213d;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
}

.review-question b,
.review-social-title b {
    color: var(--grb-accent-color, #0b84d8) !important;
}

.star-rating {
    display: inline-flex;
    gap: 7px;
    padding: 3px 0 0;
}

.star {
    color: #cbd5e1;
    cursor: pointer;
    font-size: clamp(34px, 4.4vw, 46px);
    line-height: 1;
    text-shadow: 0 6px 14px rgba(245, 158, 11, 0.12);
    transition: color 0.18s ease, transform 0.18s ease;
}

.star:hover {
    transform: translateY(-2px) scale(1.06);
}

.feedback-fields,
.feedback-inputfields {
    gap: 12px;
    margin-top: 14px;
    align-items: stretch;
}

.feedback-fields textarea,
.feedback-inputfields input {
    margin: 0;
    border: 1px solid #d8e2ee;
    border-radius: 12px;
    background: #f8fbff;
    color: #14213d;
    font-size: 15px;
    padding: 13px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feedback-fields textarea {
    min-height: 82px;
    height: 82px;
}

.feedback-inputfields input {
    height: 48px;
    flex: 1 1 0;
}

#feedback-form #contact {
    height: 48px;
    min-height: 0;
    padding: 13px 14px;
}

.feedback-fields textarea:focus,
.feedback-inputfields input:focus {
    outline: none;
    border-color: #0b84d8;
    box-shadow: 0 0 0 4px rgba(11, 132, 216, 0.12);
}

.feedback-button {
    margin-top: 12px;
}

.direct-review-card {
    align-items: center;
}

.google-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    margin-top: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--grb-accent-color, #0b84d8);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(11, 132, 216, 0.24);
}

.google-review-link:hover {
    background: var(--grb-accent-color, #086fb6);
    color: #ffffff;
}

.submit-button,
.view-button {
    width: auto;
    min-width: 132px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    padding: 11px 22px;
    background: var(--grb-accent-color, #0b84d8);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(11, 132, 216, 0.24);
}

.submit-button:hover,
.view-button:hover {
    background: var(--grb-accent-color, #086fb6);
}

.submit-button:disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.review-social-title {
    margin: 0 0 14px;
    color: #14213d;
    font-size: 17px !important;
    font-weight: 700;
}

.payment-success-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #087545;
    font-weight: 700;
}

.about-panel {
    text-align: left;
}

.about-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-title-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--grb-accent-color, #0b84d8) 13%, #ffffff);
    color: var(--grb-accent-color, #0b84d8);
    font-size: 15px;
}

.about-text {
    color: #42536a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.about-text strong {
    color: inherit;
    font-weight: 700;
}

.upi-payment-panel {
    display: grid;
    gap: 16px;
    text-align: left;
}

.upi-uploaded-qr-panel {
    display: grid;
    gap: 16px;
    text-align: left;
}

.upi-direct-payment-panel {
    display: grid;
    gap: 16px;
    text-align: left;
}

.online-payment-panel {
    display: grid;
    gap: 16px;
    text-align: left;
}

.upi-payment-header,
.online-payment-header,
.upi-payment-start,
.upi-amount-row,
.upi-whatsapp-receipt {
    display: flex;
    align-items: center;
}

.upi-payment-header,
.online-payment-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 0;
}

.upi-payment-header .review-social-title,
.online-payment-header .review-social-title {
    margin: 0 0 5px;
}

.upi-payment-header p,
.online-payment-header p,
.upi-whatsapp-receipt p,
.upi-qr-card p {
    margin: 0;
    color: #607086;
    font-size: 14px;
    font-weight: 500;
}

.upi-method-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: #e8f4ff;
    color: var(--grb-accent-color, #0b84d8);
    font-size: 12px;
    font-weight: 800;
}

.online-payment-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #f8fbff;
}

.online-payment-options {
    display: grid;
    gap: 14px;
}

.online-payment-card-standalone {
    padding: 18px;
    border-color: rgba(11, 132, 216, 0.22);
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, rgba(11, 132, 216, 0.08) 100%);
}

.online-payment-qr-card {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 18px;
    border-color: rgba(11, 132, 216, 0.26);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 62%, rgba(11, 132, 216, 0.09) 100%);
}

.online-payment-card-copy {
    min-width: 0;
}

.online-payment-provider-pill.provider-razorpay,
.online-payment-provider-name.provider-razorpay {
    color: #123d73;
}

.online-payment-provider-pill.provider-cashfree,
.online-payment-provider-name.provider-cashfree {
    color: #2446f2;
}

.online-payment-provider-pill.provider-phonepe,
.online-payment-provider-name.provider-phonepe {
    color: #5f259f;
}

.online-payment-provider-pill.provider-payu,
.online-payment-provider-name.provider-payu {
    color: #6a35ff;
}

.online-payment-provider-pill.provider-paytm,
.online-payment-provider-name.provider-paytm {
    color: #00b9f1;
}

.online-payment-provider-pill.provider-instamojo,
.online-payment-provider-name.provider-instamojo {
    color: #1d6bf3;
}

.online-payment-provider-pill.provider-razorpay {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eaf4ff;
}

.online-payment-provider-name {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    letter-spacing: 0;
    text-transform: none !important;
}

.online-payment-provider-name.provider-razorpay {
    color: #123d73;
    font-style: italic;
    font-size: 21px !important;
    font-weight: 900;
    line-height: 1;
}

.razorpay-brand-icon {
    color: #1e88ff;
    font-size: 17px;
    line-height: 1;
    transform: translateY(-2px) skew(-8deg);
}

.razorpay-brand-icon.is-small {
    font-size: 11px;
}

.online-payment-card span,
.online-payment-card strong,
.online-payment-card small {
    display: block;
}

.online-payment-card span {
    color: var(--grb-accent-color, #0b84d8);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.online-payment-card strong {
    margin-top: 3px;
    color: #102033;
    font-size: 15px;
    font-weight: 900;
}

.online-payment-card small {
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.online-payment-qr-frame {
    display: grid;
    place-items: center;
    width: 164px;
    height: 164px;
    padding: 10px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.online-payment-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.online-payment-qr-download {
    align-self: center;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid rgba(11, 132, 216, 0.28);
    border-radius: 999px;
    background: #ffffff;
    color: var(--grb-accent-color, #0b84d8);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.online-payment-method-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.online-payment-method-chips b {
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef6ff;
    color: #245275;
    font-size: 11px;
    font-weight: 900;
}

.online-payment-combo-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
    padding: 18px;
    border: 1px solid rgba(11, 132, 216, 0.24);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 70%, rgba(11, 132, 216, 0.08) 100%);
    text-align: center;
}

.online-payment-combo-card.has-qr-and-link {
    grid-template-columns: minmax(180px, 230px) 1px minmax(240px, 1fr);
    justify-items: stretch;
    gap: 24px;
    text-align: left;
}

.online-payment-qr-side {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.online-payment-qr-label {
    display: block;
    max-width: 210px;
    color: #102033;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
}

.online-payment-combo-card .online-payment-qr-frame {
    width: 178px;
    height: 178px;
}

.online-payment-combo-card .online-payment-qr-download {
    justify-self: center;
}

.online-payment-divider {
    width: 1px;
    min-height: 170px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(11, 132, 216, 0.28), transparent);
}

.online-payment-link-side {
    display: grid;
    gap: 14px;
    align-content: center;
    justify-items: center;
    min-height: 178px;
    text-align: center;
}

.online-payment-link-side .online-payment-card-copy span {
    color: var(--grb-accent-color, #0b84d8);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.online-payment-link-side .online-payment-card-copy {
    display: grid;
    justify-items: center;
    gap: 9px;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name {
    position: relative;
    font-size: 18px;
    margin-bottom: 2px;
    padding-bottom: 10px;
    text-transform: none;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 86px;
    height: 1px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 255, 0.36), transparent);
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: none;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name.provider-razorpay {
    color: #123d73;
    font-size: 21px !important;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name.provider-cashfree {
    color: #2446f2;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name.provider-phonepe {
    color: #5f259f;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name.provider-payu {
    color: #6a35ff;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name.provider-paytm {
    color: #00b9f1;
}

.online-payment-link-side .online-payment-card-copy .online-payment-provider-name.provider-instamojo {
    color: #1d6bf3;
}

.online-payment-link-side .online-payment-card-copy strong {
    display: block;
    color: #24364a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.online-payment-link-side .online-payment-card-copy small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.online-payment-btn {
    width: auto !important;
    min-width: 170px;
    min-height: 46px;
    padding-inline: 24px;
    border-radius: 999px !important;
    justify-self: center;
}

.online-payment-combo-card:not(.has-qr-and-link) .online-payment-link-side {
    justify-items: center;
    text-align: center;
}

.upi-error-note {
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fff1f2;
    color: #b42318;
    font-size: 13px;
    font-weight: 700;
}

.upi-payment-start {
    width: min(540px, 100%);
    margin: 8px auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border: 1px solid #e4edf6;
    border-radius: 16px;
    background: #f8fbff;
    padding: 18px 16px 16px;
}

.upi-payment-start label,
.upi-receipt-form label {
    display: block;
    color: #27364a;
    font-size: 13px;
    font-weight: 800;
}

.upi-amount-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 0 16px;
    border: 1px solid #d8e2ee;
    border-radius: 12px;
    background: #ffffff;
}

.upi-amount-row span {
    display: inline-flex;
    align-items: center;
    height: 100%;
    color: #0b84d8;
    font-weight: 800;
}

.upi-amount-row input {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0;
}

.upi-inline-error {
    margin: -2px 0 0;
    color: #b42318;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.upi-generate-btn,
.upi-done-btn {
    width: 100%;
    min-height: 48px;
    text-align: center;
}

.upi-payment-result {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.upi-payment-note {
    margin: 0 0 -2px;
    color: #51647a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.upi-copy-list {
    display: grid;
    gap: 10px;
}

.upi-backup-options {
    border: 1px solid #e4edf6;
    border-radius: 14px;
    background: #ffffff;
    text-align: left;
}

.upi-backup-options summary {
    cursor: pointer;
    padding: 13px 14px;
    color: #27364a;
    font-size: 14px;
    font-weight: 800;
    list-style-position: inside;
}

.upi-backup-options .upi-copy-list {
    padding: 0 12px 12px;
}

.upi-copy-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 11px 12px;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    background: #ffffff;
    text-align: left;
}

.upi-copy-list span {
    grid-column: 1 / -1;
    color: #607086;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.upi-copy-list strong {
    min-width: 0;
    color: #14213d;
    font-size: 15px;
    overflow-wrap: break-word;
    word-break: normal;
}

.upi-copy-btn {
    flex: 0 0 auto;
    border: 1px solid #cbe3f8;
    border-radius: 8px;
    background: #eef7ff;
    color: #006aa6;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 9px;
}

.upi-qr-card,
.upi-id-card {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    text-align: center;
    border: 1px solid #e4edf6;
    border-radius: 16px;
    background: #f8fbff;
    padding: 18px 16px;
}

.upi-qr-card h6,
.upi-id-card h6 {
    margin: 0;
    color: #14213d;
    font-size: 18px;
    font-weight: 800;
}

.upi-qr-card > strong,
.upi-id-card > strong {
    color: var(--grb-accent-color, #0b84d8);
    font-size: 20px;
    font-weight: 800;
}

.upi-qr-label {
    color: #607086;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.upi-qr-code {
    width: 178px;
    min-height: 178px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 1px solid #d8e2ee;
    border-radius: 14px;
    background: #ffffff;
}

.upi-qr-code canvas,
.upi-qr-code img {
    max-width: 158px;
    max-height: 158px;
}

.upi-uploaded-qr-standalone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px solid #d8e8f8;
    border-radius: 16px;
    background: #f8fbff;
}

.upi-uploaded-qr-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.upi-uploaded-qr-copy span {
    color: #607086;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.upi-uploaded-qr-copy strong {
    color: #14213d;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.upi-uploaded-qr-frame {
    display: grid;
    place-items: center;
    width: 210px;
    min-height: 210px;
    padding: 12px;
    border: 1px solid #d8e2ee;
    border-radius: 14px;
    background: #ffffff;
}

.upi-uploaded-qr-frame img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
}

.upi-uploaded-qr-card {
    width: 100%;
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 12px;
    border: 1px solid #d8e2ee;
    border-radius: 14px;
    background: #ffffff;
}

.upi-uploaded-qr-card strong {
    color: #14213d;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.upi-uploaded-qr-card img {
    width: min(160px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 10px;
}

.upi-direct-payment-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.15fr);
    gap: 18px;
    align-items: start;
}

.upi-direct-payment-layout.without-direct-qr {
    grid-template-columns: minmax(0, 620px);
    justify-content: center;
}

.upi-direct-payment-layout.only-direct-qr {
    grid-template-columns: minmax(260px, 380px);
    justify-content: center;
}

.upi-direct-payment-layout.single-payment-detail {
    grid-template-columns: minmax(230px, 0.88fr) minmax(260px, 1.12fr);
}

.upi-direct-payment-layout.without-direct-qr.single-payment-detail,
.upi-direct-payment-layout.without-direct-qr.has-multiple-details {
    grid-template-columns: minmax(0, 620px);
}

.upi-direct-qr-card,
.upi-additional-payment {
    min-width: 0;
    border: 1px solid #d8e8f8;
    border-radius: 14px;
    background: #f8fbff;
}

.upi-direct-qr-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 18px;
    text-align: center;
}

.upi-direct-qr-card > strong {
    color: #14213d;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.upi-direct-qr-frame {
    display: grid;
    place-items: center;
    width: min(220px, 100%);
    aspect-ratio: 1 / 1;
    padding: 12px;
    border: 1px solid #d8e2ee;
    border-radius: 14px;
    background: #ffffff;
}

.upi-direct-qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.upi-additional-payment {
    overflow: hidden;
}

.upi-additional-payment summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 0 16px;
    cursor: pointer;
    list-style: none;
    color: #14213d;
    font-size: 15px;
    font-weight: 900;
}

.upi-additional-payment summary::-webkit-details-marker {
    display: none;
}

.upi-additional-payment.is-single-detail summary {
    cursor: default;
}

.upi-additional-payment.is-single-detail .upi-additional-icon {
    display: none;
}

.upi-additional-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e8f4ff;
    color: var(--grb-accent-color, #0b84d8);
    font-size: 13px;
    transition: transform 0.2s ease;
}

.upi-additional-payment[open] .upi-additional-icon {
    transform: rotate(45deg);
}

.upi-additional-payment-body {
    display: grid;
    gap: 10px;
    max-height: 330px;
    overflow-y: auto;
    padding: 0 16px 16px;
    scrollbar-width: thin;
}

.upi-additional-payment.is-single-detail .upi-additional-payment-body {
    max-height: none;
    overflow: visible;
}

.upi-payment-subdetail {
    overflow: hidden;
    border: 1px solid #e2edf8;
    border-radius: 12px;
    background: #ffffff;
}

.upi-payment-subdetail > summary {
    min-height: 46px;
    padding: 0 12px;
    color: #244663;
    font-size: 13px;
}

.upi-payment-subdetail > summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #eef7ff;
    color: var(--grb-accent-color, #0b84d8);
    font-weight: 900;
}

.upi-payment-subdetail[open] > summary::after {
    content: "-";
}

.upi-additional-group {
    display: grid;
    gap: 9px;
    padding: 0 12px 12px;
}

.upi-additional-group.is-direct-detail {
    padding: 0;
}

.upi-additional-group h6 {
    margin: 0;
    color: #42536a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.upi-additional-payment .upi-copy-list {
    gap: 8px;
}

.upi-additional-payment .upi-copy-item {
    min-height: 48px;
    padding: 9px 10px;
    border-color: #e5eef7;
    border-radius: 10px;
}

.upi-additional-payment .upi-copy-list span {
    font-size: 10px;
}

.upi-additional-payment .upi-copy-list strong {
    font-size: 14px;
}

.upi-additional-payment .upi-copy-btn {
    min-width: 54px;
    padding: 6px 8px;
}

.upi-qr-card .upi-qr-download,
.upi-uploaded-qr-panel .upi-qr-download,
.upi-direct-payment-panel .upi-qr-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto;
    min-width: 132px;
    min-height: 36px;
    margin: 4px auto 0;
    padding: 8px 14px;
    border: 1px solid #cbe3f8;
    border-radius: 8px;
    background: #ffffff;
    color: var(--grb-accent-color, #0b84d8);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
}

.upi-qr-card .upi-qr-download:hover,
.upi-qr-card .upi-qr-download:focus,
.upi-qr-card .upi-qr-download:active,
.upi-uploaded-qr-panel .upi-qr-download:hover,
.upi-uploaded-qr-panel .upi-qr-download:focus,
.upi-uploaded-qr-panel .upi-qr-download:active,
.upi-direct-payment-panel .upi-qr-download:hover,
.upi-direct-payment-panel .upi-qr-download:focus,
.upi-direct-payment-panel .upi-qr-download:active {
    border-color: #b7d8f3;
    background: #ffffff;
    color: var(--grb-accent-color, #0b84d8);
}

.disabled-link {
    pointer-events: none;
    opacity: 0.55;
}

.upi-whatsapp-receipt {
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border: 1px solid #ffcc80;
    border-radius: 14px;
    background: #fff8ef;
}

.upi-whatsapp-btn,
.upi-submit-btn {
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
}

.upi-receipt-form {
    padding: 16px;
    border: 1px solid #d7e7f6;
    border-radius: 16px;
    background: #ffffff;
}

.upi-receipt-actions {
    margin-top: 14px;
}

.upi-payment-receipt-actions {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e4edf6;
}

.upi-payment-done-note {
    margin: 0;
    color: #607086;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.upi-payment-done-btn,
.upi-whatsapp-receipt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(260px, 100%);
    min-width: 0;
    min-height: 42px;
    text-decoration: none;
}

.upi-payment-done-btn.is-whatsapp,
.upi-whatsapp-receipt-btn {
    background: #16a34a;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.22);
}

.upi-payment-done-btn.is-whatsapp:hover,
.upi-whatsapp-receipt-btn:hover {
    background: #15803d;
    color: #ffffff;
}

.upi-payment-receipt-box {
    width: min(520px, 100%);
    margin-top: 2px;
    padding: 14px;
    border: 1px solid #d8e8f8;
    border-radius: 14px;
    background: #f8fbff;
    text-align: left;
}

.upi-payment-receipt-box h6 {
    margin: 0 0 12px;
    color: #14213d;
    font-size: 14px;
    font-weight: 900;
}

.upi-payment-receipt-form {
    display: grid;
    gap: 12px;
}

.upi-payment-receipt-form label {
    display: block;
    margin-bottom: 5px;
    color: #42536a;
    font-size: 12px;
    font-weight: 800;
}

.is-hidden {
    display: none !important;
}

.upi-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.upi-form-full {
    grid-column: 1 / -1;
}

.upi-receipt-form .form-control {
    min-height: 44px;
    border-radius: 10px;
}

.upi-submit-btn {
    margin-top: 14px;
}

.socialmedia {
    padding: 0;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    width: 100%;
    min-height: 72px;
    margin-top: 10px;
    padding: 12px 14px;
    background: #f8fbff;
    border: 1px solid #e4edf6;
    border-radius: 16px;
}

.social-icon {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #27364a;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.social-link {
    min-width: 132px;
    text-decoration: none;
}

.social-link .view-button {
    width: 100%;
}

.social-icon img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    object-fit: contain;
}

.social-font-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f4ff;
    color: var(--grb-accent-color, #0b84d8);
    font-size: 22px;
}

.social-font-icon.fa-whatsapp {
    background: #e9fbf1;
    color: #25d366;
}

.social-font-icon.fa-telegram {
    background: #e8f6fd;
    color: #229ed9;
}

.social-font-icon.fa-linkedin {
    background: #e8f1fb;
    color: #0a66c2;
}

.social-font-icon.fa-x-twitter {
    background: #eef2f7;
    color: #111827;
}

.social-font-icon.fa-snapchat {
    background: #fff8d7;
    color: #d9a600;
}

.social-font-icon.fa-pinterest {
    background: #fde8ed;
    color: #e60023;
}

.social-font-icon.fa-threads {
    background: #eef2f7;
    color: #111827;
}

.social-font-icon.fa-comments {
    background: #fff3e8;
    color: #f97316;
}

.social-font-icon.fa-video {
    background: #fce7f3;
    color: #db2777;
}

.social-font-icon.fa-facebook-messenger {
    background: #e7f2ff;
    color: #0084ff;
}

.review-footer-wrap {
    flex-shrink: 0;
    width: min(880px, calc(100% - 28px));
    margin: 0 auto 18px;
}

.container-footer.review-footer {
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.review-footer .footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    font-weight: 600;
}

.review-footer-content {
    display: grid;
    gap: 12px;
}

.review-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 44px;
}

.review-footer .footer-address {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.45;
}

.review-footer .footer-address span {
    overflow-wrap: anywhere;
}

.whatsapp-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    margin: 0;
    padding: 12px 16px;
    border-radius: 999px;
    background: #20b15a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(32, 177, 90, 0.28);
}

body:has(.fixed-footer-nav) .public-review-page {
    padding-bottom: 70px;
}

body:has(.fixed-footer-nav) .public-review-page .whatsapp-button {
    bottom: 82px;
}

@media (max-width: 700px) {
    .review-hero {
        grid-template-columns: 1fr;
        min-height: 176px;
        height: auto !important;
        gap: 10px;
        justify-items: center;
        padding: 18px 16px 52px;
        text-align: center;
    }

    .review-hero::after {
        inset: auto -18% -62% 22%;
        height: 140px;
        transform: rotate(-8deg);
    }

    .review-logo-card {
        justify-self: center;
        width: 76px;
        padding: 7px;
        border-radius: 12px;
    }

    .review-hero-content {
        justify-self: center;
        max-width: 100%;
        text-align: center;
    }

    .review-hero-title {
        font-size: 24px;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .review-hero-subtitle {
        margin-top: 6px;
        font-size: 12px;
    }

    .review-page-main {
        width: min(420px, calc(100% - 28px));
        margin-top: -34px;
        gap: 12px;
    }

    .review-panel {
        border-radius: 16px;
        padding: 18px 16px;
    }

    .review-question {
        font-size: 18px;
        line-height: 1.25;
    }

    .star {
        font-size: 32px;
    }

    .social-content {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding: 14px 12px;
        margin-top: 10px;
    }

    .social-icon {
        align-items: center;
        font-size: 15px;
        line-height: 1.35;
    }

    .social-link {
        width: 100%;
        min-width: 0;
    }

    .view-button,
    .submit-button {
        width: 100%;
        padding: 10px 18px;
    }

    .upi-payment-header,
    .online-payment-header {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 10px;
    }

    .upi-whatsapp-receipt {
        align-items: stretch;
        flex-direction: column;
    }

    .upi-payment-header p,
    .online-payment-header p {
        line-height: 1.45;
    }

    .upi-method-pill {
        justify-self: end;
    }

    .upi-payment-start {
        margin-top: 2px;
        padding: 14px;
        border-radius: 14px;
    }

    .upi-amount-row {
        min-height: 58px;
        padding: 0 14px;
    }

    .upi-amount-row input {
        font-size: 16px;
    }

    .upi-qr-card,
    .upi-id-card {
        padding: 16px 12px;
    }

    .upi-uploaded-qr-standalone {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        padding: 14px;
        text-align: center;
    }

    .upi-uploaded-qr-frame {
        width: min(210px, 100%);
        min-height: 0;
    }

    .upi-uploaded-qr-frame img {
        width: min(180px, 100%);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .upi-direct-payment-layout {
        grid-template-columns: 1fr;
    }

    .upi-direct-qr-card {
        padding: 14px;
    }

    .upi-direct-qr-frame {
        width: min(230px, 100%);
    }

    .upi-additional-payment summary {
        min-height: 54px;
        padding: 0 14px;
    }

    .upi-additional-payment-body {
        padding: 0 14px 14px;
    }

    .upi-form-grid {
        grid-template-columns: 1fr;
    }

    .upi-copy-item {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        min-height: 50px;
        padding: 9px 10px;
    }

    .upi-copy-list span {
        grid-column: 1 / -1;
        font-size: 10px;
    }

    .upi-copy-list strong {
        font-size: 13px;
    }

    .upi-copy-btn {
        width: auto;
        min-width: 50px;
        justify-self: end;
        padding: 6px 8px;
    }

    .upi-payment-done-btn,
    .upi-whatsapp-receipt-btn {
        width: min(260px, 100%);
    }

    .upi-payment-receipt-box {
        padding: 12px;
    }

    .review-footer-links {
        align-items: center;
        flex-direction: column;
        gap: 10px !important;
    }

    .review-footer .footer-address {
        text-align: center;
    }

    .review-footer-wrap {
        width: min(420px, calc(100% - 28px));
        margin-bottom: 18px;
    }

    .whatsapp-button {
        right: 12px;
        bottom: 12px;
    }

    body:has(.fixed-footer-nav) .public-review-page .whatsapp-button {
        bottom: 78px;
    }

    .whatsapp-button a {
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-button span {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-hero {
        padding: 16px 14px 48px;
    }

    .review-logo-card {
        width: 72px;
    }

    .review-hero-title {
        font-size: 22px;
    }

    .review-page-main {
        width: calc(100% - 28px);
    }

    .review-panel {
        padding: 16px 14px;
    }

    .review-social-title {
        font-size: 16px !important;
        line-height: 1.3;
    }

    .star-rating {
        gap: 4px;
    }

    .star {
        font-size: 31px;
    }

    .upi-payment-header,
    .online-payment-header {
        grid-template-columns: 1fr;
    }

    .upi-method-pill {
        justify-self: start;
    }

    .online-payment-card {
        grid-template-columns: 1fr;
    }

    .online-payment-combo-card,
    .online-payment-combo-card.has-qr-and-link {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 16px;
        text-align: center;
        justify-items: center;
    }

    .online-payment-link-side {
        justify-items: center;
        text-align: center;
    }

    .online-payment-divider {
        width: 100%;
        min-height: 1px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(11, 132, 216, 0.28), transparent);
    }

    .online-payment-qr-frame {
        justify-self: center;
        width: min(220px, 100%);
        height: auto;
        aspect-ratio: 1;
    }

    .online-payment-qr-download {
        justify-self: stretch;
    }

    .online-payment-btn {
        width: 100% !important;
        max-width: 260px;
    }
}
.review-pending-box {
    width: min(560px, calc(100% - 32px));
    margin: 72px auto;
    padding: 34px;
    border: 1px solid #d8eaf7;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 24px 60px rgba(9, 63, 125, 0.12);
}

.review-pending-box .icon-circle {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff7ed;
    color: #f26a00;
    font-size: 28px;
    margin-bottom: 16px;
}

.review-pending-box .review-title {
    color: #093f7d;
    font-size: 27px;
    font-weight: 800;
    margin: 0 0 10px;
}

.review-pending-box .review-text {
    color: #627084;
    line-height: 1.65;
    margin: 0 auto 20px;
    max-width: 430px;
}

.review-pending-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.review-pending-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #eef7ff;
    color: #093f7d;
    font-weight: 800;
    text-decoration: none;
}

.review-pending-actions a:first-child {
    background: linear-gradient(135deg, #ff8a00, #f26a00);
    color: #ffffff;
}

.upi-qr-card button.upi-qr-download {
    width: auto !important;
    min-width: 132px;
    max-width: max-content;
    min-height: 36px;
    margin: 4px auto 0 !important;
    padding: 8px 14px !important;
    border: 1px solid #cbe3f8 !important;
    border-radius: 8px;
    background: #ffffff !important;
    color: var(--grb-accent-color, #0b84d8) !important;
    box-shadow: none !important;
}
