/*
Theme Name: Hoobrid Theme
Theme URI: https://wooshwp.com
Description: Hoobrid eCommerce Theme - A child theme for Storefront.
Author: WooshWP
Author URI: https://wooshwp.com
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hoobrid
Requires at least: 5.8
Requires PHP: 7.2
*/
/* Sidebar and Content Layout */

@font-face {
    font-family: 'Sequel100Black';
    src: url('/wp-content/themes/hoobrid/assets/fonts/Sequel100Black-45.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CerebriProBold';
    src: url('/wp-content/themes/hoobrid/assets/fonts/CerebriSansPro-Bold.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CerebriProRegular';
    src: url('/wp-content/themes/hoobrid/assets/fonts/CerebriSansPro-Regular.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body{
    background-color: #000000;
    height: 100%;
    margin: 0;
}

#page {
    max-width: 1920px;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.site-content {
    flex: 1;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .site-content{
        padding: 0;
    }
}

body, button, input, select, textarea {
    font-family: Arial, Helvetica, sans-serif;
}

.woocommerce-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.sidebar-left {
	width: 25%;
	background: #f8f8f8;
	padding: 15px;
	border-right: 2px solid #ddd;
}

.content-area {
	width: 75%;
}

/* Modern Table-Like Layout */
.product-grid {
	display: flex;
	flex-direction: column;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
}

/* Table Header */
.product-grid-header {
	display: grid;
	grid-template-columns: 10% 30% 15% 15% 30%;
	background: #0073aa;
	color: white;
	font-weight: bold;
	padding: 10px;
	text-align: center;
}

/* Each Row */
.product-grid-item {
	display: grid;
	grid-template-columns: 10% 30% 15% 15% 30%;
	border-bottom: 1px solid #ddd;
	padding: 10px;
	align-items: center;
	transition: background 0.3s;
}

.product-grid-item:hover {
	background: rgba(0, 115, 170, 0.1);
}

/* Images */
.product-image img {
	max-width: 50px;
	height: auto;
}

/* Text Styling */
.product-title a {
	font-weight: bold;
	color: #333;
	text-decoration: none;
}

.product-price {
	font-size: 16px;
	font-weight: bold;
	color: #27ae60;
}

.product-stock {
	font-weight: bold;
}

/* Add to Cart Button */
.product-add-to-cart .button {
	background: #0073aa;
	color: white;
	padding: 5px 10px;
	border-radius: 5px;
	text-align: center;
}

.product-add-to-cart .button:hover {
	background: #005f7b;
}

/* Responsive Grid for Mobile */
@media screen and (max-width: 768px) {
	.product-grid-header {
		display: none; /* Hide header on mobile */
	}

	.product-grid-item {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		padding: 15px;
	}

	.product-grid-item > div {
		flex: 1 1 100%;
		text-align: center;
	}

	.product-image img {
		max-width: 80px;
	}
}
.woocommerce-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.sidebar-left {
	width: 25%;
	background: #f8f8f8;
	padding: 15px;
	border-right: 2px solid #ddd;
}

.filter-attribute,
.filter-categories {
	margin-bottom: 15px;
}

.apply-filters {
	background: #0073aa;
	color: white;
	padding: 10px;
	border-radius: 5px;
	width: 100%;
	cursor: pointer;
}

.apply-filters:hover {
	background: #005f7b;
}
.woocommerce-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.sidebar-left {
	width: 25%;
	background: #f8f8f8;
	padding: 15px;
	border-right: 2px solid #ddd;
}

.filter-attribute,
.filter-categories {
	margin-bottom: 15px;
}

.filter-input:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.filter-input {
	cursor: pointer;
}

.smart-filters-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.search-box {
	width: 900px;
	min-height: 386px;
	position: relative;
	padding: 20px;
}

.edit-link {
	display: none;
}

/* Overwrite woof (husky) styles */
ul.chosen-choices {
	border: 1px solid #eee !important;
	box-shadow: initial !important;
}

ul.chosen-results > .disabled-result {
	display: none !important;
}

.woof_block_html_items > .chosen-container-single .chosen-single {
	height: 39px !important;
	padding-top: 3px;
}

.woof_block_html_items > .chosen-container-single .chosen-single span {
	display: inline;
}

.woof_block_html_items > .chosen-container-single .chosen-single b {
	margin-top: 4px;
}

.search-box .woof_sid_flat_white {
	border: none;
}

.woof_submit_search_form_container {
	display: none;
}

.woof_autohide_wrapper {
	display: none;
}

/* .woof-form-builder-btn {
	display: none !important;
} */
/* End of woof */
.site-branding {
	width: auto !important;
	margin-bottom: 0;
    margin-right: 2rem;
    flex-shrink: 0;
	align-content: center;
    padding-left: 30px;
    height: 70px;
}

.with-branding .primary-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.menu-container {
    flex-grow: 1;
}

.site-branding svg {
    width: 165px;
	fill: #000000;
}

@media (max-width: 1440px) {
    .site-branding svg {
        width: 130px !important;
        margin-left: 0 !important;
    }
}

.site-header{
	height: 70px;
    margin-top: 0;
    padding-top: 0;
}

.site-header .primary-navigation{
	height: 70px;
    align-content: center;
    font-weight: 700;
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    font-size: 12px;
}

.site-header .site-header-cart{
	align-content: center;
    background-color: #E0E0E0;
    padding: 0 30px;
    /* height: 70px; */
    border-left: 1px solid #5c5c5c;
}

@media (max-width: 768px) {
    .site-header .site-header-cart{
        display: none;
    }
}

.site-header .storefront-primary-navigation .col-full{
	margin: 0;
    padding: 0;
    max-width: 100%;
    background-color: #FFFFFF;
    max-height: 70px;

}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    margin-left: auto;
    cursor: pointer;
}

@media (max-width: 768px) {
	.site-header .storefront-primary-navigation .col-full{
		padding: 0 10px;
	}
}

@media (max-width: 1024px) {
	.nav-inner{
		flex-wrap: nowrap;
	}
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-container {
        width: 100%;
        display: none;
    }

    #site-navigation.toggled .menu-container {
        display: block;
    }

    .primary-navigation,
    .handheld-navigation {
        display: block;
    }

    .nav-inner {
        flex-direction: row;
        align-items: flex-start;
    }

	.menu-container .primary-navigation{
		display: none;
	}
}

.main-navigation ul li.current-menu-item a{
    background-color: white;
    color: black !important;
}

@media (min-width: 768px) {
	.main-navigation ul li a {
		color: #000000;
		/* background-color: black; */
        font-size: 18px;
		transition: all 0.4s ease;
		padding: 10px 15px;
		display: inline-block;
		text-decoration: none;
	}
	
	.main-navigation ul li a:hover,
	.main-navigation ul li:hover > a {
		color: black;
		background-color: white;
	}
	
	/* But allow it to animate smoothly on hover too */
	.main-navigation ul li.current-menu-item > a:hover {
		background-color: white;
		color: black;
	}
}

@media (max-width: 1440px) {

    .main-navigation ul li a{
        font-size: 14px !important;
    }
}

.main-navigation ul.menu, .main-navigation ul.nav-menu {
    margin-left: 0;
}

@media (min-width: 768px) {
    .main-navigation ul.menu, .main-navigation ul.nav-menu {
		display: inline-flex;
	}
}

@media (min-width: 768px) {
    .main-navigation ul.menu>li>a, .main-navigation ul.nav-menu>li>a {
        padding: 10px 15px;
    }
}

.menu-item .current-menu-item{
	color: white;
}

@media (min-width: 768px){
	#site-navigation .nav-inner{
		flex-wrap: nowrap !important;
	}
}

