* {
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: none;
  font-family: "Archivo", sans-serif;
}

body, html{
  overflow-x: hidden;
}
:root {
  --ayur-primary-color:#275c2f;
  --ayur-white-color: #ffffff;
  --ayur-primary-light:#D6CDCA;
  --ayur-banheading-color: #222222;
  --ayur-heading-color: #000;
  --ayur-para-color: #797979;
  --ayur-text-color: #ABABAB;
  --ayur-testpara-bgcolor:#FCF9F8;
  --ayur-border-color:#FFEBE4;
  --ayur-borderbox-color:#F0F0F0;
  --ayur-checkbox-label-color:#e0e7ef;
  --ayur-formtext-color:#DBD1D9;
  --ayur-footer-bg: #220F08;
  --ayur-footertext-color:#E4D4CF;
  --ayur-primary-lightcolor:#F6F1ED;
} 

body {
  font-family: "Archivo", sans-serif;
  transition: all 0.3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  line-height: 1.5;
  background-color: #FDFFFF;
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
}

h3 {
  font-size: 18px;
  font-weight: 500;
}

ul,
p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
}

span {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  font-family: "Archivo", sans-serif; 
  color: var(--ayur-banheading-color);
}
a:hover{
  color: var(--ayur-primary-color);
}
.form-control:focus {
  box-shadow: none;
}

input:focus-visible {
  outline: none;
}
.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

img, video {
  max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :focus, .form-control:focus{
  outline: none !important;
  box-shadow:none;
  border: none;
}
input, select{
  /*height: 45px !important;*/
  background-color: var(--ayur-white-color);
  border-radius: 10px;
  border: none;
  color: var(--ayur-formtext-color);
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
textarea{
  width: 100%;
  min-height: 200px;
  resize: none;
  background-color: var(--ayur-white-color);
  border-radius: 10px;
  border: none;
  color: var(--ayur-formtext-color);
  padding: 15px 20px;
}
/* Select 2 Custom CSS*/
.select2-container--default .select2-selection--single {
  background-color: #19875412;
  border-radius: 10px !important;
  height: 45px !important;
  border: 1px solid #26592e61;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ayur-para-color) !important;
  line-height: 45px !important;
  font-size: 14px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 20px !important;
  padding-right: 30px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
  top: 19px;
  right: 15px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--ayur-primary-color); 
}
/* Select 2 Custom CSS*/
:focus-visible {
  outline: none;
  border-color: transparent;
}
.page-link:focus{
  box-shadow: none;
}

/* Scroll */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #dddddd;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 100px;
  background-color: var(--ayur-primary-color);
}

