/* Sticky Buttons */
.aws-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--aws-sb-bg, #fff);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 12px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 999;
}

.aws-sticky-bar.is-visible {
    display: flex;
}

.aws-sticky-bar__price {
    font-weight: 600;
    font-size: 16px;
}

.aws-sticky-bar__price del {
    opacity: 0.5;
    font-size: 14px;
}

.aws-sticky-bar__price ins {
    text-decoration: none;
}

.aws-sticky-bar__btn {
    background: var(--aws-sb-btn, #2196F3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.aws-sticky-bar__btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Only show on mobile */
@media (min-width: 769px) {
    .aws-sticky-bar {
        display: none !important;
    }
}

/* Add padding to body to prevent content overlap */
body.aws-has-sticky-bar {
    padding-bottom: 70px;
}
