body{
    background-size: cover !important;    
}
@media (min-width: 768px), print {
  .sticky-menu:not(.active) .header-wrapper-left .logo-left {
    min-height: max-content !important;
    top: unset !important;
  }
}
/*footer.page-footer{
    filter: brightness(90%) !important; 
}*/
footer .footer-content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-content-top .social-links {
  display: flex;
  justify-content: space-between;
}
footer .footer-content-top .social-links a{
  overflow: auto;
  display: flex;
  justify-content: center;
  align-content: center;
}
footer .footer-content-top .social-links svg {
  width: 35px;
  height: 35px;
}
footer .footer-content-top .social-links ul {
  display: flex;
  gap: 5px;
  justify-content: end;
}

footer .footer-links-section {	
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
footer .footer-links-section .footer-links h6 {
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
}
footer .footer-links-section .footer-links ul li {
  color: #fff;
  padding: 10px 0;
}
footer .footer-links-section .footer-links ul li a {
  color: #FFF;
}

footer .footer-links-section .footer-links {
  width: calc(100% / 4);
}
footer .footer-copyright-payment{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 !important;
}
footer .footer-copyright-payment .footer-payments{
  display: flex;
  align-items: center;
  gap:5px;
}
footer .footer-copyright-payment .footer-payments img{
  height: 20px;
}


footer #topfooter .block.newsletter .field .control::before{
	content: unset;
}
footer #topfooter #newsletter-validate-detail{
	background: #FFF;
  	border-radius: 10px;
}
footer #topfooter .block.newsletter .action.subscribe{	
	margin: 0;
	border-radius: 10px;
	background-color: #e53b35;
}
footer #topfooter .block.newsletter .field{
	margin: 0;
}
footer #topfooter .block.newsletter .label{
	display: none;
}
footer #topfooter .block.newsletter input{	
	padding: 0 10px;
	color: #000;
    border-radius: 10px;
}
footer #topfooter  .block.newsletter .action.subscribe:hover{
	color:#FFF;
}
footer #topfooter .block.newsletter input::-webkit-input-placeholder,
footer #topfooter .block.newsletter input:-moz-placeholder ,
footer #topfooter .block.newsletter input::-moz-placeholder,
footer #topfooter .block.newsletter input:-ms-input-placeholder ,
footer #topfooter .block.newsletter input::-ms-input-placeholder,
footer #topfooter .block.newsletter input::placeholder { 
   color: #000;
   opacity: 1;
}
footer.page-footer{
    background-color: #242424;
    background-repeat: repeat-y;
    background-size: cover;
}



.cms-index-index .column.main{
	padding-left: 0;
    padding-right: 0;
}

.home-category-cta {
    display: flex;
    gap: 15px;
    padding: 10px;
}
.home-category-cta .category-cta {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.home-category-cta .category-cta img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.home-category-cta .category-cta:hover img {
    transform: scale(1.05);
}
.home-category-cta .category-cta .cta-content {
    /* position: absolute;
    top: 50%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    transform: translate(0,-50%); */
    display: flex;
    color: #000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s ease;
} 
.home-category-cta .category-cta:hover .cta-content {
   /*  background: rgba(0, 0, 0, 0.6); */
}
.home-category-cta .category-cta .cta-content h5 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}
.home-category-cta .category-cta .cta-content a {
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}
.home-category-cta .category-cta .cta-content a:hover {
    color: #ffd700;
    border-color: #ffd700;
}

.home-category-static-banner {
    display: flex;
    gap: 20px; 
    justify-content: center;
    padding:  20px;
}
.home-category-static-banner .category-static-banner {
    flex: 1;
    overflow: hidden;
}
.home-category-static-banner .category-static-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.home-category-static-banner .category-static-banner:hover img {
    transform: scale(1.05);
}



.home-article-items-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
}

.home-article-items-section .home-article-item {
    flex: 1;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 250px;
}

