* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Univers", sans-serif;
    src: url(assets\Univers-CondensedBold.otf);
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Univers", sans-serif;
    src: url(assets\Univers-CondensedLight.otf);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    font-family: "Univers", sans-serif;
    font-size: 62.5%;
    --font-size--small: 1.4rem;
    --font-size--default: 1.6rem;
    --font-size--large: 2.4rem;
}

.sup {
    vertical-align: super;
    font-size: 0.5em;
}


header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-weight: 600;
    height: 78px;
    width: 100%;
    background-color: transparent;
    position: sticky;
    transition: background-color 0.3s;
    z-index: 10;
    top: 0;
}

/* SIDEBARS - START */

.hamburger {
    position: fixed;
    left: 30px;
    top: 30px;
    display: none;
    height: 18px;
    width: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

.hamburger-icon {
    display: none;
    height: 2px;
    width: 24px;
    background: #cf0a2c;
    border-radius: 2px;
}

.sidebar {
    height: 100vh;
    width: 85%;
    background: #fff;
    position: fixed;
    top: 0;
    padding: 0 60px;
    display: none;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
}

.search-title {
    color: #cf0a2c;
    font-size: 2.4rem;
    margin: 0 auto;
    margin-top: 40px;
}

.filter-sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    background: #fff;
    padding: 0 30px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 9;
}

.sidebar {
    left: 0;
}

.filter-sidebar {
    right: 0;
    transform: translateX(100%);
}

.sidebar__close,
.filter-sidebar__close {
    position: absolute;
    top: 50%;
    background: #000;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s ease-in-out 0.2s;
}

.sidebar__close {
    right: -30px;
    transform: translateX(-100%);
}

.filter-sidebar__close {
    left: -30px;
    transform: translateX(100%);
}

.sidebar__close::before,
.sidebar__close::after,
.filter-sidebar__close::before,
.filter-sidebar__close::after {
    content: "";
    height: 2px;
    background: #fff;
    width: 24px;
    display: block;
    position: absolute;
}

.sidebar__close::after,
.filter-sidebar__close::after {
    transform: rotate(90deg);
}

.sidebar__menu,
.filter-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 90%;
    justify-content: space-around;
    font-size: 2.4rem;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #000;
    padding: 0 20px;
    overflow-y: auto;
    text-transform: capitalize;
}

.sidebar__menu a {
    color: currentcolor;
    text-decoration: none;
    transform: translateX(-80%);
    transition: transform 0.4s ease-in-out;
}

.filter-container label {
    color: currentcolor;
    text-decoration: none;
    transform: translateX(-10%);
    transition: transform 0.4s ease-in-out;
}

.sidebar__menu a::before {
    content: "";
    height: 2px;
    width: 120px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: translateX(-50%);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s linear;
}

.sidebar__menu a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.sidebar__menu a:nth-child(1) {
    transition-delay: 0.05s;
}

.sidebar__menu a:nth-child(2) {
    transition-delay: 0.1s;
}

.sidebar__menu a:nth-child(3) {
    transition-delay: 0.15s;
}

.sidebar__menu a:nth-child(4) {
    transition-delay: 0.2s;
}

.sidebar__menu a:nth-child(5) {
    transition-delay: 0.25s;
}

.sidebar__social {
    display: flex;
    list-style: none;
    padding: 0;
}

.sidebar__social li {
    margin: 4px;
}

.sidebar__social a,
.sidebar__social svg {
    display: inline-block;
    height: 18px;
    width: 18px;
}

.menu-toggle,
.filter-control {
    display: none;
}

.filter-control:checked + .filter-sidebar {
    transform: translateX(0);
}

.filter-control:checked + .filter-sidebar .filter-sidebar__close {
    transform: translateX(0) rotate(45deg);
}

.filter-section {
    width: 100%;
    margin: 20px 0px;
}

.filter-container-header {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 100px;
    border-bottom: 1px solid #898989;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    position: sticky;
}

.filter-header {
    font-size: 2.4rem;
    font-weight: bold;
    padding: 20px 0;
    border-bottom: 1px solid #898989;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon img {
    width: 15px;
    height: 15px;
}

.filter-content {
    display: none;
    padding-left: 20px;
    font-size: 1.6rem;
}

