/**
 * AH Loyalty — Frontend Stylesheet
 * Brand color: #9DDF01
 */

:root {
    --ah-primary: #9DDF01;
    --ah-primary-dark: #7ab801;
    --ah-primary-light: rgba(157, 223, 1, 0.12);
    --ah-text: #1d2327;
    --ah-text-muted: #646970;
    --ah-border: #e2e4e7;
    --ah-bg: #f9fafb;
    --ah-positive: #27ae60;
    --ah-negative: #e74c3c;
    --ah-radius: 12px;
    --ah-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ── Account Page — Hero ── */
.ah-loyalty-account {
    width: 100%;
}

.ah-loyalty-hero {
    background: linear-gradient(135deg, var(--ah-primary-light), rgba(157, 223, 1, 0.04));
    border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius);
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.ah-loyalty-hero-balance {
    display: flex;
    flex-direction: column;
}

.ah-loyalty-hero-label {
    font-size: 13px;
    color: var(--ah-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ah-loyalty-hero-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--ah-text);
    line-height: 1.1;
}

.ah-loyalty-hero-value {
    font-size: 14px;
    color: var(--ah-text-muted);
    margin-top: 4px;
}

.ah-loyalty-hero-tier {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.ah-loyalty-tier-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 24px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ah-loyalty-tier-max {
    font-size: 14px;
    color: var(--ah-text-muted);
}

/* ── Progress Bar ── */
.ah-loyalty-tier-progress {
    width: 200px;
}

.ah-loyalty-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--ah-border);
    border-radius: 4px;
    overflow: hidden;
}

.ah-loyalty-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.ah-loyalty-progress-text {
    font-size: 11px;
    color: var(--ah-text-muted);
    display: block;
    margin-top: 4px;
    text-align: right;
}

/* ── Sections ── */
.ah-loyalty-section {
    margin-bottom: 28px;
}

.ah-loyalty-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ah-text);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ah-primary-light);
}

/* ── Streak ── */
.ah-loyalty-streak-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 20px;
    background: var(--ah-bg);
    border-radius: var(--ah-radius);
    border: 1px solid var(--ah-border);
}

.ah-loyalty-streak-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ah-loyalty-streak-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.ah-loyalty-streak-label {
    font-size: 12px;
    color: var(--ah-text-muted);
}

.ah-loyalty-streak-next {
    font-size: 14px;
    color: var(--ah-text-muted);
}

