@charset "UTF-8";

* {
    line-height: 1.2;
    box-sizing: border-box;
}

a.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(215, 90, 43, 0.25) !important;
}

div {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-width: 300px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    color: #000000;
}
.product-buttons{
    padding: 0;
}
.badge-ca {
    font-family: sans-serif !important;
}

/* ----------------------------------------
   Top Bar / Header
   ---------------------------------------- */

.top-bar {
    background-color: #ffffff;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    border-bottom: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.top-bar .logo {
    height: 60px;
    width: auto;
    margin: 0;
}

.powered-gearfire {
    width: 110px;
    height: auto;
    opacity: 1;
}

/* ----------------------------------------
   Navigation Menu
   ---------------------------------------- */

.top-bar .menu {
    display: flex;
    align-items: center;
}

.top-bar .menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
}

.menu ul > li {
    display: inline-block;
    margin: 0 24px;
    list-style: none;
}

a {
    text-decoration: none;
}

.menu a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: #D43D01;
}

.menu .selected {
    font-weight: 700;
}

.menu-products-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

.menu-products-content a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    background-color: #ffffff;
}

.menu-products-content a:hover {
    background-color: #f5f5f5;
    color: #D43D01;
}

.dropdown:hover .menu-products-content {
    display: block !important;
}

/* ----------------------------------------
   Main Content Wrapper
   ---------------------------------------- */

.cz-content {
    padding-top: 80px;
}

.cz-content > div.row > div > div {
    min-height: 80vh;
}

/* ----------------------------------------
   Carousel / Hero Banner
   ---------------------------------------- */

.carousel {
    margin-top: 0;
}

.carousel-item {
    margin-top: 0 !important;
}

.carousel-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ----------------------------------------
   Category Cards (horizontal bar style)
   ---------------------------------------- */

.category-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 35px auto 30px;
    max-width: 880px;
    padding: 0 15px;
}