.filter-content label {
    color: #000;
    display: block;
    width: calc(100% - 40px);
    padding: 10px 20px;
    margin: 10px 0;
}

.filter-content input[type="checkbox"] {
    margin-right: 10px;
}

.filter-footer {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #898989;
    position: sticky;
}

.psi-rating,
.gpm-rating {
    width: 70px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid #fff;
    background: #d9d9d9;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    text-align: center;
    font-weight: 600;
    margin-right: 5px;
}

/* SIDEBARS - END */

/* BLACK HEADER BACKGROUND ON HOVER */
header:hover {
    background-color: #000;
}

/* START HEADER BACKGROUND TRANSITION ON SCROLL */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #363636 0%, #000 50%);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.header-scrolled::before {
    opacity: 1;
}

.btn-toggle {
    display: none;
}

/* END HEADER BACKGROUND TRANSITION ON SCROLL */

ul.filter-options {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.menu {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    font-size: 1.8rem;
    width: 100%;
}

.menu a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.menu a:hover {
    color: #cf0a2c;
    transition-duration: 0.6s;
    cursor: pointer;
}

.nav-logo {
    display: block;
    width: 15vw;
    margin: 0 auto;
    float: none;
}
.logo {
    width: 100%;
    height: auto;
}

.icons {
    height: 20px;
    margin-right: 2px;
}
.menu-links {
    display: flex;
    flex-direction: row;
    list-style: none;
    text-transform: uppercase;
    column-gap: 6vw;
}

.show-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

#link-d {
    position: relative;
}

#nav-search-link {
    display: inline-block;
}

#nav-search-form {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

#nav-search-input {
    color: #fff;
    font-size: 1.6rem;
    width: 150px;
    height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #cf0a2c;
    outline: none;
    padding: 5px;
}

#nav-search-button {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 30px;
}

#nav-search-button img {
    height: 20px;
}

/* Hero Section */
main {
    display: flex;
    flex-direction: column;
}
.hero {
    display: flex;
    background-image: linear-gradient(180deg, #000, rgba(54, 54, 54, 0) 50%, rgba(54, 54, 54, 0)),
        url("images/site/simpson-cleaning-parts-hero.webp");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 50vh;
    width: 100%;
    min-height: 40vh;
    position: relative;
    margin-top: -78px;
    top: 0;
}

.hero-home {
    display: flex;
    background-image: linear-gradient(180deg, #000, rgba(54, 54, 54, 0) 50%, rgba(54, 54, 54, 0)),
        url("images/site/simpson-cleaning-parts-hero.webp");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 75vh;
    width: 100%;
    min-height: 40vh;
    position: relative;
    margin-top: -78px;
    top: 0;
}

.hero-image {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    top: 0;
}

.hero-content {
    color: #fff;
    gap: 8vh;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 40px auto;
    z-index: 9;
}

.search-input,
.hero-search {
    position: relative;
    margin: 0 auto;
    width: 40%;
    min-width: 250px;
}

.search-input input,
.hero-search input {
    width: 100%;
    height: 40px;
    border-radius: 50px;
    font-size: 1.6rem;
    border: 2px solid #fff;
    color: rgb(56, 56, 56);
    text-align: center;
    font-weight: 600;
    padding-right: 40px; /* Adjusted for the button width */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.search-input input::placeholder,
.hero-search input::placeholder {
    color: #cf0a2b;
}

.search-input input:focus,
.hero-search input:focus {
    outline: none;
    border-color: #fff;
}

.search-input button,
.hero-search button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: url("icons/search-icon.svg") no-repeat center center;
    background-size: 20px 20px;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent; /* Ensure the button has a transparent background */
}

.search-input button:focus,
.hero-search button:focus {
    outline: none;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 117%;
}

.hero-divider {
    border-top: 3px solid #cf0a2c;
    width: 70%;
    margin: 0 auto;
}

/* Contact Us Page */

.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin: 40px auto;
}
.info-wrapper {
    width: 48%;
}

.contact h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.contact .subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #666;
}

.contact-info {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    gap: 15px;
    margin: 40px 0;
}

.info-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #5f5f5f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.simpson-circle {
    background-color: #cf0a2c;
}