/* ── Achievements Grid ── */
.ah-loyalty-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.ah-loyalty-achievement {
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ah-loyalty-achievement.earned {
    border-color: var(--ah-primary);
    background: var(--ah-primary-light);
}

.ah-loyalty-achievement.locked {
    opacity: 0.6;
}

.ah-loyalty-achievement:hover {
    transform: translateY(-2px);
    box-shadow: var(--ah-shadow);
}

.ah-loyalty-achievement-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.ah-loyalty-achievement-icon img {
    border-radius: 8px;
}

.ah-loyalty-achievement-emoji {
    font-size: 36px;
}

.ah-loyalty-achievement-info strong {
    display: block;
    font-size: 13px;
    color: var(--ah-text);
    margin-bottom: 4px;
}

.ah-loyalty-achievement-info small {
    display: block;
    font-size: 11px;
    color: var(--ah-text-muted);
}

.ah-loyalty-achievement-bonus {
    display: inline-block;
    margin-top: 6px;
    background: var(--ah-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ── Mini Progress ── */
.ah-loyalty-mini-progress {
    width: 100%;
    height: 4px;
    background: var(--ah-border);
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.ah-loyalty-mini-progress-fill {
    height: 100%;
    background: var(--ah-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* ── History Table ── */
.ah-loyalty-history-table {
    width: 100%;
    border-collapse: collapse;
}

.ah-loyalty-history-table thead th {
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ah-text-muted);
    padding: 8px 12px;
    border-bottom: 2px solid var(--ah-border);
}

.ah-loyalty-history-table tbody tr {
    border-bottom: 1px solid #f0f0f1;
    transition: background 0.15s;
}

.ah-loyalty-history-table tbody tr:hover {
    background: var(--ah-bg);
}

.ah-loyalty-history-table td {
    padding: 10px 12px;
    font-size: 14px;
}

.ah-loyalty-history-date {
    color: var(--ah-text-muted);
    font-size: 13px;
    white-space: nowrap;
}

.ah-loyalty-history-emoji {
    margin-right: 6px;
}

.ah-loyalty-history-points.positive {
    color: var(--ah-positive);
}

.ah-loyalty-history-points.negative {
    color: var(--ah-negative);
}

/* ── Social Grid ── */
.ah-loyalty-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.ah-loyalty-social-card {
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.ah-loyalty-social-card:hover {
    transform: translateY(-2px);
}

.ah-loyalty-social-card.completed {
    opacity: 0.6;
    background: var(--ah-bg);
}

.ah-loyalty-social-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--ah-text);
}

.ah-loyalty-social-points {
    font-size: 12px;
    color: var(--ah-primary-dark);
    font-weight: 600;
}

.ah-loyalty-social-done {
    font-size: 12px;
    color: var(--ah-positive);
    font-weight: 600;
}

/* ── Referral Box ── */
.ah-loyalty-referral-box {
    background: var(--ah-bg);
    border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius);
    padding: 20px;
}

.ah-loyalty-referral-box p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--ah-text-muted);
}

.ah-loyalty-referral-url-box {
    display: flex;
    gap: 8px;
}

.ah-loyalty-referral-url-box input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--ah-border);
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
    color: var(--ah-text);
}

.ah-loyalty-referral-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--ah-border);
    font-size: 13px;
    color: var(--ah-text-muted);
}

@media (max-width: 480px) {
    .ah-loyalty-referral-stats {
        flex-direction: column;
        gap: 8px;
    }

    .ah-loyalty-referral-stats span {
        display: flex;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
        padding-bottom: 4px;
    }

    .ah-loyalty-referral-stats span:last-child {
        border-bottom: none;
    }
}

/* ── Buttons ── */
.ah-loyalty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.4;
}

.ah-loyalty-btn-primary {
    background: var(--ah-primary);
    color: #1a2e00;
}

.ah-loyalty-btn-primary:hover {
    background: var(--ah-primary-dark);
    color: #fff;
}

.ah-loyalty-btn-outline {
    background: transparent;
    border: 2px solid var(--ah-border);
    color: var(--ah-text);
}

.ah-loyalty-btn-outline:hover {
    border-color: var(--ah-primary);
    color: var(--ah-primary-dark);
}

.ah-loyalty-btn-small {
    padding: 6px 14px;
    font-size: 12px;
}

/* ── Cart Redeem ── */
.ah-loyalty-cart-redeem {
    background: var(--ah-primary-light);
    border: 1px solid rgba(157, 223, 1, 0.3);
    border-radius: var(--ah-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.ah-loyalty-cart-redeem-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
}

.ah-loyalty-cart-redeem-info {
    font-size: 14px;
    color: var(--ah-text-muted);
    margin-bottom: 16px;
}

.ah-loyalty-cart-redeem-sep {
    margin: 0 8px;
    color: var(--ah-border);
}

.ah-loyalty-cart-redeem-slider {
    margin-bottom: 16px;
}

.ah-loyalty-cart-redeem-slider input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--ah-border);
    outline: none;
}

.ah-loyalty-cart-redeem-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ah-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ah-loyalty-cart-redeem-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}

.ah-loyalty-cart-redeem-actions {
    display: flex;
    gap: 10px;
}

