Gadsby Luxury Wicker Dog Bed Size Guide
Size |
Internal |
External |
Small |
57 x 36cm |
62 x 42cm |
Medium |
66 x 46cm |
71 x 51cm |
Large |
74 x 55cm |
82cm x 64cm |
Extra Large |
92 x 69cm |
101 x 70cm |
/* 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;
}
}