.category-card {
    display: flex;
    align-items: center;
    background-color: #EFEFEF;
    text-decoration: none !important;
    color: #1A1B1E;
    overflow: hidden;
    height: 72px;
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    border: none;
    border-radius: 0;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.category-card:hover {
    text-decoration: none !important;
    color: #1A1B1E;
}

.category-card.in-category {
    height: 60px;
}

.category-card-image {
    width: 95px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    flex-shrink: 0;
}

.category-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-card-title {
    flex: 1;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    color: #1A1B1E;
    padding-right: 30px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 100%;
    background-color: #D43D01;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.category-card:hover::before {
    width: 140px;
}

.category-card-arrow {
    width: 52px;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   Search Bar
   ---------------------------------------- */

.searchbar-input {
    font-size: 16px !important;
}

.searchbar-btn {
    background-color: #D43D01;
    color: #ffffff;
    border-radius: 0px 4px 4px 0px;
    border: none;
    transition: background-color 0.2s ease;
}

.searchbar-btn:hover,
.searchbar-btn:active {
    background-color: #c04a1f !important;
    color: #ffffff !important;
}

/* ----------------------------------------
   Pagination
   ---------------------------------------- */

.btn-paging {
    margin: 0 4px;
    background-color: #D43D01 !important;
    color: #ffffff !important;
    border-radius: 2px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border: none;
}

.btn-paging:hover {
    background-color: #c04a1f !important;
}

/* ----------------------------------------
   Product Cards
   ---------------------------------------- */

.card-block {
    padding: 0;
    padding-right: 15px;
    padding-left: 15px;
}

.card-block > div {
    font-size: 0.8em;
}

.card {
    justify-content: flex-end;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.productbox-container {
    height: auto !important;
    overflow: visible !important;
}

.productbox *:not(.fa) {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.productbox .card-image {
    margin-bottom: 2rem !important;
    overflow: hidden;
}

.productbox img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.productbox a.btn,
.find_a_dealer {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.productbox a.btn,
.find_a_dealer {
    background-color: #D43D01;
    color: #ffffff;
}

.productbox a.btn:hover,
.find_a_dealer:hover {
    background-color: #c04a1f;
    color: #ffffff;
}

.productbox .card-title-link:hover {
    color: #D43D01;
}

.productbox .card-title {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    font-size: 0.875rem;
    text-align: center;
}

.btn-details {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: solid #D43D01 1px !important;
    display: none;
}

.display-price .price {
    font-weight: 700;
}

.card-title.product-title {
    font-weight: bold;
}

.product-upc,
.product-id,
.display-inventory,
.product-inventory {
    font-size: 14px;
}

.table.product-details {
    padding: 30px;
}

.product-description {
    padding: 15px 20px;
    
}

.product-description h2 {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #D43D01;
}

.product-description div[itemprop="description"] {
    padding-left: 20px;
    padding-right: 20px;
}

/* ----------------------------------------
   Product Buttons
   ---------------------------------------- */

.product-buttons {
    display: flex;
    flex-direction: column;
}

.product-buttons * {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
}

.product-buttons > * {
    width: 100%;
    border-radius: 0px;
    text-transform: uppercase;
}

.product-buttons > span > a {
    width: 100%;
    border-radius: 0px;
    text-transform: uppercase;
}

.add_to_cart:not(.productbox-container *),
.add_to_cart:hover:not(.productbox-container *) {
    background-color: #D43D01;
    color: #ffffff;
    width: 200px;
    border-radius: 2px;
}

.low_quantity.btn-dealer {
    background-color: #D43D01;
    color: #ffffff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ----------------------------------------
   Breadcrumbs
   ---------------------------------------- */

.product-breadcrumbs.breadcrumb {
    display: none;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: transparent;
}

ul.breadcrumb li {
    display: inline;
    font-size: 16px;
}

ul.breadcrumb li + li:before {
    padding: 8px;
    color: #D43D01;
    content: ">\00a0";
}

ul.breadcrumb li a {
    color: #D43D01;
    text-decoration: none;
    font-weight: 600;
}

ul.breadcrumb li a:hover {
    color: #c04a1f;
    text-decoration: underline;
}
.content.pt-5
{
    padding-top: 0.5rem !important;
}
/* ----------------------------------------
   Title / Section Headers
   ---------------------------------------- */

.title-text {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #D43D01;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured_header.catalog {
    color: #D43D01;
    text-align: center;
    font-size: 1.5rem;
    padding: 4px 0;
    font-weight: bold;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */

.footer-bg {
    background-color: #3a3a3a;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
    padding: 40px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-line {
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #888888;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 20px;
    margin-bottom: 20px;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-menu .selected {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.social-media a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.2s ease;
}

.social-media a:hover {
    color: #D43D01;
}

.social-media a img {
    transition: filter 0.2s ease;
}

.social-media a:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(91%) saturate(2482%) hue-rotate(5deg) brightness(97%) contrast(104%);
}

.h-500 {
    height: 100%;
}

.red-line {
    width: 80%;
    border-top: 1px solid #D43D01;
}

.vertical-menu {
    margin-top: -5px;
    border-top: 20px solid #D43D01;
    box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

.financingaslowas {
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 12pt;
}

/* ----------------------------------------
   Map (Contact Page)
   ---------------------------------------- */

.map-content {
    position: relative;
    overflow: hidden;
}

.map-content .img-map-provisional {
    width: 100%;
    height: auto;
    filter: brightness(50%) blur(2px);
    transition: filter 0.3s ease;
}

.map-content a {
    display: block;
    position: relative;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

.map-content .center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

/* ----------------------------------------
   Mobile Navigation
   ---------------------------------------- */

.mobile-hamburger {
    display: none;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 19;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e0e0e0;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 14px 20px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.mobile-nav a:hover {
    background-color: #f5f5f5;
    color: #D43D01;
}

.mobile-nav a.selected {
    font-weight: 700;
}

/* ========================================
   RESPONSIVE: Desktop (>= 992px)
   ======================================== */

@media only screen and (min-width: 992px) {
    .category-banners {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
    }

    .category-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 1200px) {
    .menu ul > li {
        margin: 0 14px;
    }

    .powered-gearfire {
        width: 90px;
    }

    .productbox a.btn {
        width: 100%;
    }

    .productbox-container.col-md-3 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }

    .category-card-title {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .productbox-container {
        height: auto !important;
        overflow: visible !important;
    }

    .productbox .card-image {
        overflow: hidden;
    }

    .productbox img {
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 991px) {
    .productbox-container.col-md-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .category-banners {
        flex-direction: column;
        align-items: center;
        max-width: 500px;
    }

    .category-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 829px) {
    .powered-gearfire {
        width: 70px;
    }

    .menu ul > li {
        margin: 0 8px;
    }

    .menu a {
        font-size: 11px;
    }
}

/* ========================================
   RESPONSIVE: Mobile (<= 767px)
   ======================================== */

@media only screen and (max-width: 767px) {
    .top-bar {
        height: 65px;
        padding: 0 15px;
    }

    .top-bar .logo {
        height: 45px;
    }

    .cz-content {
        padding-top: 65px;
    }

    .header-center {
        display: none;
    }

    .header-right {
        display: none;
    }

    .mobile-hamburger {
        display: flex;
        align-items: center;
    }

    .mobile-hamburger a {
        color: #000000;
        font-size: 22px;
        padding: 5px;
    }
    .card-title.product-title {
        font-size: 20px;
        margin: 10px;
        text-align: center;
    }
    select.product-filter {
        width: fit-content;
    }
    .product .card-image > img {
        max-width: 80%;
        max-height: 250px;
        height: auto;
        width: auto;
        object-fit: contain;
    }
    .product-image-modal > .modal-dialog:hover img {
        height: 300px;
        width: 400px;
    }

    .product-buttons {
    padding: 0;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0,0,0,0;
    }
    .product .btn.btn-dealer {
    font-size: 16px;
    margin: 0,0,0,0;
    }
    .find_a_dealer {
    margin-right: 0px !important;
    }

    .category-banners {
        max-width: 100%;
        padding: 0 10px;
        flex-direction: column;
    }

    .category-card {
        height: 62px;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .category-card.in-category {
        height: 50px;
    }

    .category-card-image {
        width: 75px;
        padding: 8px;
    }

    .category-card-title {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .category-card-arrow {
        width: 52px;
    }

    .carousel-image {
        height: 200px;
    }

    .footer-bg {
        padding: 25px 0 20px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 6px;
    }

    .footer-line {
        width: 50px;
    }

    .productbox-container.col-md-3,
    .productbox-container.col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .productbox-container {
        height: auto !important;
        overflow: visible !important;
    }

    .category-banners {
        margin: 10px auto 20px;
    }

    .content.pt-5 {
        padding-top: 0.5rem !important;
    }

    h3.pt-5 {
        padding-top: 0.5rem !important;
    }
}