.ah-loyalty-redeem-message {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* ── Checkout Redeem ── */
.ah-loyalty-checkout-redeem .ah-loyalty-checkout-redeem-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ah-loyalty-balance-info {
    font-size: 13px;
    color: var(--ah-text-muted);
}

.ah-loyalty-applied-info {
    color: var(--ah-positive);
    font-weight: 600;
    font-size: 14px;
}

.ah-loyalty-checkout-redeem-input {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ah-loyalty-checkout-redeem-input .input-text {
    width: 100px;
}

/* ── Earn Summary ── */
.ah-loyalty-earn-summary th,
.ah-loyalty-earn-summary td {
    color: var(--ah-primary-dark) !important;
    font-weight: 600;
}

/* ── Thank You Card ── */
.ah-loyalty-thankyou {
    margin-bottom: 30px;
}

.ah-loyalty-thankyou-card {
    background: var(--ah-primary-light);
    border: 1px solid rgba(157, 223, 1, 0.3);
    border-radius: var(--ah-radius);
    padding: 24px;
}

.ah-loyalty-thankyou-card h3 {
    margin: 0 0 16px;
    font-size: 17px;
}

.ah-loyalty-thankyou-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(157, 223, 1, 0.2);
}

.ah-loyalty-thankyou-row:last-of-type {
    border-bottom: none;
}

.ah-loyalty-thankyou-label {
    font-size: 14px;
    color: var(--ah-text);
}

.ah-loyalty-thankyou-value {
    font-size: 16px;
    font-weight: 700;
}

.ah-loyalty-thankyou-value.positive {
    color: var(--ah-positive);
}

.ah-loyalty-thankyou-value.negative {
    color: var(--ah-negative);
}

.ah-loyalty-thankyou-card .ah-loyalty-btn {
    margin-top: 16px;
}

/* ── Product Points ── */
.ah-loyalty-product-points {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ah-primary-light);
    border: 1px solid rgba(157, 223, 1, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    margin: 8px 0;
    font-size: 13px;
    color: var(--ah-primary-dark);
}

.ah-loyalty-product-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #c3f29b;
    /* Jasnozielony kolor ze screena */
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0;
    font-size: 13px;
    color: #000;
    line-height: 1;
}

.ah-loyalty-product-badge span {
    line-height: 1.4;
}

.ah-loyalty-product-badge svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
}

.ah-loyalty-loop-points {
    display: inline-block;
    background: var(--ah-primary);
    color: #1a2e00;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 4px;
}

/* ── Header Widget ── */
.ah-loyalty-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: ahSlideUp 0.4s ease;
}

.ah-loyalty-widget-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 40px;
    padding: 8px 18px 8px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.2s;
}

.ah-loyalty-widget-link:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ah-loyalty-widget-icon {
    font-size: 20px;
}

.ah-loyalty-widget-points {
    font-weight: 800;
    font-size: 16px;
    color: var(--ah-text);
}

.ah-loyalty-widget-tier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Review Upload ── */
.ah-loyalty-review-upload {
    margin: 16px 0;
    padding: 14px;
    background: var(--ah-primary-light);
    border-radius: 8px;
}

.ah-loyalty-review-points-info {
    font-size: 13px;
    color: var(--ah-primary-dark);
    margin-bottom: 12px;
}

/* ── Review Photos in Comment ── */
.ah-loyalty-review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ah-loyalty-review-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.ah-loyalty-review-photo:hover {
    transform: scale(1.05);
}

.ah-loyalty-review-video {
    margin-top: 12px;
}

/* ── Referral Shortcode ── */
.ah-loyalty-referral-shortcode {
    padding: 20px;
    background: var(--ah-bg);
    border-radius: var(--ah-radius);
    border: 1px solid var(--ah-border);
}