.hoobrid-footer-branding svg {
    width: 190px;
}

.site-footer{
	padding: 0;
    background-color: #000000;
    /* margin-top: 90px; */
}

@media (min-width: 768px) {

    .site-footer .col-full {
        margin-left: 0;
        margin-right: 0;
        padding: 0 30px !important;
        box-sizing: content-box;
		max-width: 100%;
    }
}

@media (min-width: 600px) {

    .site-footer{
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}


.footer-language-switcher ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-language-switcher li {
    align-items: center;
}

.footer-language-switcher{
	display: flex;
}

.footer-language-switcher a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-language-switcher a:hover {
    color: #ddd;
    text-decoration: underline;
}

.segmented-switcher ul {
    display: flex;
    border: 1px solid black;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: fit-content;
}

.segmented-switcher a {
    display: block;
    padding: 8px 20px;
    background-color: black;
    color: white;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-left: 1px solid black;
    transition: all 0.3s ease;
	text-transform: uppercase;
}

.segmented-switcher li:first-child a {
    border-left: none;
}

/* .segmented-switcher .current-lang a {
    background-color: transparent;
    color: black;
} */


.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo and cert stacked */
.footer-branding {
    align-items: flex-start;
}

/* Center language switcher */
.footer-language {
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Certification image spacing */
.certification-badge {
    margin-top: 1rem;
}

/* Responsive fallback */
@media (max-width: 768px) {
    .hoobrid-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        margin-bottom: 2rem;
    }

    .footer-extra {
        display: none;
    }
}

.hoobrid-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-cell {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

/* Align logo and cert */
.footer-logo a svg {
    width: 190px;
    fill: #FFFFFF
}

@media (max-width: 768px) {
    .footer-cell .footer-mobile-logo{
        display: block;
    }

    .footer-cell .footer-logo{
        display: none;
    }
}


.footer-cert img {
    height: 46px;
}

/* Language switcher styling */
.footer-language-switcher {
	border: 1px solid black;
    display: flex;
    gap: 0;
    height: 46px; /* match cert image */
}

.footer-language-switcher li {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
	width: 80px;
}

.footer-language-switcher li a {
	text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    height: 100%;
    background: black;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    /* border: 1px solid black; */
    transition: background 0.3s ease, color 0.3s ease;
}

.menu.nav-menu li a {
    text-decoration: none;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s ease;
}

.menu.nav-menu li a:hover {
    border-bottom: 4px solid black;
    color: black;
}

.footer-language-switcher li a {
    text-decoration: none;
    color: inherit;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s ease;
}

.footer-language-switcher li a:hover {
    border-bottom: 4px solid black;
    color: black;
}

/* Responsive fallback */
@media (max-width: 768px) {
    .hoobrid-footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
        margin-bottom: 60px;
    }

    .footer-language-switcher {
        justify-content: center;
    }
}

.footer-language-switcher li a {
    color: white; /* white text for non-active languages */
    text-decoration: none;
    transition: all 0.3s ease; /* smooth hover */
}

.footer-language-switcher li a:hover {
    text-decoration: none;
    border-bottom: 4px solid #FFFFFF;
}

.footer-language-switcher li.lang-item.current-lang a {
    color: #FFFFFF !important; /* active/current language always black */
}

.footer-language-switcher li.lang-item a {
    color: #FFFFFF !important; /* active/current language always black */
}

.footer-cell {
    display: flex;
    justify-content: end; /* Default: center everything */
    align-items: end;
}

/* Left column cells: align to left */
.footer-logo,
.footer-cert {
    justify-content: flex-start;
	align-items: flex-start;
}

/* Center column cells: align to center (default) */
.footer-lang {
    justify-content: center;
}

/* Right column cells: align to right */
.footer-empty + .footer-cell, /* top-right empty cell */
.footer-lang + .footer-cell /* bottom-right empty cell */ {
    justify-content: flex-end;
}

.footer-mobile-logo{
    display: none !important;
}

@media (max-width: 768px) {

	.footer-logo{
		margin-bottom: 0;
        display: none !important;
	}

    .footer-mobile-logo{
        display: block !important;
    }

    .footer-mobile-logo svg{
        width: 45px;
        height: 55px;
        margin: 0 10px;
    }
}

.post-type-archive-product #content .col-full{
    max-width: 90%;
}

