@charset "utf-8";

/*====================================
Google Font
=====================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
/*====================================
Typography
=====================================*/
body{
    color: #222;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 0.5px;
}
body, html{
    height: 100%;
}
/* heading */
h1,
h2,
h3,
h4,
h5,
h6{
    color: #222;
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: normal;
}
a{
    color: #222;
    display: inline-block;
    text-decoration: none;
}
a:hover{
    color: #61a168;
    text-decoration: none;
}
a, a:hover{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
img {
    backface-visibility: hidden;
}
span {
    display: inline-block;
}
button{
    padding: 0;
    border: none;
    cursor: pointer;
}
button,
button:hover{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
button,
button:focus,
a:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.btn-primary:active:focus{
    box-shadow: none;
}
p{
    line-height: 25px;
    margin-bottom: 0px;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
input,
select,
textarea{
    padding: 10px 15px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border: 1px solid #e2e2e2;
    box-shadow: none;
}
.btn:focus,
.btn:active {
    outline: none;
    box-shadow: none;
}
/* body hidden class */
body.hidden {
    overflow-y: hidden;
    padding-right: 17px;
}
/* btn style 1 css */
.btn-style1 {
    position: relative;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px;
    background-color: #61a168;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
    border-color: #61a168;
}
.btn-style1 span{
    position: relative;
    z-index: 2;
}
.btn-style1::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 1;
    border-radius: 50px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.btn-style1:hover::before{
    background-color: #5a6813;
    width: 100%;
    border-radius: 50px;
    border-color: #5a6813;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.btn-style1:hover{
    color: #fff;
}
/* btn-style-2 css */
.btn-style2 {
    color: #fff;
    font-size: 14px;
    padding: 10px 40px;
    background-color: #61a168;
    font-weight: 500;
    border: 2px solid #61a168;
    border-radius: 3px;
}
.btn-style2:hover{
    background-color: transparent;
}
/* btn-style-3 css */
.btn-style3 {
    position: relative;
    color: #fff;
    font-size: 13px;
    padding: 8px 25px;
    background-color: #61a168;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    border-color: #61a168;
}
.btn-style3 span{
    position: relative;
    z-index: 2;
}
.btn-style3::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 1;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.btn-style3:hover::before{
    background-color: #ae3a3a;
    width: 100%;
    border-radius: 3px;
    border-color: #ae3a3a;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.btn-style3:hover{
    color: #fff;
}
/* mm-fullscreen-bg css */
.mm-fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}
.mm-fullscreen-bg.active {
    opacity: 1;
    visibility: visible;
}
.mm-fullscreen-bg,
.mm-fullscreen-bg.active{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* section padding css */
.section-t-padding{
    padding-top: 80px;
}
.section-b-padding{
    padding-bottom: 80px;
}
.section-tb-padding{
    padding-top: 80px;
    padding-bottom: 80px;
}
.section0-t-padding{
    padding-top: 60px;
}
.section0-b-padding{
    padding-bottom: 60px;
}
.section0-tb-padding{
    padding-top: 60px;
    padding-bottom: 60px;
}
.section1-t-padding{
    padding-top: 30px;
}
.section1-b-padding{
    padding-bottom: 30px;
}
.section1-tb-padding{
    padding-top: 30px;
    padding-bottom: 30px;
}
/* section title css */
.section-title3 h2{
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1;
}
.section-title3 h2 span{
    position: relative;
}
.section-title3 h2 span::before,
.section-title3 h2 span::after{
    background-color: #61a168;
    content: "";
    position: absolute;
    bottom: 50%;
    width: 10px;
    height: 2px;
}
.section-title3 h2 span::before{
    left: -25px;
}
.section-title3 h2 span::after{
    right: -25px;
}
/* container css */
.container{
/*     max-width: 1500px; */
}
/* carousel button css */
.home6-category .category-6 .cate-6.owl-carousel .owl-nav{
    margin-top: 0;
}
.home6-category .category-6 .cate-6.owl-carousel .owl-nav button,
.featured-product-6 .home6-featured .owl-nav button{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    background-color: #61a168;
    color: #fff;
    font-size: 20px;
    margin: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
}
.home6-category .category-6 .cate-6:hover .owl-nav button{
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.home6-category .category-6 .cate-6 .owl-nav button.owl-prev,
.home6-category .category-6 .cate-6 .owl-nav button.owl-next,
.home6-category .category-6 .cate-6:hover .owl-nav button.owl-prev,
.home6-category .category-6 .cate-6:hover .owl-nav button.owl-next{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.home6-category .category-6 .cate-6.owl-carousel .owl-nav button:hover,
.featured-product-6 .home6-featured .owl-nav button:hover{
    background-color: #fff;
    color: #61a168;
}
.home6-category .category-6 .cate-6.owl-carousel .owl-nav button.owl-prev,
.featured-product-6 .home6-featured .owl-nav button.owl-prev{
    left: 15px;
}
.home6-category .category-6 .cate-6.owl-carousel:hover .owl-nav button.owl-prev{
    left: -10px;
}
.home6-category .category-6 .cate-6.owl-carousel .owl-nav button.owl-next,
.featured-product-6 .home6-featured .owl-nav button.owl-next{
    right: 15px;
}
.home6-category .category-6 .cate-6.owl-carousel:hover .owl-nav button.owl-next{
    right: -10px;
}
.featured-product-6 .home6-featured .owl-nav button{
    opacity: 1;
    visibility: visible;
}
.featured-product-6 .home6-featured .owl-nav button:hover{
    background-color: #fff;
    color: #61a168;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.featured-product-6 .home6-featured .owl-nav button.owl-prev{
    left: -10px;
}
.featured-product-6 .home6-featured .owl-nav button.owl-next{
    right: -10px;
}
/* top notification css */
.top-6{
    background-color: #61a168;
}
.top-6 ul.top-home{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* top offer css */
.top-6 ul.top-home li.top-home-li p.t-offer{
    color: #fff;
}
.top-6 ul.top-home li.top-home-li p.t-offer span.top-off{
    font-weight: 600;
    animation: blinker .7s infinite;
}
@keyframes blinker{
    50%{
        color: #61a168;
    }
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li{
    position: relative;
    padding: 9px 12px 10px 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li:last-child{
    padding-right: 0px;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li a{
    color: #fff;
    font-size: 13px;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li i{
    margin-left: 5px;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.account,
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.currency{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li:hover ul.account,
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li:hover ul.currency{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.account,
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.currency{
    background-color: #fff;
    position: absolute;
    top: 100%;
    z-index: 2;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.account{
    padding: 10px 0px;
    width: 160px;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.currency{
    padding: 10px 0px;
    width: 55px;
}
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.account li a,
.top-6 ul.top-home li.top-home-li ul.top-dropdown li.top-dropdown-li ul.currency li a{
    color: #000;
    padding: 5px 15px;
}
/* header top css */
.header-main-area{
    background-color: #fff;
	padding: 1rem 0;
}
.header-main-area.is-sticky{
    background-color: #ffffff;
	padding: 0;
}
@media (max-width: 1199px){

}
.header-main-area.is-sticky{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 99;
    width: 100%;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-150px);
  }
  100% {
    transform: translateY(0px);
  }
}
.header-main-area .header-main{
    /* padding: 15px 0px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-main-area .header-main .header-element.logo {
    /* width: 20%; */
}
.header-main-area .header-main .header-element.header-search{
    /* width: 60%; */
}
.header-main-area .header-main .header-element.header-search form{
    position: relative;
}
.header-main-area .header-main .header-element.header-search form input{
    background-color: #f4f4f4;
    width: 100%;
    border-radius: 25px;
    height: 45px;
    padding: 0px 25px;
    border: 1px solid transparent;
}
.header-main-area .header-main .header-element.header-search form input:focus{
    border-color: #61a168;
}
.header-main-area .header-main .header-element.header-search form .search-btn{
    background-color: transparent;
    color: #000;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 63px;
    height: 45px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.header-main-area .header-main .header-element.header-search form .search-btn:hover{
    color: #61a168;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* navbar-toggler css */
button.navbar-toggler{
    padding: 0;
    border: none;
}
button.navbar-toggler span.line{
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
}
button.navbar-toggler span.line,
button.navbar-toggler span.line::before,
button.navbar-toggler span.line::after{
    width: 20px;
    height: 2px;
    display: block;
    background-color: #000;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
button.navbar-toggler span.line::before,
button.navbar-toggler span.line::after{
    content: '';
    position: absolute;
}
button.navbar-toggler span.line::before{
    top: 8px;
}
button.navbar-toggler span.line::after{
    top: -8px;
}
.header-main-area .header-main .header-element.right-block-box {
    /* width: 20%; */
}
.header-main .header-element.right-block-box ul.shop-element li.nav-toggler{
    display: none;
    line-height: 0;
}
.header-main-area .header-main .header-element.right-block-box ul.shop-element li.search-wrap{
    position: relative;
    display: none;
}
.header-main-area .header-main .header-element.right-block-box ul.shop-element li.search-wrap .search-rap a.search-popuup{
    display: block;
    font-size: 30px;
    line-height: 0;
}
.modal#search-modal .modal.fade{
    padding-right: 0px !important;
}
.modal#search-modal .modal-dialog{
    margin: 0px;
    max-width: 100%;
}
.modal#search-modal .modal-content{
    background-color: #fff;
    border: none;
    border-radius: 0px;
}
.modal#search-modal .modal-body{
    display: flex;
    align-items: center;
    padding: 10px 0px;
}
.modal#search-modal .search-content{
    display: flex;
    align-items: center;
}
.modal#search-modal .search-content .search-engine{
    width: 100%;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.modal#search-modal .search-content .search-engine input{
    height: 40px;
    width: 100%;
    border: 1px solid #c7c7c7;
    border-radius: 3px;
}
.modal#search-modal .search-content .search-engine .search-btn{
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 0px;
    right: 0;
    height: 100%;
    width: 40px;
    background-color: #222;
    border: none;
    border-radius: 3px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal#search-modal .search-content button.close{
    float: none;
    display: block;
    background-color: transparent;
    color: #000;
    font-size: 18px;
    margin-left: 10px;
    opacity: 1;
    line-height: 0;
}
.modal#search-modal .search-content button.close:hover{
    color: #61a168;
}
/* right block css */
.right-block-box {
    display: flex;
    justify-content: flex-end;
}
.right-block-box ul.shop-element {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	flex-direction: row-reverse;
}
.right-block-box ul.shop-element li.side-wrap {
    position: relative;
    margin-left: 30px;
}
.right-block-box ul.shop-element li.side-wrap:first-child{
    margin-left: 0;
}
/* wishlist css */
.wishlist-wrap a.header-wishlist{
    width: 40px;
    height: 40px;
    background-color: #f4f4f4;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-wrap a.header-wishlist span.wishlist-icon{
    display: block;
    font-size: 20px;
    line-height: 0px;
}
.wishlist-wrap a.header-wishlist span.wishlist-icon i,
.shopping-widget .shopping-cart a.cart-count span.cart-icon-wrap span.cart-icon i{
    font-weight: 800;
}
.wishlist-wrap a.header-wishlist span.wishlist-icon span.wishlist-counter{
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 20px;
    top: 0px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #61a168;
    font-weight: 500;
    border-radius: 100%;
}
/* cart css */
.shopping-widget .shopping-cart a.cart-count{
    width: 40px;
    height: 40px;
    background-color: #f4f4f4;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shopping-widget .shopping-cart a.cart-count span.cart-icon-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shopping-widget .shopping-cart a.cart-count span.cart-icon-wrap span.cart-icon{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 0px;
}
.shopping-widget .shopping-cart a.cart-count span.cart-icon-wrap span.cart-icon span.bigcounter{
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 10px;
    top: -10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #61a168;
    font-weight: 500;
    border-radius: 100%;
}
/* mini cart css */
.mini-cart{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 16px 26px -10px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}
.mini-cart.show{
    right: 0px;
    opacity: 1;
    visibility: visible;
}
.mini-cart,
.mini-cart.show{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.mini-cart a.shopping-cart-close{
    position: absolute;
    top: 15px;
    right: 10px;
    line-height: 0px;
}
.mini-cart .cart-item-title p{
    padding: 10px 15px;
    font-weight: 600;
}
.mini-cart .cart-item-title p span.cart-count-item{
    color: #61a168;
}
.mini-cart ul.cart-item-loop{
    max-height: calc(100% - 219px);
    overflow-y: auto;
    border-top: 1px solid #eee;
    scrollbar-width: thin;
    -webkit-scrollbar-width: thin;
}
.mini-cart ul.cart-item-loop::-webkit-scrollbar{
    width: 5px;
}
.mini-cart ul.cart-item-loop::-webkit-scrollbar-track{
    background-color: #eee;
}
.mini-cart ul.cart-item-loop::-webkit-scrollbar-thumb{
    background-color: #c1c1c1;
}
.mini-cart ul.cart-item-loop::-webkit-scrollbar-thumb:hover{
    background-color: #f5ab1e;
}
.mini-cart ul.cart-item-loop li.cart-item{
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
}
.mini-cart ul.cart-item-loop li.cart-item:first-child{
    border-top: none;
}
.mini-cart ul.cart-item-loop li.cart-item .cart-img{
    width: 60px;
}
.mini-cart ul.cart-item-loop li.cart-item .cart-title{
    width: calc(100% - 75px);
    margin-left: 15px;
}
.mini-cart ul.cart-item-loop li.cart-item .cart-title h6{
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}
.mini-cart ul.cart-item-loop li.cart-item .cart-title h6 a{
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.mini-cart ul.cart-item-loop li.cart-item .cart-title .cart-pro-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 9px;
    line-height: 1;
}
.mini-cart ul.cart-item-loop li.cart-item .cart-title .cart-pro-info .cart-qty-price span.price-box{
    font-weight: 600;
}
.mini-cart ul.subtotal-title-area{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
}
.mini-cart ul.subtotal-title-area li.subtotal-info{
    padding: 10px 15px;
    border-top: 1px solid #eee;
}
.mini-cart ul.subtotal-title-area li.subtotal-info .subtotal-titles{
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.mini-cart ul.subtotal-title-area li.subtotal-info .subtotal-titles h6{
    font-size: 14px;
    font-weight: 600;
}
.mini-cart ul.subtotal-title-area li.subtotal-info .subtotal-titles .subtotal-price{
    color: #61a168;
    margin-top: 0;
    font-weight: 600;
}
.mini-cart ul.subtotal-title-area li.mini-cart-btns{
    padding: 15px;
    border-top: 1px solid #eee;
}
.mini-cart ul.subtotal-title-area li.mini-cart-btns .cart-btns{
    display: flex;
    flex-direction: column;
}
.mini-cart ul.subtotal-title-area li.mini-cart-btns .cart-btns a{
    width: 100%;
    margin-top: 15px;
}
.mini-cart ul.subtotal-title-area li.mini-cart-btns .cart-btns a:first-child{
    margin-top: 0;
}
/* menu css */
.top-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e2e2;
	margin-top: 0.75rem;
}
/* main-menu css */
.megamenu-content{
    position: relative;
    /* width: 75%; */
}
.megamenu-content .mainwrap ul.main-menu {
    display: flex;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title{
    position: relative;
    color: #000;
    padding: 15px 30px 15px 0px;
    font-size: 15px;
    display: block;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title:hover{
    color: #61a168;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title i{
    font-size: 14px;
    margin-left: 5px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title span.sp-link-title {
    display: flex;
    align-items: center;
    position: relative;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title span.sp-link-title span.hot{
    color: #fff;
    font-size: 10px;
    padding: 1px 5px;
    position: absolute;
    right: 0px;
    top: -13px;
    background-color: #61a168;
    transform: translateX(100%);
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 3px;
    line-height: 1;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title span.sp-link-title span.hot::before{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    border-left: 4px solid #61a168;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link a.link-title.link-title-lg{
    display: none;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu.collapse:not(.show){
    display: block;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu.collapse:not(.show),
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu.collapse:not(.show){
    display: flex;
    flex-wrap: wrap
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu{
    position: absolute;
    top: calc(100% + 20px);
    padding: 15px 0px;
    margin: 0 auto;
    background-color: #fff;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.megamenu-content .mainwrap ul.main-menu li.menu-link:hover ul.dropdown-submenu{
    top: calc(100% + 0px);
    opacity: 1;
    visibility: visible;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu,
.megamenu-content .mainwrap ul.main-menu li.menu-link:hover ul.dropdown-submenu{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu{
    left: auto;
    min-width: 150px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu{
    width: 100%;
    left: auto;
    right: 0px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu{
    width: 100%;
    left: 0px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu li.submenu-li{
    margin-top: 10px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu li.submenu-li:first-child{
    margin-top: 0px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu li.submenu-li a.submenu-link{
    padding: 0px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li{
    width: 25%;
    padding: 0px 15px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li h2.sublink-title{
    font-size: 14px;
    margin-bottom: 10px;
    color: #61a168;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li a.sublink-title.sublink-title-lg{
    display: none;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li ul.dropdown-supmenu.collapse:not(.show){
    display: block;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li ul.dropdown-supmenu li.supmenu-li{
    margin-top: 10px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu li.menu-banner{
    width: 33.33%;
    padding: 0px 15px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu li.menu-banner a{
    position: relative;
    overflow: hidden;
    display: block;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu li.menu-banner a.menu-banner-img img,
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu li.menu-banner a.menu-banner-img:hover img{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu li.menu-banner a.menu-banner-img:hover img{
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.banner-menu li.menu-banner a.menu-banner-title{
    margin-top: 10px;
    text-align: center;
}
/* blog menu */
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li{
    position: relative;
    padding: 0px 15px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li a.g-l-link{
    width: 100%;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li a.g-l-link i{
    float: right;
    font-size: 17px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li a.sub-link{
    display: none;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1.collapse:not(.show){
    display: block;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1{
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translateX(100%);
    min-width: 145px;
    padding: 10px 0px;
    background-color: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1.ex-width{
    min-width: 200px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li:hover ul.blog-style-1{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li a{
    width: 100%;
    padding: 5px 15px;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li a i{
    font-size: 17px;
    float: right;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li a.blog-sub-style{
    display: none;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li ul.grid-style.collapse:not(.show){
    display: block;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li ul.grid-style{
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px 0px;
    min-width: 155px;
    transform: translateX(100%);
    background-color: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li{
    position: relative;
}
.megamenu-content .mainwrap ul.main-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li ul.blog-style-1 li:hover ul.grid-style{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* hotline css */
.hotline{
    width: 15%;
}
.hotline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* color: #000; */
    margin-left: auto;
    margin-right: 2%;
	flex: 1;
}
.hotline > a {
    filter: invert(1) brightness(5.5);
    width: 20px;
}
.hotline .image-content{
    margin-left: 8px;
}
.hotline .image-content span.hot-l{
    display: block;
    color: #61a168 ;
}
/* header-bottom css */
.header-bottom-area{
    background-color: #fff;
    display: none;
}
.header-bottom-area .main-menu-area{
    position: relative;
}
.header-bottom-area .main-menu-area .main-navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-bottom-area .main-menu-area .main-navigation .navbar-collapse{
    width: 75%;
}
.header-bottom-area .main-menu-area .main-navigation .img-hotline{
    width: 25%;
}
/* box-header css */
.main-menu-area .main-navigation .box-header{
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    line-height: 0;
}
.main-menu-area .main-navigation .box-header button{
    font-size: 18px;
    background-color: transparent;
    line-height: 0;
}
/* slider css */
.home-slider-6 .slider-banner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-slider-6 .home-slider-main-6{
    width: 70%;
}
.home-slider-6 .home-slider-main-6 .home6-slider{
    z-index: 0;
}
.home-slider-6 .home-slider-main-6 .home6-slider .img-back{
    height: 466px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-slider-6 .home-slider-main-6 .home6-slider .img-back .h-s-content{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
}
.home-slider-6 .home-slider-main-6 .home6-slider .img-back .h-s-content{
    left: 10%;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content span.slider-name,
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content h1,
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content p,
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content a{
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content span.slider-name{
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
    animation-duration: 0.7s;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content h1{
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-delay: 1.0s;
    animation-duration: 1.0s;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content p{
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
    animation-duration: 1.3s;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-item.active .img-back .h-s-content a{
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.3s;
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
}
.home-slider-6 .home-slider-main-6 .home6-slider .img-back span.slider-name{
    color: #61a168;
    font-size: 16px;
}
.home-slider-6 .home-slider-main-6 .home6-slider .img-back h1{
    color: #333;
    font-size: 40px;
    margin-top: 7px;
}
.home-slider-6 .home-slider-main-6 .home6-slider .img-back a{
    margin-top: 15px;
}
/* slider navigation css */
.home-slider-6 .home-slider-main-6 .home6-slider.owl-theme .owl-nav{
    margin-top: 0px;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-nav button{
    background-color: #fff;
    color: #000;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 35px;
    height: 35px;
    margin: 0px;
    border-radius: 100%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-nav button:hover{
    background-color: #61a168;
    color: #fff;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-nav button.owl-prev{
    left: 30px;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-nav button.owl-next{
    right: 30px;
}
/* slider dot css */
.home-slider-6 .home-slider-main-6 .home6-slider .owl-dots{
    position: absolute;
    bottom: 10px;
    right: 0px;
    left: 0px;
    line-height: 0px;
}
.testimonial-6 .testi-6 .owl-dots button{
    margin-top: 20px;
    line-height: 1;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-dots button,
.testimonial-6 .testi-6 .owl-dots button{
    margin-right: 10px;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-dots button:last-child,
.testimonial-6 .testi-6 .owl-dots button:last-child{
    margin-right: 0px;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-dots button.owl-dot span,
.testimonial-6 .testi-6 .owl-dots button.owl-dot span{
    width: 6px;
    height: 6px;
    margin: 0px;
    background-color: #61a168;
    border-radius: 50%;
}
.home-slider-6 .home-slider-main-6 .home6-slider .owl-dots button.owl-dot.active span,
.home-slider-6 .home-slider-main-6 .home6-slider .owl-dots button.owl-dot:hover span,
.testimonial-6 .testi-6 .owl-dots button.owl-dot.active span,
.testimonial-6 .testi-6 .owl-dots button.owl-dot:hover span{
    background-color: #000000;
}
.home-slider-6 .owl-theme .owl-nav .disabled,
.testimonial-6 .testi-6 .owl-dots .disabled{
    opacity: 1;
}
/* right banner css */
.home-slider-6 .top-banner{
    width: 30%;
    margin-top: -15px;
}
.home-slider-6 .top-banner .right-banner{
    margin-top: 15px;
    margin-left: 15px;
}
.home-slider-6 .top-banner .right-banner{
    position: relative;
}
.home-slider-6 .top-banner .right-banner .banner-r-content1,
.home-slider-6 .top-banner .right-banner .banner-r-content2{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 20px;
    z-index: 3;
}
.home-slider-6 .top-banner .right-banner .banner-r-content1 h2{
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-top: 7px;
}
.home-slider-6 .top-banner .right-banner .banner-r-content1 span.banner-sale{
    color: #999;
}
.home-slider-6 .top-banner .right-banner .banner-r-content1 h2 span.banner-off{
    font-weight: 600;
}
.home-slider-6 .top-banner .right-banner .banner-r-content1 a.banner-shop1{
    color: #61a168;
    margin-top: 8px;
    text-transform: uppercase;
}
.home-slider-6 .top-banner .right-banner .banner-r-content1 a.banner-shop1:hover{
    color: #000;
}
.home-slider-6 .top-banner .right-banner .banner-r-content2 span{
    font-size: 14px;
    color: #999;
}
.home-slider-6 .top-banner .right-banner .banner-r-content2 h2{
    color: #333;
    font-size: 18px;
    margin-top: 7px;
    font-weight: 600;
}
.home-slider-6 .top-banner .right-banner .banner-r-content2 a.banner-shop2{
    color: #61a168;
    margin-top: 8px;
    text-transform: uppercase;
}
.home-slider-6 .top-banner .right-banner .banner-r-content2 a.banner-shop2:hover{
    color: #000;
}
.home-slider-6 .top-banner .right-banner a.r-banner::before,
.home-slider-6 .top-banner .right-banner a.r-banner::after,
.home6-banner-news .b-news .full-banner a.f-b::before,
.home6-banner-news .b-news .full-banner a.f-b::after{
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    opacity: 0;
}
.home-slider-6 .top-banner .right-banner a.r-banner::before,
.home6-banner-news .b-news .full-banner a.f-b::before{
    -webkit-transform: scale(1,0);
    -o-transform: scale(1,0);
    transform: scale(1,0);
}
.home-slider-6 .top-banner .right-banner a.r-banner::after,
.home6-banner-news .b-news .full-banner a.f-b::after{
    -webkit-transform: scale(0,1);
    -o-transform: scale(0,1);
    transform: scale(0,1);
}
.home-slider-6 .top-banner .right-banner a.r-banner::before,
.home6-banner-news .b-news .full-banner a.f-b::before{
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}
.home-slider-6 .top-banner .right-banner a.r-banner::after,
.home6-banner-news .b-news .full-banner a.f-b::after{
    background-color: rgba(255 255 255 / 24%);
}
.home-slider-6 .top-banner .right-banner:hover a.r-banner::before,
.home-slider-6 .top-banner .right-banner:hover a.r-banner::after,
.home6-banner-news .b-news .full-banner:hover a.f-b::before,
.home6-banner-news .b-news .full-banner:hover a.f-b::after{
    opacity: 1;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.home-slider-6 .top-banner .right-banner a.r-banner::before,
.home-slider-6 .top-banner .right-banner a.r-banner::after,
.home-slider-6 .top-banner .right-banner:hover a.r-banner::before,
.home-slider-6 .top-banner .right-banner:hover a.r-banner::after,
.home6-banner-news .b-news .full-banner a.f-b::before,
.home6-banner-news .b-news .full-banner a.f-b::after,
.home6-banner-news .b-news .full-banner:hover a.f-b::before,
.home6-banner-news .b-news .full-banner:hover a.f-b::before{
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.home-slider-6 .top-banner .right-banner a.r-banner,
.home6-banner-news .b-news .full-banner a.f-b{
    display: block;
    position: relative;
    overflow: hidden;
}
.home-slider-6 .top-banner .right-banner:hover a.r-banner img,
.home6-banner-news .b-news .full-banner:hover a.f-b img{
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.home-slider-6 .top-banner .right-banner a.r-banner img,
.home-slider-6 .top-banner .right-banner:hover a.r-banner img,
.home6-banner-news .b-news .full-banner a.f-b img,
.home6-banner-news .b-news .full-banner:hover a.f-b{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* service css */
.service{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
}
.service .service-box {
    width: 25%;
}
.service .service-box .s-box{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service .service-box:last-child{
    border-right: none;
}
.service .service-box .s-box i{
    font-size: 38px;
    margin-right: 20px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.service .service-box .s-box:hover i{
    color: #61a168;
    transform: rotateY(180deg);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.service .service-box .s-box .service-content span{
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.service .service-box .s-box .service-content p{
    color: #999;
    font-size: 13px;
    margin-top: 1px;
}
/* category css */
.home6-category .category-6 .cate-6 .cate-back{
    height: 250px;
    padding: 15px;
    background-position: left 100% bottom;
    background-repeat: no-repeat;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 8%);
}
.home6-category .category-6 .cate-6 .items{
    padding: 10px;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box h2{
    font-size: 16px;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box ul.category-link{
    margin-top: 18px;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box ul.category-link li{
    margin-top: 9px;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box ul.category-link li:first-child {
    margin-top: 0px;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box ul.category-link li a{
    color: #666;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box ul.category-link li a:hover{
    color: #61a168;
}
.home6-category .category-6 .cate-6 .cate-back .cat-box ul.category-link li a i{
    margin-right: 5px;
}
/* Swiper button css */
.tab-pro-slider {
    position: relative;
}
.tab-pro-slider .swiper-buttons{
    height: calc(100%);
    height: -o-calc(100%);
    height: -ms-calc(100%);
    height: -moz-calc(100%);
    height: -webkit-calc(100%);
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}
.tab-pro-slider .swiper-buttons .content-buttons{
    height: 100%;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-next,
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-prev{
    background-color: #61a168;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-next,
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-prev{
    background-image: none;
    height: 35px;
    width: 35px;
    display: flex;
    border-radius: 100%;
    color: #fff;
    opacity: 1;
    font-size: 20px;
    box-shadow: 0px 0px 12px 0px rgba(123, 190, 70, 0.1);
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-next:hover,
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-prev:hover,
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-next:focus{
    outline: none;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-next{
    right: -15px;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-prev{
    left: -15px;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-next:after{
    content: "\f105";
    font: normal normal normal 14px/1 FontAwesome;
    font-weight: 800;
}
.tab-pro-slider .swiper-buttons .content-buttons .swiper-button-prev:after{
    content: "\f104";
    font: normal normal normal 14px/1 FontAwesome;
    font-weight: 800;
}
/* our products tab css */
.pro-tab6 ul.nav.nav-tabs{
    border-bottom: none;
    justify-content: center;
    margin-bottom: 40px;
}
.pro-tab6 ul.nav.nav-tabs li.nav-item{
    margin-right: 60px;
}
.pro-tab6 ul.nav.nav-tabs li.nav-item:last-child{
    margin-right: 0px;
}
.pro-tab6 ul.nav.nav-tabs li.nav-item a.nav-link{
    color: #949494;
    font-size: 14px;
    font-weight: 500;
    padding: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.pro-tab6 ul.nav.nav-tabs li.nav-item a.nav-link.active,
.pro-tab6 ul.nav.nav-tabs li.nav-item a.nav-link:hover{
    color: #61a168;
    border-bottom: 1px solid #61a168;
    border-color: #fff #fff #61a168 #fff;
}
.tab-product .tred-pro{
    position: relative;
}
.tab-product .tred-pro .Pro-lable span.p-text,
.tab-product .tred-pro .Pro-lable span.p-discount{
    position: absolute;
    top: 5px;
    font-size: 13px;
    color: #fff;
    padding: 2px 10px 2px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
}
.tab-product .tred-pro .Pro-lable span.p-text{
    left: 5px;
    background-color: #61a168;
}
.tab-product .tred-pro .Pro-lable span.p-discount{
    right: 5px;
    background-color: #f4ab1e;
}
.tab-product .tab-caption{
    margin-top: 16px;
    text-align: center;
}
.tab-product .tab-caption .pro-icn{
    margin-top: 8px;
}
.tab-product .tab-caption .pro-icn a.w-c-q-icn i{
    background-color: #61a168;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0px;
    font-size: 16px;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.tab-product .tab-caption h3{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.tab-product .tab-caption h3 a{
    display: block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tab-product .tab-caption .rating{
    margin-top: 15px;
    line-height: 1;
}
.tab-product .tab-caption .rating i{
    color: #ccc;
    font-size: 14px;
}
.tab-product .tab-caption .rating i.b-star,
.tab-product .tab-caption .rating i.c-star,
.tab-product .tab-caption .rating i.d-star,
.tab-product .tab-caption .rating i.e-star{
    color: #ffb503;
}
.tab-product .tab-caption .rating i:last-child{
    margin-right: 0px;
}
.tab-product .tab-caption .pro-price{
    margin-top: 14px;
}
.tab-product .tab-caption .pro-price span.new-price{
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
    line-height: 1;
}
.tab-product .tab-caption .pro-price span.old-price{
    color: #999;
    font-size: 14px;
    line-height: 1;
}
/* additional image css */
.tab-product .tred-pro .tr-pro-img a img{
    backface-visibility: hidden;
}
.tab-product .tred-pro .tr-pro-img a img.additional-image{
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
}
.tab-product .tred-pro:hover .tr-pro-img a img.additional-image{
    opacity: 1;
    visibility: visible;
}
.tab-product .tred-pro:hover ul.contdown_row{
    opacity: 0;
    visibility: hidden;
}
.tab-product .tred-pro .tr-pro-img a img.additional-image,
.tab-product .tred-pro:hover .tr-pro-img a img.additional-image{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* Testimonial css */
.testimonial-6 .testi-6 .testimonial-content .testimonial-area{
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.testimonial-6 .testi-6 .testimonial-content .testimonial-area:before{
    content: "\f10d";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    font-weight: 900;
    background-color: #61a168;
    color: #fff;
    width: 50px;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 4px;
}
.testimonial-6 .testi-6 .testimonial-content .testimonial-area:after{
    content: "";
    position: absolute;
    top: 0px;
    width: 60px;
    height: 60px;
    border: 1px solid #61a168;
    border-radius: 4px;
}
.testimonial-6 .testi-6 .testimonial-content .testimonial-area .testi-name{
    margin-left: 15px;
}
.testimonial-6 .testi-6 .testimonial-content .testimonial-area .testi-name  span.tsti-title{
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
}
.testimonial-6 .testi-6 .testimonial-content .testimonial-area .testi-name span i{
    color: #ffb503;
}
.testimonial-6 .testi-6 .testimonial-content p{
    color: #999;
    padding: 0px 5px;
    font-size: 13px;
    margin-top: 22px;
}
.testimonial-6 .testi-6 .testimonial-content h6{
    padding: 0px 5px;
    margin-top: 15px;
    font-weight: 500;
}
/* featured Products css */
.tred-pro{
    position: relative;
}
.tred-pro .tr-pro-img a{
    display: block;
}
.tred-pro .tr-pro-img a img{
    backface-visibility: hidden;
}
.tred-pro:hover ul.contdown_row{
    opacity: 0;
    visibility: hidden;
}
.tred-pro .Pro-lable span.p-text,
.tred-pro .Pro-lable span.p-discount{
    position: absolute;
    top: 5px;
    font-size: 13px;
    color: #fff;
    padding: 2px 10px 2px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
}
.tred-pro .Pro-lable span.p-text{
    left: 5px;
    background-color: #61a168;
}
.tred-pro .Pro-lable span.p-discount{
    right: 5px;
    background-color: #e30514;
}
.tred-pro .pro-icn{
    position: absolute;
    bottom: 15px;
    left: 0px;
    right: 0px;
    text-align: center;
    margin: 0px auto;
}
.tred-pro .pro-icn a.w-c-q-icn:first-child{
    transform: translateX(40px);
}
.tred-pro .pro-icn a.w-c-q-icn:last-child{
    transform: translateX(-40px);
}
.tred-pro:hover .pro-icn a.w-c-q-icn:first-child{
    margin-right: 15px;
}
.tred-pro:hover .pro-icn a.w-c-q-icn:last-child{
    margin-left: 15px;
}
.tred-pro:hover .pro-icn a.w-c-q-icn{
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.tred-pro .pro-icn a.w-c-q-icn{
    background-color: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    display: inline-grid;
    justify-content: center;
    align-items: center;
    line-height: 0px;
    font-size: 16px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}
.tred-pro .pro-icn a.w-c-q-icn:hover{
    background-color: #61a168;
}
.tred-pro:hover .pro-icn a.w-c-q-icn{
    position: relative;
    opacity: 1;
    visibility: visible;
}
.tred-pro .pro-icn a.w-c-q-icn::after{
    background-color: #61a168;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 0;
    height: 100%;
    z-index: -1;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.tred-pro .pro-icn a.w-c-q-icn:hover{
    color: #fff;
}
.tred-pro .pro-icn a.w-c-q-icn:hover::after{
    background-color: #61a168;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.caption{
    padding-top: 15px;
    text-align: center;
}
.caption h3{
    font-size: 14px;
    font-weight: 400;
}
.caption h3 a{
    display: block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.caption .rating{
    margin-top: 11px;
}
.caption .rating i{
    color: #ccc;
    font-size: 14px;
    margin-right: 5px;
}
.caption .rating i.b-star,
.caption .rating i.c-star,
.caption .rating i.d-star,
.caption .rating i.e-star{
    color: #ffb503;
}
.caption .rating i:last-child{
    margin-right: 0px;
}
.caption .pro-price{
    margin-top: 10px;
}
.caption .pro-price span.new-price{
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
    line-height: 1;
}
.caption .pro-price span.old-price{
    color: #999;
    font-size: 13px;
    line-height: 1;
}
/* additional image css */
.tred-pro .tr-pro-img a img.additional-image{
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
}
.tred-pro:hover .tr-pro-img a img.additional-image{
    opacity: 1;
    visibility: visible;
}
.tred-pro .tr-pro-img a img.additional-image,
.tred-pro:hover .tr-pro-img a img.additional-image{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* Blog css */
.home-6-blog{
    background-color: #f7f7f7;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image{
    position: relative;
    display: flex;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image a{
    position: relative;
    overflow: hidden;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image a img{
    backface-visibility: hidden;
}
.home-6-blog .blog-area .blog-6 .blog-start:hover .blog-image a img{
    -webkit-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image a img,
.home-6-blog .blog-area .blog-6 .blog-start:hover .blog-image a img{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image .image-link{
    position: absolute;
    bottom: 10px;
    left: 15px;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image .image-link a{
    background-color: #61a168;
    color: #fff;
    padding: 2px 8px;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-image .image-link a:hover{
    background-color: #000;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .blog-title h6{
    font-size: 16px;
    padding-top: 23px;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .blog-title h6 a{
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content p.blog-description{
    color: #999;
    margin-top: 16px;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .more-blog{
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .more-blog a.read-link{
    color: #61a168;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .more-blog a.read-link i{
    font-size: 12px;
    padding-left: 5px;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .more-blog a.read-link i,
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .more-blog a.read-link:hover i{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.home-6-blog .blog-area .blog-6 .blog-start .blog-content .more-blog a.read-link:hover i{
    margin-left: 8px;
}
/* banner and news css */
.home6-banner-news .b-news{
    display: flex;
}
.home6-banner-news .b-news .full-banner{
    position: relative;
    width: 66.66%;
    padding-right: 15px;
}
.home6-banner-news .b-news .full-banner .banner-content{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 0px;
    right: 0px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
}
.home6-banner-news .b-news .full-banner .banner-content span.b-slogan{
    color: #61a168;
    font-size: 18px;
}
.home6-banner-news .b-news .full-banner .banner-content h1{
    font-size: 24px;
    margin-top: 20px;
    font-weight: 700;
    line-height: 1;
}
.home6-banner-news .b-news .full-banner .banner-content p{
    margin-top: 5px;
}
.home6-banner-news .b-news .full-banner .banner-content a.btn-style1{
    margin-top: 22px;
    text-transform: uppercase;
}
.home6-banner-news .b-news .latest-deal{
    width: 33.33%;
    padding-left: 15px;
}
.home6-banner-news .b-news .latest-deal .news-l{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content .section-title3 h2{
    margin-bottom: 3px;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content{
    text-align: center;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content p{
    margin-bottom: 8px;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content form{
    position: relative;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content form input{
    background-color: #f7f7f7;
    width: 100%;
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 50px;
    border:1px solid transparent;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content form a{
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn{
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a i{
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 12px;
    margin-right: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a i.ti-facebook{
    background-color: rgba(25, 119, 242, 0.85);
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a i.ti-twitter-alt{
    background-color: rgba(121, 200, 237, 0.85);
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a i.ti-instagram{
    background-color: rgba(202, 57, 222, 0.85);
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a i.ti-youtube{
    background-color: rgba(230, 98, 98, 0.85);
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a i.ti-pinterest{
    background-color: rgba(255, 65, 65, 0.85);
}
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a:hover i.ti-facebook,
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a:hover i.ti-twitter-alt,
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a:hover i.ti-instagram,
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a:hover i.ti-youtube,
.home6-banner-news .b-news .latest-deal .news-l .news-content ul.news-icn li a:hover i.ti-pinterest{
    background-color: #61a168;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
/* quick view css */
.quick-view .modal .modal-dialog{
    max-width: 650px;
    background-color: #fff;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 0;
    right: 0;
}
.quick-view .modal .modal-dialog .modal-content{
    border: none;
}
.quick-view .modal .modal-dialog .modal-content .modal-header{
    width: 100%;
    padding: 15px;
    float: right;
    display: flex;
    align-items: center;
}
.quick-view .modal .modal-dialog .modal-content .modal-header h5{
    font-size: 16px;
    line-height: 1;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area{
    padding: 15px;
    display: flex;
    align-items: flex-start;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-image{
    width: 50%;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-image ul.quick-slider{
    margin-top: 15px;
    border-bottom: none;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-image ul.quick-slider li a{
    padding: 0px;
    border: none;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption{
    width: calc(50% - 15px);
    margin-left: 15px;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption h4{
    font-size: 18px;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .quick-price{
    margin-top: 10px;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .quick-price span.new-price{
    margin-right: 5px;
    font-size: 15px;
    font-weight: 700;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .quick-price span.old-price{
    color: #999;
    font-size: 14px;
    font-weight: 500;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .quick-rating{
    margin-top: 10px;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .quick-rating i{
    font-size: 16px;
    color: #999;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .quick-rating i.c-star{
    color: #f5ab1e;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .pro-description p{
    color: #999;
    font-size: 13px;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .pro-size{
    margin-top: 10px;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .pro-size label{
    font-weight: 600;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .pro-size select{
    margin-left: 10px;
    padding: 8px 12px;
    border: 1px solid #eee;
    border-radius: 4px;
    text-transform: uppercase;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus{
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus span{
    display: flex;
    border: 1px solid #eee;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus span a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus span input{
    width: 50px;
    height: 30px;
    padding: 0px;
    text-align: center;
    border-top: none;
    border-bottom: none;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus a.quick-cart,
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus a.quick-wishlist{
    width: 40px;
    height: 40px;
    background-color: #61a168;
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #61a168;
    border-radius: 100%;
}
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus a.quick-cart:hover,
.quick-view .modal .modal-dialog .modal-content .quick-veiw-area .quick-caption .plus-minus a.quick-wishlist:hover {
    color: #61a168;
    background-color: transparent;
}
/* header style-6 product css */
.header-style-6-pro{
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}
.header-style-6-pro .header-product{
    width: calc(20% - 30px);
    margin-left: 30px;
    margin-top: 30px;
}
.header-style-6-pro .header-product:nth-child(1),
.header-style-6-pro .header-product:nth-child(2),
.header-style-6-pro .header-product:nth-child(3),
.header-style-6-pro .header-product:nth-child(4),
.header-style-6-pro .header-product:nth-child(5){
    margin-top: 0px;
}
.header-style-6-pro .header-product .caption .rating{
    margin-top: 9px;
}
/* footer style-6 product css */
.footer-style-6-pro{
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}
.footer-style-6-pro .header-product{
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
.footer-style-6-pro .header-product:nth-child(1),
.footer-style-6-pro .header-product:nth-child(2){
    margin-top: 0px;
}
.footer-style-6-pro .header-product .tred-pro{
    width: 35%;
}
.footer-style-6-pro .header-product .caption{
    width: calc(65% - 20px);
    margin-left: 20px;
    padding-top: 0px;
    text-align: left;
}
.footer-style-6-pro .header-product .caption h3 a{
    font-weight: 600;
}
.footer-style-6-pro .header-product .caption span.pro-des{
    margin-top: 7px;
}
.footer-style-6-pro .header-product .caption .rating{
    margin-top: 11px;
}
.footer-style-6-pro .header-product .caption .pro-price{
    margin-top: 11px;
}
.footer-style-6-pro .header-product .caption .pro-icn{
    position: unset;
    margin-top: 14px;
}
.footer-style-6-pro .header-product .caption .pro-icn a.w-c-q-icn{
    background-color: #61a168;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-grid;
    justify-content: center;
    align-items: center;
    line-height: 0px;
    font-size: 16px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.footer-style-6-pro .header-product .caption .pro-icn a.w-c-q-icn{
    position: relative;
    background-color: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    display: inline-grid;
    justify-content: center;
    align-items: center;
    line-height: 0px;
    font-size: 16px;
    border-radius: 100%;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.footer-style-6-pro .header-product .caption .pro-icn a.w-c-q-icn:hover{
    background-color: #61a168;
}
.footer-style-6-pro .header-product .caption .pro-icn a.w-c-q-icn::before{
    background-color: #61a168;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 0;
    height: 100%;
    z-index: -1;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.footer-style-6-pro .header-product .caption .pro-icn a.w-c-q-icn:hover{
    color: #fff;
}
.footer-style-6-pro .header-product .caption .pro-icn a.w-c-q-icn:hover::before{
    background-color: #61a168;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
/*--------------------------
footer css
---------------------------*/
/* company detail css */
.footer4{
    border-top: 1px solid #e2e2e2;
}
.home4-footer{
    display: flex;
}
.f-logo{
    width: 25%;
}
.f-logo ul.footer-ul{
    flex-direction: column;
}
.f-logo ul.footer-ul li.footer-logo p{
    color: #999;
    margin-top: 14px;
    margin-bottom: 21px;
}
/* footer bottom css */
.footer-bottom{
    width: 55%;
}
.footer-link{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
}
.footer-link .f-link{
    width: calc(25% - 15px);
    margin-left: 15px;
}
.footer-link .f-link .h-footer{
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.footer-link .f-link a.h-footer{
    display: none;
}
.footer-link .f-link .collapse:not(.show){
    display: block;
    margin-top: 22px;
}
.footer-link .f-link ul.f-link-ul li.f-link-ul-li{
    margin-top: 9px;
}
.footer-link .f-link ul.f-link-ul li.f-link-ul-li a{
    color: #999;
}
.footer-link .f-link ul.f-link-ul li.f-link-ul-li a:hover{
    color: #61a168;
}
.contact-6{
    width: 20%;
}
.contact-6 .f-deal-content h2{
    color: #000;
    font-size: 16px;
    line-height: 1;
}
.contact-6 .f-deal-content {
    margin-bottom: 21px;
}
.contact-6 ul.f-contact{
    margin-top: 7px;
    display: flex;
}
.contact-6 ul.f-contact li.contact-link{
    margin-left: 15px;
}
.contact-6 ul.f-contact li.contact-link p{
    color: #999;
    margin-top: 1px;
}
.contact-6 ul.f-contact li.contact-link a{
    color: #999;
    margin-top: 5px;
    display: block;
}
.contact-6 ul.f-contact li.contact-link a:first-child {
    margin-top: 0px;
}
.contact-6 ul.f-contact li.contact-link a:hover{
    color: #61a168;
}
.contact-6 ul.f-contact li i{
    color: #61a168;
    font-size: 20px;
}
/* footer copyright css */
.footer-copyright{
    padding: 10px 0;
    background-color: #61a168;
}
.footer-copyright ul.f-bottom{
    text-align: center;
}
.footer-copyright ul.f-bottom li.f-copyright p{
    color: #fff;
    font-size: 14px;
}
/* back to top css */
a.scroll {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0s ease-in-out 0s;
    -o-transition: all 0s ease-in-out 0s;
    transition: all 0s ease-in-out 0s;
}
a.scroll.show{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
a.scroll span{
    color: #61a168;
    font-size: 16px;
    height: 37px;
    width: 37px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid #61a168;
    border-radius: 100%;
}
a.scroll:hover span{
    color: #fff;
    background-color: #61a168;
}
a.scroll span,
a.scroll:hover span{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* popup css start */
.vegist-popup .modal-dialog{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%) !important;
    left: 0px;
    right: 0px;
    margin: 0px auto;
}
.vegist-popup.animated{
    animation-duration: 2s;
}
.vegist-popup .modal-dialog .modal-content .modal-body{
    padding: 0px;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content{
    position: relative;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content:before{
    background-color: #fff;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content a.close-btn{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter{
    padding: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter .logo-content{
    position: relative;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter .logo-content h4{
    font-size: 20px;
    margin-top: 12px;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter .logo-content span{
    font-size: 14px;
    font-weight: 400;
    margin-top: 7px;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter .subscribe-area{
    margin-top: 24px;
    position: relative;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter .subscribe-area input{
    width: 100%;
    padding: 8px 15px;
    background-color: #f7f7f7;
    border-color: #eee;
    border-radius: 4px;
}
.vegist-popup .modal-dialog .modal-content .modal-body .popup-content .pop-up-newsletter .subscribe-area a{
    margin-top: 20px;
}
/* breadcumb css */
.breadcrumb-area{
    background-color: #fafafa;
    padding: 15px 0px;
}
.breadcrumb-area .breadcrumb-start ul.breadcrumb-url{
    display: flex;
    align-items: center;
}
.breadcrumb-area .breadcrumb-start ul.breadcrumb-url li.breadcrumb-url-li a{
    color: #717171;
    padding-right: 8px;
    margin-right: 6px;
    border-right: 1px solid #d6d6d6;
}
.breadcrumb-area .breadcrumb-start ul.breadcrumb-url li.breadcrumb-url-li span{
    color: #61a168;
    font-size: 14px;
}
/* left column css */
.left-right-column{
    display: flex;
}
.left-right-column .left-column{
    width: 20%;
    padding-right: 30px;
}
.left-right-column .right-column{
    width: 80%;
}
/* title */
.left-section-title h4{
    padding-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #e2e2e2;
    letter-spacing: 0;
}
.left-section-title h4 span{
    color: #61a168;
}
/* special products css */
a.responsive-collapse{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    display: none;
}
a.responsive-collapse span{
    color: #61a168;
    margin-left: 5px;
    margin-right: auto;
}
.special-product .collapse,
.tred-product .collapse{
    display: block;
}
.special-product .tab-product,
.tred-product .tab-product{
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.special-product .tab-product .tred-pro,
.tred-product .tab-product .tred-pro{
    width: 33%;
}
.special-product .tab-product .tab-caption,
.tred-product .tab-product .tab-caption{
    width: 67%;
    padding-left: 15px;
    margin-top: 0px;
    text-align: left;
}
/* left banner css */
.left-banner .l-banner{
    position: relative;
}
.left-banner .l-banner a{
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.left-banner .l-banner:hover a img{
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.left-banner .l-banner a img{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.left-banner .l-banner .left-banner-content{
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 2;
}
.left-banner .l-banner .left-banner-content span.banner-head{
    color: #999;
    line-height: 1;
}
.left-banner .l-banner .left-banner-content h2{
    margin-top: 7px;
    font-size: 18px;
    font-weight: 700;
}
.left-banner .l-banner .left-banner-content a{
    margin-top: 13px;
}
/* big sale css */
.left-deal-bg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.left-deal-bg::after{
    background-color: #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}
.left-deal-bg .left-deal-c{
    position: relative;
    padding: 30px;
    text-align: center;
    z-index: 1;
}
.left-deal-bg .left-deal-c h2{
    font-size: 22px;
    font-weight: 500;
}
.left-deal-bg .left-deal-c h2 span{
    color: #61a168;
    font-size: 26px;
    font-weight: 700;
}
.left-deal-bg .left-deal-c h4{
    text-transform: uppercase;
    letter-spacing: 5px;
}
.left-deal-bg .left-deal-c a{
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
/* brand css */
.home3-brand{
    margin-top: 20px;
}
/* product page css */
.pro-page .pro-image{
    display: flex;
}
.pro-page .pro-image .larg-image a.long-img{
    margin-bottom: 15px;
    cursor: crosshair;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider{
    border-bottom: none;
    margin-right: 1px;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider li.nav-item{
    margin-right: 1px;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider li.nav-item a{
    padding: 1px;
    border: 1px solid transparent;
    margin-bottom: 1px;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider li.nav-item a.active{
    border: 1px solid #61a168;
    border-radius: 0px;
}
/* slider arro */
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button {
    background-color: transparent;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    margin: 0px;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button.owl-prev {
    left: -10px;
}   
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button.owl-next {
    right: -10px;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button i {
    color: #232323;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button:hover i {
    color: #61a168;
}
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button i,
.pro-page .pro-image .larg-image ul.nav.nav-tabs.pro-page-slider .owl-nav button:hover i {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.pro-page .pro-image .pro-info h4{
    font-size: 18px;
}
.pro-page .pro-image .pro-info .rating {
    margin-top: 15px;
    padding-top: 22px;
    border-top: 1px solid #ededed;
}
.pro-page .pro-image .pro-info .rating i{
    color: #999;
    font-size: 18px;
}
.pro-page .pro-image .pro-info .rating i.d-star{
    color: #f5ab1e;
}
.pro-page .pro-image .pro-info .pro-availabale{
    margin-top: 12px;
}
.pro-page .pro-image .pro-info .pro-availabale span.available{
    min-width: 105px;
    font-weight: 600;
}
.pro-page .pro-image .pro-info .pro-availabale span.pro-instock{
    color: #61a168;
    font-weight: 600;
}
.pro-page .pro-image .pro-info .pro-price{
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.pro-page .pro-image .pro-info .pro-price span.new-price{
    font-size: 16px;
    font-weight: 600;
}
.pro-page .pro-image .pro-info .pro-price span.old-price{
    color: #999;
    margin-left: 5px;
}
.pro-page .pro-image .pro-info .pro-price .Pro-lable span.p-discount{
    background-color: #e30514;
    font-size: 13px;
    color: #fff;
    margin-left: 10px;
    padding: 2px 6px 2px 13px;
    transform: rotate(-35deg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
}
.pro-page .pro-image .pro-info span.pro-details{
    margin-top: 20px;
    font-size: 14px;
}
.pro-page .pro-image .pro-info span.pro-details span.pro-number{
    color: #61a168;
    font-weight: 600;
}
.pro-page .pro-image .pro-info p{
    margin-top: 9px;
    color: #999;
}
.pro-page .pro-image .pro-info .pro-items{
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.pro-page .pro-image .pro-info .pro-items span.pro-size{
    font-size: 14px;
    font-weight: 600;
}
.pro-page .pro-image .pro-info .pro-items ul.pro-wight{
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
}
.pro-page .pro-image .pro-info .pro-items ul.pro-wight li{
    margin-right: 15px;
}
.pro-page .pro-image .pro-info .pro-items ul.pro-wight li a{
    color: #adadad;
    padding: 2px 8px;
    border-bottom: 2px solid #adadad;
}
.pro-page .pro-image .pro-info .pro-items ul.pro-wight li a.active,
.pro-page .pro-image .pro-info .pro-items ul.pro-wight li a:hover{
    color: #000;
    border-color: #000;
}
.pro-page .pro-image .pro-info .product-color {
    display: flex;
    align-items: center;
    margin-top: 27px;
}
.pro-page .pro-image .pro-info .product-color span.color-label {
    color: #333;
    font-size: 14px;
    font-weight: 700;
}
.pro-page .pro-image .pro-info .product-color span.color {
    margin-left: 15px;
    line-height: 1;
    display: flex;
}
.pro-page .pro-image .pro-info .product-color span.color a {
    margin-right: 10px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 100%;
}
.pro-page .pro-image .pro-info .product-color span.color a.active,
.pro-page .pro-image .pro-info .product-color span.color a:hover {
    border-color: #333;
}
.pro-page .pro-image .pro-info .product-color span.color a img {
    border-radius: 100%;
}
.pro-page .pro-image .pro-info .product-color span.color a:last-child {
    margin-right: 0px;
}
.pro-page .pro-image .pro-info .pro-qty{
    display: flex;
    align-items: center;
    margin-top: 27px;
}
.pro-page .pro-image .pro-info .pro-qty span.qty{
    font-weight: 600;
}
.pro-page .pro-image .pro-info .pro-qty .plus-minus{
    border: 1px solid #e2e2e2;
    border-radius: 25px;
}
.pro-page .pro-image .pro-info .pro-qty .plus-minus{
    margin-left: 15px;
}
.pro-page .pro-image .pro-info .pro-qty .plus-minus span{
    display: flex;
}
.pro-page .pro-image .pro-info .pro-qty .plus-minus span a{
    width: 40px;
    height: 35px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pro-page .pro-image .pro-info .pro-qty .plus-minus input{
    width: 50px;
    height: 35px;
    border-top: none;
    border-bottom: none;
    padding: 0;
    border-top: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pro-page .pro-image .pro-info .pro-btn{
    margin-top: 27px;
}
.pro-page .pro-image .pro-info .pro-btn a.btn-style1{
    margin-right: 5px;
    font-weight: 400;
}
.pro-page .pro-image .pro-info .share{
    margin-top: 26px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.pro-page .pro-image .pro-info .share ul.share-icn{
    margin-left: 15px;
    display: flex;
    align-items: center;
}
.pro-page .pro-image .pro-info .share ul.share-icn li{
    margin-right: 14px;
}
.pro-page .pro-image .pro-info .share ul.share-icn li a i{
    font-size: 16px;
}
.pro-page .pro-image .pro-info .share ul.share-icn li a i.fa-facebook{
    color: #3b5999;
}
.pro-page .pro-image .pro-info .share ul.share-icn li a i.fa-twitter{
    color: #55acee;
}
.pro-page .pro-image .pro-info .share ul.share-icn li a i.fa-instagram{
    color: #dd4b39;
}
.pro-page .pro-image .pro-info .share ul.share-icn li a i.fa-pinterest{
    color: #bd081c;
}
.pro-page .pro-image .pro-info .pay-img{
    margin-top: 22px;
}
/* product zoom css */
.pro-page .pro-image .larg-image a.long-img{
    margin-bottom: 20px;
}
.pro-page .pro-image .larg-image a.long-img figure.zoom {
     background-position: 50% 50%;
     position: relative;
     overflow: hidden;
     cursor: crosshair;
     margin-bottom: 0px;
}
.pro-page .pro-image .larg-image a.long-img figure.zoom img:hover {
     opacity: 0;
}
.pro-page .pro-image .larg-image a.long-img figure.zoom img {
     transition: opacity 0.5s;
     display: block;
     width: 100%;
}

/* tab css */
.pro-page-content .pro-page-tab ul.nav.nav-tabs{
    border-bottom: none;
    justify-content: center;
    margin-bottom: 60px;
}
.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item{
    margin-right: 60px;
}
.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item:last-child{
    margin-right: 0px;
}
.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link{
    color: #949494;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    padding: 0px;
    text-transform: uppercase;
    border: none;
}
.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link.active,
.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link:hover{
    color: #61a168;
    border-bottom: 1px solid #61a168;
}
.pro-page-content .pro-page-tab .tab-content iframe {
    width: 100%;
}
/* description css */
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content h4{
    font-size: 16px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content ul.tab-description{
    list-style-type: unset;
    padding-left: 15px;
    margin-top: 18px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content ul.tab-description li{
    margin-top: 5px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content {
    margin-top: 17px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content h4{
    font-size: 16px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content ul.tab-description{
    list-style-type: unset;
    padding-left: 15px;
    margin-top: 18px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content ul.tab-description li{
    margin-top: 5px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content ul.tab-description li:first-child {
    margin-top: 0px;
}
/* reviews css */
.pro-page-content .pro-page-tab .tab-content .tab-pane h4.reviews-title{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews{
    border-top: 1px solid #eee;
    margin-top: 28px;
    padding-top: 30px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews span.p-rating i.e-star{
    color: #f5ab1e;
    font-size: 18px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews p.review-desck{
    font-size: 13px;
    margin-top: 9px;
    margin-bottom: 9px;
    line-height: 1;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews a{
    color: #61a168;
    text-decoration: underline;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews h4.review-head{
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews span.reviews-editor{
    font-weight: 500;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews span.reviews-editor span.review-name{
    font-weight: normal;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews p.r-description{
    margin-top: 10px;
    line-height: 1;
    font-size: 13px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form {
    margin-top: 24px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form h4 {
    font-size: 18px;
    color: #333;
    line-height: 1;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form {
    margin-top: 12px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form label {
    font-size: 14px;
    margin-top: 15px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form label:first-child {
    margin-top: 0px;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form input {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    border: 1px solid #eee;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form textarea {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    border: 1px solid #eee;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form span {
    display: block;
    margin-top: 10px;
    line-height: 1;
}
.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form span i {
    color: #ddd;
}
.header-main-area.is-sticky .header-element.logo {
    width: 120px;
    margin-right: auto;
}
.header-main-area.is-sticky .header-main {
    padding: 6px;
}

/* woocommerce  */

/* ------------------------------------------------
   WOOCOMMERCE PRODUCT PAGE STYLING
   Follows the exact HTML hierarchy from your code
------------------------------------------------ */

/* Main Container */
.site-main {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ----- BREADCRUMB ----- */
.woocommerce-breadcrumb {
    font-size: 14px !important;
    color: #6c757d !important;
    margin-bottom: 30px !important;
    padding: 12px 0 !important;
    border-bottom: 0;
}

.woocommerce-breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
    color: #0a7c5c;
    text-decoration: underline;
}

/* ----- PRODUCT CONTAINER (Product-184) ----- */
.product.type-product {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 40px; */
    /* margin-bottom: 60px; */
}

/* ----- SALE BADGE ----- */
.onsale {
    position: absolute;
    background: #dc3545;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 10;
    margin: 0;
    left: 10px;
    top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----- PRODUCT GALLERY ----- */
.woocommerce-product-gallery {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
}

.woocommerce-product-gallery__image {
    text-align: center;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Zoom Button */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 20;
}

.woocommerce-product-gallery__trigger img.emoji {
    width: 20px;
    height: 20px;
}

/* ----- PRODUCT SUMMARY (Right Column) ----- */
.summary.entry-summary {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Title */
.product_title.entry-title {
    font-size: 32px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Price Section */
.price {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price del {
    color: #868e96;
    font-size: 18px;
}

.price del .woocommerce-Price-amount {
    text-decoration: line-through;
}

.price ins {
    text-decoration: none;
    background: #e8f5e9;
    padding: 5px 12px;
    border-radius: 20px;
}

.price ins .woocommerce-Price-amount {
    color: #0a7c5c;
    font-size: 28px;
    font-weight: 700;
}

/* Stock Status */
.stock.in-stock {
    color: #0a7c5c;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 25px;
}

/* ----- ADD TO CART FORM ----- */
.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

/* Quantity Selector */
.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 8px;
    overflow: hidden;
}

.quantity .input-text.qty.text {
    width: 70px;
    height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    background: white;
    color: #212529;
}

/* Add to Cart Button */
.single_add_to_cart_button.button.alt {
    background-color: #4b8d5e !important;
    color: white;
    border: none;
    padding: 0 35px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single_add_to_cart_button.button.alt:hover {
    background: #0a624a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10,124,92,0.3);
}

/* Product Meta (Category) */
.product_meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #6c757d;
}

.product_meta a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.product_meta a:hover {
    color: #0a7c5c;
    text-decoration: underline;
}

/* ----- TABS (Description / Reviews) ----- */
.woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
    margin: 60px 0 40px;
    clear: both;
}

.tabs.wc-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-bottom: 2px solid #e9ecef;
    gap: 5px;
}

.tabs.wc-tabs li {
    margin: 0;
    padding: 0;
}

.tabs.wc-tabs li a {
    display: block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
}

.tabs.wc-tabs li.active a {
    /* background: #0a7c5c; */
    color: white;
}

.tabs.wc-tabs li:not(.active) a:hover {
    background: #f8f9fa;
    color: #0a7c5c;
}

/* Tab Content */
.woocommerce-Tabs-panel {
    padding: 30px !important;
    background: #f8f9fa;
    border-radius: 12px;
}

.woocommerce-Tabs-panel h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #212529;
}

/* ----- REVIEWS SECTION ----- */
#reviews {
    max-width: 800px;
}

.woocommerce-Reviews-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.woocommerce-noreviews {
    color: #6c757d;
    font-style: italic;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

/* Review Form */
#review_form {
    margin-top: 30px;
}

#respond {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.comment-reply-title {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    display: block;
}

/* Rating Stars */
.comment-form-rating {
    margin-bottom: 20px;
}

.comment-form-rating label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #212529;
}

.stars {
    display: inline-block;
}

.stars a {
    color: #ffc107;
    font-size: 20px;
    text-decoration: none;
}

/* Comment Form */
.comment-form-comment label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #212529;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    resize: vertical;
}

/* Submit Button */
.form-submit .submit {
    background: #0a7c5c;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-submit .submit:hover {
    background: #0a624a;
}

/* ----- RELATED PRODUCTS ----- */
.related.products {
    width: 100%;
    clear: both;
    margin-top: 60px;
}

.related.products h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #212529;
    position: relative;
    padding-bottom: 15px;
}

.related.products h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0a7c5c;
}

/* Products Grid */
.products.columns-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 15px !important;
}

/* Product Card */
.products li.product {
    background: white;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    padding: 15px !important;
    width: 100% !important;
}

.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #e0e0e0;
}

/* Product Image */
.products li.product img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
    margin-bottom: 15px !important;
    object-fit: contain;
    aspect-ratio: 4 / 3;
}

/* Product Title */
.woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 10px 0;
    line-height: 1.4;
}

/* Product Price */
.products li.product .price {
    margin: 10px 0;
    display: block;
}

.products li.product .price del {
    font-size: 14px;
    color: #868e96;
    margin-right: 8px;
}

.products li.product .price ins {
    background: none;
    padding: 0;
}

.products li.product .price ins .woocommerce-Price-amount {
    font-size: 18px;
    color: #0a7c5c;
}

/* Add to Cart Button on Related Products */
.products li.product .button {
    display: block;
    width: 100%;
    text-align: center;
    background: white;
    color: #0a7c5c;
    border: 2px solid #0a7c5c;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.2s ease;
}

.products li.product .button:hover {
    background: #0a7c5c;
    color: white;
}

/* Sale Badge on Related Products */
.products li.product .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #61a268;
    color: white;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .woocommerce-product-gallery,
    .summary.entry-summary {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity {
        width: 100%;
    }
    
    .quantity .input-text.qty.text {
        width: 100%;
    }
    
    .single_add_to_cart_button.button.alt {
        width: 100%;
    }
    
    .products.columns-4 {
        grid-template-columns: 1fr;
    }
    
    .tabs.wc-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tabs.wc-tabs li a {
        border-radius: 8px;
    }
}

.products.columns-4::before, .products.columns-4::after {
    display: none !important;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    margin-bottom: 0 !important;
}


/* cart  */

/* ------------------------------------------------
   WOOCOMMERCE CART PAGE STYLING
   Follows the exact HTML hierarchy from your cart code
   Compatible with WooCommerce Blocks / Checkout blocks
------------------------------------------------ */

/* ----- CART PAGE CONTAINER ----- */
.page.type-page .entry-content.container.py-4 {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ----- MAIN CART LAYOUT ----- */
.wc-block-components-sidebar-layout.wc-block-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* ----- CART ITEMS SECTION (LEFT COLUMN) ----- */
.wc-block-components-main.wc-block-cart__main {
    flex: 1 1 60%;
    min-width: 300px;
}

/* Cart Table */
.wc-block-cart-items {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
    margin: 0;
}

/* Table Header */
.wc-block-cart-items__header th {
    text-align: left;
    padding: 0 0 15px 0;
    color: #212529;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e9ecef;
}

.wc-block-cart-items__header-image span,
.wc-block-cart-items__header-product span,
.wc-block-cart-items__header-total span {
    color: #495057;
}

/* Cart Row - Individual Product */
.wc-block-cart-items__row {
    background: white;
    /* border-radius: 16px; */
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); */
    transition: all 0.2s ease;
}

.wc-block-cart-items__row:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Table Cells */
.wc-block-cart-items__row td {
    padding: 20px !important;
    vertical-align: top !important;
    background: white !important;
}

.wc-block-cart-items__row td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    padding-left: 20px;
}

.wc-block-cart-items__row td:last-child {
    /* border-top-right-radius: 16px; */
    /* border-bottom-right-radius: 16px; */
    /* padding-right: 20px; */
}

/* Product Image */
.wc-block-cart-item__image {
    width: 90px;
}

.wc-block-cart-item__image a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.wc-block-cart-item__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.wc-block-cart-item__image a:hover img {
    transform: scale(1.05);
}

/* Product Details Container */
.wc-block-cart-item__product {
    padding: 0 20px !important;
}

.wc-block-cart-item__wrap {
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 12px; */
}

/* Product Name */
.wc-block-components-product-name {
    color: #212529;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.wc-block-components-product-name:hover {
    color: #0a7c5c;
    text-decoration: underline;
}

/* Product Price */
.wc-block-cart-item__prices {
    margin: 5px 0;
}

.wc-block-components-product-price {
    color: #0a7c5c;
    font-size: 18px;
    font-weight: 700;
}

.wc-block-formatted-money-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* Quantity Selector */
.wc-block-cart-item__quantity {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.wc-block-components-quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 50px;
    background: white;
    overflow: hidden;
    height: 44px;
}

.wc-block-components-quantity-selector__input {
    width: 60px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    background: white;
    color: #212529;
    padding: 0;
}

.wc-block-components-quantity-selector__button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    color: #495057;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wc-block-components-quantity-selector__button:hover:not(:disabled) {
    background: #0a7c5c;
    color: white;
}

.wc-block-components-quantity-selector__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

/* Remove Item Link */
.wc-block-cart-item__remove-link {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.wc-block-cart-item__remove-link:hover {
    color: #b02a37;
    text-decoration: none;
}

/* Product Total Column */
.wc-block-cart-item__total {
    text-align: right;
    vertical-align: middle;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
    display: inline-block;
}

.wc-block-cart-item__total .wc-block-components-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

/* ----- CART SIDEBAR / TOTALS (RIGHT COLUMN) ----- */
.wc-block-components-sidebar.wc-block-cart__sidebar {
    flex: 0 0 35%;
    min-width: 280px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f1f1;
    position: sticky;
    top: 30px;
}

/* Cart Totals Title */
.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #212529 !important;
    margin: 0 0 25px 0 !important;
    padding-bottom: 15px !important;
    position: relative;
}

.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0a7c5c;
}

/* Coupon Section */
.wc-block-components-totals-coupon.wc-block-components-panel {
    margin-bottom: 20px;
}

.wc-block-components-panel__button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0a7c5c;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    transition: color 0.2s ease;
    border-top: 0 !important;
}

.wc-block-components-panel__button:hover {
    color: #0a624a;
}

.wc-block-components-panel__button-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Totals Wrapper */
.wc-block-components-totals-wrapper {
    border-top: 0px solid #e9ecef00;
    padding: 0;
    border-top: 0 !important;
    padding-top: 0 !important;
    /* padding-bottom: 0 !important; */
}

.wc-block-components-totals-wrapper:first-of-type {
    /* border-top: none; */
    /* padding-top: 0; */
    border-top: 0;
}

/* Totals Item */
.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.wc-block-components-totals-item__label {
    font-size: 16px;
    color: #495057;
    font-weight: 500;
}

.wc-block-components-totals-item__value {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

/* Footer Total - Grand Total */
.wc-block-components-totals-footer-item {
    margin-top: 20px;
    padding-top: 20px;
    /* border-top: 2px solid #e9ecef; */
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 24px;
    font-weight: 800;
    color: #0a7c5c;
}

.wc-block-components-totals-footer-item-tax-value {
    color: inherit;
}

/* ----- CHECKOUT BUTTON ----- */
.wc-block-cart__submit {
    margin-top: 30px;
}

.wc-block-cart__submit-container {
    width: 100%;
}

.wc-block-cart__submit-button.wp-element-button.contained {
    display: block;
    width: 100%;
    background: #5b9c65;
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(10, 124, 92, 0.2);
}

.wc-block-cart__submit-button.wp-element-button.contained:hover {
    background: #0a624a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 124, 92, 0.3);
}

.wc-block-cart__submit-button.wp-element-button.contained .wc-block-components-button__text {
    color: white;
}

/* Payment Options (empty state styling) */
.wc-block-cart__payment-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e9ecef;
}

/* ----- EMPTY CART / NOTICES ----- */
.wc-block-components-notices {
    margin-bottom: 30px;
}

.wc-block-components-notice-snackbar-list {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 992px) {
    .wc-block-components-sidebar-layout.wc-block-cart {
        flex-direction: column;
    }
    
    .wc-block-components-main.wc-block-cart__main,
    .wc-block-components-sidebar.wc-block-cart__sidebar {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .wc-block-components-sidebar.wc-block-cart__sidebar {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    /* Convert table to block layout on mobile */
    .wc-block-cart-items,
    .wc-block-cart-items tbody,
    .wc-block-cart-items tr,
    .wc-block-cart-items td {
        display: block;
    }
    
    .wc-block-cart-items__header {
        display: none;
    }
    
    .wc-block-cart-items__row {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .wc-block-cart-items__row td {
        padding: 10px !important;
    }
    
    .wc-block-cart-item__image {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .wc-block-cart-item__image a {
        display: inline-block;
        width: 120px;
    }
    
    .wc-block-cart-item__product {
        padding: 0 !important;
    }
    
    .wc-block-cart-item__quantity {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wc-block-components-quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .wc-block-components-quantity-selector__input {
        flex: 1;
    }
    
    .wc-block-cart-item__total {
        text-align: left;
        padding-top: 15px !important;
        margin-top: 15px;
        border-top: 1px solid #e9ecef;
    }
    
    .wc-block-cart-item__total-price-and-sale-badge-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .wc-block-cart-item__total .wc-block-components-product-price {
        font-size: 18px;
    }
    
    .wc-block-components-sidebar.wc-block-cart__sidebar {
        padding: 20px;
    }
    
    .wc-block-cart__submit-button.wp-element-button.contained {
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .page.type-page .entry-content.container.py-4 {
        padding: 0 15px;
    }
    
    .wc-block-components-sidebar.wc-block-cart__sidebar {
        padding: 15px;
    }
    
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 20px;
    }
}

/* ----- ANIMATIONS ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-block-cart-items__row {
    animation: fadeIn 0.3s ease;
}

/* ----- FOCUS STATES FOR ACCESSIBILITY ----- */
.wc-block-components-quantity-selector__input:focus,
.wc-block-cart__submit-button.wp-element-button.contained:focus,
.wc-block-cart-item__remove-link:focus {
    outline: 2px solid #0a7c5c;
    outline-offset: 2px;
}

.wc-block-components-panel__button:focus-visible {
    outline: 2px solid #0a7c5c;
    outline-offset: 2px;
    border-radius: 4px;
}

button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    background-color: #61a168;
    color: #fff;
}

.wp-block-woocommerce-cart-order-summary-coupon-form-block button {
    background-color: #5b9c65;
    color: #fff;
    font-size: 13px;
}

.wp-block-woocommerce-cart-order-summary-coupon-form-block button .wc-block-components-button__text {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

/* checkout  */

.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    font-size: 16px;
    border-radius: 4px;
}
.wc-block-components-checkout-place-order-button {
    color: #fff;
    background-color: #61a168;
    font-size: 16px;
    border-radius: 4px;
} 
/* when no product on the cart  */
/* ------------------------------------------------
   WOOCOMMERCE EMPTY CART PAGE STYLING
   Follows the exact HTML hierarchy from your empty cart code
   Matches the product grid styling from related products
------------------------------------------------ */

/* ----- EMPTY CART CONTAINER ----- */
.wp-block-woocommerce-empty-cart-block {
    /* max-width: 1280px; */
    /* margin: 60px auto; */
    /* padding: 40px 20px; */
    /* text-align: center; */
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* ----- EMPTY CART TITLE ----- */
.wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
    /* font-size: 36px; */
    /* font-weight: 700; */
    color: #212529;
    /* margin: 0 0 20px 0; */
    position: relative;
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    gap: 15px;
}

/* Empty Cart Icon - Using pseudo-element since icon isn't in HTML */
.wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title:before {
    /* content: '🛒'; */
    /* font-size: 40px; */
    /* opacity: 0.8; */
}

/* ----- SEPARATOR ----- */
.wp-block-separator.has-alpha-channel-opacity.is-style-dots {
    border: none;
    border-top: 4px dotted #e9ecef;
    width: 120px;
    margin: 40px auto;
    background: none;
    opacity: 0.7;
}

/* ----- "NEW IN STORE" HEADING ----- */
.wp-block-heading.has-text-align-center {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 40px 0;
    position: relative;
    padding-bottom: 20px;
}

.wp-block-heading.has-text-align-center:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0a7c5c;
    border-radius: 2px;
}

/* ----- PRODUCT GRID (Matches Related Products) ----- */
.wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new {
    margin-top: 20px;
}

.wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Product Card */
.wc-block-grid__product {
    background: white;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.wc-block-grid__product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* border-color: #e0e0e0; */
}

/* Product Link */
.wc-block-grid__product-link {
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

/* Product Image */
.wc-block-grid__product-image {
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.wc-block-grid__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.wc-block-grid__product:hover .wc-block-grid__product-image img {
    transform: scale(1.08);
}

/* Product Title */
.wc-block-grid__product-title {
    color: #212529 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin: 0px 0 12px 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    transition: color 0.2s ease;
}

.wc-block-grid__product-link:hover .wc-block-grid__product-title {
    color: #0a7c5c;
    text-decoration: underline;
}

/* Product Price */
.wc-block-grid__product-price.price {
    margin: 0 0 20px 0;
    display: block;
}

.wc-block-grid__product-price .woocommerce-Price-amount {
    color: #0a7c5c;
    font-size: 20px;
    font-weight: 700;
}

.wc-block-grid__product-price .woocommerce-Price-currencySymbol {
    font-weight: 500;
    margin-right: 2px;
}

/* Add to Cart Button */
.wp-block-button.wc-block-grid__product-add-to-cart {
    margin-top: auto;
    width: 100%;
}

.wp-block-button__link.add_to_cart_button.ajax_add_to_cart {
    display: block;
    width: 100%;
    text-align: center;
    background: white;
    color: #0a7c5c;
    border: 2px solid #0a7c5c;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.wp-block-button__link.add_to_cart_button.ajax_add_to_cart:hover {
    background: #0a7c5c;
    color: white;
    border-color: #0a7c5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 124, 92, 0.2);
}

/* Add to Cart Loading State */
.wp-block-button__link.add_to_cart_button.ajax_add_to_cart.added {
    display: none;
}

.wp-block-button__link.add_to_cart_button.ajax_add_to_cart.loading {
    opacity: 0.7;
    position: relative;
    padding-right: 40px;
}

.wp-block-button__link.add_to_cart_button.ajax_add_to_cart.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #0a7c5c;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.wp-block-button__link.add_to_cart_button.ajax_add_to_cart:hover.loading:after {
    border-color: white;
    border-top-color: transparent;
}

/* Sale Badge - For products that might be on sale */
.wc-block-grid__product .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 992px) {
    .wc-block-grid__products {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .wp-block-woocommerce-empty-cart-block {
        padding: 30px 15px;
        margin: 40px auto;
    }
    
    .wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
        font-size: 26px;
        flex-direction: column;
        gap: 10px;
    }
    
    .wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title:before {
        font-size: 48px;
    }
    
    .wp-block-heading.has-text-align-center {
        font-size: 24px;
    }
    
    .wc-block-grid__products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wc-block-grid__product {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
        font-size: 22px;
    }
    
    .wp-block-separator.has-alpha-channel-opacity.is-style-dots {
        width: 80px;
        margin: 30px auto;
    }
    
    .wp-block-heading.has-text-align-center {
        font-size: 20px;
    }
    
    .wc-block-grid__product {
        padding: 20px 15px;
    }
    
    .wc-block-grid__product-title {
        font-size: 15px;
        min-height: 42px;
    }
    
    .wc-block-grid__product-price .woocommerce-Price-amount {
        font-size: 18px;
    }
}

/* ----- ANIMATIONS ----- */
@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-block-grid__product {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.wc-block-grid__product:nth-child(1) { animation-delay: 0.1s; }
.wc-block-grid__product:nth-child(2) { animation-delay: 0.2s; }
.wc-block-grid__product:nth-child(3) { animation-delay: 0.3s; }
.wc-block-grid__product:nth-child(4) { animation-delay: 0.4s; }

/* ----- ACCESSIBILITY ----- */
.wp-block-button__link.add_to_cart_button.ajax_add_to_cart:focus {
    outline: 2px solid #0a7c5c;
    outline-offset: 2px;
}

.wc-block-grid__product-link:focus-visible {
    outline: 2px solid #0a7c5c;
    outline-offset: 4px;
    border-radius: 4px;
}

/* ----- EMPTY CART SUGGESTIONS TEXT (if any) ----- */
.wc-block-cart__empty-cart__description {
    color: #6c757d;
    font-size: 16px;
    margin: 20px 0 0;
    line-height: 1.6;
}

/* ----- CONTINUE SHOPPING BUTTON (if present) ----- */
.wc-block-cart__empty-cart__continue-shopping {
    display: inline-block;
    background: #0a7c5c;
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin: 20px 0 0;
    transition: all 0.3s ease;
    border: 2px solid #0a7c5c;
}

.wc-block-cart__empty-cart__continue-shopping:hover {
    background: #0a624a;
    border-color: #0a624a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 124, 92, 0.3);
}

.wc-block-grid__products li.wc-block-grid__product {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px;
}

/* home page card  */

.home6-featured > div > div > div,
.home6-tab > div > div > div {
    border: 1px solid #cece;
    padding: 15px;
    border-radius: 8px;
}

.home6-featured > div > div > div .tred-pro,
.home6-tab > div > div > div > div > .tr-pro-img {
    height: 200px;
    max-height: 180px;
}
.home6-featured > div > div > div .tred-pro .tr-pro-img,
.home6-tab > div > div > div > div > .tr-pro-img > a {
    height: 100%;
    width: 100%;
}
.home6-featured > div > div > div .tred-pro .tr-pro-img img,
.home6-tab > div > div > div > div > .tr-pro-img > a > img {
    height: 100% !important;
    object-fit: contain;
    width: 100%;
}
.home6-featured > div > div > div .tred-pro .tr-pro-img a {
    height: 100%;
}

/* account details page  */

/* ------------------------------------------------
   WOOCOMMERCE MY ACCOUNT - ORDERS PAGE STYLING
   Follows the exact HTML hierarchy from your my-account code
   Consistent with your store's branding
------------------------------------------------ */

/* ----- MY ACCOUNT CONTAINER ----- */
.page.type-page .entry-content.container.py-4 .woocommerce {
    /* max-width: 1280px; */
    /* margin: 40px auto; */
    /* padding: 0 20px; */
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    /* padding: 40px; */
    justify-content: space-between;
}

/* ----- ACCOUNT NAVIGATION (SIDEBAR) ----- */
.woocommerce-MyAccount-navigation {
    flex: 0 0 250px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid #f1f1f1;
    align-self: flex-start;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woocommerce-MyAccount-navigation-link {
    margin: 0;
    padding: 0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 14px 20px;
    color: #495057;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

/* Active Navigation Item */
.woocommerce-MyAccount-navigation-link.is-active {
    background: #0a7c5c;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    color: white;
    font-weight: 600;
}

.woocommerce-MyAccount-navigation-link.is-active a:before {
    content: '→';
    position: absolute;
    right: 20px;
    color: white;
    opacity: 0.8;
}

/* Hover States */
.woocommerce-MyAccount-navigation-link:not(.is-active):hover {
    background: rgba(10, 124, 92, 0.05);
}

.woocommerce-MyAccount-navigation-link:not(.is-active):hover a {
    color: #0a7c5c;
}

/* Logout Link - Special Style */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #dc3545;
}

.woocommerce-MyAccount-navigation-link--customer-logout:hover {
    background: rgba(220, 53, 69, 0.05);
}

.woocommerce-MyAccount-navigation-link--customer-logout:hover a {
    color: #b02a37;
}

/* ----- ACCOUNT CONTENT (MAIN AREA) ----- */
.woocommerce-MyAccount-content {
    flex: 1;
    min-width: 300px;
}

/* ----- ORDERS TABLE ----- */
.woocommerce-orders-table.woocommerce-MyAccount-orders {
    /* width: 100%; */
    /* border-collapse: separate !important; */
    border-spacing: 0 15px;
    margin: 20px 0 0;
}

/* Table Header */
.woocommerce-orders-table thead tr {
    background: transparent;
}

.woocommerce-orders-table thead th {
    padding: 16px 20px;
    color: #212529;
    font-size: 15px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    /* border-bottom: 2px solid #e9ecef; */
    white-space: nowrap;
}

.woocommerce-orders-table thead th .nobr {
    color: #212529;
}

/* Table Rows - Card Style */
.woocommerce-orders-table tbody tr {
    /* background: white; */
    /* border: 1px solid #f1f1f1; */
    /* border-radius: 16px; */
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); */
    border-radius: 0 !important;
    border-top: !important;
}

.woocommerce-orders-table tbody tr:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

.woocommerce-orders-table tbody td,
.woocommerce-orders-table tbody th {
    padding: 20px;
    vertical-align: middle;
    background: white;
    /* margin-top: 20px; */
}

.woocommerce-orders-table tbody td:first-child,
.woocommerce-orders-table tbody th:first-child {
    /* border-top-left-radius: 16px; */
    /* border-bottom-left-radius: 16px; */
    padding-left: 20px;
}

.woocommerce-orders-table tbody td:last-child,
.woocommerce-orders-table tbody th:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    padding-right: 20px;
}

/* Order Number Link */
.woocommerce-orders-table__cell-order-number a {
    color: #0a7c5c;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    background: rgba(10, 124, 92, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10, 124, 92, 0.1);
}

.woocommerce-orders-table__cell-order-number a:hover {
    background: #0a7c5c;
    color: white;
    border-color: #0a7c5c;
}

/* Order Date */
.woocommerce-orders-table__cell-order-date time {
    color: #495057;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.woocommerce-orders-table__cell-order-date time:before {
    content: '📅';
    font-size: 16px;
    opacity: 0.7;
}

/* Order Status */
.woocommerce-orders-table__cell-order-status {
    font-weight: 600;
}

/* Status Badge - Processing */
.woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
    background: rgba(255, 193, 7, 0.12);
    color: #856404;
    padding: 8px 16px !important;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Status Badge - Completed */
.woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status {
    background: rgba(10, 124, 92, 0.12);
    color: #0a7c5c;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(10, 124, 92, 0.2);
}

/* Status Badge - On Hold */
.woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status {
    background: rgba(253, 126, 20, 0.12);
    color: #c05600;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(253, 126, 20, 0.2);
}

/* Status Badge - Cancelled */
.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Status Badge - Refunded */
.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status {
    background: rgba(108, 117, 125, 0.12);
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

/* Order Total */
.woocommerce-orders-table__cell-order-total {
    font-size: 16px;
    font-weight: 600;
}

.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
    color: #212529;
    font-size: 18px;
    font-weight: 700;
}

.woocommerce-orders-table__cell-order-total .woocommerce-Price-currencySymbol {
    color: #6c757d;
    font-weight: 500;
    margin-right: 2px;
}

/* Order Actions */
.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.view {
    display: inline-block;
    background: white;
    color: #0a7c5c;
    border: 2px solid #0a7c5c;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(10, 124, 92, 0.08);
}

.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.view:hover {
    background: #0a7c5c;
    color: white;
    border-color: #0a7c5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 124, 92, 0.2);
}

/* Pay Button (if order is pending) */
.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.pay {
    display: inline-block;
    background: #ffc107;
    color: #212529;
    border: 2px solid #ffc107;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.pay:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: #212529;
    transform: translateY(-2px);
}

/* Cancel Button */
.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.cancel {
    display: inline-block;
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.cancel:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* ----- RESPONSIVE TABLE (MOBILE) ----- */
@media (max-width: 992px) {
    .page.type-page .entry-content.container.py-4 .woocommerce {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page.type-page .entry-content.container.py-4 .woocommerce {
        padding: 20px 15px;
    }
    
    .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .woocommerce-MyAccount-navigation-link {
        flex: 1 1 calc(50% - 5px);
    }
    
    .woocommerce-MyAccount-navigation-link a {
        padding: 12px 15px;
        font-size: 14px;
        text-align: center;
    }
    
    .woocommerce-MyAccount-navigation-link.is-active a:before {
        display: none;
    }
    
    /* Convert table to block layout */
    .woocommerce-orders-table,
    .woocommerce-orders-table thead,
    .woocommerce-orders-table tbody,
    .woocommerce-orders-table tr,
    .woocommerce-orders-table td,
    .woocommerce-orders-table th {
        display: block;
    }
    
    .woocommerce-orders-table thead {
        display: none;
    }
    
    .woocommerce-orders-table tbody tr {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .woocommerce-orders-table tbody td,
    .woocommerce-orders-table tbody th {
        padding: 12px 0 !important;
        border-radius: 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .woocommerce-orders-table tbody td:last-child,
    .woocommerce-orders-table tbody th:last-child {
        border-bottom: none;
    }
    
    .woocommerce-orders-table__cell-order-number,
    .woocommerce-orders-table__cell-order-date,
    .woocommerce-orders-table__cell-order-status,
    .woocommerce-orders-table__cell-order-total,
    .woocommerce-orders-table__cell-order-actions {
        width: 100%;
    }
    
    /* Add data-title labels for mobile */
    .woocommerce-orders-table__cell:before {
        content: attr(data-title) ": ";
        font-weight: 700;
        color: #212529;
        margin-right: 10px;
    }
    
    .woocommerce-orders-table__cell-order-actions .woocommerce-button.button {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .woocommerce-orders-table__cell-order-actions .woocommerce-button.button.cancel {
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .woocommerce-MyAccount-navigation-link {
        flex: 1 1 100%;
    }
    
    .woocommerce-orders-table tbody tr {
        padding: 15px;
    }
    
    .woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
        font-size: 16px;
    }
}

/* ----- EMPTY ORDERS STATE ----- */
.woocommerce-MyAccount-content .woocommerce-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #495057;
    font-size: 16px;
    margin: 20px 0;
}

.woocommerce-MyAccount-content .woocommerce-info:before {
    content: '📦';
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.7;
}

.woocommerce-MyAccount-content .woocommerce-info a {
    display: inline-block;
    margin-top: 20px;
    background: #0a7c5c;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content .woocommerce-info a:hover {
    background: #0a624a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 124, 92, 0.2);
}

/* ----- PAGINATION ----- */
.woocommerce-pagination {
    margin-top: 40px;
}

.woocommerce-pagination .page-numbers {
    display: flex;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: #495057;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce-pagination .page-numbers li a:hover {
    background: #0a7c5c;
    color: white;
    border-color: #0a7c5c;
}

.woocommerce-pagination .page-numbers li span.current {
    background: #0a7c5c;
    color: white;
    border-color: #0a7c5c;
    font-weight: 600;
}

/* ----- ANIMATIONS ----- */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.woocommerce-MyAccount-content {
    animation: slideInRight 0.4s ease;
}

.woocommerce-orders-table tbody tr {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.woocommerce-orders-table tbody tr:nth-child(1) {animation-delay: 0.1s;}
.woocommerce-orders-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.woocommerce-orders-table tbody tr:nth-child(3) { animation-delay: 0.3s; }

/* ----- ACCESSIBILITY ----- */
.woocommerce-MyAccount-navigation-link a:focus-visible,
.woocommerce-orders-table__cell-order-number a:focus-visible,
.woocommerce-orders-table__cell-order-actions .button:focus-visible {
    outline: 2px solid #0a7c5c;
    outline-offset: 2px;
}

.page.type-page .entry-content.container.py-4 .woocommerce::before, .page.type-page .entry-content.container.py-4 .woocommerce::after {
    display: none;
}

/* ------------------------------------------------
   WOOCOMMERCE MY ACCOUNT - ADDRESSES STYLING
------------------------------------------------ */

/* ----- ADDRESSES CONTAINER ----- */
.u-columns.woocommerce-Addresses.col2-set.addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0 0;
    padding: 0;
}

/* ----- INDIVIDUAL ADDRESS CARD ----- */
.u-column1.woocommerce-Address,
.u-column2.woocommerce-Address {
    background: white;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.u-column1.woocommerce-Address:hover,
.u-column2.woocommerce-Address:hover {
    border-color: #e0e0e0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

/* ----- ADDRESS HEADER ----- */
.woocommerce-Address-title.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
    position: relative;
}

/* Address Title (H2) */
.woocommerce-Address-title.title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin: 0;
    padding: 0;
    position: relative;
}

.woocommerce-Address-title.title h2:after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0a7c5c;
    border-radius: 2px;
}

/* Edit Address Link */
.woocommerce-Address-title.title .edit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a7c5c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(10, 124, 92, 0.05);
    border: 1px solid rgba(10, 124, 92, 0.1);
    transition: all 0.2s ease;
}

.woocommerce-Address-title.title .edit:hover {
    background: #0a7c5c;
    color: white;
    border-color: #0a7c5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 124, 92, 0.15);
}

/* Add pencil icon to edit link */
.woocommerce-Address-title.title .edit:before {
    content: '✎';
    font-size: 16px;
    font-weight: normal;
}

/* ----- ADDRESS CONTENT ----- */
.woocommerce-Address address {
    font-style: normal;
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f1f1f1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    flex: 1;
}

/* Address line styling */
.woocommerce-Address address br + br {
    display: none;
}

.woocommerce-Address address br {
    display: none;
}

.woocommerce-Address address:before {
    content: '📍';
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    opacity: 0.8;
}

/* Format address lines */
.woocommerce-Address address {
    display: flex;
    flex-direction: column;
}

.woocommerce-Address address br {
    display: block;
    content: '';
    margin: 4px 0;
}

/* Postcode styling */
.woocommerce-Address address br:last-of-type {
    margin-top: 8px;
    font-weight: 600;
    color: #212529;
}

/* ----- EMPTY ADDRESS STATE ----- */
.woocommerce-Address address:empty,
.woocommerce-Address address:blank {
    padding: 30px;
    text-align: center;
    color: #6c757d;
}

.woocommerce-Address address:empty:before,
.woocommerce-Address address:blank:before {
    content: '🏠';
    display: block;
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.woocommerce-Address address:empty:after,
.woocommerce-Address address:blank:after {
    content: 'No address set';
    font-size: 16px;
    color: #6c757d;
}

/* Add address button for empty state */
.woocommerce-Address address:empty + .edit,
.woocommerce-Address address:blank + .edit {
    margin-top: 20px;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 992px) {
    .u-columns.woocommerce-Addresses.col2-set.addresses {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .u-columns.woocommerce-Addresses.col2-set.addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .u-column1.woocommerce-Address,
    .u-column2.woocommerce-Address {
        padding: 25px;
    }
    
    .woocommerce-Address-title.title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .woocommerce-Address-title.title h2:after {
        bottom: -15px;
    }
    
    .woocommerce-Address-title.title .edit {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .u-column1.woocommerce-Address,
    .u-column2.woocommerce-Address {
        padding: 20px;
    }
    
    .woocommerce-Address address {
        padding: 16px;
        font-size: 15px;
    }
    
    .woocommerce-Address-title.title h2 {
        font-size: 18px;
    }
}

/* ----- ANIMATIONS ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.u-column1.woocommerce-Address,
.u-column2.woocommerce-Address {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
    width: 100% !important;
}

.u-column1.woocommerce-Address {
    animation-delay: 0.1s;
}

.u-column2.woocommerce-Address {
    animation-delay: 0.2s;
}

/* ----- EDIT ADDRESS FORM (if viewed on same page) ----- */
.woocommerce-address-fields {
    background: white;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.woocommerce-address-fields .form-row {
    margin: 0;
    padding: 0;
}

.woocommerce-address-fields .form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.woocommerce-address-fields .form-row input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1.5px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    color: #212529;
    transition: all 0.2s ease;
}

.woocommerce-address-fields .form-row input:focus {
    border-color: #0a7c5c;
    box-shadow: 0 0 0 3px rgba(10, 124, 92, 0.1);
    outline: none;
}

.woocommerce-address-fields .button {
    background: #0a7c5c;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.woocommerce-address-fields .button:hover {
    background: #0a624a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 124, 92, 0.2);
}

@media (max-width: 768px) {
    .woocommerce-address-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ----- ACCESSIBILITY ----- */
.woocommerce-Address-title.title .edit:focus-visible {
    outline: 2px solid #0a7c5c;
    outline-offset: 2px;
}

.woocommerce-address-fields .form-row input:focus-visible {
    outline: 2px solid #0a7c5c;
    outline-offset: 2px;
}

/* ----- PRINT STYLES ----- */
@media print {
    .u-column1.woocommerce-Address,
    .u-column2.woocommerce-Address {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .woocommerce-Address-title.title .edit {
        display: none;
    }
    
    .woocommerce-Address-title.title h2:after {
        background: #000;
    }
}

.u-columns.woocommerce-Addresses.col2-set.addresses::before,
.u-columns.woocommerce-Addresses.col2-set.addresses::after {
    display: none;
}
.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
    display: none;
}
.woocommerce-address-fields__field-wrapper .form-row {
    width: 100% !important;
}
.woocommerce-address-fields__field-wrapper .form-row span.woocommerce-input-wrapper input {
    width: 100% !important;
    border-color: #ddd;
}
.woocommerce-address-fields__field-wrapper .form-row span.woocommerce-input-wrapper {
    width: 100%;
}
.woocommerce-address-fields__field-wrapper .form-row span.woocommerce-input-wrapper span.selection {
    width: 100%;
    border-color: #ddd;
}
.woocommerce-address-fields__field-wrapper .form-row span.woocommerce-input-wrapper span.selection > span {
    border-color: #ddd;
}
.woocommerce ul.products li.product a.added_to_cart.wc-forward {
    width: max-content;
    padding-left: 40px;
    color: #61a168;
    font-weight: 700;
}
.woocommerce-page ul.products li.product:has(.added_to_cart.wc-forward) .add_to_cart_button.ajax_add_to_cart.added {
    width: fit-content;
}
/* end woocommerce */