.info-circle img {
    max-width: 60%;
    max-height: 60%;
}

.contact-info-item h3 {
    font-size: 1.8rem;
    margin: 10px 0;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1.4rem;
    color: #000;
    text-align: center;
    text-decoration: none;
}

.contact-divider {
    align-self: center;
    height: 200px;
    border: 1px solid black;
}
/* ////////////////////////////////////////////////////////// */
.hero-section-divider {
    width: 100%;
    min-height: 110px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.48);
    display: flex;
    align-items: center;
}

.breadcrumbs {
    margin-left: 10%;
    font-size: 1.6rem;
}

#breadcrumbs a {
    text-decoration: none;
    color: initial;
}

#breadcrumbs a:hover {
    text-decoration: underline;
    cursor: pointer;
}

#breadcrumbs span.active {
    color: #cf0a2c;
    font-weight: 500;
    text-decoration: none;
}

section.products {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    min-height: 150px;
    gap: 20px;
}

.section-info {
    margin: 20px 0;
    word-wrap: normal;
}

.section-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #cf0a2c;
    margin: 5px 0px;
    text-transform: uppercase;
}

.section-info p {
    font-size: 1.6rem;
}

.parts-and-accessories {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 40px;
    column-gap: 40px;
    padding: 20px;
    width: 90%;
    margin: 40px auto;
}

.products-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 85%;
    row-gap: 30px;
    height: fit-content;
    column-gap: 30px;
    margin: 0 auto 20px auto;
}

.products-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
}

.filter-button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px auto;
}

.filter-button-container button {
    align-items: center;
    margin: 0px 1vw;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
}

.filter-btn {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0px 30px;
    overflow: hidden;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

#filters-mobile {
    display: none;
}

.filter-btn:hover {
    background-color: #000;
    color: #fff;
}

.view-more {
    text-align: right;
    cursor: pointer;
    width: 95%;
}

.view-more a {
    font-weight: 500;
    color: #cf0a2c;
    text-decoration: none;
    font-size: 1.8rem;
}

.view-more a:hover {
    text-decoration: underline;
}
.products-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1vw;
}

.products-container a {
    text-decoration: none;
    color: #000;
}

.product-box {
    width: 300px;
    height: 350px;
    text-align: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -1px 8px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: 300ms ease-in-out;
}
.product-box img {
    width: 250px;
    height: 250px;
    transition: 300ms ease-in-out;
}

.product-box:hover {
    box-shadow: 0px 4px 4px 0px rgba(207, 10, 44, 0.25), 0px -1px 8px 0px rgba(207, 10, 44, 0.25);
}

.product-box img:hover {
    scale: 1.05;
}

.product-box h3 {
    font-size: 1.6rem;
}

.pb-home {
    padding: 10px 10px;
    width: 20vw;
    height: auto;
}

.pb-home img {
    width: 15vw;
    height: auto;
}

.pb-home h3 {
    margin: 15px auto;
}

.product-box button {
    min-width: 135px;
    border: 2px solid #cf0a2c;
    color: #000;
    background: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 1.6rem;
    margin: 20px 0;
}
.product-box button:hover {
    color: #fff;
    background: #cf0a2c;
    cursor: pointer;
}

.hidden {
    display: none;
}

.product-box.hidden {
    display: none;
}

.simpson-banner {
    height: 150px;
    width: 88%;
    margin: 0 auto;
    background: linear-gradient(180deg, #363636 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.simpson-banner img {
    max-width: 100%;
}

#category-label {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
}