@media (max-width: 768px) {
    .post-type-archive-product #content .col-full{
        display: flex;
        flex-direction: column-reverse;
    }

    .post-type-archive-product #primary, #secondary {
        width: 100%;
        float: none;
    }
}

/* Fullscreen hero */
/* .hoobrid-hero-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
} */

.hoobrid-hero {
    background-image: url('/wp-content/themes/hoobrid/background.jpg');
    background-position: center center;
    background-size: cover; /* Cover full width/height without cutting important parts */
    background-attachment: fixed; /* Parallax effect */
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Text at bottom */
    justify-content: center;
    padding-bottom: 50px;
    text-align: center;
    color: white;
}


.hero-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 90%;
}

.hoobrid-section-content {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

.hoobrid-section-content .container {
    max-width: 960px;
    margin: 0 auto;
}

.page-template-page-homepage .site-main {
    padding: 0;
    margin: 0;
}

.page-template-page-homepage .col-full {
    max-width: 100%;
    padding: 0;
}

@media (max-width: 1063px) {
    .page-template-page-homepage .col-full {
        margin: 0;
    }
}

.page-template-page-homepage #masthead {
    margin-bottom: 60px;
    margin-top: 30px;
}

/* .hoobrid-hero-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 300px;
} */

.grid-container{
    background-color: #FFFFFF;
    margin-top: 50px;
    padding-bottom: 84px;
}

