body {
    background-color: var(--body--color);
}

/* ===== PAGE WRAPPER ===== */
.str-li-page {
    position: relative;
    width: 100%;
    padding-top: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 80vh;
}

/* ===== DECORATIVE BLOBS ===== */
.str-li-blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.str-li-blob--a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--primary--light) 0%, transparent 68%);
    top: -160px;
    right: -160px;
    opacity: 0.55;
}

.str-li-blob--b {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--primary--light-1) 0%, transparent 68%);
    bottom: -100px;
    left: -100px;
    opacity: 0.35;
}

/* ===== CARD ===== */
.str-li-card {
    position: relative;
    z-index: 1;
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(250, 203, 203, 0.09), 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 38px 28px 32px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    animation: str-li-fadein 0.4s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes str-li-fadein {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BRAND ===== */
.str-li-brand {
    text-align: center;
    margin-bottom: 28px;
}

.str-li-brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary--dark-3);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.str-li-brand-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== ERROR BANNERS ===== */
.str-li-error-banner,
.str-li-locked-banner {
    display: none;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    animation: str-li-banner-in 0.25s ease;
}

.str-li-error-banner.str-li-show,
.str-li-locked-banner.str-li-show {
    display: flex;
}

.str-li-error-banner {
    background: var(--danger--light);
    color: var(--danger--dark);
    border-left: 3px solid var(--danger);
}

.str-li-locked-banner {
    background: var(--warning--light);
    color: var(--warning--dark);
    border-left: 3px solid var(--warning);
}

.str-li-error-banner .material-icons-round,
.str-li-locked-banner .material-icons-round {
    font-size: 20px !important;
    flex-shrink: 0;
    margin-top: 1px;
}

.str-li-locked-banner p {
    margin: 0;
    line-height: 1.6;
}

.str-main-error-time {
    display: inline-block;
    background: var(--warning);
    color: var(--primary--text);
    padding: 0px 8px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-left: 2px;
}

@keyframes str-li-banner-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FORGOT LINK ===== */
.str-li-forgot {
    text-align: right;
    margin-top: -4px;
    margin-bottom: 6px;
}

.str-li-forgot-link {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.str-li-forgot-link:hover {
    border-bottom-color: var(--primary);
}

/* ===== PASSWORD EYE ===== */
.str-li-pass-wrap {
    position: relative;
}

.str-li-pass-wrap .str-input {
    padding-right: 44px !important;
}

.str-li-eye {
    position: absolute;
    right: 12px;
    top: 35px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 1;
}

.str-li-eye:hover {
    color: var(--primary);
}

.str-li-eye .material-icons-round {
    font-size: 20px !important;
}

.str-li-eye-icon-on {
    display: none;
}

/* ===== LOG IN BUTTON ===== */
.str-li-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 11px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.02em;
    transition: box-shadow 0.2s, transform 0.15s, opacity 0.2s;
    cursor: pointer;
}

/* ===== DIVIDER ===== */
.str-li-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 14px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.str-li-divider::before,
.str-li-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* ===== CREATE ACCOUNT LINK ===== */
.str-li-create-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 48px;
    background: var(--primary--light);
    color: var(--primary);
    border: 1.5px solid var(--primary--light-2);
    border-radius: 11px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
}

.str-li-create-link:hover {
    background: var(--primary--light-1);
    border-color: var(--primary--light-3);
}

.str-li-create-link .material-icons-round {
    font-size: 18px !important;
}

/* ===== RESET / CHANGE PASSWORD SHARED ===== */
.str-rp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary--light);
    margin: 0 auto 14px;
}

.str-rp-icon .material-icons-round {
    font-size: 26px !important;
    color: var(--primary);
}

/* ===== RESET PASSWORD: info banner ===== */
.str-rp-info {
    display: none;
    align-items: flex-start;
    gap: 10px;
    background: var(--success--light);
    color: var(--success--dark);
    border-left: 3px solid var(--success);
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    animation: str-li-banner-in 0.25s ease;
}