/* Scroll */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px
  }
}
/* button css */
.ayur-btn , button.ayur-btn, input.ayur-btn {
  min-width: 145px;
  max-width: 100%;
  border-radius: 22px;
  background-color: var(--ayur-primary-color);
  min-height: 45px;
  border: 1px solid #f2efec;
  font-size: 16px;
  color: var(--ayur-white-color);
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  display: inline-block;
  padding: 9px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.5s;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  transition: all .3s linear;
}
.ayur-btn::after{
  position: absolute;
  content:'';
  display: block;
  top: 50%;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 0%;
  border-radius: 15px;
  background-color: var(--ayur-banheading-color);
  z-index: -1;
  transition: all .6s ease;
  transform: translate(-50%, -50%) rotate(-45deg);
} 
.ayur-btn:hover:after{
  height: 380%;
}
.ayur-btn:hover{
  color: var(--ayur-white-color);
}
.ayur-bgcover{
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0 80px;
}
p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ayur-para-color);
  font-family: "Inter", sans-serif;
}
/*-------------- Header section css start ----------*/
/* loader-css */
.ayur-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ayur-white-color);
}
.ayur-loader img {
  width: 110px;
}
/* loader css end */
/* navmenu css start */
.ayur-menu-wrapper{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0px;
  box-shadow: none;
  background-color: var(--ayur-white-color);
  padding: 13px 18px 13px;
  margin: auto;
  max-width: 1170px;
  z-index: 9;
  box-shadow: 2px 4px 22px 0px #0000000A;
  border-radius: 0 0 30px 30px;
}
.ayur-navmenu-wrapper{
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ayur-nav-menu ul li{
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
.ayur-nav-menu ul li a{
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--ayur-banheading-color);
}
.ayur-nav-menu ul li a::before, .ayur-nav-menu ul li.active a:before{
  position: absolute;
  content: '';
  left: 0;
  top: 12px;
  width: 20px;
  height: 1px;
  background-color: var(--ayur-primary-color);
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}
ul.ayur-submenu{
  width: 170px;
  background-color: var(--ayur-white-color);
  box-shadow: 2px 4px 22px 0px #0000000A;
  border-radius: 10px;
  padding: 15px 0px 15px 10px;
  position: absolute;
  top: 180%;
  left: 0;
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9;
}
ul.ayur-submenu li {
  padding: 0 0px 0 26px;
  margin: 0 0 6px;
  display: block;
}
.ayur-has-menu ul.ayur-submenu.ayur-submenu-open, .ayur-nav-menu ul li.ayur-has-menu:hover ul.ayur-submenu{
  opacity: 1;
  visibility: visible;
  transform: translateX(-10px);
}
li.ayur-has-menu a {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
li.ayur-has-menu a svg{
  width: 10px;
  height: auto;
  fill: var(--ayur-banheading-color);
  transition: all 0.3s;
}
.ayur-nav-menu ul li a:hover svg{
  fill: var(--ayur-primary-color);
  transform: rotate(180deg);
}
.ayur-nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ayur-nav-icons a:hover svg path{
  fill:var(--ayur-primary-color)
}
.ayur-nav-menu ul li a:hover, .ayur-nav-menu ul li.active a{
  color: var(--ayur-primary-color);
}
.ayur-nav-menu ul li a:hover::before, .ayur-nav-menu ul li.active a:before{
  opacity: 1;
  visibility: visible;
}
.ayur-nav-product{
  position: relative;
}
.ayur-nav-provalue {
  position: absolute;
  top: -3px;
  right: -10px;
  height: 17px;
  width: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ayur-primary-color);
  color: var(--ayur-white-color);
  font-size: 10px;
  font-weight: 400;
  border-radius: 50%;
  line-height: 12px;
}
.wishlist-count {
  position: absolute;
  top: -3px;
  right: -10px;
  height: 17px;
  width: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ayur-primary-color);
  color: var(--ayur-white-color);
  font-size: 10px;
  font-weight: 400;
  border-radius: 50%;
  line-height: 12px;
}
.tooltip{
  position: relative;
  display: inline-block;
  opacity: 1;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 70px;
  background-color: black;
  color: var(--ayur-white-color);
  text-align: center;
  border-radius: 6px;
  padding: 3px 0;
  position: absolute;
  z-index: 1;
  top: 136%;
  left: 164%;
  margin-left: -60px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  transition: all .3s ease-in-out;
}
.tooltip .tooltiptext::after{
  position: absolute;
  content: '';
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color:  transparent transparent black transparent;
  transition: all .3s ease-in-out;
}
.ayur-nav-user .tooltip .tooltiptext:after {
  left: 60%;
}
.tooltip:hover .tooltiptext{
  visibility: visible;
}
.ayur-toggle-btn {
  display: none;
}
.ayur-toggle-btn span{
  display: block;
  height: 3px;
  width: 25px;
  margin-bottom: 4px;
  background: var(--ayur-primary-color);
  transition: all .3s ease-in-out;
  border-radius: 2px;
  margin-left: auto;
}
.ayur-toggle-btn span:nth-child(2){
  width: 17px;
}
.ayur-toggle-btn span:last-child{
  margin-bottom: 0;
}
/* navmenu css End */
/* Banner css Start */
.ayur-banner-section {
  position: relative;
  width: 100%;
  background-image: url('../images/banner-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 116px 0 103px;
  margin-bottom: 207px;
}
.ayur-banner-section::before{
  position: absolute;
  content: url('../images/banner-bgleaf.png');
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 52px;
  right: 0;
  margin: auto;
  z-index: 0;
  width: fit-content;
  max-width: 100%;
  animation: floating 10s infinite alternate;
}
@keyframes floating {
  from {
    transform: rotate(0deg) translate(-12px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(-12px) rotate(-360deg);
  }
}
.ayur-banner-slider-sec {
  padding: 7px 0 0;
  margin: 0 auto -230px;
  max-width: 1030px;
}
.ayur-banner-heading {
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ayur-banner-heading h1, .ayur-banner-heading h1 span{
  font-size: 54px;
  font-weight: 700;
  line-height: 59px;
  color: var(--ayur-banheading-color);
}
.ayur-banner-heading h1 span{
  color: var(--ayur-primary-color);
}
.ayur-banner-heading p {
  color: var(--ayur-para-color);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 19px 0 30px;
}
.ayur-banner-slider{
  position: relative;
  padding: 20px 0 20px;
}
.ayur-banner-slider::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1030px;
  height: 250px;
  max-height: 100%;
  background-color: var(--ayur-primary-color);
  z-index: -1;
  border-radius: 210px;
}
.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}
.ayur-banner-slider > .swiper-button-prev {
  left: 1%;
}
.ayur-banner-slider > .swiper-button-next {
  right: 1%;
}
.ayur-banner-slider > .swiper-button-prev, .ayur-banner-slider .swiper-button-next{
  width: 46px;
  height: 22px;
  object-fit: cover;
  top: 67.1%;
  background-color: transparent;
}
.ayur-banner-slider > .swiper-button-prev svg, .ayur-banner-slider > .swiper-button-next svg{
  fill: var(--ayur-white-color);
}
/* banner slider css */
.ayur-banner-slider .ayur-ban-slide > .swiper-slide img {
  display: block;
  width: 100%;
}
.ayur-banner-slider .swiper-slide.swiper-slide-visible.swiper-slide-prev .ayur-ban-slide, .ayur-banner-slider .swiper-slide .ayur-ban-slide {
  transform: scale(0.5);
}
.ayur-banner-slider .swiper-slide.swiper-slide-visible.swiper-slide-next .ayur-ban-slide {
  transform: scale(0.6);
}
.ayur-banner-slider .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active{
  overflow: inherit;
  top: 0;
}
.ayur-banner-slider .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active .ayur-ban-slide{
  transform: scale(1.1);
}
.ayur-banner-slider .swiper-slide{
  top: 40px;
}
.swiper-slide.swiper-slide-visible.swiper-slide-prev {
  left: -72px;
}
.swiper-slide.swiper-slide-visible.swiper-slide-next{
  right: -30px;
}
.ayur-ban-slide img {
  object-fit: cover;
}
.ayur-ban-leaf img{
  position: absolute;
}
.ayur-ban-leaf img:nth-child(1){
  top: 0;
  left: 0;
  animation: jumpThree 10s infinite linear;
}
.ayur-ban-leaf img:nth-child(2){
  right: 0;
  bottom: 0;
}
@keyframes jumpThree {
  0%   {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
  40%  {-webkit-transform: translate3d(0,-20px,0);transform: translate3d(0,-20px,0);}
  100% {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
}
.ayur-care-slider-sec {
  max-width: 1780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ayur-careslide-box{
  position: relative;
  transition: all 0.8s ease;
}
.ayur-careslider-img img{
  border-radius: 70px;
}
.ayur-careslider-img::before{
  position: absolute;
  content: '';
  height: 180px;
  width: 140px;
  box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.3);
  transition: all 0.8s ease;
  border-radius: 70px;
} 
.ayur-careslide-box:hover .ayur-careslider-img::before{
  box-shadow: inset 10px 10px 0px 171px rgba(0,0,0,0.3);
  transition: all 0.8s ease;
}
.ayur-careslide-box h3{
  font-size: 16px;
  font-weight: 400;
  color: var(--ayur-banheading-color);
  padding: 13px 0;
}
.ayur-careslide-box:hover h3{
  color: var(--ayur-primary-color);
}
.ayur-care-slider-sec > .swiper-button-prev, .ayur-care-slider-sec > .swiper-button-next{
  width: 40px;
  height: 40px;
  object-fit: cover;
  top: 35%;
}
.ayur-care-slider-sec > .swiper-button-prev svg path, .ayur-care-slider-sec > .swiper-button-next svg path{
  fill: var(--ayur-primary-light);
  transition: all .3s ease-in-out;
}
.ayur-care-slider-sec > .swiper-button-prev:hover svg path, .ayur-care-slider-sec > .swiper-button-next:hover svg path{
  fill: var(--ayur-primary-color);
}
.ayur-care-slider-sec > .swiper-button-prev {
  left: -32px;
}
.ayur-care-slider-sec > .swiper-button-next{
  right: -32px;
}
/* Banner css End */
/* Top-product section css start */
.ayur-topproduct-sec {
  padding: 84px 0 80px;
}
.ayur-heading-wrap{
  text-align: center;
  margin: 0 0 44px;
}
.ayur-heading-wrap h5{
  font-size: 18px;
  font-weight: 400;
  color: var(--ayur-primary-color);
  padding: 0 0 3px;
}
.ayur-heading-wrap h3{
  font-size: 32px;
  font-weight: 700;
  color: var(--ayur-heading-color);
}
.ayur-tpro-box{
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  padding: 5px;
  border-radius: 10px;
  margin: 0 0 30px;
  transition: all .3s ease-in-out;
   height: 630px;
}
.ayur-tpro-text{
  padding: 11px 10px 8px;
}
.ayur-tpro-text h3, .ayur-tpro-text h3 a{
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
  transition: all .3s linear;
}
.ayur-tpro-text h3 a:hover, .ayur-blog-text h3 a:hover{
  color: var(--ayur-primary-color);
}
.ayur-tpro-price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 16px;
}
.ayur-tpro-star{
  display: flex;
  align-items: center;
  gap: 5px;
}
.ayur-tpro-price > p{
  font-size: 20px;
  font-weight: 700;
  color: var(--ayur-banheading-color);
}
.ayur-tpro-price > p del{ 
  color: var(--ayur-text-color);
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-right: 10px;
}
.ayur-tpro-star > p{
  font-size: 16px;
  font-weight: 400;
  color: var(--ayur-para-color);
}
.ayur-tpro-btn .ayur-btn {
  min-width: -webkit-fill-available;
  background-color: transparent;
  border: 1px solid var(--ayur-para-color);
  color: var(--ayur-para-color);
  transition: all .3s ease-in-out;
}
.ayur-tpro-btn .ayur-btn svg path{
  fill: var(--ayur-para-color);
  transition: all .3s linear;
}
.ayur-tpro-btn .ayur-btn:hover {
  color: var(--ayur-white-color);
  border-color: var(--ayur-primary-color);
}
.ayur-tpro-btn .ayur-btn:hover svg path{
  fill: var(--ayur-white-color);
}
.ayur-tpro-btn .ayur-btn::after{
  background-color: var(--ayur-primary-color);
}
.ayur-tpro-btn .ayur-btn:hover:after{
  height: 580%;
}
.ayur-tpro-img{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.ayur-tpro-sale{
  position: absolute;
  top: 15px;
  left: 15px;
  right: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ayur-tpro-sale p{
  font-size: 14px;
  font-weight: 500;
  color: var(--ayur-white-color);
  min-width: 83px;
  max-width: 100%;
  padding: 6px 0;
  background-color: #FFAE34;
  border-radius: 5px;
  text-align: center;
}
.ayur-tpro-sale-off p{
  background-color: #21C0F2;
}
.ayur-tpro-sale-trend p{
  background-color: #00BF13;
}
.ayur-tpro-sale-star{
  justify-content: flex-end;
}
.ayur-tpro-viewbtn{
  margin: 10px auto 0;
  text-align: center;
}
.ayur-tpro-box .ayur-tpro-img > img{
  transition: all .3s linear;
  width: 100%;
  object-fit: cover;
}
.ayur-tpro-box:hover .ayur-tpro-img > img{
  transform: scale(1.1);
}
.ayur-tpro-like svg path{
  fill: var(--ayur-para-color);
}
.ayur-tpro-like a img.like {
  position: absolute;
  right: 1px;
  top: 5px;
  opacity: 0;
}
a.likeproduct img.unlike{
  opacity: 0;
}
a.likeproduct img.like{
  opacity: 1;
}
.ayur-trepro-box .ayur-tpro-sale{
  top: 10px;
  left: 10px;
  right: 10px;
}
.ayur-bgshape img{
  position: absolute;
  z-index: -1;
}
.ayur-tpro-bgshape img:nth-child(1){
  right: 0;
  top: -12px;
}
.ayur-tpro-bgshape img:nth-child(2){
  left: 0;
  top: 12.6%;
  animation: jumpThree 5s infinite linear;
}
/* Top-product section css End */
/* About section css Start */
.ayur-about-sec {
  padding: 13px 0 81px;
}
.ayur-about-head{
  text-align: left;
}
.ayur-about-head p{
  /*padding: 14px 0 30px;*/
}
.ayur-about-img{
  position: relative;
}
.ayur-about-exp {
  position: absolute;
  bottom: 26px;
  left: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ayur-about-exp p:nth-child(1){
  font-size: 50px;
  font-weight: 700;
  color: var(--ayur-primary-color);
}
.ayur-about-exp p{
  font-size: 24px;
  font-weight: 600;
  color: var(--ayur-heading-color);
  font-family: "Archivo", sans-serif;
}
.ayur-about-bgshape img:nth-child(1){
  left: 0;
  top: -90%;
}
.ayur-about-bgshape img:nth-child(2){
  right: 0;
  top: -20px;
  animation: jumpThree 5s infinite linear;
}
/* About section css End */
/* Achieveent section css Start */
.ayur-achievement-sec{
  background-image: url('../images/achievement-bg.png');
  padding: 80px 0 80px;
  max-width: 1820px;
  margin: 0 auto;
}
.ayur-heading-left{
  text-align: left;
  margin: 0;
}
.ayur-achieve-box-wrapper {
  display: grid;
  align-items: center;
  gap: 30px;
  width: 100%;
  grid-template-columns: auto auto;
  flex-wrap: wrap;
}
.ayur-achieve-box{
  max-width: 370px;
  border-radius: 5px;
  background-color: var(--ayur-white-color);
  border: 1px solid #106e3633;
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 24px;
}
.ayur-achieve-icon{
  width: 75px;
  height: 75px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #19875414;
  box-shadow: 4px 4px 10.5px 0px #275c2f4D;
  transition: all .3s linear;
}
.ayur-achieve-text{
  position: relative;
  border-left: 1px solid var(--ayur-borderbox-color);
  padding-left: 29px;
}
.ayur-achieve-box:hover .ayur-achieve-icon{
  transform: rotateY(360deg);
}
.ayur-achieve-text h2{
  font-size: 30px;
  font-weight: 800;
  color: var(--ayur-banheading-color);
}
.ayur-counting::after{
  content: '+';
}
.ayur-counting.percent::after{
  content: '%';
}
/* Achieveent section css End */
/* Trending-product & why  section css Start */
.ayur-trenproduct-sec {
  padding: 100px 0 70px;
}
.ayur-trenproduct-head {
  margin: 0 0 60px;
}
.ayur-why-head{
  margin: 0 0 22px;
}
.ayur-trenpro-bgshape img:nth-child(1){
  top: 25%;
  left: 0;
}
.ayur-trenpro-bgshape img:nth-child(2){
  top: 0;
  right: 3%;
  animation: jumpfour 5s infinite linear;
}
@keyframes jumpfour {
  0%   {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
  40%  {-webkit-transform: translate3d(-20px,0,0);transform: translate3d(-20px,0px,0);}
  100% {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
}
.ayur-why-sec{
  padding: 0px 0 100px;
}
.ayur-why-textheading h3{
  font-size: 24px;
  font-weight: 700;
}
.ayur-why-textheading > p{
  padding: 15px 0 19px;
}
.ayur-why-textheading ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ayur-why-textheading ul li{
  display: flex;
  align-items: center;
  padding: 10px 0 10px;
  gap: 5px;
}
.ayur-why-btn{
  padding: 10px 0 0;
}
.ayur-why-secbox{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.ayur-why-box{
  max-width: 265px;
  padding: 30px 15px;
  background-color: var(--ayur-white-color);
  border: 1px solid #1987545e;
  text-align: center;
  border-radius: 10px;
  transition: all .3s ease-in-out;
}
.ayur-why-box:hover{
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  transform: translateY(-5px);
}
.ayur-why-boxicon{
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #19875414;
  box-shadow: 4px 4px 10.5px 0px #275c2f4D;
  text-align: center;
  margin: 0 auto 10px;
  transition: all .3s linear;
}
.ayur-why-boxtext h4{
  font-size: 18px;
  font-weight: 600;
  color: var(--ayur-banheading-color);
}
.ayur-why-box:hover .ayur-why-boxicon{
  transform: rotateY(360deg);
}
.ayur-video-section{
  padding: 50px 0 0;
  border-radius: 10px;
}
.ayur-video-img{
  position: relative;
}
.ayur-video-playicon{
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--ayur-primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-shadow 3s calc(2 * 3s / 3) linear infinite;
}
.ayur-video-playicon::before, .ayur-video-playicon:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--ayur-primary-color);
  border-radius: 100%;
}
.ayur-video-playicon::before{
  animation: pulse 3s calc(3s / 3) linear infinite
}
.ayur-video-playicon:after{
  animation: pulse 3s linear infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--ayur-primary-color), 0.4)
  }
  100% {
    box-shadow: 0 0 0 calc((3 - 1) * var(--size) / 2) rgba(var(--ayur-primary-color), 0)
  }
}
.ayur-video-playicon img{
  position: relative;
  z-index: 1;
}
.ayur-popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition: all .3s linear;
}
.ayur-popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;  
}
.close {
  position: absolute;
  top: -3px;
  right: -6px;
  font-size: 24px;
  color: var(--ayur-heading-color);
  background-color: var(--ayur-white-color);
  cursor: pointer;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.ayur-popup-content iframe {
  max-width: 650px;
  width: 100%;
  max-height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.ayur-why-bgshape img:nth-child(1){
  right: 0;
  bottom: 2%;
}
.ayur-why-bgshape img:nth-child(2){
  left: 0;
  bottom: 26%;
  animation: jumpThree 5s infinite linear;
}
/* Trending-product & why section css End */
/* Testimonial section css Start */
.ayur-testimonial-sec{
  background-image: url('../images/test-bg.png');
  max-width: 1820px;
  margin: 0 auto;
  padding: 30px 0 30px;
}
.ayur-test-head{
  margin: 0 0 24px;
}
.swiper.ayur-testimonial-slider {
  padding: 20px 0;
}
.ayur-test-box{
  max-width: 570px;
  padding: 5px;
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  background-color: var(--ayur-white-color);
  border-radius: 10px;
  transition: all .3s linear;
}
.ayur-test-text{
  max-width: 560px;
  padding: 20px 24px;
  border-radius: 5px;
  background-color: var(--ayur-testpara-bgcolor);
}
.ayur-test-namesec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 25px 20px;
}
.ayur-testname {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ayur-testname h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--ayur-banheading-color);
}
.ayur-testimonial-section .swiper-button-prev {
  left: 16%;
  top: 60%;
}
.ayur-testimonial-section .swiper-button-next {
  right: 16%;
  top: 60%;
}
.ayur-testimonial-section .swiper-button-prev svg path, .ayur-testimonial-section .swiper-button-next svg path{
  fill: var(--ayur-para-color);
  transition: all .3s linear;
}
.ayur-testimonial-section .swiper-button-prev:hover svg path, .ayur-testimonial-section .swiper-button-next:hover svg path{
  fill: var(--ayur-primary-color);
}
.ayur-test-box .ayur-test-namesec .ayur-testquote svg path{
  transition: all .3s linear;
}
.ayur-test-box:hover .ayur-test-namesec .ayur-testquote svg path{
  fill: var(--ayur-primary-color);
  opacity: 1;
}
/* Testimonial section css End */
/* team section css Start */
.ayur-team-sec{
 padding: 100px 0 84px;
}
.ayur-team-box{
  max-width: 270px;
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  background-color: var(--ayur-white-color);
  padding: 5px;
  border-radius: 10px;
  position: relative;
  transition: all .5s ease-in-out;
}
.ayur-team-name{
  padding: 12px 0 5px;
  text-align: center;
}
.ayur-team-name h3{
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
}
.ayur-team-name p{
  font-family: "Archivo", sans-serif;
}
.ayur-team-img-wrapper{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.ayur-team-img-wrapper::before{
  content: " ";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter:blur(5px);
  background-color: rgb(0 0 0 / 45%);
  -webkit-transition:all .8s ease-in-out;
  transition: all .8s ease-in-out;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  --webkit-transform: translateY(102%);
  -ms-transform: translateY(102%);
  transform: translateY(102%);
  z-index: 2;
}
.ayur-team-hoversmall img{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}
.ayur-team-box:hover .ayur-team-img-wrapper::before{
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.ayur-team-hoverimg{
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction: column;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 3;
  overflow: hidden;
  border-radius: 10px;
}
.ayur-team-hoverimg p{
  color: var(--ayur-white-color);
  padding: 5px 0;
}
.ayur-team-sociallink{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ayur-team-sociallink a{
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s ease-in-out;
  position: relative;
}
.ayur-team-sociallink a::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  transform: scale(0);
  border-radius: 50%;
  z-index: -1;
  transition: all .25s;
  background-color: var(--ayur-primary-color);
}
.ayur-team-sociallink a:hover:before{
  transform: scale(1.1, 1.1);
}
.ayur-team-sociallink a svg {
  max-height: 17px;
}
.ayur-team-sociallink a svg path{
  fill: var(--ayur-white-color);
}
.ayur-team-box:hover .ayur-team-hoverimg{
  transform: translateY(0);
}
.ayur-team-bgshape img:nth-child(1){
  left: 0;
  top: 20px;
}
.ayur-team-bgshape img:nth-child(2){
  right: 0;
  top: 9%;
  animation: jumpThree 5s infinite linear;
}
/* team sectiom reann css End */
/* Blog section css Start */
.ayur-blog-sec {
  padding: 16px 0 65px;
}
.ayur-blog-img{
  position: relative;
  overflow: hidden;
  border-radius: 12px;

}
.ayur-blog-img::after, .ayur-recentblog-boximg::after{
  position: absolute;
  content: '';
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.ayur-blog-img:hover:after, .ayur-recentblog-boximg:hover::after{
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ayur-blog-date h4{
  font-size: 16px;
  font-weight: 400;
  color: var(--ayur-primary-color);
}
.ayur-blog-date{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0 10px;
}
.ayur-blog-text h3, .ayur-blog-text h3 a{
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
  transition: all .3s linear;
}
.ayur-blog-text > p {
  padding: 8px 0 0;
}
.ayur-blog-box {
  margin: 0 0 30px;
}
.ayur-blog-inline{
  display: grid;
  grid-template-columns: 100px 1fr;
}
.ayur-blog-inline .ayur-blog-date {
  padding: 0px 0 7px;
}
.ayur-blog-bgshape img:nth-child(1){
  right: 0;
  bottom: 0;
}
.ayur-blog-bgshape img:nth-child(2){
  left: 0;
  bottom: 2px;
  animation: jumpThree 5s infinite linear;
}
/* Blog section css End */
/* Footer section css start */
.ayur-footer-section{
  /*background-color: var(--ayur-footer-bg);*/
  background-color: #2b2727c4;
  position: relative;
  /*padding: 74px 0 0;*/
  padding: 0px 0 0;
  overflow: hidden;
}
.ayur-sign-sec{
  padding: 0 0 42px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.ayur-subscribe-sec{
  display: flex;
  align-items: center;
  gap: 10px;
}
.ayur-sign-head h3{
  font-size: 26px;
  font-weight: 700;
  color: var(--ayur-white-color);
}
.ayur-form-input{
  max-width: 639px;
  width: 100%;
}
.ayur-form-input .form-control{
  color:var(--ayur-para-color);
  font-size: 14px;
  font-weight: 400;
  min-height: 45px;
  background-color: #19875412;
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  border: 1px solid #26592e61;
  font-family: "Inter", sans-serif;
}
.ayur-form-btn .ayur-btn {
  border: none;
}
.ayur-form-input .form-control::placeholder{
  color:var(--ayur-formtext-color);
}
.ayur-subscribe-sec .ayur-form-input .form-control{
  border-radius: 25px;
  border: none;
  background-color: var(--ayur-white-color);
}
.ayur-footer-logosec p{
  color: var(--ayur-footertext-color);
  padding: 10px 0 25px;
  max-width: 330px;
}
.ayur-footer-sec{
  padding: 49px 0 19px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
ul.ayur-social-link{
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all .3s;
} 
ul.ayur-social-link li a, ul.ayur-social-link li a svg{
  transition: all .3s linear;
}
ul.ayur-social-link li a:hover svg{
  transform: translateY(-5px);
}
ul.ayur-social-link li a:hover svg path{
  fill: var(--ayur-primary-color);
}
.ayur-footer-box h4{
  font-size: 20px;
  font-weight: 700;
  color: var(--ayur-white-color);
  padding: 0 0 18px;
}
.ayur-contact-box img {
  margin-top: 5px;
}
ul.ayur-links li a{
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Inter", sans-serif;
  color: var(--ayur-footertext-color);
  position: relative;
  transition: all .3s ease-in-out;
}
ul.ayur-links li a::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 10px;
  background-color: #fff;
  left: 0;
  top: 9px;
  visibility: hidden;
  transition: all .3s ease-in-out;
}
ul.ayur-links li a:hover{
  color: #fff;
  padding-left: 15px;
}
ul.ayur-links li a:hover::before{
  visibility: visible;
  transition: all .3s ease-in-out;
}
.ayur-contact-box{
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: flex-start;
  padding: 0 0 22px;
}
.ayur-contact-box p{
   color: var(--ayur-footertext-color);
  font-family: "Archivo", sans-serif;
}
.ayur-recentblog-box {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 0 0 10px;
  gap: 10px;
}
.ayur-recentblog-boximg{
  position: relative;
  overflow: hidden;
  
}
.ayur-recentblog-text p.date{
  font-size: 16px;
  font-weight: 600;
  color: var(--ayur-white-color);
  font-family: "Archivo", sans-serif;
}
.ayur-recentblog-text h3.text{
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--ayur-footertext-color);

}
.ayur-copyright-para p{
  font-size: 14px;
  font-weight: 400;
  color: var(--ayur-footertext-color);
  line-height: 22px;
  padding: 16px 0 14px;
  text-align: center;
}
.ayur-footer-bgshape img{
  z-index: 0;
}
.ayur-footer-bgshape img:nth-child(1){
  left: 0;
  bottom: 0;
  animation: floating 8s infinite alternate;
}
.ayur-footer-bgshape img:nth-child(2){
  right: 0;
  bottom: 0;
}
/* Footer section css End */
/* Inner-page section css start */
.ayur-bread-section{
  position: relative;
  background-image: url('https://dummyimage.com/1920x987/');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 170px 0 100px;
}
.ayur-bread-content{
  text-align: center;
}
.ayur-bread-content h2{
  font-size: 30px;
  font-weight: 700;
  color: var(--ayur-white-color);
  padding: 0 0 8px;
  text-transform: capitalize;
}
.ayur-bread-list{
  font-weight: 500;
  color: var(--ayur-white-color);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
  font-size: 18px;
}
.ayur-bread-list span a{ 
  color: #fff;
  text-transform: capitalize;
}
.ayur-bread-list>span:not(:first-child):before {
  content: url('../images/arrow-svg.svg');
  margin-right: 10px;

}
.ayur-about-sec.ayur-inner-about{
  padding: 90px 0 90px;
  overflow: hidden;
}
.ayur-whycho-box{
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  margin-bottom: 10px;
}
.ayur-whycho-boxtext h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--ayur-banheading-color);
}
.ayur-whycho-boxtext > p{
  padding: 0;
}
.ayur-why-sec.ayur-why-single{
  padding: 80px 0 100px;
}
.ayur-inner-whychoose{
  padding: 10px 0 80px;
}
.ayur-inner-about .ayur-about-bgshape img:nth-child(1) {
  top: -20px;
}
.ayur-inner-whychoose .ayur-about-bgshape img {
  top: -35%;
  right: 0;
  left: auto;
}
/* shop single page css */
.ayur-shopsin-sec, .ayur-blogsin-section{
  padding: 90px 0 0;
}
.ayur-shop-sidebar{
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  border-radius: 10px;
  padding: 25px;
}
.ayur-trenproduct-sec.ayur-trenproduct-sin{
  padding: 60px 0 70px;
}
.ayur-widget{
  border-bottom: 1px solid var(--ayur-borderbox-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.ayur-widget.ayur-shop-search, .ayur-coupon-code{
  position: relative;
}
.ayur-widget:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.ayur-shop-search .ayur-form-input .form-control, .ayur-coupon-code .ayur-form-input .form-control {
  border: 1px solid var(--ayur-border-color) ;
  padding: 10px 110px 10px 20px;
  color: var(--ayur-text-color);
}
.ayur-coupon-code .ayur-form-input .form-control{
  padding: 10px 160px 10px 20px;
}
.ayur-shop-search .ayur-form-input .form-control:focus,  .ayur-coupon-code .ayur-form-input .form-control:focus {
  border: 1px solid var(--ayur-primary-color);
}
.ayur-shop-search .ayur-form-input .form-control::placeholder, .ayur-leave-form .ayur-form-input .form-control::placeholder, .ayur-contact-form .ayur-form-input .form-control::placeholder{
  color: var(--ayur-text-color);
}
.ayur-shop-search button.ayur-btn,  .ayur-coupon-code button.ayur-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  min-height: 45px;
  padding: 7px 0;
  min-width: 100px;
  border-radius: 0 10px 10px 0px;
  border: 1px solid var(--ayur-primary-color);
}
.ayur-coupon-code button.ayur-btn {
  min-width: 150px;
}
.ayur-widget > h3{
  font-size: 24px;
  font-weight: 700;
  color: var(--ayur-heading-color);
  padding: 0 0 15px;
}
.ayur-shop-categories ul li{
  margin: 0 0 10px;
}
.ayur-shop-categories ul li a img{
  max-width: 25px;
  object-fit: cover;
  margin-right: 15px;
}
.ayur-shop-categories ul li a, .ayur-shop-tag ul li a {
  color: var(--ayur-banheading-color);
  font-size: 17px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}
.ayur-shop-categories ul li a:hover, .ayur-shop-tag ul li a:hover{
  color: var(--ayur-primary-color);
}
.ayur-sidepro-box{
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  margin: 0 0 15px;
}
.ayur-sidepro-box img {
  max-width: 80px;
}
.ayur-sidepro-boxtext h4 a{
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
  transition: all .3s linear;
}
.ayur-sidepro-boxtext h4 a:hover{
  color: var(--ayur-primary-color);
}
.ayur-shop-tag ul li{
  display: inline-block;
  margin: 4px 0 12px;
}
.ayur-shop-tag ul li a {
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--ayur-primary-lightcolor);
  font-family: "Inter", sans-serif;
  transition: all .3s linear;
}
.ayur-shop-tag ul li a:hover{
  background-color: var(--ayur-primary-color);
  color: var(--ayur-white-color);
}
/* blog page css */
.ayur-blogsin-page {
  padding: 80px 0 80px;
}
.ayur-pagination-wrappper ul.pagination {
  justify-content: center;
  border: none;
  gap: 10px;
  margin: 30px 0 0;
}
.ayur-pagination-wrappper ul.pagination .page-item a.page-link {
  border: 1px solid var(--ayur-para-color);
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
  border-radius: 3px;
  padding: 5px 10px;
}
.ayur-pagination-wrappper ul.pagination .page-item a.page-link:hover, .ayur-pagination-wrappper ul.pagination .page-item a.page-link.active{
  color: var(--ayur-white-color);
  border-color: var(--ayur-primary-color);
  background-color: var(--ayur-primary-color);
}
.ayur-pagination-wrappper ul.pagination .page-item a.page-link svg path{
  fill: var(--ayur-banheading-color);
  transition: all .3s;
}
.ayur-pagination-wrappper ul.pagination .page-item a.page-link:hover svg path{
  fill: var(--ayur-white-color);
}
.ayur-videosin-sec .ayur-video-section{
  padding: 0;
}
.ayur-blogsingle-imgsec, .ayur-blogsingle-postsec {
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  background-color: var(--ayur-white-color);
  padding: 25px;
  border-radius: 10px;
  margin: 0 0 30px;
}
.ayur_blosing-postdata{
  padding: 20px 0 0px;
}
.ayur-post-data {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 10px;
}
span.post-like a {
  font-size: 17px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ayur-blogsingle-title h3, .post-heading, .ayur-comments-form h3, .ayur-contact-heading h3, .ayur-profile-head h3{
  font-size: 25px;
  font-weight: 700;
  color: var(--ayur-heading-color);
  padding: 5px 0 10px;
  text-transform: capitalize;
  transition: all .3s linear;
}
.ayur-blog-recent .ayur-blog-box.ayur-blog-inline:last-child{
  margin: 0 0 10px;
}
.ayur_blosing-postdata p{
  margin: 0 0 15px;
}
.ayur-blockquote blockquote {
  width: 100%;
  display: inline-block;
  padding: 15px 25px 15px 70px;
  margin: 0 0 0px;
  font-size: 17.5px;
  border-left: none;
  background-color: #ededed;
  position: relative;
  color: var(--ayur-primary-color);
  border-left: 2px solid var(--ayur-primary-color);
  border-radius: 0 5px 5px 0;
}
.ayur-blockquote blockquote:before {
  position: absolute;
  content: "\f10d";
  left: 20px;
  top: 17px;
  font: normal normal normal 18px/1 FontAwesome;
  font-size: 40px;
}
.blockquote>:last-child {
  margin-bottom: 0;
}
.ayur-blockquote blockquote p {
  font-size: 22px;
  line-height: 1.4;
}
.post-heading{
  padding: 0;
}
.ayur-post-div {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 115px 1fr;
}
.review-author img {
  max-width: 100px;
  max-height: 100px;
}
.review-author img, .comment-author img{
  border-radius: 100%;
}
.ayur-blog-post-para h3, .comment-text span.comment-author-name{
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
}
.comment-text span:nth-child(2) {
  margin-left: 10px;
}
.comment {
  display: grid;
  grid-template-columns: 115px 1fr;
  padding: 20px;
}
.comment.comment--replied {
  margin-left: 50px;
}
.comment-text a{
  font-size: 16px;
  font-weight: 500;
  color: var(--ayur-primary-color);
  transition: all .3s linear;
}
.comment-text a:hover{
  color: var(--ayur-banheading-color);
}
.ayur-comments-form{
  padding: 30px 30px;
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  border-radius: 10px;
  margin: 0 0 80px;
}
.ayur-comments-form h3, .ayur-contact-heading h3{
  padding: 0 0 15px;
}
.ayur-contact-heading {
  padding: 0 0 50px;
}
.ayur-contact-heading h3{
  font-size: 32px;
}
.ayur-leave-form .ayur-form-input, .ayur-contact-form  .ayur-form-input {
  margin: 0 0 20px;
  max-width: -webkit-fill-available;
}
.ayur-leave-form .ayur-form-input .form-control:focus, .ayur-contact-form  .ayur-form-input .form-control:focus,
.ayur-form-input.ayur-check-form .form-control:focus{
  border-color: var(--ayur-primary-color);
}
.ayur-contactpage-wrapper{
  padding: 80px 0 80px;
}
.ayur-contactpage-box{
  max-width: 1150px;
  width: 100%;
  margin: auto;
  background-color: var(--ayur-white-color);
  box-shadow:3px 4px 29.6px 0px #0000000F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}
.ayur-contact-map {
  max-width: 500px;
  width: 100%;
}
.ayur-contact-map iframe {
  max-width: 500px;
  width: 100%;
  height: 706px;
}
.ayur-contact-pageinfo{
  width: 100%;
}
.ayur-btn.ayur-con-btn{
  margin-top: 10px;
}
.response{
  color: red;
}
/* cart page css */
.ayur-cartpage-wrapper {
  padding: 90px 0 90px;
}
.ayur-cart-table{
  border-radius: 10px;
  text-align: center;
}
.ayur-cart-table table.table{
  width: 100%;
}
.ayur-cart-table thead tr th{
  background-color: var(--ayur-primary-color);
  color: var(--ayur-white-color);
}
.ayur-cart-table thead tr th:nth-child(1){
  border-radius: 10px 0 0 0;
}
.ayur-cart-table thead tr th:last-child{
  border-radius: 0 10px 0 0;
}
.ayur-cart-table tbody tr td, .ayur-cart-table tbody tr th{
  text-align: center;
  border: 1px solid var(--ayur-borderbox-color);
}
.ayur-cart-table tbody tr td > img {
  width: 95px;
  height: 95px;
  object-fit: cover;
}
.ayur-cart-table tbody tr td .ayur-tab-delete img{
  height: 20px;
  width: 20px;
  object-fit: cover;
}
.ayur-cart-table tbody tr td, .ayur-cart-table tbody tr td h2, .ayur-cartsubtotal th, .ayur-cartsubtotal td {
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-para-color);
  vertical-align: middle;
}
.ayur-cart-table tbody tr td h2, .ayur-cartsubtotal th{
  color: var(--ayur-banheading-color);
}
.ayur-cart-table tbody tr td input {
  padding: 5px 0 5px 5px;
  max-width: 60px;
  color: var(--ayur-para-color);
  outline: none;
  border: 1px solid #275c2f40;
}
.ayur-cart-table tbody tr td.ayur-updatecart-btn{
  text-align: end;
}
.ayur-carttotal-wrapper{
  padding: 30px;
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  margin: 20px 12px 0 auto;
}
.ayur-cart-total h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ayur-white-color);
  background-color: var(--ayur-primary-color);
  border-radius: 10px 10px 0 0;
  padding: 15px 10px;
  text-align: center;
}
.ayur-cart-total table tr th, .ayur-cart-total table tr td{
  border: 1px solid var(--ayur-borderbox-color);
}
tr.ayur-cartsubtotal td{
  color: var(--ayur-primary-color);
}
.ayur-checkout-btn .ayur-btn{
  min-width: 210px;
}
.ayur-checkout-wrapper{
  padding: 90px 0 90px;
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
}
.ayur-checkout-table-wrapper{
  padding: 30px;
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  border-radius: 10px;
}
.ayur-checkout-head h3{
  font-size: 30px;
  font-weight: 700;
  color: var(--ayur-heading-color);
  padding: 0 0 10px;
}
.ayur-form-input label{
  font-size: 16px;
  font-weight: 400;
  color: var(--ayur-banheading-color);
  padding: 0 0 10px;
}
.ayur-form-input label span{
  color: red;
}
.payment-method {
  padding-bottom: 30px;
}
.ayur-chkout-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ayur-checkbox-label-color);
}
.ayur-chkout-flex h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
}
.custom-checkbox {
  width: 18px;
  height: 18px;
  position: relative;
}
.custom-checkbox input{
  width: 0 !important;
}
.custom-checkbox input[type=checkbox], .custom-checkbox input[type="radio"] {
  visibility: hidden;
}
.custom-checkbox label {
  cursor: pointer;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;        
  background-color: var(--ayur-white-color);
  border: 2px solid var(--ayur-checkbox-label-color);  
  border-radius: 50%;
  right: -5px;
  transition: all .3s ease-in-out;
}
.custom-checkbox input[type=radio]:checked+label{
  background-color: var(--ayur-primary-color);
  border: 2px solid var(--ayur-primary-color);
}
.ayur-check-form {
  margin: 0 0 15px;
}
.custom-checkbox label:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--ayur-checkbox-label-color);
  border-radius: 50%;
  top: 4px;
  left: 4px;
  border-top: none;
  border-right: none;
}
.custom-checkbox input[type="radio"]:checked+label:after {
  background-color: var(--ayur-white-color);
}
.payment_box {
  display: none;
  padding-top: 15px;
  transition: all .3s ease-in-out;
}
.ayur-checkout-table-wrapper .payment-method img {
  width: auto;
  height: auto;
  margin-left: auto;
}
.ayur-checkout-payment p.ayur-para{
  transition: all .3s ease-in-out;
}
.ayur-checkout-order {
  text-align: end;
}
/* profile page css */
.ayur-profile-wrapper{
  padding: 90px 0;
}
.ayur-profile-section {
  background-color: var(--ayur-white-color);
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  padding: 30px 25px;
  margin: 80px 0;
  border-radius: 10px;
  max-width: 850px;
  margin: 0px auto;
}
.ayur-profile-head h3 {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--ayur-borderbox-color);
  margin: 0 0 25px;
}
.ayur-profile-section h2{
  font-size: 18px;
  font-weight: 700;
  color: var(--ayur-heading-color);
  text-transform: capitalize;
  padding: 0 0 15px;
}
.ayur-pro-img{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}
.ayur-pro-img img{
  border-radius: 100%;
  max-height: 100px;
  max-width: 100px;
}
.ayur-pro-imgtext >h2{
  padding: 0;
}
.ayur-pro-imgtext >h2 span{
  font-size: 18px;
  font-weight: 500;
  color: var(--ayur-banheading-color);
}
.ayur-pro-text {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  padding: 10px 0 15px;
  border-bottom: 1px solid var(--ayur-borderbox-color);
}
.ayur-pro-text h4 {
  font-size: 18px;
  color: var(--ayur-heading-color);
}
.ayur-pro-btn{
  margin: 30px 0 0;
}
.ayur-why-singleser{
  padding: 85px 0;
}
.ayur-pricinplan-sec{
  padding: 90px 0 99px;
}
.ayur-pricing-sec{
  padding: 0px 35px 30px;
  text-align: left;
  border: 1px solid var(--ayur-border-color) ;
  color: var(--ayur-white-color);
  border-radius: 10px;
  box-shadow: 3px 4px 29.6px 0px #0000000F;
  transition: all .5s ease-in-out;
}
.ayur-pricing-sec:hover{
  border: 1px solid var(--ayur-primary-color);
}
.ayur-pricing-head{
  position: relative;
}
.ayur-pricing-head  h3, .ayur-price-meta h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ayur-white-color);
  width: 220px;
  margin: 0 auto 27px;
  background-color: var(--ayur-primary-color);
  padding: 5px 10px 15px;
  border-radius: 0 0 30px 30px;
  text-align: center;
}
.ayur-name-shape{
  height: 20px;
  width: 270px;
  background-color: var(--ayur-primary-color);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px 50px 0 0;
  overflow: hidden;
}
.ayur-name-shape::after, .ayur-name-shape::before{
  position: absolute;
  content: '';
  height: 20px;
  width: 25px;
  background-color: #a16957;
  left: 0;
  top: 0;
  border-radius: 100% 100% 0 0;
}
.ayur-name-shape::after{
 right: 0;
 top: 0;
 left: auto;
 border-radius: 100% 100% 0 0;
}
.ayur-pricing-pricevalue h4{
  font-size: 50px;
  font-weight: 700;
  color: var(--ayur-primary-color);
  padding: 0px 0 15px;
  text-align: center;
}
.ayur-pricing-pricevalue h4 span{
  font-size: 14px;
  font-weight: 500;
  color: var(--ayur-para-color);
}
.ayur-price-list ul{
  padding: 15px 0 0;
}
.ayur-price-list ul li {
  margin: 0 0 15px;
  text-align: center;
}
.ayur-price-btn{
  padding: 30px 0 0;
  text-align: center;
}
/* shop single page css */
.nav-link:focus-visible{
  box-shadow: none;
}
.ayur-shopsin-section{
  padding: 90px 0 0;
}
.ayur-shopsin-heaing h3{
  font-size: 32px;
  font-weight: 700;
  color: var(--ayur-heading-color);
}
.ayur-shopsin-heaing > p{
  padding: 15px 0 15px;
}
.ayur-shopsin-quantity {position: relative;}
.ayur-shopsin-quantity .form-control {
  max-width: 95px;
  padding: 5px 40px 5px 10px;
}
.ayur-shopsin-quantity .form-control:focus{
  border: 1px solid #dee2e6;
}
.ayur-shopsin-quantity:after {
  position: absolute;
  content: '';
  height: 45px;
  width: 1px;
  background-color: var(--ayur-border-color);
  top: 0;
  left: 60px;
}
.shop-add{
  position: absolute;
  top: 20px;
  left: 73px;
  transform: rotate(90deg);
  cursor: pointer;
  border-left: 1px solid red;
}
.shop-sub{
  position: absolute;
  bottom: 21px;
  left: 84px;
  transform: rotate(-90deg);
  cursor: pointer;
  border-left: 1px solid red;
}
.shop-add span, .shop-sub span {
  width: 9px;
  height: 9px;
  display: block;
  border-bottom: 3px solid var(--ayur-primary-color);
  border-right: 3px solid var(--ayur-primary-color);
  transform: rotate(135deg);
  margin: -10px;
}
.ayur-shopsin-btn {
  margin: 20px 0 0;
}
.ayur-shopsin-tablist {
  margin: 50px 0 0;
}
.ayur-shopsin-tablist .nav.nav-tabs{
  gap: 10px;
  border-bottom: none;
  margin: 0 0 20px;
}
.ayur-shopsin-tablist .nav .nav-link{
  background-color: var(--ayur-white-color);
 border: 1px solid #198754d9;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ayur-banheading-color);
  padding: 0 15px;
  text-align: center;
  min-height: 47px;

}
.ayur-shopsin-tablist .nav .nav-link.active{
  background-color: var(--ayur-primary-color);
  color: var(--ayur-white-color);
  border: none;
  border-radius: 10px;
  transition: all .3s linear;
}
.ayur-shopsin-tablist .tab-content>.tab-pane > p{
  padding: 10px 0 0;
}
.ayur-product-desc{
  margin: 0 0 50px;
}
.ayur-post-div.ayur-shop-post {
  grid-template-columns: 140px 1fr 120px;
}
.ayur-post-div.ayur-shop-post .review-author img{
  max-width: 100px;
  max-height: 100px;
}
.ayur-shop-post .ayur-blog-post-para h3{
  margin: 0 0 6px;
}
.ayur-shopsin-formrate {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}
.ayur-shopsin-formrate p{
  margin-right: 10px;
}
.ayur-shopsin-form h3{
  padding: 0 0 10px;
}
.ayur-shopsin img{
  right: 0;
  top: 10%;
}
.ayur-blog-single-bgshape img:nth-child(1){
  top: auto;
  bottom: 20%;
}
.ayur-blog-single-bgshape img:nth-child(2){
  right: 0;
  left: auto;
  top: 20%;
  animation: jumpThree 5s infinite linear;
}
.ayur-shopsin-bg img:nth-child(1) {
  right: 0;
  bottom: -21%;
  top: auto;
  left: auto;
}
.ayur-shopsin-bg img:nth-child(2){
  left: 0;
  top: 10%;
}
/* Top-product section css End */
.ayur-testname img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.tem{
  height: 270px;
}
.blog{
   height: 250px!important;
}








