section.fleetbeat-shop-section p,
section.fleetbeat-shop-section h1,
section.fleetbeat-shop-section h2,
section.fleetbeat-shop-section h3,
section.fleetbeat-shop-section h4{
	margin: 0;
}


header.fleetbeat-shop-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

h1.fleetbeat-shop-title {
    color: #2B3D4F;
    font-family: Lato;
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -2.3%;
}

p.fleetbeat-shop-description {
    color: #6C7781;
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -2.3%;
}

.fleetbeat-shop-filters {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

button.fleetbeat-shop-filter-btn {
    border-radius: 100px;
    height: 41px;
    background: transparent;
    border: 1px solid #E5E7EB;
    color: #2B3D4F;
    font-family: Lato;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    width: fit-content;
    padding: 12px 24px;
	transition: all 0.3s ease-in-out;
}

button.fleetbeat-shop-filter-btn:hover,
button.fleetbeat-shop-filter-btn:focus{
	background: transparent;
    border: 1px solid #E5E7EB;
	color: #2B3D4F;
}

button.fleetbeat-shop-filter-btn.fleetbeat-shop-filter-btn--active,
button.fleetbeat-shop-filter-btn.fleetbeat-shop-filter-btn--active:hover,
button.fleetbeat-shop-filter-btn.fleetbeat-shop-filter-btn--active:focus{
    background: #28AF60;
    border-color: #28AF60;
    color: #fff;
}

.fleetbeat-shop-search__field-wrapper {
    position: relative;
}

svg.fleetbeat-shop-search__icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.fleetbeat-shop-search input.fleetbeat-shop-search__input[type="search"] {
    position: relative;
    padding: 16.5px 20px 16.5px 52px;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    width: 600px;
    color: #6C7781;
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.fleetbeat-shop-search input.fleetbeat-shop-search__input[type="search"]::placeholder{
	color: #6C7781;
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.fleetbeat-shop-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fleetbeat-shop-search {
    padding: 32px 0;
}

.fleetbeat-shop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 24px;
}

.fleetbeat-product-card__image-container {
    display: inline-block;
    height: 252px;
    width: 100%;
}

.fleetbeat-product-card__image-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

h3.fleetbeat-product-card__title {
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B3D4F;
}

p.fleetbeat-product-card__excerpt {
    color: #6C7781;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

section.fleetbeat-shop-section p.fleetbeat-product-card__excerpt{
	margin: 4px 0 16px;
}

.fleetbeat-product-card__price {
    color: #2B3D4F;
    font-family: Lato;
    font-weight: 800;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.fleetbeat-product-card__btn {
    border: none;
    background: #28AF60;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.fleetbeat-product-card__btn svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    object-fit: cover;
    object-position: center center;
}

.fleetbeat-product-card__action {
    width: fit-content;
}

.fleetbeat-product-card__footer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

article.fleetbeat-product-card {
    background: #fff;
    box-shadow: 0px 4px 12px 0px #0000000D;
    padding: 24px;
	border-radius: 20px;
}


.fleetbeat-product-card__action .added_to_cart {
	display: none !important;
}

.fleetbeat-product-card__btn.added {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

.fleetbeat-product-card__btn.loading .fleetbeat-btn-icon-wrapper {
	opacity: 0.5; 
}

.fleetbeat-product-card__btn::after {
	display: none !important;
}

section.fleetbeat-features-section {
    border-radius: 20px;
	padding: 100px 0;
}

section.fleetbeat-shop-section {
    padding: 40px 0 0;
}

.fleetbeat-features {
    padding: 40px 72px;
	background: #F6F9FB;
}

.fleetbeat-features__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.fleetbeat-feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.fleetbeat-features-section p{
	margin: 0;
}

.fleetbeat-feature-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

p.fleetbeat-feature-card__title {
    color: #2B3D4F;
    font-family: Lato;
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

p.fleetbeat-feature-card__description {
    color: #6C7781;
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

button.fleetbeat-header-mobile__action-btn.fleetbeat-header-mobile__action-btn--cart svg{
	flex-shrink: 0;
}

/** **/
.fleetbeat-single-product__gallery-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
	flex: 1;
    flex-shrink: 0;
}

a.woocommerce-product-gallery__trigger {
    display: none;
}

.fleetbeat-product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
}

.fleetbeat-product-gallery__thumb-item {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: inline-block;
}

.fleetbeat-product-gallery__thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{
	display: none !important;
}

.fleetbeat-product-gallery__main{
	height: 424px;
	width: 100%;
	flex-shrink: 0;
}

.fleetbeat-product-gallery__main img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

section.fleetbeat-single-product__hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
}

.fleetbeat-single-product__summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.fleetbeat-single-product h1,
.fleetbeat-single-product h2,
.fleetbeat-single-product h3,
.fleetbeat-single-product p{
margin: 0;
}

h1.fleetbeat-single-product__title {
    font-family: Lato;
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B3D4F;
}

.fleetbeat-single-product__description {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #6C7781;
}

span.woocommerce-Price-amount.amount {
    font-family: Lato;
    font-weight: 800;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B3D4F;
}

button.fleetbeat-qty-btn.fleetbeat-qty-btn--minus,
button.fleetbeat-qty-btn.fleetbeat-qty-btn--plus{
    border: none;
    width: 16px;
    height: 16px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

button.fleetbeat-qty-btn.fleetbeat-qty-btn--minus svg,
button.fleetbeat-qty-btn.fleetbeat-qty-btn--plus svg{
    display: inline-block;
    width: 100%;
    height: 100%;
}

.fleetbeat-qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 12.5px 16px;
    width: 115px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    height: 44px;
	gap: 20px;
}

span.fleetbeat-qty-value {
    color: #2B3D4F;
    font-family: Lato;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}


button.fleetbeat-custom-add-to-cart-btn {
    background: #28AF60;
    border: none;
    color: #fff;
    font-family: Lato;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 100%;
    height: 44px;
    border-radius: 8px;
}

.fleetbeat-single-product__add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 16px;
}

h2.fleetbeat-shipping-info__title {
    color: #2B3D4F;
    font-family: Lato;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

a.fleetbeat-shipping-info__policy-link {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -2.3%;
    text-decoration: underline;
    color: #6C7781;
    text-underline-offset: 5px;
}

.fleetbeat-shipping-info__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	width: 100%
}

#fleetbeat-product-view .fleetbeat-shipping-info__body {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #6C7781;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    overflow: hidden;
}

#fleetbeat-product-view .fleetbeat-shipping-info__list {
    display: flex;
    margin: 0;
    padding-left: 20px;
    list-style-type: decimal;
    flex-direction: column;
    gap: 4px;
}

#fleetbeat-product-view .fleetbeat-shipping-info__list-item {
    margin-bottom: 8px;
    padding: 0;
}