.hoobrid-hero-image {
    height: auto;
    object-fit: scale-down;
    margin: auto;
    margin-top: 60px;
}

.vehicle-select{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 400;
    padding-top: 36px;
    font-size: 28px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
	background: none;
    text-shadow: 1px 1px 12px #00000080;
}

.hoobrid-hero-wrapper .hero-text h1{
    color: white;
	font-size: clamp(
        20px,
        calc(20px + 70 * ((100vw - 320px) / 1600)),
        90px
    );
	margin-bottom: 0;
}

.hoobrid-hero-wrapper h1{
    color: #FFFFFF;
	font-size: 50px;
	margin-bottom: 0;
    font-family: 'Sequel100Black', sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    .hoobrid-hero-wrapper h1{
        font-size: 30px;
    }
}

.hoobrid-section-content {
    padding: 80px 20px;
    color: white;
}

/* SECTION TWO HOMPEAGE */

.hoobrid-mission-section {
    padding: 25px;
    background: #f0f0f0 !important;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}

.mission-text{
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
    text-align: left;
}

.mission-text h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-size: clamp(
        14px,
        calc(14px + 4 * ((100vw - 320px) / 1600)),
        18px
    );
    font-weight: 400;
    height: 22px;
    margin-bottom: 26px;

}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: clamp(
        20px,
        calc(20px + 45 * ((100vw - 320px) / 1600)),
        65px
    );
}

.text-container{
    margin-top: 28px;
    margin-bottom: 28px;
}

.mission-text p {
    font-size: clamp(
        20px,
        calc(20px + 5 * ((100vw - 320px) / 1600)),
        25px
    );
    font-stretch: 100%;
    margin-bottom: 20px;
    line-height: 1.6;
    color: black;
    font-weight: 400;
}

.mission-text .button {
    display: inline-block;
    padding: 12px 24px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.mission-text .button:hover {
    background: #333;
}

.mission-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-text .button {
        margin-top: 20px;
    }
}

.site-main ul.products li.product.berocket_lgv_grid{
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
}

.site-main ul.products li.product.berocket_lgv_grid .price{
    font-size: 18px;
    font-weight: 700;
    color: black;
}


.go-to-shop-wrapper {
    text-align: center;
    margin: 100px 0 0 0;
}

.go-to-shop-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #000;
    width: 200px;
}

.go-to-shop-button:hover {
    background-color: #fff;
    color: #000;
}

a:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* This is the shadow on the button */
    transition: all 0.3s ease;
    text-shadow: none;
}

.hero-button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow on hover */
}

/* Responsive: Stack buttons and adjust padding/font for small screens */
@media (max-width: 600px) {
    .hero-button {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 10px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-text{
        padding: 10px !important;
    }
}

.page-template-page-homepage .selected-attributes-wrapper {
    display: flex;
    /* align-items: flex-start; */
    align-items: stretch;
    flex-wrap: nowrap;
    margin: 20px;
    margin-top: 0;
    margin-bottom: 0;
    width: calc(100% - 20px);
}

.page-template-page-homepage .brand-logo-selected {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    margin: 20px 0px 20px;
    margin-top: 0;
}

.page-template-page-homepage .brand-logo-selected img {
    height: 100%;
    width: auto;
    max-height: 100%;
    object-fit: contain;
}

.page-template-page-homepage .selected-attributes {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    min-height: 60px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    align-items: baseline;
    margin-top: 0;
}

@media (max-width: 768px) {
    .page-template-page-homepage .selected-attributes-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .page-template-page-homepage .brand-logo-selected {
        justify-content: flex-start;
        margin-bottom: 10px;
        max-width: none;
        flex: 0 0 auto;
        margin: auto;

    }

    .page-template-page-homepage .brand-logo-selected img {
        max-height: 70px;
        height: auto;
        width: auto;
    }

    .page-template-page-homepage .selected-attributes {
        margin-top: 0;
    }

    #vehicle-grid {
        justify-content: space-between !important;
    }
}

.site-header-cart .cart-contents{
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    color: #000000;
    font-weight: 700;
    align-items: center;
    font-size: 18px;
}

.site-header-cart .cart-contents .count{
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    opacity: 1;
}

.site-header-cart .cart-contents::after {
    content: '';
    display: inline-block;
    background: url('/wp-content/themes/hoobrid/assets/ecart.svg') no-repeat center;
    background-size: contain;
    width: 38px;
    height: 38px;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 1920px) {
    .site-header-cart .cart-contents::after {
        width: 25px !important;
        height: 25px !important;
        margin-left: 4px !important;
    }

    .site-header-cart .cart-contents{
        font-size: 14px !important;
    }

    .site-header .storefront-primary-navigation .col-full{
        max-height: 55px !important;
    }

    .site-header-cart{
        height: 55px;
    }

    .site-header-cart .cart-contents .count{
        font-size: 14px !important;
    }

    .woocommerce-active .site-header .main-navigation{
        height: 55px;
    }

    #site-navigation .nav-inner{
        height: 55px;
    }

    .main-navigation ul.menu>li>a, .main-navigation ul.nav-menu>li>a {
        padding: 14px 15px 8px 15px !important;
    }
}

@media (max-width: 1440px) {
    .site-header-cart .cart-contents::after {
        width: 25px !important;
        height: 25px !important;
        margin-left: 4px !important;
    }

    .site-header-cart .cart-contents{
        font-size: 14px !important;
    }

    .site-header .storefront-primary-navigation .col-full{
        max-height: 55px !important;
    }

    .site-header-cart{
        height: 55px;
    }

    .site-header-cart .cart-contents .count{
        font-size: 14px !important;
    }

    .woocommerce-active .site-header .main-navigation{
        height: 55px;
    }

    #site-navigation .nav-inner{
        height: 55px;
    }

    .main-navigation ul.menu>li>a, .main-navigation ul.nav-menu>li>a {
        padding: 18px 15px 10px 15px !important;
    }
}

@media (max-width: 1024px) {
   .main-navigation ul.menu>li>a, .main-navigation ul.nav-menu>li>a {
        font-size: 12px !important;
    } 
}

.vehicle-grid-content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vehicle-grid-content svg{
    width: 100%;
    height: 100%;
}

.vehicle-grid-item {
    aspect-ratio: 1 / 1;
    width: calc(12.5% - 16px); /* 8 per row on large screens */
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: calc(12.5% - 16px);
}