select.categories {
    width: 20rem;
    color: #000000;
    font-weight: 500;
    border-radius: 7px;
    border: 1px solid #fff;
    background: #d9d9d9;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

select.categories:hover {
    cursor: pointer;
}

.categories {
    margin: 20px 0;
    font-size: 1.8rem;
    color: #cf0a2c;
    justify-content: space-around;
}

.category-label {
    margin: 0 auto;
}

.filter-options {
    display: flex;
    flex-direction: column;
}

.filter-options span {
    display: inline-block;
    margin: 15px;
}

.filter-options p {
    display: inline;
    position: relative;
    color: #ffffff;
    font-size: 1.6rem;
    margin-left: 10px;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    width: 100%;
    padding: 10px;
    background: linear-gradient(180deg, #363636 0%, #494949 50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 10px 10px;
    z-index: 1;
}

.psi-input,
.gpm-input {
    justify-content: center;
}

.series-input,
.engine-brand-input {
    flex-direction: column;
    justify-content: center;
}

.psi-input p,
.gpm-input p {
    margin: 3px 10px;
}

.psi-input input[type="number"],
.gpm-input input[type="number"] {
    text-align: center;
    font-weight: 600;
}

/*
                .psi-rating,
                .gpm-rating {
                    width: 70px;
                    height: 28px;
                    border-radius: 7px;
                    border: 1px solid #fff;
                    background: #d9d9d9;
                    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
                }
*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

button.toggle-btn {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    background: #d9d9d9;
    box-shadow: -4px -4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

button.toggle-btn:hover {
    cursor: pointer;
}

#pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 90%;
    margin: 20px 0px 40px 0px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the pagination */
    gap: 10px;
}

.page-select {
    border: 2px solid #000;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    position: relative;
}

#page-info {
    font-size: 1.6rem;
    font-weight: 600;
}

#page-select {
    border: none;
    outline: none;
}

.page-select legend {
    padding: 0;
    width: auto;
}

.pagination-legend {
    padding: 0px 2px;
    position: relative;
}

.page-select select {
    margin: 0 5px;
}

.page-select span {
    margin: 0 5px;
}

.arrow-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
}

.arrow-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.dimmed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    display: none;
    z-index: 8;
}

/* FOOTER */

footer {
    background-color: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 60px 0;
    gap: 20px;
    min-height: fit-content;
}
.footer-wrapper-top {
    display: flex;
    align-items: center;
    gap: 3vw;
}

.footer-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 265px;
    width: 24vw;
    height: 110px;
    box-shadow: 0px 3px 21px black;
    transition: 300ms ease-in-out;
    text-decoration: none;
}

.footer-btn:hover {
    scale: 1.05;
    cursor: pointer;
}

.footer-btn h3 {
    max-width: 90%;
}

.btn-title {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin: 0 auto;
    padding: 0 3vw;
    gap: 2vw;
}

.footer-wrapper-mid {
    display: flex;
    width: 40%;
    align-items: center;
    gap: 10px;
}

.footer-wrapper-bot {
    display: flex;
    width: 97%;
    height: 100px;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.disclaimer,
.links,
.ap-logo {
    width: 33%;
    height: 70px;
}

.disclaimer {
    min-height: fit-content;
}

.ap-logo a {
    float: right;
}

.disclaimer p,
.disclaimer a,
.links a {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-decoration: none;
    margin: 0 10px;
}

.links {
    text-align: center;
    padding: 25px 0;
}

.logo img {
    float: inline-end;
    padding: 10px 40px 0 0;
}

/* Privacy page */

.privacy-body {
    width: 70%;
    text-align: left;
    margin: 40px auto 60px auto;
    font-size: 1.4rem;
    line-height: 1.5;
    background-color: #dadada;
    padding: 40px;
}

.privacy-body #title {
    font-size: 2.8rem;
}

.privacy-body li {
    margin: 10px 0 10px 40px;
}

.privacy-body p {
    margin: 20px 0;
}

.privacy-body h2,
.privacy-body h3,
.privacy-body h4 {
    margin: 20px 0;
}

/* Individual Items */

.breadbasket {
    border: 1px solid #000;
    width: 425px;
    height: 40px;
    margin-left: 7vw;
}

.item-info {
    display: flex;
    height: 70vh;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #000;
}

/* Individual Items */

/* RESPONSIVE ELEMENTS */

@media only screen and (max-width: 1550px) {
    .hero-content {
        width: 55%;
    }
}

