.woocommerce-loop-category__title mark.count {
    display: none;
}

.woocommerce-product-details__short-description {
    color: #c40000;
}

.product-categories {
    display: none;
}


h2.woocommerce-loop-category__title{
text-align: center;
	
}

.wp-block-button__link {
    background-color: #c40000 !important;
    color: #FFF !important;
}


.post-single .entry-content {
    color: #000000;
}


.menu-text {
    color: #000000;
}

#scroll-top {
    background-color: #c40000 !important;
    border: 1px solid #000000 !important;
}

#tf-f-cart-icon {
    background-color: #c40000;
    width: 50px;
    height: 50px;
    border-radius: 2px;
    cursor: pointer;
    color: #FFF;
    font-size: 25px;
    text-align: center;
    padding-top: 7px;
    position: absolute;
    left: 5px;
    bottom: 8px;
    padding: 0;
    min-width: auto;
}

.tfwctool-quick-button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #c40000;
    color: #FFF;
    padding: 11px 25px;
    border-radius: 2px;
    font-weight: bold;
    cursor: pointer;
    width: 150px;
    text-align: center;
    float: right;
    line-height: 1.8;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid #000;
    border-color: #000000;
    border-radius: 2px;
    background: #c40000;
    font-size: 14px;
    line-height: 1;
    padding: 10px 20px;
    color: #FFF;
    outline: none !important;
}

.product-view-type-item.active {
    color: #c40000;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
    /* background: #e5e5e5; */
    border-color: #c40000;
}

.overlay-inner {
	display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 20px;
    padding-top: 10px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    color: #c40000 !important;
    text-transform: uppercase;
}

.woocommerce ul.products li.product .product-categories a {
    font-size: 13px;
    color: #C40000;
}

	
	/* Style category title as a button */
h2.woocommerce-loop-category__title {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #C40000 !important;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 8px;
		width: auto;
		min-width: 200px;
    height: auto;
		padding: 15px 20px;
		line-height: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.97);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the button */

h2.woocommerce-loop-category__title:hover {
    background-color: #C40000;
    color: #FFFFFF !important;
    border-color: #000000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.97);
}

/* Media query for smaller screens */
@media only screen and (max-width: 767px) {
    h2.woocommerce-loop-category__title {
        width: 100%; /* Full width for smaller screens */
        min-width: 0; /* Remove minimum width */
        margin-bottom: 10px; /* Add spacing between buttons */
    }
}

/* Centre WooCommerce category images */
li.product-category {
	    text-align: center;
}
/* Change Sale badge color to match shop style */
.woocommerce span.onsale {
    background-color: #c40000 !important; /* Black background */
    color: #fff !important; /* White text */
    border-radius: 50% !important; /* Keep circle shape */
    padding: 5px 10px !important; /* Adjust size if needed */
}
/* Change product title color in filtered results */
.woocommerce-loop-product__title {
    color: #c40000 !important; /* Red - change hex code as needed */
}

/* Change product price color in filtered results */
.price {
    color: #c40000 !important; /* Green - change hex code as needed */
}
/* Change Add to Basket button color */
.woocommerce a.button.add_to_cart_button {
    background-color: #c40000 !important; /* Deep red background */
    color: #ffffff !important; /* White text for contrast */
}

/* Hover effect (optional - lighter red on hover) */
.woocommerce a.button.add_to_cart_button:hover {
    background-color: #a30000 !important; /* Darker red on hover */
}
/* Move products down to avoid overlapping the button */
.woocommerce ul.products {
    margin-top: 20px !important; /* Adds 20px space above products - change as needed */
}
/* Make form dropdowns horizontal and button centered */
.vehicle-form-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Space between dropdowns */
}

.vehicle-form-horizontal select {
    flex: 1 1 200px; /* Grow to fill row, min 200px */
    max-width: 250px; /* Limit width for balance */
}

.vehicle-form-horizontal button {
    display: block;
    margin: 10px auto 0; /* Center button below, with top space */
}