/* Hover effect */
.vehicle-grid-item:hover .vehicle-grid-content{
    background: black !important;
}

.vehicle-grid-item:hover .brand-name{
    opacity: 1;
}

.vehicle-grid-item:hover .vehicle-grid-content svg {
    fill: white;
}

/* .vehicle-grid-content svg path {
    fill: black !important;
    transition: fill 0.3s ease;
} */

.vehicle-grid-item:hover svg path {
    fill: white !important;
}

.vehicle-grid-item.brand-selected:hover svg path {
    fill: initial !important;
}

@media (max-width: 1400px) {
    .vehicle-grid-item {
        width: calc(20% - 16px); /* 5 per row */
        max-width: calc(20% - 16px);
    }
}

@media (max-width: 1024px) {
    .vehicle-grid-item {
        width: calc(25% - 16px); /* 4 per row */
        max-width: calc(25% - 16px);
    }
}

@media (max-width: 768px) {
    .vehicle-grid-item {
        width: calc(33.33% - 16px); /* 3 per row */
        max-width: calc(33.33% - 16px);
    }
}

@media (max-width: 480px) {
    .vehicle-grid-item {
        width: calc(50% - 16px); /* 2 per row */
        max-width: calc(50% - 16px);
    }
}


.vehicle-grid-item img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 1024px) {
    .vehicle-grid-item {
        flex: 1 0 calc(33.33% - 16px);
    }
}
@media (max-width: 768px) {
    .vehicle-grid-item {
        flex: 1 0 calc(50% - 16px);
    }
}
@media (max-width: 480px) {
    .vehicle-grid-item {
        flex: 1 0 100%;
    }
}

.vehicle-grid-item .brand-name{
    font-size: 18px;
    font-weight: 700;
    opacity: .5;
    margin-top: 20px;
    text-transform: uppercase;
}

/* .hoobrid-hero-wrapper {
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.hoobrid-hero-wrapper.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.hoobrid-hero-wrapper.hidden {
    opacity: 0;
    transform: translateY(-100px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.grid-container {
    position: relative;
    z-index: 2;
    transition: margin-top 0.5s ease;
} */

.hoobrid-hero-image {
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
    display: block;
    max-width: 100%;
    height: auto;
}

.hoobrid-hero-heading {
    transition: opacity 0.4s ease;
    opacity: 1;
}

.hoobrid-hero-image.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.hoobrid-hero-heading.fade-out {
    opacity: 0;
}

.hoobrid-hero-heading.fade-in {
    opacity: 1;
}

