
#top-banner {
    background-image: url("https://cdn.vanderloc.com/images/pages/shop/shop-all-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    height: 50vw;
    max-height: 550px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
}
#top-banner .banner-content {
    display: none;
    position: absolute;
    bottom: 0;
    color: white;
}
#top-banner .button-container {
    margin-top: 20px;
    display: none;
}
#mobile-banner-content {
    display: block;
    padding: 20px 40px;
    text-align: center;
    background-color: #eee;
}

.controls-container {
    padding: 20px 40px;
}
.controls-container > div {
    display: block;
    margin-top: 20px;
    text-align: center;
}
.controls-container > div label {
    display: block;
    margin: 0 0 10px;
    font-weight: 500;
}

.pagination {
    white-space: nowrap;
}
.nav-btn, .page-btn {
    padding: 6px 12px;
    margin: 0 3px;
    border: none;
    border-radius: 5px;
    background-color: #ad8337;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.nav-btn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}
.page-btn {
    background-color: #eee;
    color: #000;
}
.page-btn.active {
    background-color: #ccc;
    font-weight: bold;
}

.filter-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls-container > div.page-controls {
    display: none;
}

.select-style {
    background-color: #eee;
    border: none;
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding: 0.75rem 3rem .75rem 1rem;
}
.select-style:focus, 
.select-style:focus-visible  {
    box-shadow: none;
    outline: none;
}
.product-grid {
    padding-top: 20px;
}
.product-grid .product-grid-item.product-grid-item-sample .product-image img {
    width: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    height: 100px;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 40px 0 100px;
    z-index: 9999;
}
.spinner i {
    font-size: 4rem;
    color: #ad8337;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 576px) {
    #top-banner-mobile-content {
        padding: 40px;
    }
    #why-vanderloc-mobile-content {
        padding: 40px 40px 50px;
    }
}

@media (min-width: 768px) {
    .page-content h2 {
        margin: 40px 0;
    }
    #top-banner {
        height: 40vw;
    }
    #top-banner .banner-content {
        display: block;
        padding: 40px 60px;
    }
    #mobile-banner-content {
        display: none;
    }
    .nav-btn, .page-btn {
        padding: 8px 15px;
        margin: 0 5px;
        font-size: 16px;
    }
    .controls-container {
        padding: 40px 60px;
    }
}

@media (min-width: 992px) {
    #top-banner {
        height: 40vw;
    }
    #top-banner .banner-content {
        padding: 80px;
    }
    .controls-container {
        display: flex;
        justify-content: space-between;
        padding: 40px 80px;
    }
    .controls-container > div.pagination {
        text-align: left;
    }
    .controls-container > div.filter-group {
        text-align: center;
    }
    .controls-container > div.page-controls {
        text-align: right;
    }
    .controls-container > div {
        flex: 1;
    }
    .controls-container > div label {
        margin-right: 5px;
        display: inline;
    }
    .controls-container > div.page-controls {
        display: block;
    }
}

@media (min-width: 1200px) {
    #top-banner .banner-content {
        padding: 100px;
    }
    .controls-container {
        padding: 60px 100px;
    }
}