/* LYNY loyalty status — profile + cart */

.profile-loyalty.loyalty-card,
.cart-loyalty-status {
    font-family: inherit;
}

.loyalty-card {
    margin-bottom: 24px;
    padding: 20px 22px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
}

.loyalty-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.loyalty-card__title {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
}

.loyalty-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.loyalty-badge--preferred {
    background: #eef7ee;
    color: #1a7f37;
}

.loyalty-badge--active {
    background: #eef3fb;
    color: #1f4f99;
}

.loyalty-badge--starter {
    background: #fff4e8;
    color: #b45309;
}

.loyalty-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.loyalty-stat__value {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
}

.loyalty-stat__label {
    margin-top: 4px;
    font-size: 12px;
    color: #777;
}

.loyalty-stat--success .loyalty-stat__value {
    color: #1a7f37;
}

.loyalty-stat--warn .loyalty-stat__value {
    color: #b45309;
}

.loyalty-bar {
    height: 8px;
    border-radius: 999px;
    background: #eceff1;
    overflow: hidden;
}

.loyalty-bar__fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.2s ease;
}

.loyalty-bar--green .loyalty-bar__fill { background: #2e7d32; }
.loyalty-bar--blue .loyalty-bar__fill { background: #2563eb; }
.loyalty-bar--yellow .loyalty-bar__fill { background: #ca8a04; }
.loyalty-bar--orange .loyalty-bar__fill { background: #ea580c; }

.loyalty-bar__labels {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.loyalty-headline {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.loyalty-next {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
    line-height: 1.45;
}

.loyalty-divider {
    margin: 18px 0 14px;
    border-top: 1px solid #ececec;
}

.loyalty-cycle-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.loyalty-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.loyalty-step {
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
}

.loyalty-step--active {
    border-color: #111;
    background: #f7f7f7;
}

.loyalty-step--done {
    opacity: 0.72;
}

.loyalty-step__name {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.loyalty-step__title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.loyalty-step__desc {
    margin-top: 2px;
    font-size: 12px;
    color: #666;
}

.loyalty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.loyalty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.loyalty-btn--primary {
    background: #111;
    color: #fff;
}

.loyalty-btn--ghost {
    color: #111;
    border: 1px solid #ddd;
    background: #fff;
}

/* Cart sidebar status card */
.cart-loyalty-status {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.cart_bottom_row > .col-md-12 {
    margin-bottom: 16px;
}

.cart_bottom_row > .col-md-12:last-child {
    margin-bottom: 0;
}

.cart-loyalty-status__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 10px 0 14px;
}

.cart-loyalty-status__label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
}

.cart-loyalty-status__name {
    margin-top: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.cart-loyalty-status__name .loyalty-badge {
    font-size: 13px;
    font-weight: 600;
}

.cart-loyalty-status__percent-wrap {
    flex-shrink: 0;
    text-align: right;
}

.cart-loyalty-status__percent {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    white-space: nowrap;
}

.cart-loyalty-status__percent--active {
    color: #1a7f37;
}

.cart-loyalty-status__sublabel {
    margin-top: 4px;
    font-size: 12px;
    color: #777;
}

.cart_bottom_row .loyalty-bar {
    margin-top: 2px;
}

.cart-loyalty-status__headline {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
}

.cart-loyalty-status__next {
    margin-top: 4px;
    font-size: 13px;
    color: #666;
    line-height: 1.45;
}

.cart_total_box .cart-tax-row span:first-child {
    max-width: 68%;
    padding-right: 10px;
    line-height: 1.35;
}

.cart_total_box.cart-amazon-totals p,
.cart_total_box.cart-amazon-totals .total_cart,
.cart_total_box.cart-amazon-totals .total_cart_full {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #565959;
}

.cart_total_box.cart-amazon-totals p {
    margin: 3px 0;
}

.cart_total_box.cart-amazon-totals .cart-loyalty-savings-row,
.cart_total_box.cart-amazon-totals .cart-loyalty-savings-row span,
.cart_total_box.cart-amazon-totals .cart-loyalty-savings-row .total_cart {
    font-size: 14px;
    font-weight: 600;
    color: #0f1111;
}

.cart_total_box .cart-order-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e7e7e7;
}

.cart_total_box.cart-amazon-totals .cart-order-total,
.cart_total_box.cart-amazon-totals .cart-order-total span,
.cart_total_box.cart-amazon-totals .cart-order-total .total_cart_full {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #0f1111;
}

.cart_total_box .cart-loyalty-total-row {
    margin-bottom: 0;
}

.cart_total_box .cart-loyalty-savings-row {
    margin-bottom: 4px;
}

.cart_total_box .cart-loyalty-savings-row span:last-child {
    color: #1a7f37;
    font-weight: 400;
    white-space: nowrap;
}

.cart-loyalty-line-note {
    display: block;
    margin: 8px 0 0;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: #777;
}

.cart_item_text .cart-loyalty-line-note,
.cart_chars + .cart-loyalty-line-note {
    margin-left: 0;
}

.cart-loyalty-line-note--active {
    padding: 3px 10px;
    color: #1a7f37;
    background: #eef7ee;
    border-radius: 999px;
}

/* Account popup — FOR YOU loyalty card */
.acc-loyalty-popup {
    display: block;
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 0;
    background: #fff;
    font-family: InvolveRegular, sans-serif;
    font-weight: normal;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease;
}

.acc-loyalty-popup:hover,
.acc-loyalty-popup:focus {
    border-color: rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.acc-loyalty-popup__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

#acc_welcome .acc-loyalty-popup .loyalty-badge {
    font-family: InvolveSemiBold, sans-serif;
    font-size: 0.75rem;
    font-weight: normal;
    letter-spacing: 0.04em;
}

.acc-loyalty-popup__percent {
    font-family: InvolveSemiBold, sans-serif;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1;
    color: #111;
}

.acc-loyalty-popup__percent--active {
    color: #1a7f37;
}

.acc-loyalty-popup__headline {
    font-family: InvolveRegular, sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    color: #111;
    line-height: 1.35;
}

.acc-loyalty-popup__next {
    margin-top: 2px;
    font-family: InvolveRegular, sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.35;
    color: inherit;
    opacity: 0.5;
}

.acc-loyalty-popup__bar {
    margin-top: 8px;
}

.acc-loyalty-popup__labels,
#acc_welcome .acc-loyalty-popup .loyalty-bar__labels {
    margin-top: 4px;
    font-family: InvolveRegular, sans-serif;
    font-size: 0.75rem;
    font-weight: normal;
    opacity: 0.5;
}

.acc-loyalty-popup__cta {
    display: inline-block;
    margin-top: 8px;
    font-family: InvolveRegular, sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    color: #111;
}

.acc-loyalty-popup__cta::after {
    content: " →";
}

#acc_welcome .acc-loyalty-popup {
    margin-top: 0;
}

#acc_welcome.is-compact .acc-welcome-hidden,
#acc_welcome.is-compact .new_acc_title,
#acc_welcome.is-compact .welcome_title,
#acc_welcome.is-compact .account_modal_title,
#acc_welcome.is-compact .new_account_welcome {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#acc_welcome.is-compact .new_acc_slider_title,
#acc_welcome.is-compact .welcome_brand_title {
    margin-top: 0;
    margin-bottom: 8px;
    font-family: InvolveRegular, sans-serif;
    font-size: 0.75rem;
    font-weight: normal;
    opacity: 0.5;
}

#acc_welcome.is-compact .new_acc_menu a,
#acc_welcome.is-compact .new_acc_menu > div {
    padding-top: 10px;
    padding-bottom: 10px;
}

#acc_welcome.is-compact .new_card_slider_box,
#acc_welcome.is-compact .new_acc_slider {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Account popup — quick actions (menu rows, same as Account Setting) */
.new_acc_quick_actions {
    margin: 0;
    padding: 0;
    font-family: InvolveRegular, sans-serif;
}

.new_acc_quick_actions__label {
    margin: 10px 0 0;
    padding-top: 10px;
    font-family: InvolveRegular, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: inherit;
    font-weight: normal;
    opacity: 0.4;
}

.new_acc_quick_actions__list,
.new_acc_quick_actions__buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.new_acc_quick_actions__list > a,
.new_acc_quick_actions__list > button,
.new_acc_quick_actions__buttons > a,
.new_acc_quick_actions__buttons > button {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 0.8rem !important;
    min-height: 0 !important;
    height: 2.5rem !important;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 0;
    background: none !important;
    box-shadow: none;
    font-family: InvolveRegular, sans-serif;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    color: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.new_acc_quick_actions__list > a span,
.new_acc_quick_actions__list > button span,
.new_acc_quick_actions__buttons > a span,
.new_acc_quick_actions__buttons > button span {
    flex: 1;
    font-family: inherit;
    font-weight: normal;
}

.new_acc_quick_actions__list > a img,
.new_acc_quick_actions__list > button img,
.new_acc_quick_actions__buttons > a img,
.new_acc_quick_actions__buttons > button img {
    flex-shrink: 0;
    margin-left: 12px;
    width: 6px;
    height: auto;
    opacity: 0.45;
}

#acc_welcome.is-compact .new_acc_quick_actions__list > a,
#acc_welcome.is-compact .new_acc_quick_actions__list > button,
#acc_welcome.is-compact .new_acc_quick_actions__buttons > a,
#acc_welcome.is-compact .new_acc_quick_actions__buttons > button {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Public page — /loyalty-program/ (typography from style.css: step_title, section_text, faq_title, etc.) */
.loyalty-page {
    /* layout only — fonts inherit from body / .bizness_text */
}

.loyalty-page__lead {
    margin-bottom: 1.8rem;
}

.loyalty-page__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 2.5rem;
}

.loyalty-page__intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    padding-top: 8px;
}

.loyalty-page__intro-actions .btn + .btn {
    margin-left: 0;
}

.loyalty-page__glance {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
}

.loyalty-page__glance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.875rem;
}