/* ===== Fade-in animation for cards ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-card {
  animation: fadeUp 0.6s ease forwards;
}

/* delay for smooth stagger effect */
.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== Card hover effect ===== */
.product-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image zoom on hover */
.product-card img {
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* Button animation */
.btn-anim {
  transition: all 0.3s ease;
}

.btn-anim:hover {
  transform: scale(1.05);
  background-color: #000;
}
/* =========================
   ABOUT SECTION
========================= */

.ayur-about-sec{
    background:#f8f6f1;
    position:relative;
    z-index:1;
}

.main-about-img{
    width:100%;
    transition:0.5s ease;
    /*border:8px solid #fff;*/
}

.main-about-img:hover{
    transform:scale(1.02);
}

/* Experience Box */

.ayur-about-exp{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:#0b6b32;
    color:#fff;
    padding:22px 28px;
    border-radius:18px;
    max-width:240px;
    animation:floatBox 3s ease-in-out infinite;
}

.ayur-about-exp h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:0;
    line-height:1;
}

.ayur-about-exp span{
    font-size:18px;
    display:block;
    margin-top:8px;
}

/* Floating Icon */

.floating-leaf{
    position:absolute;
    top:-20px;
    right:-15px;
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#0b6b32;
    animation:rotateLeaf 8s linear infinite;
}

