Our Service Area
We delivery throughout Wastatch Front.
Service Radius
100 miles from American Fork, UT
Delivery Fee
Waived for Orders over $1000.
Delivery Time
Order before 10am for same day.
Minimum Order
$25.00
Resources
/* Floating Sidebar Styles */
.form-sidebar-wrapper {
display: flex;
justify-content: flex-end;
position: relative;
}
.form-sidebar {
position: sticky;
top: 100px; /* Adjust to match header height */
right: 0;
width: 340px;
max-height: 90vh;
overflow-y: auto;
background: #f9f9f9;
padding: 1.5rem;
border: 1px solid #e0e0e0;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.form-sidebar__title {
font-size: 1.25rem;
margin-bottom: 1rem;
}
.form-field {
margin-bottom: 1rem;
}
.form-field input,
.form-field textarea {
width: 100%;
padding: 0.6rem;
border: 1px solid #ccc;
border-radius: 4px;
}
@media (max-width: 768px) {
.form-sidebar {
position: static;
width: 100%;
box-shadow: none;
border: none;
background: transparent;
padding: 0;
}
}