/* Sticky Add to Cart bar (bottom) */ .sticky-atc{ position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; transform: translateY(110%); transition: transform .25s ease; background: #fff; border-top: 1px solid rgba(0,0,0,.12); padding: 10px 0; } .sticky-atc.is-visible{ transform: translateY(0); } .sticky-atc__inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; } .sticky-atc__title{ font-size:14px; font-weight:600; max-width:60%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } /* Sticky button style (black) */ .sticky-atc__btn{ background:#000; color:#fff; border:1px solid #000; padding:12px 16px; border-radius:12px; font-weight:700; } /* Prevent bar covering bottom content */ body{ padding-bottom: 85px; } Skip to content