/* Heading */

.sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e8f5ed;
    color:#0b6b32;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.ayur-about-head h2{
    font-size:52px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.ayur-about-head h2 span{
    color:#0b6b32;
}

.ayur-about-head p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* Features */

.about-feature{
    background:#fff;
    padding:16px 18px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.4s;
}

.about-feature:hover{
    transform:translateY(-5px);
}

.about-feature i{
    color:#0b6b32;
    font-size:20px;
}

.about-feature span{
    font-weight:600;
    color:#222;
}

/* Shapes */

.shape-1{
    position:absolute;
    left:0;
    bottom:0;
    opacity:0.15;
    z-index:-1;
}

.shape-2{
    position:absolute;
    right:0;
    top:50px;
    opacity:0.2;
    z-index:-1;
}

/* Animations */

@keyframes floatBox{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes rotateLeaf{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Responsive */

@media(max-width:991px){

    .ayur-about-head h2{
        font-size:38px;
    }

    .ayur-about-exp{
        left:15px;
        bottom:15px;
    }

}

@media(max-width:576px){

    .ayur-about-head h2{
        font-size:30px;
    }

    .ayur-about-exp{
        padding: 15px;
        max-width: 205px;
    }

    .ayur-about-exp h2{
        font-size:40px;
    }

}
/* =========================
   ACHIEVEMENT SECTION
========================= */

.ayur-achievement-sec{
    padding:50px 0;
    background:linear-gradient(135deg,#f8f7f2,#eef8f1);
    position:relative;
    z-index:1;
}

/* Background Shapes */

.circle-shape{
    position:absolute;
    width:350px;
    height:350px;
    background:#0b6b32;
    opacity:0.05;
    border-radius:50%;
    top:-120px;
    left:-120px;
    z-index:-1;
}

.leaf-shape{
    position:absolute;
    width:220px;
    height:220px;
    background:#1b7a42;
    opacity:0.05;
    border-radius:50%;
    bottom:-80px;
    right:-80px;
    z-index:-1;
}

/* Heading */


.ayur-why-head h2{
    font-size:52px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    margin-bottom:20px;
}

.ayur-why-head h2 span{
    color:#0b6b32;
}

.ayur-why-head p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:720px;
    margin:auto;
}

/* Cards */

.achievement-card{
    background:#fff;
    border-radius:24px;
    padding:20px 15px;
    text-align:center;
    height:100%;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.achievement-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#0b6b32;
    transform:scaleX(0);
    transition:0.4s;
}

.achievement-card:hover::before{
    transform:scaleX(1);
}

.achievement-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}
.achievement-icon{
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.achievement-icon img{
    width:48px;
}

.counter{
    font-size:28px;
    font-weight:800;
    color:#0b6b32;
    margin-bottom:10px;
    line-height:1;
}

.achievement-card h5{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.achievement-card p{
    font-size:16px;
    color:#666;
    line-height:1.7;
    margin-bottom:0;
}

/* Responsive */

@media(max-width:991px){

    .ayur-achievement-sec{
        padding:80px 0;
    }

    .ayur-why-head h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .ayur-why-head h2{
        font-size:30px;
    }

    .achievement-card{
        padding:35px 25px;
    }

    .counter{
        font-size:15px;
    }

}
.ayur-bread-section{
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ayur-bread-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.ayur-breadcrumb-wrapper{
    position: relative;
    z-index: 2;
}


/* =========================
   VISION MISSION SECTION
========================= */

.vision-mission-section{
    background:#f8f7f2;
}

/* Heading */

.section-title{
    margin-bottom:20px;
}

.sub-title{
    display:inline-block;
    background:#e7f4eb;
    color:#0b6b32;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title h2{
    font-size:46px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:18px;
}

.section-title p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* Cards */

.vm-box{
    background:#fff;
    border-radius:24px;
    padding:20px;
    height:100%;
    display:flex;
    gap:25px;
    transition:0.4s;
    border:1px solid #ececec;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.vm-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.vm-icon{
    min-width:60px;
    height:60px;
    background:#0b6b322b;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vm-icon i{
    font-size:34px;
    color:#0b6b32;
}

.vm-content span{
    color:#0b6b32;
    font-size:15px;
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.vm-content h3{
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
    line-height:1.4;
}

.vm-content p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:22px;
}

/* List */

.vm-content ul{
    padding:0;
    margin:0;
    list-style:none;
}

.vm-content ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#333;
    font-weight:500;
}

.vm-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#0b6b32;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size:36px;
    }

    .vm-box{
        padding:35px;
    }

}

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .vm-box{
        flex-direction:column;
        padding:28px;
    }

    .vm-content h3{
        font-size:24px;
    }

}