.grid-container {
    /* opacity: 0; */
    transform: translateY(30px); /* start slightly below */
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.grid-container.visible {
    opacity: 1;
    transform: translateY(-90%);
}

.hoobrid-hero-image.slide-out {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.grid-container {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.grid-container.visible {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

#selected-attributes {
    display: flex;
    align-items: flex-end;
}

.attribute-tag {
    display: flex;
    flex-direction: column;
    padding: 6px 10px;
    text-transform: capitalize;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}
/* 
.attribute-arrow-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding: 6px 10px;
    opacity: 1;
    color: #000;
} */

@media (max-width: 768px) {
    .attribute-tag{
        padding: 3px 5px;
        font-size: 12px;
    }

    .attribute-label {
        font-size: 12px;
    }

    .attribute-value {
        font-size: 12px;
    }

    /* .attribute-arrow-wrapper {
        padding: 3px 5px;
        font-size: 12px;
    } */
}




/* .brand-selected {
    border: 2px solid black;
    background-color: #000;
    color: white;
} */

.brand-selected .brand-icon {
    /* fill: white; */
    width: 100%;
    height: 100%;
    margin: auto;
    display: block;
}

.vehicle-grid-item.brand-selected{
    justify-content: start;
}

.vehicle-grid-item.brand-selected .brand-name{
    opacity: 0;
}

.vehicle-grid-selected-brand{
    background: #000000;
}

.vehicle-grid-selected-brand svg{
    fill: white !important;
}

.vehicle-grid-item.brand-selected:hover {
    cursor: default; /* Optional: remove pointer if it's not clickable */
}

.vehicle-grid-selected-brand{
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-header .storefront-primary-navigation{
    border-bottom: 1px solid #000000;
}

.sticky {
    position: fixed;
    top: 0 !important;
    z-index: 999;
}

.admin-bar .sticky {
    position: fixed;
    top: 30px !important;
    z-index: 999;
}


@media (max-width: 1920px) {

    .page-template-page-homepage #masthead{
        margin-bottom: 30px !important;
    }

    .woocommerce-active .site-header .site-header-cart{
        height: 55px !important;
    }

    .woocommerce-active .site-header .site-branding{
        margin-top: 2px;
    }
}

@media (max-width: 1440px) {

    .page-template-page-homepage #masthead{
        margin-bottom: 30px !important;
    }

    .woocommerce-active .site-header .site-header-cart{
        height: 55px !important;
    }

    .woocommerce-active .site-header .site-branding{
        margin-top: 2px;
    }
}

@media (max-width: 1024px) {
    #site-navigation .nav-inner{
        gap: 0 !important;
    }

    .woocommerce-active .site-header .site-header-cart{
        padding: 0 5px !important;
    }
}

@media (max-width: 1024px) {
    .page-template-page-homepage #masthead{
        margin-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    #page {
        padding: 0;
    }

    .sticky {
        position: fixed;
        top: 0 !important;
        z-index: 999;
    }

    .admin-bar .sticky {
        position: fixed;
        top: 30px !important;
        z-index: 999;
    }

    #site-navigation .nav-inner{
        flex-direction: row-reverse;
        justify-content: start !important;
    }

    #site-navigation-menu-toggle{
        margin: 0;
        background-color: #FFF;
        color: #FFF;
        padding: 0 15px 0 10px;
        position: initial;
    }

    #site-navigation-menu-toggle span{
        font-size: 0;
        line-height: 0;
        color: transparent;
    }

    button.menu-toggle:after, button.menu-toggle:before, button.menu-toggle span:before{
        left: 20px;
    }

    .button.menu-toggle:after, button.menu-toggle:before, button.menu-toggle span:before{
        background-color: #000;
    }

    .button.menu-toggle:after, button.menu-toggle:before, button.menu-toggle span:before{
        background-color: #000;
    }

    .page-template-page-homepage #masthead{
        margin: 0;
        margin-bottom: 0 !important;
        height: 55px;
    }

    .site-branding{
        margin-right: 0;
        padding: 0;
    }

    .woocommerce-active .site-header .site-branding{
        margin-top: -5px;
        margin-left: 1rem;
    }

} 

button.menu-toggle:after, button.menu-toggle:before, button.menu-toggle span:before{
    background-color: #000;
    width: 18px;
}

.product_list_widget li img{
    display: none !important;
}

.woocommerce-cart .site-content{
    background: #FFF;
}

.woocommerce-checkout .site-content{
    background: #FFF;
}

.woocommerce-cart .storefront-breadcrumb{
    background: #FFF;
    margin: 0;
}

.woocommerce-checkout .storefront-breadcrumb{
    background: #FFF;
    margin: 0;
}

.woocommerce-account .site-content{
    background: #FFF;
}

.woocommerce-account .storefront-breadcrumb{
    background: #FFF;
    margin: 0;
}

.woocommerce-shop .site-content{
    background: #FFF;
}

.woocommerce-shop .storefront-breadcrumb{
    background: #FFF;
    margin: 0;
}

.woocommerce-page .site-content{
    background: #FFF;
}

.woocommerce-page .storefront-breadcrumb{
    background: #FFF;
    margin: 0;
}

.wc-block-cart-item__image a{
    display: none;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img{
    display: none;
}

@media (min-width: 768px) {
    .main-navigation a {
        padding: 0 1em 2.2906835em 0;
    }
}