.str-rp-info .material-icons-round {
    font-size: 20px !important;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== RESET PASSWORD: WhatsApp notice link ===== */
.smb-rp-wa-link {
    display: inline-block;
    margin-top: 5px;
    font-weight: 700;
    color: var(--success--dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.smb-rp-wa-link:hover {
    color: var(--success);
}

/* ===== RESET PASSWORD: back link ===== */
.str-rp-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.str-rp-back:hover {
    color: var(--primary);
}

.str-rp-back .material-icons-round {
    font-size: 17px !important;
}

/* ===== CHANGE PASSWORD: error/success banner ===== */
.str-rp-error-banner {
    display: none;
    align-items: flex-start;
    gap: 10px;
    background: var(--danger--light);
    color: var(--danger--dark);
    border-left: 3px solid var(--danger);
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    animation: str-li-banner-in 0.25s ease;
}

.str-rp-banner-icon {
    font-size: 20px !important;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== CHANGE PASSWORD: password wrap + eye ===== */
.str-rp-pass-wrap {
    position: relative;
}

.str-rp-pass-wrap .str-input {
    padding-right: 44px !important;
}

.str-rp-eye {
    position: absolute;
    right: 12px;
    top: 35px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 1;
}

.str-rp-eye:hover {
    color: var(--primary);
}

.str-rp-eye .material-icons-round {
    font-size: 20px !important;
}

.str-rp-eye-on {
    display: none;
}

/* ===== TRUST STRIP ===== */
.str-li-trust {
    width: 100%;
    background: black;
    border-top: 3px solid var(--primary);
    padding: 28px 20px;
    box-sizing: border-box;
}

.str-li-trust-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    align-items: center;
}

.str-li-trust-divider {
    display: none; 
}

.str-li-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.str-li-trust-item .material-icons-round {
    font-size: 26px !important;
    color: var(--primary);
    flex-shrink: 0;
}

.str-li-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.str-li-trust-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

.str-li-trust-sub {
    font-size: 0.72rem;
    color: #8a8a9a;
    line-height: 1.3;
}body {
    background-color: var(--body--color);
}

/* ===== PAGE WRAPPER ===== */
.str-su-page {
    position: relative;
    width: 100%;
    padding-top: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 80vh;
}

/* ===== DECORATIVE BLOBS ===== */
.str-su-blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.str-su-blob--a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--primary--light) 0%, transparent 68%);
    top: -160px;
    right: -160px;
    opacity: 0.55;
}

.str-su-blob--b {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--primary--light-1) 0%, transparent 68%);
    bottom: -100px;
    left: -100px;
    opacity: 0.35;
}

/* ===== CARD ===== */
.str-su-card {
    position: relative;
    z-index: 1;
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(250, 203, 203, 0.09), 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 38px 28px 32px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.str-su-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
   /* background: linear-gradient(90deg, var(--primary) 0%, var(--primary--light-4) 100%); */
}

/* ===== BRAND ===== */
.str-su-brand {
    text-align: center;
    margin-bottom: 26px;
}

.str-su-brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary--dark-3);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.str-su-brand-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== STEP PROGRESS ===== */
.str-su-steps {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.str-su-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.str-su-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--light);
    transition: border-color 0.35s, background 0.35s, color 0.35s, box-shadow 0.35s;
}

.str-su-step-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s;
}

.str-su-step--active .str-su-step-dot {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 5px var(--primary--light);
}

.str-su-step--active .str-su-step-label {
    color: var(--primary);
}

.str-su-step--done .str-su-step-dot {
    border-color: var(--primary);
    background: var(--primary--light);
    color: var(--primary);
}

.str-su-step--done .str-su-step-label {
    color: var(--primary);
}

.str-su-step-track {
    flex: 1;
    height: 3px;
    background: var(--border-light);
    margin: 0 10px;
    margin-bottom: 18px;
    border-radius: 3px;
    overflow: hidden;
}

.str-su-step-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary--light-4) 100%);
    border-radius: 3px;
    transition: width 0.45s cubic-bezier(.4, 0, .2, 1);
}

/* ===== PANE ANIMATIONS ===== */
.str-su-pane--hidden {
    display: none;
}

.str-su-pane--enter-right {
    animation: str-su-in-right 0.35s cubic-bezier(.4, 0, .2, 1) forwards;
}

.str-su-pane--enter-left {
    animation: str-su-in-left 0.35s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes str-su-in-right {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes str-su-in-left {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== PANE HEADING ===== */
.str-su-pane-head {
    margin-bottom: 20px;
}

.str-su-pane-head h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-default);
    margin-bottom: 4px;
}

.str-su-pane-head p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== PHONE INPUT ROW ===== */
.str-su-phone-row {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-gray) !important;
    border-radius: 10px !important;
    overflow: hidden;
    background: var(--light);
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.str-su-phone-row:focus-within {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px var(--primary--light);
}

.str-su-phone-row .str-input {
    border: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    flex: 1;
    height: 52px;
    padding: 0 14px !important;
    background: transparent;
    outline: none !important;
    font-size: 1rem;
}

.str-su-country {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    background: var(--gray--light);
    border-right: 1.5px solid var(--border-gray);
    height: 52px;
    flex-shrink: 0;
    user-select: none;
}

.str-su-flag {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.str-su-flag img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.str-su-dialcode {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-default);
}

/* ===== PHONE CUSTOM ERROR ===== */
.str-su-phone-error {
    display: none;
    font-size: 0.8rem;
    color: var(--danger--dark);
    background: var(--danger--light);
    border-left: 3px solid var(--danger);
    padding: 6px 12px;
    border-radius: 0 7px 7px 0;
    margin-top: -8px;
    margin-bottom: 8px;
    animation: str-su-err-in 0.2s ease;
}

.str-su-phone-error.visible {
    display: block;
}

.str-su-phone-row--error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px var(--danger--light) !important;
}

