:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey-text: #525758;
  --dark: #424242;
  --green: #425a37;
  --dark-green: #425a37;
  --darker-green: #1F3407;
  --darkest-green: #1B2B09;
  --lightgreenheading:#C8F497; 
  --lightgreen: #F0FFE0;
  --light-grey:#F3F3F3;
  --inter: "Inter", sans-serif;
}

* {
  transition: all 300ms;
}

body {
  font-family: var(--inter);
  color: var(--dark-grey-text);
  font-size: 16px;
}

img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
}

button,
select {
  outline: none !important;
}

ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  font-weight: 600;
}

p {
  color: var(--dark-grey-text);
}

.container-fluid {
  padding: 0 40px;
}

.container {
  padding: 0 80px;
  max-width: 1440px;
}


.Sec-ptb {
  padding: 80px 0;
}

.overlay {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: rgba(7, 9, 15, 0.67);
  visibility: hidden;
  opacity: 0;
}
.nav-open .overlay {
  visibility: visible;
  opacity: 1;
}
/***Preloader Css Start***/
.preloader { 
  position: fixed;
  left: 0; 
  top: 0; 
  bottom: 0; 
  right: 0; 
  z-index: 9999999; 
  display: flex;
  justify-content: center;  
  align-items: center; 
  padding: 20px; 
  background: rgba(0, 0, 0, .95); 
  transition: .3s all ease; 
}
.preloader-body { 
  display: block; 
}
.preloader-body .rect { 
  fill: none; 
  stroke-width: 8px; 
  stroke: var(--lightgreenheading); 
  stroke-dasharray: 40; 
  stroke-dashoffset: 50%; 
  animation: movedash 1.2s ease-in-out forwards 0s infinite; 
}
@-webkit-keyframes movedash { to {
  stroke-dashoffset:250%
}
}
@-moz-keyframes movedash { to {
  stroke-dashoffset:250%
}
}
 @-o-keyframes movedash { to {
stroke-dashoffset:250%
}
}
 @keyframes movedash { to {
stroke-dashoffset:250%
}
}
/***Preloader Css End***/
.fixed-icons{
  top: 70%;
  transform: translateY(-50%);
  right: 30px;
  z-index: 99;
}
.mail-icon a, .call-icon a{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  margin: 10px 0;
  cursor: pointer;
}
.mail-icon a:hover, .call-icon a:hover{
  background: var(--lightgreenheading);
  transform: translateY(-5px);
}


.sec-heading {
  margin-bottom: 40px;
}
.sec-heading h4 {
  color: var(--green);
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 20px;
}
.sec-heading h2 {
  color: var(--dark);
  font-size: 32px;
}
.btn-custom {
  padding: 10px 10px 10px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 60px;
}
.btn-custom .icon-arrow {
  background: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}
.btn-custom:hover {
  background: var(--lightgreenheading);
  color: var(--black);
}
.btn-custom:hover .icon-arrow {
  transform: translateX(-10px);
  background: var(--black);
}
.btn-custom:hover .icon-arrow svg {
  transform: rotate(-180deg);
}
.btn-custom:hover .icon-arrow svg path {
  fill: var(--white);
}

header {
  padding: 15px 0;
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
header .header-logo {
  max-width: 180px;
}
header .header-right ul > li .btn-secondary {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--light-grey);
}
header .header-right ul > li .btn-secondary:hover {
  background: var(--lightgreenheading);
}
header .header-right ul > li .btn-secondary:after {
  display: none;
}
header .header-right ul > li .btn-primary {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--green);
}
header .header-right ul > li .btn-primary:hover {
  background: var(--dark-green);
}
header .header-right ul > li .btn-primary:after {
  display: none;
}

.menu-ul > li {
  position: relative;
}
.menu-ul > li > a {
  text-decoration: none;
  color: var(--black);
  display: block;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
}
.menu-ul > li > a:hover, .menu-ul > li:hover .menu-ul > li > a, .menu-ul > li.active .menu-ul > li > a {
  color: var(--green);
}
.menu-ul > li.li-has-menu > a {
  padding-right: 30px;
}
.menu-ul > li + li {
  margin-left: 0px;
  border-left: 1px solid rgba(247, 247, 247, 0.31);
}

.li-has-menu {
  position: relative;
}
.li-has-menu > small {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  font-weight: bold;
  z-index: 1;
  font-size: 13px;
  cursor: pointer;
}