.home-article-items-section .home-article-item:hover {
    border-color: #6c63ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-article-items-section .article-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.home-article-items-section .article-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #222;
    text-transform: uppercase;
}

.home-article-items-section .article-content {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
}

.home-article-items-section .home-article-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: auto;
}


.product-items.widget-product-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 768px), print {
  footer #topfooter .block.newsletter {
    width: 50%;
  }
}

@media (min-width: 768px), print {
  .block-products-list .products-grid .product-items:not(.owl-carousel) > .product-item {
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 890px) {
    footer .footer-links-section .footer-links{
        width: calc(100% / 2);
    }
}
@media only screen and (max-width: 767px) {
    .cms-index-index .page-main{
        padding: 0;
    }
    .product-items.widget-product-grid{
        padding: 10px;
    }
    footer .footer-copyright-payment{
        padding: 0 10px !important;
    }
    .cms-index-index .pagebuilder-slider .pagebuilder-poster-content p > span:first-child {
        font-size: 40px !important;
    }
    .cms-index-index .pagebuilder-slider .pagebuilder-poster-content p > span:nth-child(2) {
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 600px) {
    .home-category-cta{
        flex-direction: column;
    }
    footer .footer-copyright-payment{
        flex-direction: column;
        gap: 10px;
    }
    footer.page-footer .copyright{
        order: 1;
    }
}
@media only screen and (max-width: 500px) {
    .home-category-static-banner{
        padding: 10px;
        flex-direction: column;
    }
    footer .footer-content-top{        
        flex-direction: column;
        gap: 20px;
    }
}
@media only screen and (max-width: 450px) {
    footer .footer-links-section .footer-links{
        width: calc(100% / 1);
    }
}
.block-products-list{
	margin-top: 20px;
}
.block-products-list .block-title {
	overflow: auto;
	border-bottom: 2px solid #efefef;
	padding-bottom: 5px;
}
.block-products-list .block-title strong{
	background: #e53b35;
	color: #fff;
	font-weight: 500;
	padding: 10px;
	display: block;
  	width: max-content;
  	margin-left: 10px;
}
@media (min-width: 768px), print {

  .cdz-horizontal-menu .groupmenu{margin: 0!important;}
  .cdz-horizontal-menu .groupmenu li.level0 > a.menu-link{color: #FFF!important; background-color: transparent!important; border-color: transparent!important;}
   body.catalog-product-view,body.catalog-category-view,body.catalogsearch-result-index{background: #fff;}
   .page-header{background: #202020 !important;}
   .sticky-menu:not(.active) .header-wrapper-left .logo-left{background: transparent !important;padding: 20px 0px !important;}
   .sticky-menu:not(.active) .header-wrapper-left .logo-left::after{content:unset !important;}
   .page-header .logo .main-logo{width: 100%;}
   .sticky-menu:not(.active) .header-wrapper-center{padding: 21px 0 !important;}
   .page-header .authorization-link.switcher .action.toggle{padding: 16px 21px !important;min-height: 82px;}
   .page-header .minicart-wrapper .action.showcart{padding: 10px;}
   .navigation, .breadcrumbs, .page-header .header.panel, .header.content, .footer.content, .page-wrapper > .widget, .page-wrapper > .page-bottom, .block.category.event, .top-container, .page-main:not(.catalog-product-view .page-main){width: 100% !important;} 
}
.product-item-details .action.primary,
.searchsuite-autocomplete .action.primary,
.product-info-main .action.primary{
	background: #00BF63;
	border: 1px solid #00BF63;
	color: #FFF;
}
.product-item-details .action.primary:hover,
.searchsuite-autocomplete .action.primary:hover,
.product-info-main .action.primary:hover {
  background: #ffffff;
  border: 1px solid #00BF63;
  color: #282828;
}
.product-info-main .action.primary{
	line-height: 2.2rem;
	padding: 14px 17px;
	font-size: 1.8rem;
	width:100%;
}
.products-grid .product-item-info .product-item-details{min-height: 165px;}
.home-category-section{margin-top: -70px;margin-right: 10px;margin-left: 10px;}
.home-category-section > .pagebuilder-column-group{z-index: 9;background-color: #fff;}
.home-category-section > .pagebuilder-column-group .category-item{position: relative;padding: 10px;}
.home-category-section > .pagebuilder-column-group .category-item h2{position: absolute;background-color: #161918;color: #fff;width: 95%;margin: 10px auto;text-align: center;padding: 15px 0px;opacity: 0.8;font-weight: 700;transform: translate(0,-50%);top: 50%;}
.home-category-section > .pagebuilder-column-group .category-item div[data-content-type="text"]{position: absolute;margin-top:39px;color: #fff;text-align: center;width: 95%;background-color: #161918;padding-bottom: 15px;opacity: 0.8;transform: translate(0,-50%);top: 50%;}
.home-category-section > .pagebuilder-column-group img{width: 100%;}
.home-arrvals-section,.home-twoimg-section{margin: 0 10px;}
.home-arrvals-section .pagebuilder-column{border-bottom: 1px solid #ccc;}
.home-arrvals-section .pagebuilder-column > h2{background-color: #E53B35;max-width: 130px;color: #fff;font-size: 12px;text-align: center;padding: 10px;margin-bottom: 0;}
.home-arrvals-section .block-products-list{margin-top: 0;}
.home-arrvals-section .product-item-details .product-item-actions{margin: 0;}
.home-arrvals-section .product-item-details .product-item-actions .actions-secondary{display: none;}
.home-twoimg-section .pagebuilder-column-line img{width: 100%;}
.home-brand-section{background-color: #EFEFEF;padding: 10px;}
.home-brand-section,.home-blog-section,.home-twoimg-section,.home-arrvals-section,.home-category-section{margin-bottom: 40px;}
.page-wrapper .page-footer .bottom-footer-wrapper{border-top: 0;background: unset;}
.home-blog-section .post-list .post-holder{background-color: #EFEFEF;border: 0px;}
.home-blog-section .post-list .post-holder .post-header{text-align: center;}
.home-blog-section .post-holder .post-header .post-info{padding: 0;}
.home-blog-section .post-holder .post-header .post-info .value{font-style: normal;}
.home-blog-section .post-list .post-header .post-title{float: unset;max-width: 100%;}
.home-blog-section .post-list .post-header .post-title a{font-size: 16px;color: #000;font-weight: 600;}
.home-blog-section .post-list .post-content{text-align: center;}
.home-blog-section .post-list .post-holder{width: 31.6%;margin: 0 10px;}
.home-blog-section .post-list .post-holder:last-child{margin-right: 0px !important;}
.home-blog-section .post-content .post-description .post-ftimg-hld{width: 100%;float: unset;margin: 0;}
.page-header .panel.wrapper .panel.header{padding-bottom: 10px;padding-top: 10px;}
.page-header .panel.wrapper .panel.header > .block-static-block{display: inline-block;margin-bottom: 0;}
.page-header .panel.wrapper .panel.header .top_header_block .phone,.page-header .panel.wrapper .panel.header .top_header_block .email{display: inline-block;text-transform: uppercase;color: #fff;}
.page-header .panel.wrapper .panel.header .top_header_block .phone > span,.page-header .panel.wrapper .panel.header .top_header_block .email > span{margin-right: 5px;font-weight: 400;}
.page-header .panel.wrapper .panel.header .top_header_block .phone > a,.page-header .panel.wrapper .panel.header .top_header_block .email > a{color: #fff;font-weight: 700;}
.page-header .panel.wrapper .panel.header .top_header_block .email{margin-left: 10px;}
.ambrand-index-index .nav-sections-item-content > .navigation{display: none;}