@keyframes str-su-err-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== INVITE TOGGLE ===== */
.str-su-invite-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: var(--primary--light);
    border-radius: 9px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
    border: 1px solid var(--primary--light-2);
}

.str-su-invite-toggle:hover {
    background: var(--primary--light-1);
}

.str-su-invite-toggle span {
    font-size: 0.875rem;
    font-weight: normal;
    color: var(--primary);
}

.str-su-invite-chevron {
    color: var(--primary);
    font-size: 20px !important;
    transition: transform 0.3s ease;
}

.str-su-invite-chevron.open {
    transform: rotate(180deg);
}

/* ===== INVITE BODY (collapse) ===== */
.str-su-invite-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.38s ease, opacity 0.3s ease;
}

.str-su-invite-body.open {
    max-height: 140px;
    opacity: 1;
}

.str-su-invite-body .str-input:disabled {
    background: var(--gray--light);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.85;
}

/* ===== BUTTONS ===== */
.str-su-btn-next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 11px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px rgba(183, 1, 1, 0.22);
    transition: box-shadow 0.2s, transform 0.15s, opacity 0.2s;
    cursor: pointer;
}

.str-su-btn-next:hover {
    box-shadow: 0 6px 26px rgba(183, 1, 1, 0.3);
}

.str-su-btn-next:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(183, 1, 1, 0.2);
}

.str-su-btn-next .material-icons {
    font-size: 20px !important;
}

.str-su-btn-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 11px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 0.02em;
    transition: box-shadow 0.2s, transform 0.15s, opacity 0.2s;
    cursor: pointer;
}

/* ===== LEGAL TEXT ===== */
.str-su-legal {
    text-align: center;
    font-size: 0.775rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.str-su-legal-link {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.str-su-legal-link:hover {
    border-bottom-color: var(--primary);
}

/* ===== ALT LINK ===== */
.str-su-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== BACK BUTTON ===== */
.str-su-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 4px 0;
    margin-bottom: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.str-su-back:hover {
    color: var(--primary);
}

.str-su-back .material-icons {
    font-size: 18px !important;
}

/* ===== PASSWORD EYE TOGGLE ===== */
.str-su-pass-wrap {
    position: relative;
}

.str-su-pass-wrap .str-input {
    padding-right: 44px !important;
}

.str-su-eye {
    position: absolute;
    right: 12px;
    top: 35px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 1;
}

.str-su-eye:hover {
    color: var(--primary);
}

.str-su-eye .material-icons {
    font-size: 20px !important;
}

.str-su-eye-icon-on {
    display: none;
}

/* ===== TRUST STRIP (shared with login) ===== */
.str-li-trust {
    width: 100%;
    background: #0f0f12;
    border-top: 3px solid var(--primary);
    padding: 28px 20px;
    box-sizing: border-box;
}

.str-li-trust-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    align-items: center;
}

.str-li-trust-divider {
    display: none;
}

.str-li-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.str-li-trust-item .material-icons-round {
    font-size: 26px !important;
    color: var(--primary);
    flex-shrink: 0;
}

.str-li-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.str-li-trust-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

.str-li-trust-sub {
    font-size: 0.72rem;
    color: #8a8a9a;
    line-height: 1.3;
}

/* ===== INFLUENCER PROMO SECTION ===== */
.str-su-promo {
    background: linear-gradient(135deg, var(--primary--light) 0%, var(--primary--light-1) 100%);
    border-radius: 16px;
    padding: 18px 18px 14px;
    border: 1px solid var(--primary--light-2);
    margin-bottom: 6px;
}

.str-su-promo-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.str-su-promo-photo-box {
    position: relative;
    flex-shrink: 0;
}

.str-su-promo-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light);
    box-shadow: 0 2px 10px rgba(183, 1, 1, 0.18);
    display: block;
}

.str-su-promo-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.str-su-promo-verified .material-icons-round {
    font-size: 13px !important;
    color: var(--light);
}

.str-su-promo-copy {
    flex: 1;
    min-width: 0;
}

.str-su-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary);
    color: var(--light);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 10px 3px 7px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.str-su-promo-pill .material-icons-round {
    font-size: 13px !important;
}

.str-su-promo-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-default);
    line-height: 1.3;
    margin-bottom: 3px;
}

.str-su-promo-name {
    color: var(--primary);
}

.str-su-promo-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* benefits strip */
.str-su-promo-benefits {
    display: flex;
    gap: 8px;
}

.str-su-promo-benefit {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: var(--light);
    border-radius: 10px;
    padding: 9px 6px;
    border: 1px solid var(--primary--light-2);
    text-align: center;
}

.str-su-promo-benefit .material-icons-round {
    font-size: 20px !important;
    color: var(--primary);
}

.str-su-promo-benefit span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-default);
    line-height: 1.3;
}

.str-su-promo-divider {
    height: 1px;
    background: var(--border-light);
    margin: 22px 0;
}
