/*
Theme Name: TORO 2.0
Theme URI: http://example.com/
Description: Your custom theme.
Author: TORO
Author URI: http://example.com/
Version: 1.0
*/



h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.navbar-brand,
.btn,
.nav-link,
.card-title,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.text-primary,
.carousel-caption h1,
.carousel-caption .h2,
#productCarouselTabs .nav-link {
    font-family: UnitedSans, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 400;
    font-kerning: normal;
    font-variant-ligatures: common-ligatures, contextual;
    -ms-font-feature-settings: "kern", "liga", "clig", "alt";
    font-feature-settings: "kern", "liga", "clig", "calt"
}

body,
p,
.text-muted,
.small,
.card-text,
li,
span,
div:not(.h1):not(.h2):not(.h3):not(.h4):not(.h5):not(.h6) {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #cd2027;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff2832;
}

.text-shadow-lg-dark-center {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

#productCarouselTabs .nav-link {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

#openSidebarBtn{
background: #cd2027;
    border-color: #cd2027;
}

#productCarouselTabs .nav-link:hover {
    color: var(--bs-primary);
    background: rgba(255, 255, 255, 1);
    border-color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#productCarouselTabs .nav-link.active {
    color: white !important;
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    box-shadow: 0 4px 15px rgba(243, 108, 35, 0.3);
}

/* Carousel control styling */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--bs-primary);
    width: 3rem;
    height: 3rem;
    background-size: 60% 60%;
}

.bg-dark {
    background-color: black !important;
}

.stretched-link{
    color: white;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.stretched-link:hover{
    color: #cd2027;
    text-decoration-color: #cd2027;
    text-decoration: underline;
    text-underline-offset: 5px;
}

ul.product-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    width: 100%;
}

li.product-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 2px solid #cd2027; */
    border-radius: 20px !important;
    /* padding: 30px; */
    text-align: center;
    transition: all .3s ease;
    flex: 0 0 calc((100% - 50px) / 3);
}

li.product-category-item img {
    width: auto;
    height: 300px;
    object-fit: contain;
}

li.product-category-item:hover {
    border-color: #fff;
    transform: translateY(-4px);
}

li.product-category-item:hover .category-name{
color: #FFF;
}


/* FLIP BOX CORE */
.flip-box {
    position: relative;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border: 2px solid #ededed;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform .6s ease;
}

/* Front */
.flip-box-front {
    background: #cd2027;
    transform: rotateY(0deg);
}

span.category-name {
    color: #fff;
    margin-top: 10px;
    font-size: 23px;
    font-weight: 600;
    line-height: 32px;
}

/* Back */
.flip-box-back {
    background: #FFF;
    transform: rotateY(180deg);
}

/* Hover Effect */
.flip-box:hover .flip-box-front {
    transform: rotateY(-180deg);
}
.flip-box:hover .flip-box-back {
    transform: rotateY(0deg);
}

.flip-box-back h3 {
    font-size: 24px;
}

/* Button */
.flip-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
}


/* form#fgps-filter-form {
    padding: 35px;
    border: 1px solid #cd2027;
} */
a:focus{
outline: 0 !important;
}
a.footer-link:hover, a.footer-link:focus {
    color: #c00 !important;
    outline: 0px !important;
    font-family: 'Poppins' !important;
}

.filter-group ul li {
    display: flex !important;
    flex-direction: row-reverse;
    justify-content: flex-end;
    /* gap: 20px; */
    align-items: center;
}

.filter-list input {
    max-width: max-content !important;
}

.filter-boolean {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.filter-boolean input {
    width: max-content !important;
    margin-left: 19px;
}

button.button.compare-button.add-to-compare {
    background: #cd2027;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 10px 8px;
}

@media (max-width: 991px) {
    li.product-category-item {
        flex: 0 0 calc((100% - 25px) / 2);
    }
    li.product-category-item img{
        height: 200px;
	}
}

@media (max-width: 768px) {
    li.product-category-item {
        width: 45%;  /* 2 in a row */
    }
    li.product-category-item img{
        height: 200px;
	}
}

@media (min-width: 768px) {
	
    #productCarouselTabs .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 767.98px) {
    #productCarouselTabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    #productCarouselTabs .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
}

.shadow-center {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bb-navbar .navbar-brand img {
    max-height: 50px;
    width: auto;
}

@media (max-width: 767.98px) {
    .bb-navbar .navbar-brand img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    li.product-category-item {
        flex: 0 0 100%; /* Full width */
    }
   
}

.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

#back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 0px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


@media print {

    .navbar,
    .carousel,
    #back-to-top,
    .btn {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .text-white {
        color: black !important;
    }

    .bg-dark {
        background: white !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel {
        transition: none;
    }

    .carousel-item {
        transition: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/*HP Footer issue*/
div#front-resellers-map {
    max-height: 500px;
}
footer img {
  max-width: 100%;
  height: auto;
}
 
.footer-logo img,
.site-footer .footer-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
 
.site-footer,
footer {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
 
@media screen and (max-width: 767px) {
  .footer-logo img,
  .site-footer .footer-logo img {
    max-width: 150px;
  }
}