Scruffs Expedition Size Guide
- X-Small (60 x 45cm / 24" x 18")
- Small (75 x 52cm / 29.5" x 20")
- Medium (90 x 60cm / 36" x 24")
- Large (105 x 70cm / 41" x 27.5")
- X-Large (120 x 75cm / 47" x 29.5")
/* Hide the filter section by default on mobile devices */
.filter-section {
display: none;
background: #fff;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
position: relative;
}
.filter-toggle-button {
display: block;
background: #007bff;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 10px;
}
@media (min-width: 768px) {
.filter-section {
display: block !important;
border: none;
padding: 0;
}
.filter-toggle-button {
display: none;
}
}