@media only screen and (max-width: 825px) {
    .bottom-banner h2 {
        top: 10%!important;
    }
    .bottom-banner-text-container {
        top: 52%!important;
    }
}
.bottom-banner {
    position: relative;
    width: 100%;
    height: 266px;
    border-bottom: 3px solid white;
}
.bottom-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.bottom-banner h2 {
    position: absolute;
    width: 100%;
    top: 20%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(1.25rem, -0.7273rem + 4.7431vw, 2rem);
    text-align: center;
    z-index: 1;
}
.bottom-banner-text-container {
    position: absolute;
    width: 100%;
    top: 60%;
    left: 50%;
    padding: 0 10px;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
}
.bottom-banner-text-container p {
    width: 100%;
    margin: 0 0 8px 0;
    font-size: clamp(1rem, 0.0114rem + 2.3715vw, 1.375rem);}
.bottom-banner-text-container p:last-of-type {
    margin-bottom: 0;
}

/* product sort selector ddl */
#product-sort-selector {
	display: flex;
	position: relative;
	flex-direction: row;
	align-items: center;
}
#product-sort-selector * {
	color: white;
}
#product-sort-selector > p {
	width: 80px;
	margin-right: 5px;
}
#product-sort-select-container {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 284px;
	width: 100%;
}
#product-sort-select-container::after {
	content: "▼";
	position: absolute;
	font-size: 12px;
	right: 16px;
	color: white;
	z-index: 1;
}
#product-sort-select-background {
	/* Background shown during fadeOut */
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
	height: 40px;
	background-color: #1b232e;
	border-radius: 2.5rem;
	z-index: 0;
}
#product-sort-selector select {
	position: relative;
	width: calc(100% - 20px);
	height: 40px;
	background-color: #1b232e;
	border-radius: 2.5rem;
	padding: 0 15px;
	z-index: 1;
}