/* QuickLand Mobile Sticky Buy Bar Styles */

/* =======================================
   MOBILE STICKY BUY NOW BAR
   ======================================= */

.ql-mobile-sticky-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999 !important; /* MAX z-index to ensure coverage over theme elements */
    display: none;        
    padding: 0;
    background: transparent;
    width: 100%; 
    box-sizing: border-box; 
    
    /* CRITICAL FIX: Ensures the bar covers the full screen edge, including the safe area */
    padding-bottom: env(safe-area-inset-bottom); 
}

/* inner button full width and enlarged */
.ql-mobile-sticky-buy .ql-mobile-buy-trigger {
    width: 100% !important;
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 16px !important; /* Slightly reduced font size for sleekness */
    line-height: 1.1;
    
    /* SCALED PADDING: Adjusted to match the normal height (approx. 55-65px total height) */
    padding: 18px 20px !important; 
    
    min-height: 0 !important; /* Removed extreme min-height */
    box-sizing: border-box !important; /* Forces the padding to be included in the element's height */
    border-radius: 0;     
    border: none;
    text-transform: uppercase;
}

/* small shadow so it floats a bit */
.ql-mobile-sticky-buy.ql-sticky-visible {
    display: block;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.18);
}

/* MOBILE/TABLET ONLY – hide on desktop (consistent with main sticky bar) */
@media (min-width: 1025px) {
    .ql-mobile-sticky-buy {
        display: none !important;
    }
}