<h1>Shipping Information</h1>
<p>We ship worldwide. Orders are processed within 2-3 business days.</p>
<p>Standard shipping typically takes 5–7 days depending on your location.</p>
<p>Express options are available at checkout.</p>
/* Footer Button */
.shop-footer-button {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #007B55;
color: white;
padding: 15px 30px;
border: none;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
z-index: 1000;
transition: background-color 0.3s ease;
}
.shop-footer-button:hover {
background-color: #005f40;
}
/* Footer Button visibility */
.sqs-footer {
position: relative;
}
.sqs-footer:after {
content: ' ';
display: block;
position: absolute;
width: 100%;
height: 50px;
top: -50px; /* Adjust this value to move the footer button as needed */
z-index: 999;
}