#fleetbeat-product-view .fleetbeat-shipping-info__list-item:last-child {
    margin-bottom: 0;
}

#fleetbeat-product-view .fleetbeat-shipping-info__sub-list {
    margin: 4px 0 0 0;
    padding-left: 18px;
    list-style-type: disc;
}

#fleetbeat-product-view .fleetbeat-shipping-info__sub-list-item {
    margin-bottom: 4px;
    padding: 0;
}

#fleetbeat-product-view .fleetbeat-shipping-info__sub-list-item:last-child {
    margin-bottom: 0;
}

#fleetbeat-product-view .fleetbeat-shipping-info__body strong {
    font-weight: 700;
    color: #2B3D4F;
}

.fleetbeat-shipping-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

nav.fleetbeat-breadcrumbs a {
    color: #6C7781;
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

#fleetbeat-product-view .fleetbeat-product-gallery__thumb-item.is-active {
    border: 2px solid #24b47e; 
	border-radius: 8px;
}

#fleetbeat-product-view .fleetbeat-product-gallery__thumb-item.is-active img{
	border-radius: 8px;
}


#fleetbeat-product-view .fleetbeat-product-gallery__thumbs {
    height: 390px; 
    overflow: hidden;
    position: relative;
    width: 100%;
}

button.fleetbeat-gallery-arrow.fleetbeat-gallery-arrow--up,
button.fleetbeat-gallery-arrow.fleetbeat-gallery-arrow--down{
    border: none;
    padding: 0;
    margin: 20px 0;
}

.fleetbeat-product-gallery__carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button.fleetbeat-gallery-arrow.fleetbeat-gallery-arrow--up:focus,
button.fleetbeat-gallery-arrow.fleetbeat-gallery-arrow--down:focus,
button.fleetbeat-gallery-arrow.fleetbeat-gallery-arrow--up:hover,
button.fleetbeat-gallery-arrow.fleetbeat-gallery-arrow--down:hover{
	background: transparent;
}

button.fleetbeat-custom-add-to-cart-btn:hover,
button.fleetbeat-custom-add-to-cart-btn:focus{
	background: #28AF60;
}

nav.woocommerce-breadcrumb{
	display: none;
}

/** **/


@media(max-width: 768px){
	.fleetbeat-shop-search input.fleetbeat-shop-search__input[type="search"]{
		width: 100%;
	}
	
	.fleetbeat-features__container {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 40px;
	}
	
	.fleetbeat-features {
		padding: 24px 40px;
		border-radius: 20px;
	}
	
	section.fleetbeat-features-section {
		padding: 40px 16px;
	}
	
	.fleetbeat-shop-cards{
		grid-template-columns: repeat(1, 1fr);
	}
	
	section.fleetbeat-shop-section{
		padding: 0 16px;
	}
	
	h1.fleetbeat-shop-title{
		font-size: 32px;
		line-height: 120%;
		text-align: center;
		text-wrap-style: balance;
	}
	
	p.fleetbeat-shop-description{
		font-size: 16px;
		line-height: 150%;
		text-align: center;
	}
	
	.fleetbeat-shop-search{
		width: 100%;
	}
	
	.fleetbeat-shop-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; 
        
        scrollbar-width: none; 
        
        -ms-overflow-style: none; 
    }

    .fleetbeat-shop-filters::-webkit-scrollbar {
        display: none;
    }
}