.loyalty-page__glance-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.5;
}

.loyalty-page__glance-note {
    margin-top: 12px;
    margin-bottom: 0;
}

.loyalty-page__mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.loyalty-page__mini-tier {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    text-align: center;
}

.loyalty-page__mini-tier--highlight {
    border-color: #111;
}

.loyalty-page__mini-tier-name {
    font-size: 0.75rem;
    opacity: 0.5;
}

.loyalty-page__mini-tier-rate {
    margin-top: 2px;
    font-family: InvolveSemiBold, sans-serif;
    text-transform: uppercase;
}

.loyalty-page__mini-tier-note {
    margin-top: 2px;
    font-size: 0.875rem;
    opacity: 0.5;
}

.loyalty-page__section {
    margin-bottom: 2.5rem;
}

.loyalty-page__grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

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

.loyalty-page__step--highlight {
    outline: 1px solid #111;
}

.loyalty-page__grid-3 .step_item,
.loyalty-page__grid-3 .step_text {
    height: 100%;
}

.loyalty-page__band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.loyalty-page__band {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
}

.loyalty-page__band-days {
    margin: 0.5rem 0;
    font-size: 0.875rem;
}

.loyalty-page__band--green { border-top: 3px solid #2e7d32; }
.loyalty-page__band--yellow { border-top: 3px solid #ca8a04; }
.loyalty-page__band--orange { border-top: 3px solid #ea580c; }

.loyalty-page__note {
    margin-top: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f7f7f7;
}

.loyalty-page__card {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    height: 100%;
}

.loyalty-page__card b {
    display: block;
    margin-bottom: 0.5rem;
}

.loyalty-page__card .step_content {
    margin-bottom: 0;
}

.loyalty-page__compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.loyalty-page__compare th,
.loyalty-page__compare td {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    text-align: left;
    vertical-align: top;
}

.loyalty-page__compare th {
    background: #fafafa;
    font-family: InvolveSemiBold, sans-serif;
}

.loyalty-page__faq {
    margin-top: 8px;
}

.loyalty-page__cta {
    padding: 8px 0 0;
    text-align: center;
}

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

.loyalty-page__cta-actions .btn + .btn {
    margin-left: 0;
}

@media (max-width: 767px) {
    .loyalty-page__intro,
    .loyalty-page__grid-3,
    .loyalty-page__grid-2,
    .loyalty-page__band-grid,
    .loyalty-page__mini-grid {
        grid-template-columns: 1fr;
    }

    .loyalty-page__intro-actions {
        padding-top: 0;
    }
}

/* Bonus Collection — cart sidebar (circles, not the thin bar) */
.bonus-progress {
    background: #e6f4e8;
    border: 1px solid #e6e6e6;
    padding: 18px;
    margin-bottom: 12px;
}

.cart_bottom_row .bonus-progress,
.bonus-progress--mid,
.bonus-progress--full,
.bonus-progress--locked,
.bonus-progress--near {
    background: #e6f4e8;
}

.bonus-progress--mid,
.bonus-progress--full {
    border-color: #b7dcc0;
}

.bonus-progress--locked,
.bonus-progress--near {
    border: 2px solid #111;
}

.bonus-progress__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.bonus-progress__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.bonus-progress__count {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.bonus-progress--mid .bonus-progress__count,
.bonus-progress--full .bonus-progress__count,
.bonus-progress--locked .bonus-progress__count,
.bonus-progress--near .bonus-progress__count {
    color: #111;
}

.bonus-progress__title {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #111;
}

.bonus-progress--mid .bonus-progress__title,
.bonus-progress--full .bonus-progress__title,
.bonus-progress--near .bonus-progress__title {
    color: #111;
}

.bonus-progress__description {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
    color: #6b6b6b;
}

.bonus-progress__track,
.bonus-progress__meta,
.bonus-progress__tiers {
    display: none;
}

.bonus-progress__steps {
    margin-top: 18px;
}

.bonus-progress__step {
    display: flex;
    gap: 14px;
}

.bonus-progress__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
}

.bonus-progress__circle {
    width: 40px;
    height: 40px;
    border-radius: 99px;
    border: 2px solid #e6e6e6;
    background: #fff;
    color: #8a8a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.bonus-progress__stem {
    width: 2px;
    flex: 1;
    min-height: 22px;
    background: #e6e6e6;
}

.bonus-progress__step-text {
    padding-top: 8px;
    padding-bottom: 16px;
}

.bonus-progress__step.is-last .bonus-progress__step-text {
    padding-bottom: 0;
}

.bonus-progress__step-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.bonus-progress__step-text span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #6b6b6b;
}

.bonus-progress__step.is-next .bonus-progress__circle {
    border-color: #2f9b4a;
    color: #1a7f37;
}

.bonus-progress__step.is-next .bonus-progress__step-text span {
    color: #1a7f37;
}

.bonus-progress__step.is-done .bonus-progress__circle {
    background: #2f9b4a;
    border-color: #2f9b4a;
    color: #fff;
}

.bonus-progress__step.is-done .bonus-progress__stem {
    background: #2f9b4a;
}

.bonus-progress__step.is-done .bonus-progress__step-text span {
    color: #1a7f37;
}

.bonus-progress__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    text-decoration: none;
}

.bonus-progress__cta:hover,
.bonus-progress__cta:focus {
    color: #fff;
    text-decoration: none;
    background: #2a2a2a;
    border-color: #2a2a2a;
}

.bonus-progress__cta-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.bonus-progress__cta-content span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.bonus-progress__cta-arrow {
    display: none;
}

.bonus-progress__cta-action {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.bonus-progress--needs-choice {
    border: 2px solid #111;
    background: #e6f4e8;
}

.bonus-progress--near .bonus-progress__cta,
.bonus-progress--locked .bonus-progress__cta {
    background: #111;
}

.bonus-progress__cta.is-pulse {
    animation: bonus-cta-pulse 1.8s ease-out infinite;
}

@keyframes bonus-cta-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.28);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(17, 17, 17, 0);
    }
}

.bonus-unlock-alert {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 12000;
    max-width: 320px;
    padding: 16px 18px;
    background: #111;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.bonus-unlock-alert.is-on {
    opacity: 1;
    transform: translateY(0);
}

.bonus-unlock-alert strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.bonus-unlock-alert span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
    .bonus-unlock-alert {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
    }
}

.bonus_products_modal .close {
    position: fixed !important;
    top: 18px !important;
    right: 22px !important;
    z-index: 10050 !important;
    width: 40px !important;
    height: 40px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1.5px #111;
    opacity: 1 !important;
}

.bonus_products_modal .close:before,
.bonus_products_modal .close:after {
    width: 16px;
    height: 2px;
    background-color: #111;
}

.bonus_products_modal .prod_item.is-limit {
    cursor: default;
    pointer-events: none;
}

.bonus_products_modal .prod_item.is-limit .prod_bottom {
    pointer-events: none;
}