.sub-menu {
  min-width: 250px;
  display: none;
  list-style: none;
  background: var(--white);
  padding: 10px;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  transition: none;
}

.sub-menu {
    min-width: 250px;
    display: none;
    list-style: none;
    background: var(--white);
    padding: 10px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    transition: none;
    max-height: 305px;
    overflow-y: auto;
}
.sub-menu > li {
  padding: 5px;
}
.sub-menu > li > a {
  text-decoration: none;
  color: var(--black);
  display: block;
  padding:0px 5px;
  font-size: 14px;
}
.sub-menu > li > a:hover {
  color: var(--green);
}
.sub-menu > li + li {
  border-top: 1px solid var(--light-grey);
}

#toogle-btn {
  display: none;
  position: relative;
}


.banner-hero {
  color: var(--white);
  padding: 200px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius:0px;
  overflow: hidden;
  background-attachment: fixed;
  min-height: 500px;
}

.HomeBannerSlider .slider-image{position: relative;}
.HomeBannerSlider .slider-image:after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.banner-hero .banner-hero-content {
  z-index: 1;
  padding-left: 50px;
}
.banner-hero .banner-hero-content h1 {
  font-size: 44px;
  margin-bottom: 15px; line-height: normal;
}
.banner-hero .banner-hero-content p {
  font-size: 25px;
  margin-bottom: 30px;
  color: var(--white);
}
.banner-hero .banner-hero-content .btn-custom {
  background: var(--white);
  color: var(--black);
  font-weight: bold;
}
.banner-hero .banner-hero-content .btn-custom .icon-arrow {
  background: var(--green);
  width: 38px;
  height: 38px;
  margin-left: 15px;
}
.banner-hero .banner-hero-content .btn-custom:hover {
  background: var(--lightgreenheading);
  color: var(--black);
}
.banner-hero .banner-hero-content .btn-custom:hover .icon-arrow {
  background: var(--black);
}
.banner-hero .banner-hero-content .btn-custom:hover .icon-arrow svg path {
  fill: var(--white);
}
.banner-hero.banner-hero-inr-page {
  min-height: 400px;
  padding: 100px 0;
  display: flex;
    align-items: center;
}
.banner-hero.banner-hero-inr-page.short-header {
  min-height: 180px;
  padding: 0px;
  padding-top: 30px;
}

.banner-hero.banner-hero-inr-page h1 {
    margin: 0;font-size:38px; margin-bottom: 10px;
}
.banner-hero.banner-hero-inr-page p{font-size: 18px; margin: 0px} 



/*02-07*/


.HomeBannerSlider .swiper {
    padding: 0;
}
.HomeBannerSlider .banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}
.HomeBannerSlider .slider-image {
    max-height: 500px;height: 100%;
}
.HomeBannerSlider .slider-image img {
    max-width: 100%;
    transform: translateY(-14%);
}

.HomeBannerSlider .fixed-icons {
    top: 70%;
}

.HomeBannerSlider .swiper-banner-next,
.HomeBannerSlider .swiper-banner-prev {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 12px;
    background: var(--green);
    color: var(--white);
}
.HomeBannerSlider .swiper-banner-next:hover,
.HomeBannerSlider .swiper-banner-prev:hover {
    background: var(--white);color: var(--green);
}

.HomeBannerSlider .swiper-button-next:after, 
.HomeBannerSlider .swiper-button-prev:after {
    font-size: 28px;
}
.homeslider-prenxtbtn {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50%;
    z-index: 999;
}


