.a2hs-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.a2hs-banner.a2hs-visible { transform: translateY(0); }

.a2hs-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    max-width: 40rem;
    margin: 0 auto;
}

.a2hs-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--brand-color-one, #ff6b35);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.a2hs-icon i { font-size: 1.375rem; color: #fff; }

.a2hs-text { flex: 1; min-width: 0; }
.a2hs-text strong { display: block; font-size: 0.9375rem; color: #333; }
.a2hs-text span { font-size: 0.8125rem; color: #666; }

.a2hs-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.a2hs-btn {
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.a2hs-btn:hover { opacity: 0.85; }
.a2hs-btn-primary { background: var(--brand-color-one, #ff6b35); color: #fff; padding: 0.5rem 1rem; }
.a2hs-btn-dismiss { background: transparent; color: #999; padding: 0.5rem; font-size: 1rem; }

.a2hs-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.a2hs-modal.a2hs-visible { opacity: 1; visibility: visible; }

.a2hs-modal-content {
    background: #fff;
    width: 100%;
    max-width: 28rem;
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.a2hs-modal.a2hs-visible .a2hs-modal-content { transform: translateY(0); }

.a2hs-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

.a2hs-modal-content h3 { margin: 0 0 1.25rem; font-size: 1.25rem; text-align: center; }

.a2hs-steps { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.a2hs-steps li { display: flex; align-items: center; gap: 0.875rem; padding: 0.875rem 0; border-bottom: 1px solid #eee; }
.a2hs-steps li:last-child { border-bottom: none; }
.a2hs-steps i {
    width: 2.25rem;
    height: 2.25rem;
    background: #f0f0f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--brand-color-one, #ff6b35);
    flex-shrink: 0;
}
.a2hs-steps span { font-size: 0.9375rem; color: #333; }

.a2hs-btn-block { width: 100%; padding: 0.75rem; }

@media (min-width: 576px) {
    .a2hs-modal { align-items: center; }
    .a2hs-modal-content { border-radius: 1rem; margin: 1rem; }
}