@media only screen and (max-width: 1415px) {
    .hero-content {
        width: 65%;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-content {
        width: 75%;
    }
    .hero-content h1 {
        font-size: 4.6rem;
    }
    .footer-btn {
        text-align: center;
        justify-content: center;
        width: 80%;
    }
    .footer-btn h3 {
        width: 90%;
        margin: 0 auto;
    }
    .footer-wrapper-top {
        gap: 3vw;
    }
    .menu-icons {
        display: none;
    }
    .btn-title {
        gap: 10px;
    }
}

@media only screen and (max-width: 1000px) {
    .hero-content {
        width: 80%;
    }
    .products-container {
        justify-content: center;
        gap: 30px;
    }
    .pb-home {
        min-width: 300px;
        height: 350px;
    }
    .pb-home img {
        min-width: 250px;
    }
    ul {
        column-gap: 3vw;
    }
    .hero-content h1 {
        font-size: 4.6rem;
    }
    .menu {
        font-size: 1.6rem;
    }
    .menu-links {
        column-gap: 4vw;
    }
    .desktop {
        display: none;
    }
    #filters-mobile {
        display: flex;
    }

    footer {
        row-gap: 5vh;
    }
    .footer-wrapper-top {
        flex-direction: column;
    }
    .footer-wrapper-bot {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        height: fit-content;
    }
    .ap-logo a {
        float: none;
    }
    .ap-logo img {
        width: 100%;
        max-width: 250px;
    }
    .ap-logo,
    .links {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
    }
    .disclaimer {
        width: 80%;
        height: auto;
    }
}

@media only screen and (max-width: 850px) {
    .menu-active {
        display: block;
        background-color: #000;
        z-index: 2;
    }
    .menu-links {
        display: none;
    }
    .mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 60px;
        padding-top: 50px;
        padding-bottom: 40px;
        background-color: #000;
        font-size: 2.4rem;
        width: 100%;
    }
    .nav-logo {
        padding-top: 5%;
        left: 38%;
        width: 25vw;
        min-width: 200px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger-icon {
        display: inline-block;
    }
    .hero-content {
        width: 85%;
    }

    .contact {
        flex-direction: column;
        align-items: center;
        margin: 40px auto;
    }
    .contact-divider {
        height: 1px;
        width: 200px;
        margin: 20px 0px 40px 0px;
    }
    .menu {
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: space-around;
        font-size: 1.8rem;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 3.6rem;
    }
}

@media only screen and (max-width: 750px) {
    .hero-content {
        width: 95%;
    }
    .hamburger {
        display: flex;
    }

    .hamburger-icon {
        display: inline-block;
    }
    .sidebar {
        display: flex;
    }
    .sidebar-menu {
        font-size: 2.4rem;
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid #898989;

        flex-direction: column;
        flex: 1;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 80px;
        color: #898989;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin: 0;
        text-align: center;
    }

    .hero p {
        display: none;
    }
    .hero-button {
        border: 3px solid #cf0a2c;
        display: flex;
        line-height: 1px;
        width: 60%;
    }
    .models h2 {
        font-size: 2.4rem;
        text-align: center;
        margin-top: 60px;
    }
    .models p {
        text-align: center;
        color: #363636;
        font-weight: 400;
        font-size: 1.6rem;
        padding: 15px 45px 0px 45px;
    }

    .filter-sidebar {
        width: 480px;
    }
    .parts-and-accessories {
        width: 100%;
        margin: 10px auto;
        justify-content: center;
        align-items: center;
    }
    .products-container {
        max-width: 95%;
        justify-content: center;
    }
    .products-container a {
        max-width: 100%;
        height: 5%;
    }

    .section-info {
        max-width: 90%;
        justify-content: center;
    }

    .section-info h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #cf0a2c;
        margin: 5px 0;
        text-transform: uppercase;
    }

    .section-info p {
        font-size: 1.6rem;
    }
    .product-box {
        max-width: 95%;
        height: 15%;
        max-height: 350px;
        margin: 0 auto;
    }
    .product-box a {
        max-width: 80%;
    }
    .product-box img {
        max-width: 80%;
        height: auto;
    }
    .view-more {
        max-width: 80%;
    }
}

@media only screen and (max-width: 650px) {
    .contact-info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        gap: 15px;
        margin: 40px 0;
    }
}

@media only screen and (max-width: 550px) {
    .filter-sidebar {
        width: 98vw;
    }
}

@media only screen and (max-width: 350px) {
    .nav-logo {
        width: 20vw;
        min-width: 150px;
    }
    .hamburger {
        left: 15px;
        top: 30px;
    }
}