.Featured-Products-Slider .swiper-featured-next,
.Featured-Products-Slider .swiper-featured-prev {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  padding: 10px;
}
.Featured-Products-Slider .swiper-featured-next svg path,
.Featured-Products-Slider .swiper-featured-prev svg path {
  fill: var(--white);
}
.Featured-Products-Slider .swiper-featured-next:after,
.Featured-Products-Slider .swiper-featured-prev:after {
  display: none;
}
.Featured-Products-Slider .swiper-featured-next {
  right: -72px;
}
.Featured-Products-Slider .swiper-featured-prev {
  left: -72px;
}
.Featured-Products-Slider .swiper-button-disabled {
  background: white;
}
.Featured-Products-Slider .swiper-button-disabled svg path {
  fill: #023347;
}
.card-product {
  border: none;
  padding-bottom: 70px;
}
.card-product .card-product-img {
  width: 169px;
  height: 169px;
  border: 2px solid var(--white);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 120px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.card-product .card-product-img img {
  height: 100%;
  object-fit: cover;
}
.card-product .card-product-detail {
  max-width: 240px;
  margin: 0 auto 15px;
}
.card-product .card-product-detail h5 {
  color: var(--green);
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 45px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
    line-height: 24px;
}

.card-product .card-product-detail p {
     max-height: 85px;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}


.card-product .btn-custom {
  max-width: 160px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.card-product:hover .card-product-img {
  border: 2px solid var(--lightgreenheading);
}
.card-product:hover .card-product-img img {
  transform: scale(1.1);
}

.Sec-why-choose-us {
  background: var(--light-grey);
}
.Sec-why-choose-us h2 {
    margin: 10px 0px;
}
.Sec-why-choose-us .img-box {
  border-radius: 20px;
  overflow: hidden;
}
.Sec-why-choose-us .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Sec-why-choose-us .card-WCU-box .card-WCU-box-img {
  width: 90px;
  height: 90px;
  background: var(--green);
}

.Sec-why-choose-us ul li {
    position: relative;
    padding-left: 30px;
    line-height: normal;
    margin-bottom: 10px;
}

.Sec-why-choose-us p {
    margin: 0;
}
.Sec-why-choose-us ul li span {
    position: absolute;
    left: 0;
    top: 3px;
}


/*.Sec-best-sellers .Best-Seller-Slider {
  margin: 0 -30px;
}
.Sec-best-sellers .Best-Seller-Slider .swiper-best-seller {
  padding: 30px;
}*/
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-next,
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-prev {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  border-radius: 50%;
  background: var(--green);
  padding: 12px;
}
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-next svg path,
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-prev svg path {
  fill: var(--white);
}
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-next:after,
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-prev:after {
  display: none;
}
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-next {
  right: 0;
}
.Sec-best-sellers .Best-Seller-Slider .swiper-bestseller-prev {
  right: 62px;
  left: auto;
}
.Sec-best-sellers .Best-Seller-Slider .swiper-button-disabled {
  opacity: 1;
  background: transparent;
}
.Sec-best-sellers .Best-Seller-Slider .swiper-button-disabled svg path {
  fill: #023347;
}

.card-main-product {
  position: relative;
}
.card-main-product:hover .card-product-img img {
  transform: scale(1.1);
}
.card-main-product .card-product-img {
  height: 300px;
  background: var(--white);
  box-shadow: 0px 3px 24.8px 14px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 30px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  overflow: hidden;
}
.card-main-product .card-product-img a{
  width: 100%;
}
.card-main-product .card-product-img a img{
  min-width: 100%;
  object-fit: cover; 
}
.card-main-product .card-product-detail {
  position: relative;
  padding-bottom: 80px;
  min-height: 192px;
}
.card-main-product .card-product-detail h5 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0px;
    font-size: 18px;
}
.card-main-product .card-product-detail p {
  font-size: 14px;
  margin-bottom: 5px;
}
.card-main-product .card-product-detail p.price {
  font-size: 16px;
  color: var(--green);
}
.card-main-product .card-product-detail .btn-custom {
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-main-product .card-product-detail .rating ul {
  margin-right: 10px;
}
.card-main-product .card-product-detail .rating span {
  color: var(--dark-grey-text);
}
.card-main-product .fav-icon {
    right: 15px;
    top: 15px;
    cursor: pointer;
    background: #f1f1f1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.Sec-testimonials {
  background: var(--dark-green);
}


.Sec-testimonials .sec-heading h2,
.Sec-testimonials .sec-heading h4  {
  color: var(--white);
}
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-next,
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-prev {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  padding: 12px;
}
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-next svg path,
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-prev svg path {
  fill: #023347;
}
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-next:after,
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-prev:after {
  display: none;
}
.Sec-testimonials .Testimonials-Slider .swiper-testimonials-next {
  right: -72px;
}

.Sec-testimonials .Testimonials-Slider .swiper-testimonials-prev {
  left: -72px;
}
.Sec-testimonials .Testimonials-Slider .swiper-button-disabled {
  background: white;
}
.Sec-testimonials .Testimonials-Slider .swiper-button-disabled svg path {
  fill: #023347;
}
.Sec-testimonials .card-testimonials {
  padding: 15px;
  border: none;
  border-radius: 20px;
}
.Sec-testimonials .card-testimonials .card-testimonials-img {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  max-width: 220px;
}
.Sec-testimonials .card-testimonials .card-testimonials-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Sec-testimonials .card-testimonials .card-testimonials-details {
  flex: 1;
  padding: 25px;
  position: relative;
}
.Sec-testimonials .card-testimonials .card-testimonials-details .quote {
  z-index: 0;
  top: 20px;
}
.Sec-testimonials .card-testimonials .card-testimonials-details h5 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 10px;
}
.Sec-testimonials .card-testimonials .card-testimonials-details h5, .Sec-testimonials .card-testimonials .card-testimonials-details p {
  position: relative;
  z-index: 1;
}
.tips-advice-Slider .swiper-tipsadvice-next,
.tips-advice-Slider .swiper-tipsadvice-prev {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  border-radius: 50%;
  background: var(--green);
  padding: 12px;
}
.tips-advice-Slider .swiper-tipsadvice-next svg path,
.tips-advice-Slider .swiper-tipsadvice-prev svg path {
  fill: var(--white);
}
.tips-advice-Slider .swiper-tipsadvice-next:after,
.tips-advice-Slider .swiper-tipsadvice-prev:after {
  display: none;
}
.tips-advice-Slider .swiper-tipsadvice-next {
  right: 0;
}
.tips-advice-Slider .swiper-tipsadvice-prev {
  right: 62px;
  left: auto;
}
.tips-advice-Slider .swiper-button-disabled {
  opacity: 1;
  background: transparent;
}
.tips-advice-Slider .swiper-button-disabled svg path {
  fill: #023347;
}
.tips-advice-Slider .card {
  position: relative;
  padding-bottom: 60px;
}
.tips-advice-Slider .card:hover .img-box img {
  transform: scale(1.1);
}
.tips-advice-Slider .card .img-box {
  border-radius: 10px;
  overflow: hidden;
  height: 230px;
  margin-bottom: 15px;
}
.tips-advice-Slider .card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tips-advice-Slider .card .details-box h5 {
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 45px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.tips-advice-Slider .card .details-box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    min-height: 75px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.tips-advice-Slider .card .btn-custom {
  position: absolute;
  left: 0;
  bottom: 0;
}

.Sec-our-mission .card-our-mission {
  background: #F0FFE0;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}
.Sec-our-mission .card-our-mission .our-mission-icon {
  width: 80px;
  height: 80px;
  background: var(--green);
}
.Sec-subcribe-newsletter .card-subscribe {
  background: var(--white);
  padding: 50px;
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.Sec-subcribe-newsletter .card-subscribe .left-subscribe h2 {
  color: var(--green);
  margin-bottom: 5px;
}
.Sec-subcribe-newsletter .card-subscribe .left-subscribe p {
  color: var(--black);
  font-size: 20px;
}
.Sec-subcribe-newsletter .card-subscribe .right-subscribe .input-group {
  background: #EEEEEE;
  padding: 10px;
  border-radius: 60px;
}
.Sec-subcribe-newsletter .card-subscribe .right-subscribe .input-group .btn {
  border: none;
  background: var(--green);
  color: var(--white);
  min-width: 150px;
  border-radius: 60px !important;
  font-size: 18px;
  line-height: 1.5;
  height: 45px;
}
.Sec-subcribe-newsletter .card-subscribe .right-subscribe .input-group .form-control {
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}


.Sec-tips-advice .btn-custom {
    padding: 10px 20px 10px 20px;
}

.blog-post-grid .details-box h5 {
    margin-bottom: 15px;
    font-size: 18px;
}

footer {
  margin-top: -150px;
  color: var(--black);
}
footer p {
  color:#f1f1f1;
}
footer a, footer a svg path {
    color: #f1f1f1;
  fill: #f1f1f1;
}
footer a:hover {
  color: var(--black);
}
footer a:hover svg path{
  fill: var(--darker-green);
}
footer .footer-main-top {
  background: #425a37;
  padding: 150px 0 50px 0;
}
footer .footer-main-top .footer-main-row .footer-col-left {
  max-width: 400px;
}
footer .footer-main-top .footer-main-row .footer-col-center {
  max-width: 500px;
  margin: 0 auto;
  border-left: 1px solid #455631;
  border-right: 1px solid #455631;
}
.footer-copyright ul li {
    color: #f1f1f1;
}

footer .footer-main-top .footer-main-row .footer-col-right {
  max-width: 300px;
}


footer .footer-main-top .footer-main-row h6 {
  margin-bottom: 40px;color: #f1f1f1;
}
footer a span svg path {
  fill: #f1f1f1!important;
}
footer .footer-main-top .footer-main-row ul li + li {
  margin-top: 20px;
}
footer .footer-main-top .footer-main-row .follow-us li + li {
  margin-top: 0px;
  margin-left: 15px;
}
footer .footer-copyright {
  background: #64884d;
  padding: 20px 0;
}
footer .footer-copyright  p {
    color: #f1f1f1;
}

.pagination-custom .page-item .page-link {
  width: 36px;
  height: 36px;
  background: var(--lightgreenheading);
  color: var(--black);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-custom .page-item.active .page-link, .pagination-custom .page-item:hover .page-link {
  background: var(--green);
  color: var(--white);
}

.sec-detail-page .detail-slider-big img{
width: 100%;
box-shadow: 0px 3px 7.8px 5px rgba(0, 0, 0, 0.05);
  margin:10px auto ;
  max-width: calc(100% - 10px);
  display: block;
}
.DetailSwiper-wrap{
  width: calc(100% - 150px);
}
.detail-slider-thumb  img{
  box-shadow: 0px 3px 7.8px 5px rgba(0, 0, 0, 0.05);
  margin:10px 0 ;
  height: 130px;
  border-radius: 6px;
  width: 100%;
  object-fit: contain;
}
.more{
  background: var(--white);
  box-shadow: 0px 3px 7.8px 5px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  height: 130px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin:10px ;
}


.sec-detail-page .product-code {
  color: var(--dark-grey-text);
}

.sec-detail-page .product-name {
  color: var(--black);
  font-size: 30px;
}

.sec-detail-page  .rating.d-flex {
  color: var(--dark-grey-text);
}

.sec-detail-page  .price {
  color: var(--green);
}

.add-fav-sec.d-flex.gap-3.align-items-center {}


.quantity-selector {}

.sec-detail-page  .quantity-selector button {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.sec-detail-page .quantity-selector button#decrement {
    border: 1px solid #CDD6DC;
    background: #fff;
    border-radius: 40px 0 0 40px !important;
    border-right: 0;
}

.sec-detail-page .quantity-selector button#increment {
    background: #476823;
    border-radius:  0 40px 40px 0 !important;
    border-left: 0;
}

.sec-detail-page  .quantity-selector input {
    width: 80px;
    border: 1px solid #CDD6DC;
    border-radius: 0;
    padding: 10px;
    height: 44px;
}


.sec-detail-page  .add-fav-sec .fav-icon{
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(0, 0, 0, 0.25);
border-radius: 4px;
}


.detail-tabs-content-wrap .nav-tabs {
  border: 0;
}
.detail-tabs-content-wrap .nav-tabs .nav-item {
    flex: 1;
}

.detail-tabs-content-wrap .nav-tabs .nav-item .nav-link.active {
    background: #AE2220;
    color: var(--white);
}

.detail-tabs-content-wrap .nav-tabs .nav-item .nav-link {
    color: #0D1E27;
    border: none;
    border-radius: 3px 3px 0 0;
    box-shadow: none;
    outline: none;
    width: 100%;
}

.detail-tabs-content-wrap .tab-content {
    padding: 15px;
    border: 1px solid #D1D1D1;
    font-size: 14px;
    color: var(--black);
}
.detail-tabs-content-wrap .tab-content ul {
  list-style: disc;
  padding-left: 15px;
}

.delivery-notes {
  border: 1px solid #D1D1D1;
  padding: 20px;
  border-radius: 3px;
}

.delivery-notes ul {
  margin: 0 -10px;
}

.delivery-notes ul li {
  flex: 1;
  padding: 10px;
}

.delivery-notes ul li .icon {}

.delivery-notes ul li .detail {
  margin-left: 10px;
}

.delivery-notes ul li .detail p {
  margin: 0;
  color: #0D1E27;
  font-weight: bold;
}

.delivery-notes ul li .detail p.small {
  font-weight: normal;
  font-size: 12px;
}

.delivery-notes ul li:nth-child(2) {
  border-left: 1px solid #D1D1D1;
  border-right: 1px solid #D1D1D1;
}


.detail-slider-big .swiper-button-next,
.detail-slider-big .swiper-button-prev {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  padding: 12px;
}
.detail-slider-big .swiper-button-next svg path,
.detail-slider-big .swiper-button-prev svg path {
  fill: var(--white);
}
.detail-slider-big .swiper-button-next:after,
.detail-slider-big .swiper-button-prev:after {
  display: none;
}
.detail-slider-big .swiper-button-next {
  right: 15px;
}

.detail-slider-big .swiper-button-prev {
  left: 15px;
}
.detail-slider-big  .swiper-button-disabled {
  /* background: white; */
}
.detail-slider-big  .swiper-button-disabled svg path {
  fill: #023347;
}


/*  */

.Sec-best-sellers-v-2:before {
  content: "";
  background: #244005;
  height: 400px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.Sec-best-sellers-v-2 .sec-heading h2{
color: var(--white);
}

.Sec-best-sellers-v-2 .Best-Seller-Slider {
  margin: 0 -30px;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-best-seller {
  padding: 30px;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-next,
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-prev {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  border-radius: 50%;
  background: var(--white);
  padding: 12px;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-next svg path,
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-prev svg path {
  fill: var(--black);
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-next:after,
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-prev:after {
  display: none;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-next {
  right: 30px;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-rp-prev {
  right: 92px;
  left: auto;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-button-disabled {
  opacity: 1;
  background: #fff;
}
.Sec-best-sellers-v-2 .Best-Seller-Slider .swiper-button-disabled svg path {
  fill: #023347;
}

/*  */

.Sec-best-sellers-v-3 .Best-Seller-Slider {
  margin: 0 -30px;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-best-seller {
  padding: 30px;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-next,
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-prev {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -55px;
  border-radius: 50%;
  background: var(--green);
  padding: 12px;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-next svg path,
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-prev svg path {
  fill: var(--white);
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-next:after,
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-prev:after {
  display: none;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-next {
  right: 30px;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-acc-prev {
  right: 92px;
  left: auto;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-button-disabled {
  opacity: 1;
  background: transparent;
}
.Sec-best-sellers-v-3 .Best-Seller-Slider .swiper-button-disabled svg path {
  fill: #023347;
}

/* new css */

.InnerBox {
  display: flex;
  align-items: center;
  margin: auto;
  column-gap: 40px;
}

.image-section {
  flex: inherit;
    width: 100%;
    max-width: 484px;
    border-radius: 20px;
    overflow: hidden;
}



.text-section {
  flex: 2;
}

.text-section h5 {
  color: #5e7d45;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.text-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.text-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}
.text-section p:last-child {
  margin-bottom: 0;
}

.light-gray-bg{background: #F3F3F3;}
.contactSec .green-bg{background-image: url(../images/green-bg.png);background-position: center;background-repeat: no-repeat;background-size: cover; width: 100%;border-radius: 20px;overflow: hidden; min-height: 255px; padding: 50px;}

.contactSec .btn-white {
  background: #fff;
  color: var(--green);
  display: inline-flex;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}
.contactSec .sec-heading {  margin-bottom: 0px;  }
.contactSec .sec-heading h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
}
.contactSec .sec-heading h4{letter-spacing: 0.10px;font-weight: 500;}


/* contact us page */
.gree-card {
  display: flex;
  min-width:45px;
  height: 45px;
  background: #476823;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.mailPhone a {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: #525758;
}


.socialBox ul li a:hover{background: #000;}
.ourTeam form {
  background: #F3F3F3;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 5px 5px 4px 0px rgba(0,0,0,0.10);
}
.Sec-ptb.ourTeam .contactUs p {
    margin: 0;
}
.ourTeam .form-control {
  border-radius: 60px;
  padding: 15px 30px;
  box-shadow: none;
  font-size: 16px;
  color: #000;
  border: 2px solid var(--white);
}
.our-mission-details h5{margin-bottom: 10px}
.our-mission-details p {
    margin: 0px;
}
.ourTeam .form-control::placeholder {
  color: #717171; 
}

.ourTeam .form-control::-ms-input-placeholder {
  color: #717171;
}
.ourTeam textarea.form-control {
  border-radius: 20px;
  resize: none;
  border: 2px solid var(--white);
}

.form-control:focus,
textarea.form-control:focus {
  border: 2px solid var(--green);
}

.submit-btn{padding-right: 20px;}



.sec-single-post img{
  min-width: 100%;
  height: auto;
}









/*18-June-25*/

.product-meta-variations {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.product-price {
    font-weight: bold;
    color: #333;
}

.color-variations {
    display: flex;
    gap: 10px;
      margin-top:0px;
}

.color-circle {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.color-circle.active {
    box-shadow: 0 0 0 1px white, 0 0 0 2px #333;
}

/* Size Variations */
.size-variations {
    color: #666;
    font-size: 13px;
}

.size-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.size-link:hover {
    color: #333;
}

.default-size {
    font-weight: bold;
    color: #333;
}

.size-separator {
    margin: 0 4px;
    color: #ccc;
}

/* Color Definitions */
.color-circle.green { background-color: #476823; }
.color-circle.gray { background-color: #9E9E9E !important; }






  .sec-detail-page .detail-slider-big img{
    height:100%!important;
  }
  .DetailSwiperBig .swiper-slide {
  cursor: zoom-in;
}

/* Base Styles */
.product-variations {
    font-family: Arial, sans-serif;
    max-width: 500px;
}

.variation-group {
    margin-bottom: 20px;
}

.variation-group h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.option-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

}

/* Shared Button Styles */
.option-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 13px;
    cursor: pointer;
    background: white;
}

.option-button:hover {
    border-color: #999;
}

.option-button.active {
    background-color: #476823;
    color: white;
    border-color: #333;
}

/* Size Specific Styles */
.size-options .option-button {
    min-width: 80px;
    text-align: center;
    text-transform: uppercase;
}

/* Color Specific Styles */
.color-options .option-button {
    padding: 8px 12px;
    gap: 8px;
    min-width: 90px
}

.color-swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.color-label {
    font-size: 13px;
    text-transform: uppercase;
}

/* Active State for Color Buttons */
.color-option.active .color-swatch {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #333;
}

/* Color Definitions */
.color-option.green .color-swatch {
    background-color: #4CAF50;
}

.color-option.grey .color-swatch {
    background-color: #9E9E9E;
}

/* Add more colors as needed */
.color-option.black .color-swatch {
    background-color: #000000;
}

.color-option.blue .color-swatch {
    background-color: #2196F3;
}

.product-cat .card-main-product { box-shadow: 0px 1px 5px rgba(0,0,0,0.2);}
.product-cat .card-main-product .card-product-detail{min-height: 215px;}
.product-cat .card-main-product .card-product-detail h5{margin: 10px 0px;}
.product-cat .product-meta-variations{flex-direction: row;align-items: center;justify-content: space-between;margin-top: 15px;}
.allcategories .card-main-product .card-product-img{box-shadow:none;}
.allcategories .card-product {padding-bottom: 50px;padding: 5px 15px 55px 15px;margin-bottom: 35px !important;}
.allcategories .card-product h5{margin: 10px 0px;font-size: 18px;}
.allcategories .category-description { margin: 10px 0px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; min-height: auto; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.allcategories .card-product .btn-custom{padding: 7px 5px 7px 10px;max-width: 150px;}
.allcategories .btn-custom .icon-arrow {width: 23px; height: 23px; margin-left: 10px;}
.product-code, .product-code strong { font-size: 14px;}

.individualcatlist .card-product {
    min-height: 230px;
}











.color-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid transparent;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.color-circle.active {
    border: 2px solid #000;
    transform: scale(1.1);
}





.unstyled {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul.unstyled li {
    margin: 7px 0px;
}

.centered {
  width:100%;
  margin: auto;
}

.title {
  text-align: center;
  color: #4571ec;
}

  .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
      font-size: 14px;
      color: var(--dark-grey-text);
      padding-left: 25px;
}
.styled-checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 16px;
    height: 16px;
    border: 1px solid var(--green);
    border-radius:2px;
    position: absolute;
    left: 0px;
    top: 3px;
}
.styled-checkbox:hover + label:before {
  background: var(--green);
}

.styled-checkbox:checked + label:before {
  background: var(--green);
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/*slider bar*/
.slider-container {
      width:100%;
      margin: 15px auto;
    }

    .range-slider {
      position: relative;
      height: 3px;
      background: var(--green);
      margin-bottom: 20px;
      border-radius: 3px;
    }
    .range-slider input[type="range"] {
      position: absolute;
      width: 101%;
      height: 3px;
      background: none;
      pointer-events: none;
      appearance: none;
    }

    .range-slider input[type="range"]::-webkit-slider-thumb {
      pointer-events: all;
      width:12px;
      height: 12px;
      border-radius: 50%;
      background:var(--green);
      border: none;
      appearance: none;
    }

    .input-boxes {
          position: relative;
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

   .input-boxes input {
    width: 100%;
    padding: 8px;
    text-align: right;
    border: 1px solid #ccc;
    height: 38px;
    padding-left: 20px;
    font-size: 16px;
}
.input-boxes small {
    position: absolute;
    left: 5px;
    top: 7px;
    font-size: 16px;
}

    .input-boxes span {
      align-self: center;
    }
    .filterSec .accordion-body {
    padding: 0px 15px;
    }
    .filterSec .accordion {
    padding-right: 15px;
}
    .filterSec .accordion-item{border: none;}
    .filterSec .accordion-button {padding: 15px 0px;}
    .filterSec .accordion-button:focus{box-shadow: none;border-bottom: 0px solid #ccc;    padding: 15px 0px;}

   .filterSec .accordion-item:first-of-type>.accordion-header .accordion-button {
    background: none;
    box-shadow: none;
    border-bottom: 0px solid #ccc;
}
.filterSec .accordion-header {
    margin-bottom: 0;
    border-bottom: 0px solid #ccc;
}

.filterSec .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
    font-weight: var(--dark-grey-text);
    color: var(--dark-grey-text);
}
.filterSec .accordion-button::after {
    background-size: cover;
    width: 15px;
    height: 15px;
}

.filterSec .filter-head {
    font-size: 24px;
    line-height: normal;
    display: flex;
    align-items: center;
    background: no-repeat;
    border: none;
    color: var(--dark-grey-text);
    font-weight: 600;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #dbdbdb;
    border-radius: 0px;
    padding-bottom: 7px;
}

.filterSec button svg {
    width: 20px;
    margin-right:2px;
}

.price-list-top{ margin-bottom:30px;}
.price-list-in{display:flex;align-items:center;margin-bottom:10px;}
.price-list-in span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--dark-grey-text);
    border-radius: 2px;
    margin-right: 10px;
}

.price-list-in small {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-grey-text);
}
.clear-btn button {
    min-width: 100%;
    padding: 7px 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-weight: 700;
    font-size: 16px;
    color: #444;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    margin: 0 auto;
    display: block;
}
.filter-icon {
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 5px;
}


 .btn-check:checked+.btn,
 .btn.active, .btn.show,
 .btn:first-child:active,
 :not(.btn-check)+.btn:active {
    background: none;
      color: var(--dark-grey-text);
}
.filter-mobile {
  padding: 15px 0px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/*partner logo*/
.payment-icons {display: inline-block;}
.payment-icons .payment-icon {
    background-color: rgba(0,0,0,.1);
    border-radius: 3px;
    display: inline-block;
    margin: 0px 3px;
    opacity: .6;
    padding: 3px 5px 5px;
    transition: opacity .3s;
}
.payment-icons .payment-icon:first-child{margin-left: 0px;}
.payment-icons .payment-icon:hover {
    opacity: 1;
}
.dark .payment-icons .payment-icon {
    background-color: hsla(0,0%,100%,.3);
}

.payment-icons .payment-icon svg {
    height: 20px;
    vertical-align: middle;
    width: auto!important;
}
.dark .payment-icons .payment-icon svg {
    --fill: #fff;
    /*fill: var(--fill);*/
}

/*new product banner*/
.privacy-policy-sec .registration {
    padding-bottom: 30px !important;
}
.product-banner {
  margin-top: 30px;
    background: #fff;
}
.categories-banner-in {
    border:1px solid #dbdbdb;
    border-radius: 5px;
    padding: 0px;
    overflow: hidden;
}
.prosuct-head h1 {
    margin-bottom: 15px;
    font-size: 32px;
}
.product-img {
  flex: 0 0 auto;
  width: 400px;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  margin: 0 auto;
}

  .prosuct-head {
    max-width: calc(100% - 400px);
    width: 100%;
    padding: 50px;
}

.product-img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}


/*Wholesale Enquiry*/


.WholesaleEnquiry {
    background: #F3F3F3;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 3px 5px 4px 0px rgba(0, 0, 0, 0.10);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.WholesaleEnquiry .form-control {
    border-radius: 15px;
    padding: 12px 20px;
    box-shadow: none;
    font-size: 14px;
    color: #000;
    border: 2px solid var(--white);
}
.WholesaleEnquiry textarea.form-control {
    border-radius: 15px;
    resize: none;
    border: 2px solid var(--white);
}

.WholesaleEnquiry .form-check-label {
    font-size: 14px;
}
.WholesaleEnquiry .form-check p span {
    margin: 0;
}
.WholesaleEnquiry .form-check {
    padding: 0;
}
.WholesaleEnquiry  .submit-btn {
    padding-right: 20px;
    min-width: 110px;
    margin-top: 15px;
    font-size: 16px;
}

.WholesaleEnquiry p{font-size: 14px;}