/* ── Tier Cards (shortcode) ── */
.ah-loyalty-tiers-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.ah-loyalty-tier-column {
    background: #fff;
    border: 2px solid var(--ah-border);
    border-radius: var(--ah-radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.ah-loyalty-tier-column.current {
    border-color: var(--tier-color);
    box-shadow: 0 4px 16px rgba(157, 223, 1, 0.2);
    transform: scale(1.02);
}

.ah-loyalty-tier-current-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tier-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ah-loyalty-tier-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.ah-loyalty-tier-header h4 {
    font-size: 18px;
    margin: 0 0 4px;
    color: var(--tier-color);
}

.ah-loyalty-tier-threshold {
    font-size: 12px;
    color: var(--ah-text-muted);
}

.ah-loyalty-tier-benefits {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    text-align: left;
}

.ah-loyalty-tier-benefits li {
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: var(--ah-text);
}

.ah-loyalty-tier-benefits li:last-child {
    border-bottom: none;
}

/* ── Animations ── */
@keyframes ahSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .ah-loyalty-hero {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .ah-loyalty-hero-number {
        font-size: 36px;
    }

    .ah-loyalty-hero-tier {
        align-items: center;
    }

    .ah-loyalty-tier-progress {
        width: 100%;
    }

    .ah-loyalty-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ah-loyalty-referral-url-box {
        flex-direction: column;
    }

    .ah-loyalty-cart-redeem-actions {
        flex-direction: column;
    }
}

/* ── Referral Card ── */
.ah-loyalty-referral-card {
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--ah-shadow);
}

.ah-loyalty-referral-desc {
    font-size: 15px;
    color: var(--ah-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ah-loyalty-referral-rewards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.ah-loyalty-referral-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ah-loyalty-referral-reward-pts {
    font-size: 36px;
    font-weight: 800;
    color: var(--ah-primary-dark);
    line-height: 1;
}

.ah-loyalty-referral-reward-label {
    font-size: 13px;
    color: var(--ah-text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.ah-loyalty-referral-divider {
    width: 1px;
    height: 48px;
    background: var(--ah-border);
}

.ah-loyalty-referral-url-box {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.ah-loyalty-referral-url-box input {
    flex: 1;
    background: var(--ah-bg);
    border: 1px solid var(--ah-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ah-text-muted);
}

.ah-loyalty-referral-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--ah-border);
}

.ah-loyalty-referral-stats span {
    font-size: 13px;
    color: var(--ah-text-muted);
    background: var(--ah-bg);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .ah-loyalty-referral-rewards {
        flex-direction: column;
        gap: 20px;
    }

    .ah-loyalty-referral-divider {
        width: 40px;
        height: 1px;
    }

    .ah-loyalty-referral-url-box {
        flex-direction: column;
    }
}

/* ── Referral Modal ── */
.ah-loyalty-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ah-loyalty-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.ah-loyalty-modal-container {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 48px 32px;
    position: relative;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ah-loyalty-modal-overlay.is-visible .ah-loyalty-modal-container {
    transform: scale(1) translateY(0);
}

.ah-loyalty-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--ah-text-muted);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ah-loyalty-modal-close:hover {
    color: var(--ah-primary-dark);
    background: var(--ah-bg);
}

.ah-loyalty-modal-content {
    text-align: center;
}

.ah-loyalty-modal-icon {
    display: inline-flex;
    padding: 20px;
    background: var(--ah-bg);
    border-radius: 50%;
    color: var(--ah-primary);
    margin-bottom: 24px;
}

.ah-loyalty-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ah-primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ah-loyalty-modal-bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.ah-loyalty-modal-bonus-label {
    font-size: 14px;
    color: var(--ah-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ah-loyalty-modal-bonus-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--ah-primary);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(157, 223, 1, 0.2);
}

.ah-loyalty-modal-desc {
    font-size: 16px;
    color: var(--ah-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ah-loyalty-modal-actions {
    margin-bottom: 20px;
}

.ah-loyalty-btn-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    width: 100%;
}

.ah-loyalty-modal-footer {
    font-size: 13px;
    color: var(--ah-text-muted);
    opacity: 0.8;
}

@media (max-width: 480px) {
    .ah-loyalty-modal-container {
        padding: 40px 24px;
    }

    .ah-loyalty-modal-title {
        font-size: 24px;
    }

    .ah-loyalty-modal-bonus-value {
        font-size: 40px;
    }
}