/* =========================
   MICRO ESSENTIALS ABOUT
========================= */

.me-about-section{
    background:#f8f7f2;
}

/* Image */

.me-about-image-area{
    position:relative;
}

.me-about-main-img{
    width:100%;
    border-radius:28px;
    border:8px solid #fff;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
    height: 550px;
}

/* Experience Box */

.me-experience-box{
    position:absolute;
    left:-20px;
    bottom:40px;
    background:#0b6b32;
    color:#fff;
    padding:24px 28px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

.me-experience-box h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:5px;
    line-height:1;
}

.me-experience-box span{
    font-size:16px;
    font-weight:500;
}

/* Floating Icon */

.me-floating-icon{
    position:absolute;
    top:-20px;
    right:-15px;
    width:85px;
    height:85px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.me-floating-icon i{
    font-size:34px;
    color:#0b6b32;
}

/* Content */

.me-about-subtitle{
    display:inline-block;
    background:#e8f5ed;
    color:#0b6b32;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.me-about-title{
    font-size:48px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:20px;
}

.me-about-text{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
}

/* Features */

/* =========================
   FEATURE CARD DESIGN
========================= */

.me-feature-card{
    display:flex;
    align-items:flex-start;
    gap:16px;
    background:#fff;
     padding: 10px 11px;
    border-radius:20px;
    border:1px solid #ececec;
    transition:0.4s ease;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

.me-feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    border-color:#dcefe3;
}

/* Icon */

.me-feature-icon{
    min-width:30px;
    height:30px;
    background:#106e37;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.me-feature-icon img{
    width:22px;
    height:22px;
    object-fit:contain;
}

/* Content */

.me-feature-content h5{
    font-size:16px;
    margin-bottom:8px;
}

.me-feature-content p{
    font-size:14px;
    color:#666;
    line-height:1.7;
    margin-bottom:0;
}

/* Responsive */

@media(max-width:576px){

    .me-feature-card{
        padding:18px;
    }

    .me-feature-content h5{
        font-size:16px;
    }

}

/* Button */

.me-about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#0b6b32;
    color:#fff;
    padding:15px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.me-about-btn:hover{
    background:#084d24;
    color:#fff;
    transform:translateY(-4px);
}

/* Responsive */

@media(max-width:991px){

    .me-about-title{
        font-size:38px;
    }

    .me-experience-box{
        left:15px;
        bottom:20px;
    }

}

@media(max-width:576px){

    .me-about-title{
        font-size:30px;
    }

    .me-experience-box{
        padding:18px 20px;
    }

    .me-experience-box h2{
        font-size:38px;
    }

    .me-floating-icon{
        width:70px;
        height:70px;
    }

}
.bloghw{
  height: 90px;
  width: 90px;
  object-fit: cover;
}
.text-justify{
  text-align: justify;
}

/* =========================
   BLOG SECTION
========================= */

/*blog section css start*/
.blog-section{
  background: #f8fafc;
}
.blog-title{
  font-size: 42px;
  font-weight: 700;
  color: #111827;
}
.blog-text{
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.blog-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
  border: 1px solid #edf2f7;
  position: relative;
}
.blog-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.blog-image-wrapper{
  position: relative;
  overflow: hidden;
}
.blog-image{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s ease;
}
.blog-card:hover .blog-image{
  transform: scale(1.08);
}
.blog-card:hover {
  opacity: 1;
}
.blog-category{
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0b6b32;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.blog-content{
  padding: 28px;
}
.blog-card-title{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}
.blog-desc{
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.blog-footer{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-btn-outline{
  border: 1px solid #0b6b32;
  color: #0b6b32;
  border-radius: 50px;
  padding: 10px 12px;
  font-weight: 600;
  transition: 0.3s;
}
.blog-btn-outline:hover{
  background: #0b6b32;
  color: #fff;
}
.blog-btn{
   background: #0b6b32;
  color: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 600;
  transition: 0.3s;
}
.blog-btn:hover{
  color: #fff;
  transform: translateY(-2px);
}
/* Responsive */
@media(max-width:991px){
  .blog-title{
    font-size: 34px;
  }
}
@media(max-width:767px){
  .blog-title{
    font-size: 28px;
  }
  .blog-image{
    height: 220px;
  }
  .blog-content{
    padding: 22px;
  }
}

/*blog section css end*/

/* =========================
       SERVICES SECTION
    ========================== */
/*/services section css/*/
.services-section{
   overflow: hidden;
}
.section-title{
   font-size: 48px;
   color: #1c1c1c;  
}
.section-subtitle{
   color: #666;
   font-size: 17px;
}
.service-card{
   border-radius: 22px;
   overflow: hidden;
   transition: 0.4s;
   background: #fff;
   box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.service-card:hover{
   transform: translateY(-8px);
   box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.service-img-wrapper{
   position: relative;
   overflow: hidden;
}
.service-img{
   width: 100%;
   height: 250px;
   object-fit: cover;
   transition: 0.5s;
}
.service-card:hover .service-img{
   transform: scale(1.08);

}
.service-text{
   color: #666;
   line-height: 1.8;
}

@media(max-width:991px){

   .section-title{
      font-size: 38px;
   }
}
@media(max-width:767px){
   .section-title{
      font-size: 30px;
   }
   .section-subtitle{
      font-size: 15px;
   }
   .service-img{
      height: 345px;
   }
}

/* Smooth Page Animation */

.section-title {
    animation: fadeDown 1s ease;
    position: relative;
}

/* Service Card Design */
.service-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.45s ease;
    background: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: zoomFade 1s ease;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
/* Overlay Effect */
.service-img-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 92, 39, 0.75), transparent);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}
.service-card:hover .service-img-wrapper::before {
    opacity: 1;
}
/* Card Body Animation */
.service-card .card-body h4 {
    transition: 0.4s;
}
.service-card:hover .card-body h4 {
    color: #0b6b32;
    letter-spacing: 0.5px;
}
.service-text {
    color: #666;
    line-height: 1.8;
    transition: 0.4s;
}
.service-card:hover .service-text {
    color: #444;
}
.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(124, 161, 24, 0.08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    transition: 0.5s;
}
.service-card:hover::after {
    transform: scale(1.4);
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Fade Up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Zoom Fade */
@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.col-lg-4:nth-child(1) .service-card {
    animation-delay: 0.2s;
}
.col-lg-4:nth-child(2) .service-card {
    animation-delay: 0.4s;
}
.col-lg-4:nth-child(3) .service-card {
    animation-delay: 0.6s;
}
.service-card {
    animation-fill-mode: both;
}
/* RESPONSIVE */
@media(max-width:768px){

    .service-card:hover {
        transform: translateY(-6px);
    }

    .section-title {
        font-size: 32px;
    }

}
/*/services section css end/*/


/*product details page design start*/

.client_logo_slider_2026{
    padding:30px 0;
    background:#ffffff;
}

.client_logo_carousel_2026 .client_logo_item_2026{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
  padding: 5px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100px;
    transition:0.3s;
}

.client_logo_carousel_2026 .client_logo_item_2026:hover{
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.client_logo_carousel_2026 .client_logo_item_2026 img{
    width:100%;
    max-width:200px;
    height:100%;
    object-fit:cover;
}

.client_logo_carousel_2026 .owl-dots{
    margin-top:20px;
    text-align:center;
}

.client_logo_carousel_2026 .owl-dot span{
    width:10px;
    height:10px;
    background:#cfcfcf !important;
}

.client_logo_carousel_2026 .owl-dot.active span{
    background:#4CAF50 !important;
}
.client_logo_item_2026 img{
    width:100%;
    border-radius:12px;
    cursor:pointer;
    transition:0.4s;
}

.client_logo_item_2026 img:hover{
    transform:scale(1.05);
}

.mfp-close{
    color:#fff !important;
    font-size:40px !important;
    opacity:1 !important;
    right:20px !important;
    top:20px !important;
}
/*product details page design end*/

/*contact Details start css*/

/* Contact Cards */
.ayur-contact-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.ayur-contact-card:hover{
    transform:translateY(-8px);
}

.ayur-contact-icon{
    width:80px;
    height:80px;
    line-height:80px;
    margin:auto;
    border-radius:50%;
    background: #eff7f3;
    margin-bottom:20px;
}

.ayur-contact-icon i{
    font-size:32px;
    color:#8b5e3c;
}

.ayur-contact-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.ayur-contact-card p{
    font-size:16px;
    line-height:28px;
    color:#666;
    margin:0;
}

/*contact-details css end*/

/*whats up*/

.wa-ultimate-button1 {
  position: fixed;
  bottom: 30px;
  left: 45px;
  z-index: 100;
  perspective: 1200px;
  animation: fadeInUp 1.2s ease-out;
}

.wa-entry {
  position: relative;
  width: 65px;
  height: 65px;
  background: radial-gradient(circle, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 0 20px #25d366,
    0 0 60px rgba(37, 211, 102, 0.6),
    inset 0 0 15px #128c7e;
  transition: transform 0.3s ease;
  overflow: visible;
  animation: pulse 2.5s infinite ease-in-out;
}

.wa-entry:hover {
  transform: scale(1.08) rotateX(10deg);
}

.wa-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
  animation: glowPulse 3s ease-in-out infinite;
  filter: blur(12px);
  z-index: 0;
}

.wa-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgb(33 197 107);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 75px;
  height: 75px;
  animation: spin 8s linear infinite;
}

.ring2 {
  width: 120px;
  height: 120px;
  animation: spinReverse 12s linear infinite;
}

.wa-bubbles {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  animation: bubbles 4s linear infinite;
  box-shadow:
    0 0 4px #fff,
    0 -10px 0 0 rgba(255,255,255,0.3),
    0 -20px 0 0 rgba(255,255,255,0.2),
    0 -30px 0 0 rgba(255,255,255,0.1);
}

.wa-tooltip {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.4s ease;
  text-shadow: 0 0 4px #25d366;
}

.wa-entry:hover .wa-tooltip {
  opacity: 1;
  transform: scale(1);
}
.wa-entry:hover i{
  color: #fff
}
.wa-tooltip span {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid #fff;
  white-space: nowrap;
  animation: typing 3s steps(25) 1s forwards, blink 0.8s step-end infinite;
  max-width: 0;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 20px #25d366,
      0 0 60px rgba(37, 211, 102, 0.5),
      inset 0 0 15px #128c7e;
  }
  50% {
    box-shadow:
      0 0 30px #25d366,
      0 0 80px rgba(37, 211, 102, 0.8),
      inset 0 0 25px #128c7e;
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes bubbles {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-50%) translateY(-50px);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes typing {
  to { max-width: 220px; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: white; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.navigation li.active a {
    color: #275c2f !important;
    font-weight: bold;
}
.blogs{
    height: 100%;
    object-fit: cover;
}

/* =========================
   ABOUT SECTION
========================= */


.about-tag{
    display: inline-block;
    font-size: 20px;
    color: #426b2c;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.about-tag::after{
    content: '';
    width: 80px;
    height: 2px;
    background: #b89a55;
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-title{
    font-size: 62px;
    line-height: 1.1;
    color: #2f1b0c;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Cormorant Garamond", serif;
}

.about-title span{
    color: #426b2c;
}

.about-text{
    font-size: 18px;
    line-height: 1.9;
    color: #5d5146;
    margin-bottom: 18px;
}
.feature-icon{
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon img{
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.feature-icon:hover{
    transform: translateY(-5px);
    background: #fff;
}

.feature-title{
    font-size: 13px;
    font-weight: 600;
    color: #2f1b0c;
    margin: 0;
    line-height: 1.5;
}
/* Button */
.ayur-btn-modern{
    /*display: inline-flex;*/
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#355d24,#5b8c3a);
    color: #fff;
    text-decoration: none;
    /*padding: 16px 34px;*/
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(53,93,36,0.2);
}

.ayur-btn-modern:hover{
    transform: translateY(-4px);
    color: #fff;
}

/* Right Image */
.about-product-wrapper{
    position: relative;
    text-align: center;
}

.main-product-img{
    max-width: 100%;
    animation: floatY 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.floating-leaf{
    position: absolute;
    z-index: 1;
    animation: floatY 5s ease-in-out infinite;
}

.leaf-1{
    width: 90px;
    top: 30px;
    left: 30px;
}

.leaf-2{
    width: 80px;
    bottom: 80px;
    right: 20px;
}

.leaf-3{
    width: 70px;
    bottom: 20px;
    left: 50px;
}


/* Animation */
@keyframes floatY{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-12px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Responsive */
@media(max-width:991px){

    .about-title{
        font-size: 42px;
    }

    .about-content{
        text-align: center;
    }

    .about-tag::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .strip-content{
        gap: 20px;
    }
}

@media(max-width:575px){

    .about-title{
        font-size: 34px;
    }

    .about-text{
        font-size: 16px;
    }

    .feature-box{
        padding: 18px 12px;
    }
}
/* Add To Cart Button */
.ayur-cart-btn{
    background: linear-gradient(135deg, #275c2f, #267b32b8);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(60,124,44,0.25);
}

.ayur-cart-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

/* Go To Cart Button */
.ayur-btn-outline{
    padding: 6px 15px;
    border-radius: 50px;
    border:2px solid #275c2f;
    color: #275c2f;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.ayur-btn-outline:hover{
    background: #275c2f;
    color: #fff;
    transform: translateY(-3px);
}

.product-btn-group{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap; /* same row */
}

.product-btn-group a{
    white-space: nowrap;
}

/* Mobile Responsive */
@media(max-width:576px){

    .product-btn-group{
        flex-direction: column;
        align-items: stretch;
    }

    .product-btn-group a{
        width: 100%;
        justify-content: center;
    }
}


.ayur-shopsin-sec{
  position: relative;
  overflow: hidden;
}
.justify-text {
  text-align: justify;
}

/* USP Wrapper */
.usp-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* USP Box */
.usp-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;

    /* Premium Shadow */
    box-shadow:
        0 10px 25px rgba(0,0,0,0.05),
        0 20px 45px rgba(108,117,50,0.08);
}

/* Hover Effect */
.usp-box:hover{
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08),
        0 25px 55px rgba(108,117,50,0.15);
}

/* Active Box */
.active-box{
    background: linear-gradient(135deg, #6c7532, #87964b);

    box-shadow:
        0 15px 35px rgba(108,117,50,0.25),
        0 25px 60px rgba(108,117,50,0.18);
}

.active-box h4,
.active-box p{
    color: #fff;
}

/* Icon */
.usp-icon{
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 22px;
    background: #edf6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgb(12 108 51 / 24%);
}

.active-box .usp-icon{
    background: rgba(255,255,255,0.12);

    box-shadow:
        0 10px 30px rgba(255,255,255,0.15);
}

.usp-icon img{
    width: 70px;
}

/* Content */
.usp-content h4{
    font-size: 22px;
    font-weight: 700;
    color: #1d2b1f;
    margin-bottom: 10px;
}

.usp-content p{
    font-size: 15px;
    line-height: 28px;
    color: #666;
    margin-bottom: 0;
}

/* Right Side */
.usp-right{
    position: relative;
    padding-left: 30px;
}

/* Image */
.usp-image{
    border-radius: 35px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.10),
        0 30px 70px rgba(108,117,50,0.10);
}

.usp-image img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 0.5s ease;
}

.usp-image:hover img{
    transform: scale(1.05);
}

/* Floating Box */
.usp-floating-box{
    position: absolute;
    bottom: 30px;
    left: 0;
    background: #fff;
    padding: 25px 35px;
    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12),
        0 25px 60px rgba(108,117,50,0.12);
}

.usp-floating-box h3{
    font-size: 42px;
    font-weight: 800;
    color: #6c7532;
    margin-bottom: 5px;
}

.usp-floating-box span{
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

/* Responsive */
@media(max-width:991px){

    .usp-heading h2{
        font-size: 34px;
        line-height: 46px;
    }

    .usp-right{
        padding-left: 0;
        margin-top: 30px;
    }

    .usp-image img{
        height: auto;
    }

    .usp-floating-box{
        left: 20px;
    }

}
.iconss{
  color: #E4D4CF;
}
.iconss:hover {
  color: #E4D4CF;
}

/*login css*/

.ecom-login-section{
   background:#f8f8f8;
}

/* CARD */
.ecom-login-card{
   background:#fff;
   border-radius:24px;
   overflow:hidden;
   box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.ecom-login-left{
   position:relative;
   background:url('../img/login_img.jpg') center center/cover no-repeat;
   min-height:695px;
   display:flex;
   align-items:center;
}

.ecom-login-overlay{
   position:absolute;
   inset:0;
   background:linear-gradient(180deg, rgba(20,45,35,0.80), rgba(28,65,45,0.90));
}

.ecom-login-content{
   position:relative;
   z-index:2;
   padding:45px;
   color:#fff;
}

.login-tag{
   display:inline-block;
   background:rgba(255,255,255,0.15);
   border:1px solid rgba(255,255,255,0.15);
   padding:8px 18px;
   border-radius:50px;
   font-size:14px;
   margin-bottom:20px;
}

.ecom-login-content h2{
   font-size:42px;
   font-weight:700;
   line-height:1.3;
   margin-bottom:18px;
}

.ecom-login-content p{
   color:#ddd;
   font-size:15px;
   line-height:28px;
   margin-bottom:35px;
}

/* FEATURES */
.login-features{
   display:flex;
   flex-direction:column;
   gap:16px;
}

.feature-item{
   display:flex;
   align-items:center;
   gap:14px;
   font-size:15px;
}

.feature-item i{
   width:42px;
   height:42px;
   border-radius:50%;
   background:rgba(255,255,255,0.15);
   display:flex;
   align-items:center;
   justify-content:center;
   font-size:16px;
}

/* RIGHT SIDE */
.ecom-login-right{
   padding:50px;
}

.login-head{
   margin-bottom:30px;
}

.login-head h3{
   font-size:34px;
   font-weight:700;
   color:#1f3d31;
   margin-bottom:10px;
}

.login-head p{
   color:#777;
   margin:0;
}

/* FORM */
.form-group{
   margin-bottom:22px;
}

.form-group label{
   font-size:15px;
   font-weight:600;
   color:#222;
   margin-bottom:10px;
   display:block;
}

.form-group label span{
   color:red;
}

.input-box{
   position:relative;
}

.input-box i{
   position:absolute;
   left:18px;
   top:50%;
   transform:translateY(-50%);
   color:#3d7b5a;
   font-size:15px;
}

.input-box .form-control{
   height:56px;
   border:1px solid #e5e5e5;
   border-radius:14px;
   font-size:15px;
   box-shadow:none;
}

.input-box .form-control:focus{
   border-color:#3d7b5a;
   box-shadow:0 0 0 4px rgba(61,123,90,0.10);
}

/* OPTION */
.login-option{
   display:flex;
   justify-content:space-between;
   align-items:center;
   margin-bottom:25px;
   flex-wrap:wrap;
   gap:10px;
}

.form-check-label{
   font-size:14px;
   color:#666;
}

.forgot-link{
   color:#3d7b5a;
   text-decoration:none;
   font-size:14px;
   font-weight:600;
}

.forgot-link:hover{
   color:#1f3d31;
}

/* CAPTCHA */
.captcha-box{
   margin-bottom:25px;
}

/* BUTTON */
.login-btn{
   width:100%;
   height:56px;
   border:none;
   border-radius:14px;
   background:linear-gradient(135deg,#3d7b5a,#1f3d31);
   color:#fff;
   font-size:16px;
   font-weight:600;
   transition:0.3s;
}

.login-btn:hover{
   transform:translateY(-2px);
}

/* REGISTER */
.register-text{
   text-align:center;
   margin-top:25px;
   font-size:15px;
   color:#666;
}

.register-text a{
   color:#3d7b5a;
   font-weight:600;
   text-decoration:none;
}

/* MOBILE */
@media(max-width:991px){

.ecom-login-left{
   min-height:400px;
}

.ecom-login-content h2{
   font-size:32px;
}

.ecom-login-right{
   padding:35px 25px;
}

.login-head h3{
   font-size:28px;
}

}

@media(max-width:575px){

.ecom-login-content{
   padding:30px;
}

.ecom-login-content h2{
   font-size:26px;
}

.ecom-login-right{
   padding:30px 20px;
}

.login-option{
   flex-direction:column;
   align-items:flex-start;
}

}
.login-features{
   display:flex;
   flex-direction:column;
   gap:16px;
}

.feature-item{
   display:flex;
   align-items:center;
   gap:12px;
   font-size:15px;
   color:#fff;
}

.feature-dot{
   width:10px;
   height:10px;
   border-radius:50%;
   background:#fff;
   display:inline-block;
   flex-shrink:0;
}
.form-check{
   display:flex;
   align-items:center;
   gap:10px;
}

.form-check-input{
   width:18px !important;
   height:18px !important;
   min-width:18px;
   border-radius:4px !important;
   margin-top:0 !important;
   box-shadow:none !important;
   cursor:pointer;
}

.form-check-label{
   margin:0;
   font-size:14px;
   color:#666;
   cursor:pointer;
}
/*login css end*/


/*Register css*/

.register-section{
   background:#f7f8f9;
}

/* CARD */
.register-card{
   background:#fff;
   border-radius:24px;
   overflow:hidden;
   box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.register-left{
   position:relative;
   background:url('../img/register_img.jpg') center center/cover no-repeat;
   min-height:668px;
   display:flex;
   align-items:center;
}

.register-overlay{
   position:absolute;
   inset:0;
   background:linear-gradient(180deg, rgba(15,40,28,0.82), rgba(20,55,38,0.92));
}

.register-content{
   position:relative;
   z-index:2;
   padding:45px;
   color:#fff;
}

.register-badge{
   display:inline-block;
   padding:8px 18px;
   border-radius:50px;
   background:rgba(255,255,255,0.12);
   border:1px solid rgba(255,255,255,0.15);
   font-size:14px;
   margin-bottom:20px;
}

.register-content h2{
   font-size:42px;
   font-weight:700;
   line-height:1.3;
   margin-bottom:18px;
}

.register-content p{
   font-size:15px;
   line-height:28px;
   color:#ddd;
   margin-bottom:35px;
}

/* FEATURES */
.register-features{
   display:flex;
   flex-direction:column;
   gap:16px;
}

.feature-item{
   display:flex;
   align-items:center;
   gap:12px;
   font-size:15px;
   color:#fff;
}

.feature-dot{
   width:10px;
   height:10px;
   border-radius:50%;
   background:#fff;
   flex-shrink:0;
}

/* RIGHT SIDE */
.register-right{
   padding:50px;
}

.register-head{
   margin-bottom:30px;
}

.register-head h3{
   font-size:34px;
   font-weight:700;
   color:#1f3d31;
   margin-bottom:10px;
}

.register-head p{
   color:#777;
   margin:0;
}

/* FORM */
.form-group{
   margin-bottom:22px;
}

.form-group label{
   font-size:15px;
   font-weight:600;
   color:#222;
   margin-bottom:10px;
   display:block;
}

.form-group label span{
   color:red;
}

.input-box{
   position:relative;
}

.input-box i{
   position:absolute;
   left:18px;
   top:50%;
   transform:translateY(-50%);
   color:#3d7b5a;
   font-size:15px;
}

.input-box .form-control{
   height:56px;
   border:1px solid #e5e5e5;
   border-radius:14px;
   font-size:15px;
   box-shadow:none;
}

.input-box .form-control:focus{
   border-color:#3d7b5a;
   box-shadow:0 0 0 4px rgba(61,123,90,0.10);
}

/* CHECKBOX */
.form-check{
   display:flex;
   align-items:center;
   gap:10px;
   /*margin-bottom:25px;*/
}

.form-check-input{
   width:18px !important;
   height:18px !important;
   min-width:18px;
   margin-top:0 !important;
   border-radius:4px !important;
   box-shadow:none !important;
   cursor:pointer;
}

.form-check-label{
   margin:0;
   font-size:14px;
   color:#666;
   cursor:pointer;
}

.form-check-label a{
   color:#3d7b5a;
   text-decoration:none;
   font-weight:600;
}

/* CAPTCHA */
.captcha-box{
   margin-bottom:25px;
}

/* BUTTON */
.register-btn{
   width:100%;
   height:56px;
   border:none;
   border-radius:14px;
   background:linear-gradient(135deg,#3d7b5a,#1f3d31);
   color:#fff;
   font-size:16px;
   font-weight:600;
   transition:0.3s;
}

.register-btn:hover{
   transform:translateY(-2px);
}

/* BOTTOM */
.bottom-text{
   text-align:center;
   margin-top:25px;
   font-size:15px;
   color:#666;
}

.bottom-text a{
   color:#3d7b5a;
   text-decoration:none;
   font-weight:600;
}

/* MOBILE */
@media(max-width:991px){

.register-left{
   min-height:400px;
}

.register-content h2{
   font-size:32px;
}

.register-right{
   padding:35px 25px;
}

.register-head h3{
   font-size:28px;
}

}

@media(max-width:575px){

.register-content{
   padding:30px;
}

.register-content h2{
   font-size:26px;
}

.register-right{
   padding:30px 20px;
}

}
/*Register css end*/
.ayur-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


/* =========================================
   EMPTY WISHLIST EXACT DESIGN + ANIMATION
========================================= */

.panel{
    width:100%;
    max-width:420px;
    margin:40px auto 80px;
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    animation:panelFade 0.8s ease;
}

.panel h2{
    font-size:20px;
    font-weight:700;
    color:#0b1641;
    margin-bottom:8px;
}

.panel .lead{
    font-size:14px;
    color:#7a7a7a;
    margin-bottom:20px;
}

/* Scene */

.scene{
    position:relative;
    width:100%;
    height:auto;
    margin-bottom:20px;
}

/* SVG Cart */

.cart-wrap{
    width:100%;
    max-width:340px;
    margin:0 auto;
    animation:cartFloat 4s ease-in-out infinite;
}

.cart-svg{
    width:100%;
    height:auto;
    display:block;
}

/* Floating Badges */

.item-badge{
    position:absolute;
    width:42px;
    height:42px;
    border-radius:12px;
    background:#f6f9f3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    animation:badgeFloat 3s ease-in-out infinite;
}

.i1{
    top:10px;
    right:65px;
    animation-delay:0s;
}

.i2{
    top:55px;
    right:25px;
    animation-delay:1s;
}

.i3{
    display:none;
}

/* Message */

.empty-msg{
    margin-top:10px;
    animation:fadeUp 1s ease;
}

.msg-text{
    font-size:16px;
    font-weight:600;
    line-height:1.6;
    color:#6d8657;
    max-width:300px;
    margin:0 auto 25px;
}

/* Button */

.btn-main{
    width:100%;
    height:52px;
    border-radius:10px;
    background:#4c7231;
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.btn-main:hover{
    background:#3f6027;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(76,114,49,0.25);
}

/* Shine Effect */

.btn-main::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,0.25);
    transform:skewX(-25deg);
}

.btn-main:hover::before{
    animation:shine 0.8s ease;
}

/* Confetti */

.confetti{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    pointer-events:none;
}

.confetti .c{
    position:absolute;
    width:8px;
    height:8px;
    border-radius:2px;
    opacity:0.7;
    animation:confettiMove 4s linear infinite;
}

.c1{
    background:#6d9d4b;
    top:5px;
    left:20%;
    transform:rotate(12deg);
}

.c2{
    background:#95c26b;
    top:0;
    left:35%;
    transform:rotate(35deg);
    animation-delay:1s;
}

.c3{
    background:#7ba84f;
    top:6px;
    left:50%;
    transform:rotate(-10deg);
    animation-delay:2s;
}

.c4{
    background:#b8d8b1;
    top:2px;
    left:70%;
    transform:rotate(45deg);
    animation-delay:3s;
}

.c5{
    display:none;
}

/* Ground */

.ground{
    display:none;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes panelFade{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes cartFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes badgeFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes confettiMove{
    0%{
        transform:translateY(0px) rotate(0deg);
        opacity:0.7;
    }
    50%{
        transform:translateY(8px) rotate(180deg);
        opacity:1;
    }
    100%{
        transform:translateY(0px) rotate(360deg);
        opacity:0.7;
    }
}

@keyframes shine{
    100%{
        left:140%;
    }
}

/* Responsive */

@media(max-width:576px){

    .panel{
        max-width:95%;
        padding:25px 15px;
    }

    .panel h2{
        font-size:18px;
    }

    .msg-text{
        font-size:15px;
    }

    .btn-main{
        font-size:16px;
        height:48px;
    }
}

/* =========================
   CHECKOUT PAGE DESIGN
========================= */

.checkout-area{
    padding:80px 0;
    background:#f7f7f7;
}

/* FORM + ORDER BOX */
.checkout-card,
.order-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:30px;
    box-shadow:0 4px 20px rgba(0,0,0,0.04);
    margin-bottom:30px;
}

/* LABEL */
.checkout-label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#222;
    margin-bottom:8px;
}

/* INPUT */
.checkout-input,
.checkout-textarea,
select{
    width:100%;
    height:52px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px 15px;
    font-size:14px;
    color:#333;
    background:#fff;
    transition:0.3s;
}

.checkout-textarea{
    height:110px;
    resize:none;
}

.checkout-input:focus,
.checkout-textarea:focus,
select:focus{
    border-color:#4d7132;
    box-shadow:0 0 0 3px rgba(77,113,50,0.10);
    outline:none;
}

/* ORDER HEADER */
.order-header{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
}

/* TABLE */
.order-table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:25px;
}

.order-table thead{
    background:#f9f9f9;
}

.order-table thead th{
    padding:14px 10px;
    font-size:14px;
    color:#222;
    font-weight:700;
    border-bottom:1px solid #eee;
}

.order-table tbody td{
    padding:16px 10px;
    border-bottom:1px solid #f1f1f1;
    font-size:14px;
    color:#555;
}

/* COUPON */
.coupon-box{
    margin-top:20px;
    margin-bottom:25px;
}

.coupon-flex{
    display:flex;
    gap:12px;
}

.apply-btn{
    min-width:180px;
    height:52px;
    border-radius:8px;
    background:#4d7132;
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.apply-btn:hover{
    background:#35511f;
}

/* TOTAL BOX */
.order-total-box{
    border-top:1px solid #eee;
    padding-top:20px;
}

.total-line{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    font-size:15px;
    color:#444;
}

.total-line.total{
    font-size:20px;
    font-weight:700;
    color:#222;
    border-top:1px dashed #ddd;
    margin-top:10px;
    padding-top:18px;
}

/* BUTTON */
.place-order-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:8px;
    background:#4d7132;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    margin-top:25px;
    transition:0.3s;
}

.place-order-btn:hover{
    background:#35511f;
    transform:translateY(-2px);
}

/* VALIDATION */
label.error{
    color:red;
    font-size:13px;
    margin-top:5px;
    display:block;
}

/* RESPONSIVE */
@media(max-width:991px){

    .checkout-card,
    .order-box{
        padding:25px;
    }

    .coupon-flex{
        flex-direction:column;
    }

    .apply-btn{
        width:100%;
    }

}

@media(max-width:575px){

    .checkout-area{
        padding:50px 0;
    }

    .checkout-card,
    .order-box{
        padding:18px;
        border-radius:10px;
    }

    .order-header{
        font-size:18px;
    }

    .order-table thead th,
    .order-table tbody td{
        font-size:12px;
        padding:10px 6px;
    }

    .total-line{
        font-size:14px;
    }

    .total-line.total{
        font-size:18px;
    }

}


/* ===============================
   QUANTITY BOX DESIGN
================================= */

.qty-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

/* Minus & Plus Buttons */
.quantity__minus,
.quantity__plus{
    width:42px;
    height:42px;
    border:none;
    outline:none;
    background:#1f5f2c;
    color:#fff;
    font-size:24px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.quantity__minus:hover,
.quantity__plus:hover{
    background:#174922;
    transform:translateY(-2px);
}

.quantity__minus:active,
.quantity__plus:active{
    transform:scale(0.95);
}

/* Quantity Input */
.quantity__input{
    width:70px;
    height:42px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:#222;
    background:#fff;
    outline:none;
    transition:all 0.3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

/* Focus Effect */
.quantity__input:focus{
    border-color:#1f5f2c;
    box-shadow:0 0 0 4px rgba(31,95,44,0.12);
}

/* Remove Arrows */
.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.quantity__input[type=number]{
    -moz-appearance:textfield;
}

/* Responsive */
@media(max-width:576px){

    .quantity__minus,
    .quantity__plus{
        width:38px;
        height:38px;
        font-size:20px;
    }

    .quantity__input{
        width:60px;
        height:38px;
        font-size:15px;
    }
}

.ayur-carttotal-wrapper{
    width:100%;
}

.ayur-cart-total h4{
    font-size:18px;
    font-weight:600;
    color:#555;
    margin-bottom:10px;
}

#cart-total{
    font-size:32px;
    font-weight:700;
    color:#2d572c;
    margin-bottom:20px;
}

#checkout-btn{
    display:block;
    text-align:center;
    background:#275c2f;
    color:#fff;
    padding:14px 20px;
    border-radius:6px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

#checkout-btn:hover{
    background:#3d5c28;
    color:#fff;
}

#min-msg{
    margin-top:12px;
    font-size:14px;
    color:red;
}



/* Review Box Design */
.ayur-post-div.ayur-shop-post{
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ayur-post-div.ayur-shop-post:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Top Section */
.review-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Name */
.review-top h3{
    font-size: 20px;
    font-weight: 700;
    color: #1f5f2c;
    margin: 0;
    line-height: 1.4;
}

/* Date */
.review-top h3 span{
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin-left: 8px;
}

/* Star Rating */
.ayur-shop-review{
    display: flex;
    align-items: center;
    gap: 4px;
}

.ayur-shop-review img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Review Message */
.ayur-blog-post-para p{
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    background: #f8f9f7;
    padding: 18px;
    border-radius: 12px;
    position: relative;
}

/* Responsive */
@media(max-width: 576px){

    .ayur-post-div.ayur-shop-post{
        padding: 18px;
    }

    .review-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .review-top h3{
        font-size: 18px;
    }

    .ayur-blog-post-para p{
        font-size: 14px;
        padding: 15px;
    }
}


.product-card{
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

/* Sale + Heart Wrapper */
.ayur-tpro-sale{
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 99;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Heart Button */
.ayur-tpro-like{
    width: 42px;
    height: 42px;
     background: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s ease;
}
/* Heart Image */
.ayur-tpro-like img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}



.toggle-password{
    position:absolute;
    top:50%;
    right:15px;
    transform:translateY(-50%);
    cursor:pointer;
    color:#666;
    display:flex;
    align-items:center;
    justify-content:center;
}

.toggle-password svg{
    transition:0.3s;
}

.toggle-password:hover{
    color:#1f5f2c;
}


.password-box{
    position: relative;
}

.password-box .form-control{
    padding-right: 50px;
}

.toggle-password{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    z-index: 99;
}

.toggle-password svg{
    width: 22px;
    height: 22px;
}

.d-none{
    display: none;
}


/*checkout css*/


.saved-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.address-card{
    display:flex;
    gap:15px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:18px;
    margin-bottom:15px;
    cursor:pointer;
    transition:0.3s;
    background:#fff;
}

.address-card:hover{
    border-color:#0d6efd;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.address-radio input{
    width:20px;
    height:20px;
    cursor:pointer;
    margin-top:5px;
}

.address-content{
    width:100%;
}

.address-top{
    margin-bottom:8px;
}

.address-user-info h6{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#111;
    line-height:26px;
}

.address-user-info .mobile-no{
    display:block;
    margin-top:4px;
    font-size:14px;
    color:#666;
    line-height:22px;
}

.address-content p{
    margin:0;
    line-height:26px;
    color:#555;
}

.new-address-option{
    display:flex;
    align-items:center;
    gap:10px;
    border:1px dashed #0d6efd;
    border-radius:12px;
    padding:16px;
    cursor:pointer;
    background:#f8fbff;
    font-weight:600;
}

.new-address-option input{
    width:18px;
    height:18px;
}

.same-address-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    background:#fafafa;
}

.same-address-box input{
    width:18px;
    height:18px;
}

.same-address-box label{
    margin:0;
    cursor:pointer;
    font-weight:600;
}

@media(max-width:767px){

    .address-top{
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

}


