/* Mobile product page — sticky Add to Cart / Buy Now above site bottom nav */
:root {
    --ac-primary: #775a00;
    --ac-outline-variant: #d1c5b0;
    --ac-soft-blue: #e8f4ff;
    --ac-blue: #0080ff;
    --ac-mobile-bottom-nav-h: 72px;
}

.arbuda-product-mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--ac-mobile-bottom-nav-h);
    z-index: 1040;
    display: flex;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--ac-outline-variant);
    box-shadow: 0 -6px 24px rgba(27, 28, 28, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.55rem 0.75rem;
}

.arbuda-product-mobile-actions-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 520px;
    margin: 0 auto;
}

.arbuda-product-mobile-actions .buy-now,
.arbuda-product-mobile-actions .add-to-cart,
.arbuda-product-mobile-actions .out-of-stock {
    flex: 1 1 0;
    min-height: 46px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.65rem 0.5rem;
    border: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.arbuda-product-mobile-actions .buy-now {
    background: #1b1c1c;
    color: #fff;
}

.arbuda-product-mobile-actions .buy-now:active {
    opacity: 0.85;
}

.arbuda-product-mobile-actions .add-to-cart {
    background: var(--ac-soft-blue);
    color: var(--ac-blue);
}

.arbuda-product-mobile-actions .add-to-cart.adding,
.arbuda-product-mobile-actions .add-to-cart.added-success {
    background: var(--ac-blue);
    color: #fff;
}

.arbuda-product-mobile-actions .out-of-stock {
    flex: 1 1 100%;
    background: #efeded;
    color: #9d9da6;
}

body.arbuda-product-mobile-actions-active {
    padding-bottom: calc(var(--ac-mobile-bottom-nav-h) + 62px);
}

@media (max-width: 1199.98px) {
    .arbuda-product-mobile-actions {
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    .arbuda-product-mobile-actions {
        display: none !important;
    }

    body.arbuda-product-mobile-actions-active {
        padding-bottom: 0;
    }
}
