* {
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
  box-shadow: none;
}
/* Reset and Base Styles */


*,
*::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;
}

/* Remove 300ms tap delay globally */
* {
    touch-action: manipulation;
}

/* Speed up mobile menu transition */
.mobile-menu {
    transition: right 0.2s ease !important;
    will-change: right;
}

.mobile-menu-overlay {
    transition: opacity 0.2s ease !important;
}

body, html{
  overflow-x: hidden;
}/**
:root {
  --ayur-primary-color:#CD8973;
  --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;
} 
 **/
/*
 :root {
    --ayur-primary-color: #027377;
    --ayur-white-color: #fbf6f6;
    --ayur-primary-light: #e8f5f6;
    --ayur-banheading-color: #21534c;
    --ayur-heading-color: #2d4a45;
    --ayur-para-color: #5a6f6b;
    --ayur-text-color: #8b9f9c;
    --ayur-testpara-bgcolor: #f0f9f8;
    --ayur-border-color: #d4ebe9;
    --ayur-borderbox-color: #e1f0ef;
    --ayur-checkbox-label-color: #c7e3e0;
    --ayur-formtext-color: #b8d5d2;
    --ayur-footer-bg: #0f2e2a;
    --ayur-footertext-color: #c7e3e0;
    --ayur-primary-lightcolor: #f5fafa;
}
*/
:root {
    --teal: rgb(3, 152, 158);
    --black:  rgb(6, 29, 19);


    --ayur-primary-color: #027377; /* Keep your teal */
    --ayur-white-color: #fdfcfa; /* Warm off-white */
    --ayur-primary-light: #a8c5c3; /* Muted sage teal */
    --ayur-banheading-color: #2c4a3e; /* Deep forest green */
    --ayur-heading-color: #3d5a4f; /* Rich moss green */
    --ayur-para-color: #5d6f5e; /* Earthy gray-green */
    --ayur-text-color: #7a8d7e; /* Soft sage */
    --ayur-testpara-bgcolor: #f0ebe3; /* Warm sand */
    --ayur-border-color: #d4c9b8; /* Clay/taupe */
    --ayur-borderbox-color: #e6dfd5; /* Light terracotta */
    --ayur-checkbox-label-color: #c8bcab; /* Warm beige */
    --ayur-formtext-color: #b8b0a0; /* Dusty sand */
    --ayur-footer-bg:   linear-gradient(80deg, var(--teal) 0%, var(--teal) 40%, var(--black) 70%, var(--black) 100%);
    --ayur-footertext-color: #ffffff; /* Warm clay */
    --ayur-primary-lightcolor: #f7f4ee; /* Natural cream */
 
}

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: var(--ayur-primary-lightcolor)  !important;
  border-radius: 10px !important;
  height: 45px !important;
  border: 1px solid var(--ayur-border-color);
}
.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: 12px 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.5s;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  transition: all .3s linear;
  margin-left:10px;
}
.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: 80px;
}
/* loader css end */
/* navmenu css start */
.ayur-menu-wrapper{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0px;
  box-shadow: none;
  background: linear-gradient(80deg, #03989e 0%, #03989e 40%, #061d13 70%, #061d13 100%);

  padding: 5px 10px 8px;
  margin: auto;
  z-index: 9;
  box-shadow: 2px 4px 22px 0px #0000000A;
  border-radius: 0 0 30px 30px;
}
.ayur-menu-logo img{
  border-radius:20px;
}

.ayur-menu-wrapper .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ayur-navmenu-wrapper{
  text-align: end;
  display: flex;
  align-items: center;
  justify-content:space-evenly; 
  gap: 20px;
}
.ayur-nav-menu ul li{
  display: inline-block;
  position: relative;
  padding: 0 15px;
}
.ayur-nav-menu ul li a{
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #f0f8ff;
}
.ayur-nav-menu ul li a::before, .ayur-nav-menu ul li.active a:before{
  position: absolute;
  content: '';
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background-color: var(--ayur-white-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);
}

/**search icons start***/

.search-icon-wrap{
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;

}

.search-icon-wrap img{
  width:18px;
  height:18px;
}

.search-icon-wrap:hover{
  background :rgba(255,255,255,0.35);
}

.search-modal-content{
  border-radius:16px;
  padding:20px;
}

.search-modal-input{
  height:50px;
  font-size:16px;
  border-radius:12px;
}

/**search icons end***/


.ayur-nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  
}
@media (max-width: 746px) {
  .ayur-nav-icons {
  gap: 5px;
  }
}
.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: rgb(255, 255, 255);
}
.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;
}
.ayur-toggle-btn {
  display: none;
}
.ayur-toggle-btn span{
  display: block;
  height: 3px;
  width: 25px;
  margin-bottom: 4px;
  background: var(--ayur-white-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-container {
  padding-top:50px !important;
}

.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: 50px;
  
}
.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;
}
.ayur-banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 background: linear-gradient(
    180deg,
    rgba(232, 245, 246, 0.10) 0%,
    rgba(232, 245, 246, 0.05) 50%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}
@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;
    z-index: 2;
}
.ayur-banner-heading {
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.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: 320px;
  max-height: 100%;
  background: #ffffff;
  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;
  filter: hue-rotate(1100deg) saturate(.75) brightness(.75);
}
.ayur-ban-leaf img:nth-child(2){
  right: 0;
  bottom: 0;
 /*   filter: hue-rotate(60deg) saturate(0.88) brightness(.65);*/
}
@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 {
    border-radius: 70px;
    overflow: hidden; 
    width: 140px;
    height: 180px;
    position: relative;
    display: block;
    margin: 0 auto;
}
.ayur-careslider-img img{
  width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 70px;
    display: block;
}
.ayur-careslider-img::before{
  position: absolute;
  content: '';
  height: 180px;
  width: 140px;
  top:0;
  left:0;
  box-shadow: inset 0px 0px 0px 0px rgba(0,0,0,0.3);
  transition: all 0.8s ease;
  border-radius: 70px;
  z-index:1;
} 
.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{
  position:absolute;
    width: 40px;
  height: 40px;
  object-fit: cover;
  top: 50%;
  transform:translateY(-50%);
    z-index: 100;
}
.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: 10px;
}
.ayur-care-slider-sec > .swiper-button-next{
  right: 10px;
}



/* Banner css End */


/* Top-product section css start */
.ayur-topproduct-sec {
  padding: 34px 0 80px;
}

.ayur-topproduct-sec .row,
.ayur-trenproduct-sec .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Make each column full height */
.ayur-topproduct-sec .row > [class*="col-"],
.ayur-trenproduct-sec .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.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;
  display:flex;
  flex-direction:column;
  height:100%;
  margin-bottom:30px;
}

.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;
 
}

.ayur-tpro-label {
    position: absolute;
    top: 14px;
    left: -4px;
    z-index: 3;
    padding: 5px 14px 5px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0 4px 4px 0;
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
    pointer-events: none;
}

.ayur-label-best {
    background: linear-gradient(135deg, #e55d00, #ff8c00);
    box-shadow: 2px 2px 8px rgba(229, 93, 0, 0.45);
}

.ayur-label-new {
    background: linear-gradient(135deg, #015c5f, #027377);
    box-shadow: 2px 2px 8px rgba(2, 115, 119, 0.45);
}
/* make sure the image wrapper is relative */
.ayur-tpro-img {
   
    flex-shrink:0;
    overflow: hidden;
    position:relative;
}


.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 {
  
  background-color: transparent;

  color: var(--ayur-para-color);
  transition: all .3s ease-in-out;
  flex:1;
}

/* Cart button - show only icon on smaller size */
.ayur-btn-cart {
    min-width: 50px;
    flex: 0 0 50px !important; /* Fixed width for icon-only */
    padding: 12px 10px;
    justify-content: center;
}

/* Hide cart button text */
.ayur-btn-cart::after {
    content: none;
}
.ayur-btn-cart:hover {
    background-color: #f0f0f0 !important; /* Light background on hover */
    border-color: #027377 !important;
}
.ayur-btn-cart:hover::after {
    background-color: #f0f0f0 !important; /* Override gradient effect */
}
.ayur-btn-cart:hover svg path {
    fill: #222222 !important; /* Dark color instead of white */
}

.ayur-btn-cart span {
    margin: 0 !important;
}

/* Optional: Make cart icon bigger since it's alone */
.ayur-btn-cart svg {
    width: 22px;
    height: 22px;
}



.ayur-tpro-btn .ayur-btn svg path{
  fill: var(--ayur-white-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{
 
  border-radius: 18px;
}
.ayur-tpro-sale{
  position: absolute;
  top: 10px;
  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;
}
.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 21px;
}
.ayur-about-head{
  text-align: left;
}
.ayur-about-head p{
  padding: 5px 0 10px;
}
.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);
}
@media (max-width: 768px) {
    .ayur-about-exp p:nth-child(1){
  font-size: 32px;
    }
}
.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 var(--ayur-border-color);
  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: var(--ayur-primary-color);
  box-shadow: 4px 4px 10.5px 0px #CD89734D;
  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: 20px 0 20px;
}
.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 30px;
}
.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: stretch;
  flex-wrap: wrap;
  gap: 25px;
}
.ayur-why-box{

  padding: 30px 15px;
  background-color: var(--ayur-white-color);
  border: 1px solid var(--ayur-border-color);
  text-align: center;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  display:flex;
  flex-direction:column;
  flex: 1 1 calc(50% - 25px);
  min-width:220px;
  height:auto;
}
.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: var(--ayur-primary-color);
  box-shadow: 4px 4px 10.5px 0px #CD89734D;
  text-align: center;
  margin: 0 auto 10px;
  transition: all .3s linear;
}
.ayur-why-boxtext {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ayur-why-boxtext h4{
  font-size: 18px;
  font-weight: 600;
  color: var(--ayur-banheading-color);
   margin-bottom: 8px;
}
.ayur-why-boxtext p {
    flex: 1;
}

/* Mobile */
@media (max-width: 576px) {
    .ayur-why-box {
        flex: 1 1 100%;
    }
}
.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;
  z-index:10;


}
.ayur-video-playicon img {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
}
.ayur-video-playicon::before, .ayur-video-playicon:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--ayur-primary-color);
  border-radius: 100%;
    z-index: -1;
}
.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(2, 115, 119, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(2, 115, 119, 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: var(--ayur-footer-bg);
  position: relative;
  padding: 74px 0 0;
  overflow: hidden;
  margin-top:20px;
}
.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: rgb(205 137 115 / 8%);
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  border: 1px solid var(--ayur-border-color);
  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: 0;
  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 svg {
    pointer-events: none;
}

/* Ensure links are clickable */
ul.ayur-social-link li a {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-block;
}
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-con {
    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: 40px 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: 30px 0 20px;
}
.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 15px;
}
.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;
}tact-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: var(--ayur-primary-color);
  left: 0;
  top: 9px;
  visibility: hidden;
  transition: all .3s ease-in-out;
}
ul.ayur-links li a:hover{
  color: var(--ayur-primary-color);
  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;
   pointer-events: none; 
}
.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;
   filter: hue-rotate(40deg) saturate(.65) brightness(.85)
   
  
}
/* Footer section css End */
/* Inner-page section css start */
.ayur-bread-section{
  position: relative; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 190px 0 110px;
}

.ayur-bread-section-shop{
  background-image: url('/images/cns/shop-medicine-banner.png');
}

.ayur-bread-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
   background: linear-gradient(
    180deg,
    rgba(3, 152, 158, 0.45) 0%,
    rgba(3, 152, 158, 0.25) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}
.ayur-breadcrumb-wrapper{
  position: relative;
  z-index: 2;
}

.ayur-bread-section-about{
 background-image: url('/images/cns/Aboutus-banner.jpg');
}

.ayur-bread-section-consult{
  background-image: url('/images/cns/consultation-banner.jpg');
}
.ayur-bread-section-contact{
 background-image: url('/images/cns/contactus-banner.jpg');
}
.ayur-bread-section-blog{
 background-image: url('/images/cns/blogs-banner.jpg');
}

.ayur-bread-section-blog::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
   background: linear-gradient(
    180deg,
    rgba(3, 152, 158, 0.45) 0%,
    rgba(43, 47, 47, 0.25) 50%,
    rgba(255, 251, 251, 0.15) 100%
  );
  z-index: 1;
}

.ayur-bread-content{
  text-align: center;
}
.ayur-bread-content h2{
  font-size: 42px;
  font-weight: 700;
  color: var(--ayur-white-color);
  padding: 0 0 8px;
  text-transform: capitalize;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(3, 152, 158, 0.3);
}
.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: #b3ebee;
  text-transform: capitalize;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.ayur-bread-list span a:hover{
  color: #ffffff;
}

.ayur-bread-list span.ayur-active-page{
  color: #ffffff;
  font-weight: 700;
}
.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 {
    margin-top: 40px;
    text-align: center;
}

.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 var(--ayur-border-color);
}
.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: 0px 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;

  flex-wrap:nowrap;
  overflow-x:scroll;
  -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.12) transparent;
    cursor: grab;
}
.ayur-shopsin-tablist .nav .nav-link{
  background-color: var(--ayur-white-color);
  border: 1px solid var(--ayur-border-color);
  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-tabs::-webkit-scrollbar {
    height: 3px;
}

.ayur-shopsin-tablist .nav.nav-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.ayur-shopsin-tablist .nav.nav-tabs::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
}

/* Prevent tab buttons from shrinking */
.ayur-shopsin-tablist .nav.nav-tabs .nav-item {
    flex-shrink: 0;
}
.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%;
  width:600px;
  filter:blur(1px);
}
/* Top-product section css End */



/***Our doctors section-home page ***/

/* Team specialty text */
.ayur-team-specialty {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Button in hover overlay */
.ayur-team-btn {
    margin-top: 15px;
}

.ayur-btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Remove social links, add consultation button */
.ayur-team-hoverimg p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #17a2b8;
    font-weight: 600;
}


/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */
/* ============================================
   AUTOMATIC TIMELINE SLIDER - SMOOTH & RESPONSIVE
   ============================================ */

.ayur-timeline-sec {
    padding: 60px 0 80px;
    background: #F6F1ED;
}

.ayur-timeline-head {
    margin-bottom: 50px;
}

.ayur-timeline-subhead {
    max-width: 700px;
    margin: 15px auto 0;
}

/* Slider Wrapper */
.ayur-timeline-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px 60px;
}

/* Timeline Line */
.ayur-timeline-slider-line {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #CD8973 20%, #CD8973 80%, transparent);
}

/* Slider Container */
.ayur-timeline-slider {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Slide */
.ayur-timeline-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ayur-timeline-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 2;
}

/* Slide Content */
.ayur-timeline-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Timeline Dot */
.ayur-timeline-dot {
    width: 16px;
    height: 16px;
    background: #CD8973;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #CD8973;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.ayur-timeline-dot-current {
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #CD8973, 0 0 20px rgba(205, 137, 115, 0.5);
    animation: pulse-timeline 2s infinite;
}

@keyframes pulse-timeline {
    0%, 100% {
        box-shadow: 0 0 0 4px #CD8973, 0 0 20px rgba(205, 137, 115, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(205, 137, 115, 0.4), 0 0 30px rgba(205, 137, 115, 0.7);
    }
}

/* Timeline Card */
.ayur-timeline-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.ayur-timeline-year {
    color: #CD8973;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ayur-timeline-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--ayur-banheading-color);
    margin-bottom: 15px;
}

.ayur-timeline-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Current Item Highlight */
.ayur-timeline-current-box {
    background: linear-gradient(135deg, #CD8973, #B07A67);
}

.ayur-timeline-current-box .ayur-timeline-year,
.ayur-timeline-current-box .ayur-timeline-title,
.ayur-timeline-current-box p {
    color: #fff;
}

/* Navigation Arrows */
.ayur-timeline-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #CD8973;
    transition: all 0.3s ease;
}

.ayur-timeline-arrow:hover {
    background: #CD8973;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(205, 137, 115, 0.4);
}

.ayur-timeline-prev {
    left: 0;
}

.ayur-timeline-next {
    right: 0;
}

/* Dots Navigation */
.ayur-timeline-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.ayur-timeline-dot-nav {
    width: 10px;
    height: 10px;
    background: rgba(205, 137, 115, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ayur-timeline-dot-nav.active {
    background: #CD8973;
    width: 30px;
    border-radius: 5px;
}

.ayur-timeline-dot-nav:hover {
    background: rgba(205, 137, 115, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ayur-timeline-slider-wrapper {
        padding: 60px 50px 50px;
    }
    
    .ayur-timeline-card {
        padding: 25px 20px;
    }
    
    .ayur-timeline-year {
        font-size: 24px;
    }
    
    .ayur-timeline-title {
        font-size: 18px;
    }
    
    .ayur-timeline-card p {
        font-size: 14px;
    }
    
    .ayur-timeline-arrow {
        width: 40px;
        height: 40px;
    }
    
    .ayur-timeline-slider {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .ayur-timeline-sec {
        padding: 40px 0 60px;
    }
    
    .ayur-timeline-head {
        margin-bottom: 30px;
    }
    
    .ayur-timeline-slider-wrapper {
        padding: 50px 40px 40px;
    }
    
    .ayur-timeline-card {
        padding: 20px 15px;
    }
    
    .ayur-timeline-arrow {
        width: 36px;
        height: 36px;
    }
    
    .ayur-timeline-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .ayur-timeline-dot-nav {
        width: 8px;
        height: 8px;
    }
    
    .ayur-timeline-dot-nav.active {
        width: 24px;
    }
}
/* Mission Section */
.ayur-mission-sec {
    padding: 80px 0;
}

.ayur-mission-box {
    display: block;
    text-align: center;
    padding: 30px;
    background: var(--ayur-white-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.ayur-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ayur-mission-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--ayur-primary-color);
    box-shadow: 4px 4px 10.5px 0px #CD89734D;
    margin: 0 auto 20px;
    transition: all 0.3s linear;
}

.ayur-mission-box:hover .ayur-mission-icon {
    transform: rotateY(360deg);
}

.ayur-mission-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ayur-banheading-color);
    margin-bottom: 10px;
}

/* Manufacturing Section */
.ayur-manufacturing-sec {
    background: #F6F1ED;
    padding: 80px 0;
}

.ayur-manufacturing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.ayur-manufacturing-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.ayur-manufacturing-list li img {
    margin-right: 10px;
    margin-top: 5px;
    width: 20px;
    flex-shrink: 0;
}

.ayur-manufacturing-list li p {
    margin: 0;
}

/* Product Story Section */
.ayur-productstory-sec {
    padding: 60px 0 80px;
}

.ayur-productstory-content {
    background: var(--ayur-white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.ayur-productstory-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ayur-productstory-highlight {
    font-style: italic;
    margin-bottom: 30px;
}

.ayur-productstory-btn {
    text-align: center;
}

/* ============================================
   RESPONSIVE STYLES FOR ABOUT PAGE
   ============================================ */

@media (max-width: 991px) {
    .ayur-timeline-item {
        grid-template-columns: 1fr;
        text-align: left !important;
    }
    
    .ayur-timeline-left,
    .ayur-timeline-right {
        padding: 0 20px;
        margin-bottom: 20px;
    }
    
    .ayur-timeline-center {
        display: none;
    }
    
    .ayur-timeline-line {
        left: 20px;
        transform: none;
    }
    
    .ayur-timeline-content {
        position: relative;
        padding-left: 50px;
    }
    
    .ayur-timeline-content::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 20px;
        width: 20px;
        height: 20px;
        background: #CD8973;
        border: 4px solid var(--ayur-white-color);
        border-radius: 50%;
        box-shadow: 0 0 0 4px #CD8973;
    }
    
    .ayur-timeline-right-content .ayur-timeline-left,
    .ayur-timeline-right-content .ayur-timeline-right {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .ayur-timeline-sec {
        padding: 60px 0;
    }
    
    .ayur-timeline-head {
        margin-bottom: 40px;
    }
    
    .ayur-timeline-year {
        font-size: 20px;
    }
    
    .ayur-timeline-title {
        font-size: 16px;
    }
    
    .ayur-mission-sec {
        padding: 60px 0;
    }
    
    .ayur-manufacturing-sec {
        padding: 60px 0;
    }
    
    .ayur-productstory-content {
        padding: 25px;
    }
}


/**footer logo **/

.ayur-footer-logo{

  max-width:150px;
  height:auto;

}

@media (max-width: 768px) {
    .ayur-footer-logo{

  max-width:100px;


}
}


/***********888shop page new code *************/

/* Price Filter Styles */
.ayur-price-filter {
    padding-bottom: 20px;
}

.ayur-price-range {
    padding: 15px 0;
}

.ayur-price-range input[type="range"] {
    width: 100%;
    height: 6px !important;
    background: linear-gradient(to right, var(--ayur-primary-color) 0%, var(--ayur-primary-color) 50%, #e1f0ef 50%, #e1f0ef 100%);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    margin: 10px 0;
}

.ayur-price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ayur-primary-color);
    cursor: pointer;
    border: 3px solid var(--ayur-white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ayur-price-range input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ayur-primary-color);
    cursor: pointer;
    border: 3px solid var(--ayur-white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ayur-price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ayur-banheading-color);
}

.ayur-filter-btn {
    width: 100%;
    margin-top: 15px;
    min-width: auto;
}

/* Stock Filter Styles */
.ayur-stock-filter {
    padding-bottom: 20px;
}

.ayur-stock-options {
    padding: 10px 0;
}

.ayur-checkbox-label {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--ayur-banheading-color);
    transition: all 0.3s ease;
}

.ayur-checkbox-label:hover {
    color: var(--ayur-primary-color);
}

.ayur-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0 !important;
    width: 0 !important;
}

.ayur-checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--ayur-white-color);
    border: 2px solid var(--ayur-borderbox-color);
    border-radius: 4px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.ayur-checkbox-label:hover .ayur-checkmark {
    border-color: var(--ayur-primary-color);
}

.ayur-checkbox-label input:checked ~ .ayur-checkmark {
    background-color: var(--ayur-primary-color);
    border-color: var(--ayur-primary-color);
}

.ayur-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ayur-checkbox-label input:checked ~ .ayur-checkmark:after {
    display: block;
}

.ayur-count {
    margin-left: auto;
    color: var(--ayur-text-color);
    font-size: 14px;
}

/***review section ***/

/*reset base styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Product Review Section */
.product-review-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5f7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top:50px;
}

.product-review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(23, 162, 184, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(205, 137, 115, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Review Header */
.review-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.review-header h5 {
    color: #17a2b8;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-header h3 {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Review Slider Wrapper */
.review-slider-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 50px;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(23, 162, 184, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Product Info */
.product-info {
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.product-info h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 3px;
}

.rating .star {
    color: #ffc107;
    font-size: 18px;
}

.rating .star.half {
    position: relative;
    color: #e0e0e0;
}

.rating .star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ffc107;
}

/* Review Text */
.review-text {
    flex-grow: 1;
    margin-bottom: 25px;
}

.review-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Reviewer Info */
.reviewer-info {
    margin-top: auto;
}

.reviewer-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar svg {
    display: block;
}

.reviewer-name-date h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.review-date {
    color: #17a2b8;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.review-date::before {
    content: '✓';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #17a2b8;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #17a2b8;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
    fill: white;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    transition: all 0.3s ease;
}

/* Write Review Section */
.write-review-section {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.write-review-btn {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.write-review-btn:hover {
    background: linear-gradient(135deg, #138496 0%, #0f6674 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.write-review-btn:active {
    transform: translateY(0);
}

.write-review-btn svg {
    transition: transform 0.3s ease;
}

.write-review-btn:hover svg {
    transform: rotate(15deg);
}

/* Swiper Overrides */
.swiper-wrapper {
    padding-bottom: 20px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-header h3 {
        font-size: 32px;
    }
    
    .review-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .product-review-section {
        padding: 60px 0;
    }
    
    .review-header {
        margin-bottom: 40px;
    }
    
    .review-header h5 {
        font-size: 14px;
    }
    
    .review-header h3 {
        font-size: 28px;
    }
    
    .review-slider-wrapper {
        padding: 0 45px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .product-info h4 {
        font-size: 18px;
    }
    
    .review-text p {
        font-size: 14px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 28px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .product-review-section {
        padding: 40px 0;
    }
    
    .review-header h3 {
        font-size: 24px;
    }
    
    .review-slider-wrapper {
        padding: 0 40px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .write-review-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

}

/* Floating contact & AI chat */
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-actions .fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    background: #1f7a52;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.floating-actions .fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    filter: brightness(1.03);
}

.floating-actions .fab-call {
    background: linear-gradient(135deg, #ff7043, #e65100);
}

.floating-actions .fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-actions .fab-chat {
    background: linear-gradient(135deg, #0d8f9e, #0b6a8a);
    position: relative;
    overflow: hidden;
}

.chat-icon-animated {
    width: 30px;
    height: 30px;
    position: relative;
    display: grid;
    place-items: center;
}

.chat-icon-animated::before,
.chat-icon-animated::after {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(13, 143, 158, 0.35);
    animation: chatPulse 1.8s infinite;
    z-index: 0;
}

.chat-icon-animated::after {
    animation-delay: 0.5s;
}

.chat-icon-animated svg {
    position: relative;
    z-index: 1;
    animation: floatWiggle 1.4s ease-in-out infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes floatWiggle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.assistant-chat {
    position: fixed;
    right: 20px;
    bottom: 95px;
    width: 360px;
    max-width: calc(100vw - 30px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    border: 1px solid #e9e5df;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1195;
    overflow: hidden;
}

.assistant-chat.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1100;
}

.chat-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.assistant-chat__header {
    background: linear-gradient(135deg, #0d8f9e, #0b6a8a);
    color: #ffffff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.assistant-chat__header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.assistant-chat__header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.assistant-chat__close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.assistant-chat__close:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: rotate(4deg);
}

.assistant-chat__body {
    padding: 16px;
    max-height: 54vh;
    overflow-y: auto;
    background: #f8f5f1;
}

.assistant-chat__message {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    max-width: 90%;
    line-height: 1.5;
    font-size: 14px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.assistant-chat__message.bot {
    background: #e8f6f8;
    border: 1px solid #c7e9ed;
    color: #0b6a8a;
}

.assistant-chat__message.user {
    background: #0d8f9e;
    color: #ffffff;
    margin-left: auto;
}

.assistant-chat__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.assistant-chat__quick button {
    border: 1px solid #d7ccc8;
    background: #ffffff;
    color: #3f2d20;
    border-radius: 18px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.assistant-chat__quick button:hover {
    color: #0d8f9e;
    border-color: #0d8f9e;
    transform: translateY(-1px);
}

.assistant-chat__form {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid #e9e5df;
    background: #ffffff;
}

.assistant-chat__form input {
    flex: 1;
    border: 1px solid #d7ccc8;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.assistant-chat__form input:focus {
    border-color: #0d8f9e;
    box-shadow: 0 0 0 3px rgba(13, 143, 158, 0.12);
}

.assistant-chat__form button {
    border: none;
    background: linear-gradient(135deg, #0d8f9e, #0b6a8a);
    color: #ffffff;
    border-radius: 12px;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 70px;
}

.assistant-chat__form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(13, 143, 158, 0.26);
}

.assistant-chat__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.assistant-chat__tag {
    background: #fff;
    border: 1px dashed #c7e9ed;
    color: #0b6a8a;
    font-size: 11px;
    border-radius: 10px;
    padding: 5px 8px;
}

@media (max-width: 768px) {
    .floating-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

  .assistant-chat {
      width: calc(100vw - 18px);
      right: 9px;
      bottom: 85px;
  }
}

@media (max-width: 990px) {
    .floating-actions {
      right: 16px;
      bottom: 100px;
      gap: 10px;
  }

}
/***Home page category section heading ***/

.ayur-cat-head{
    text-align:center;

}

/******Homepage categories section 2********/


/* ============================================
   LAYER 2 - WELLNESS CATEGORIES (THEME MATCHED & COMPACT)
   ============================================ */

.ayur-wellness-categories-sec {
    padding: 20px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Horizontal Scroll Container */
.ayur-wellness-scroll-container {
    position: relative;
    max-width: 1300px;
    margin: 20px auto 0;
    padding: 0 60px;
}

.ayur-wellness-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.ayur-wellness-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Card Styling - SMALLER SIZE */
.ayur-wellness-card-scroll {
    position: relative;
    min-width: 180px;  /* Reduced from 320px */
    width: 150px;      /* Reduced from 320px */
    height: 270px;     /* Reduced from 400px */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.ayur-wellness-card-scroll::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

/* THEME COLOR GRADIENTS */
.ayur-wellness-pediatric::before {
    background-image: linear-gradient(135deg, rgba(255, 183, 77, 0.85), rgba(255, 152, 0, 0.9)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/><circle cx="150" cy="150" r="30" fill="rgba(255,255,255,0.1)"/></svg>');
}

.ayur-wellness-women::before {
    background-image: linear-gradient(135deg, rgba(233, 30, 99, 0.85), rgba(194, 24, 91, 0.9)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/><circle cx="150" cy="150" r="30" fill="rgba(255,255,255,0.1)"/></svg>');
}

.ayur-wellness-men::before {
    background-image: linear-gradient(135deg, rgba(2, 115, 119, 0.9), rgba(3, 152, 158, 0.95)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/><circle cx="150" cy="150" r="30" fill="rgba(255,255,255,0.1)"/></svg>');
}

.ayur-wellness-geriatric::before {
    background-image: linear-gradient(135deg, rgba(109, 76, 65, 0.85), rgba(93, 64, 55, 0.9)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/><circle cx="150" cy="150" r="30" fill="rgba(255,255,255,0.1)"/></svg>');
}

.ayur-wellness-general::before {
    background-image: linear-gradient(135deg, rgba(56, 142, 60, 0.85), rgba(46, 125, 50, 0.9)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/><circle cx="150" cy="150" r="30" fill="rgba(255,255,255,0.1)"/></svg>');
}

.ayur-wellness-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.ayur-wellness-card-scroll:hover::before {
    transform: scale(1.08);
}

.ayur-wellness-card-scroll:hover .ayur-wellness-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
}

.ayur-wellness-card-scroll:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(2, 115, 119, 0.2);
}

.ayur-wellness-content {
    position: relative;
    z-index: 3;
    padding: 10px; 
    text-align:center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    color: white;
    gap:12px;
}

.ayur-wellness-badge {
    width: 55px;   /* Reduced from 70px */
    height: 55px;  /* Reduced from 70px */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.4s ease;
    overflow:hidden;
}

.ayur-wellness-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ayur-wellness-badge svg {
    width: 28px;   /* Reduced from 40px */
    height: 28px;
}

.ayur-wellness-card-scroll:hover .ayur-wellness-badge {
    transform: scale(1.12) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.ayur-wellness-content h4 {
    font-size: 20px;  /* Reduced from 24px */
    font-weight: 700;
    margin-bottom: 6px;
    color: #fbf6f6;
    font-family: "Archivo", sans-serif;
}

.ayur-wellness-content p {
    font-size: 13px;  /* Reduced from 14px */
    opacity: 0.95;
    margin-bottom: 10px;
    color: #fbf6f6;
    font-family: "Inter", sans-serif;
}

.ayur-wellness-count {
    display: inline-block;
    font-size: 11px;  /* Reduced from 12px */
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;  /* Reduced padding */
    border-radius: 12px;
    margin-bottom: 12px;
    width: fit-content;
    font-family: "Inter", sans-serif;
}

.ayur-wellness-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fbf6f6;
    color: #2d4a45;
    padding: 10px 20px;  /* Reduced from 12px 24px */
    border-radius: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    font-size: 12px;
    font-family: "Inter", sans-serif;
}

.ayur-wellness-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    background: #027377;
    color: #fbf6f6;
}

/* Navigation Arrows - THEME COLORED */
.ayur-wellness-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;   /* Slightly smaller */
    height: 46px;
    background: rgba(2, 115, 119, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(2, 115, 119, 0.3);
}

.ayur-wellness-nav:hover {
    background: #027377;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 115, 119, 0.4);
}

.ayur-wellness-prev {
    left: 0;
}

.ayur-wellness-next {
    right: 0;
}

.ayur-wellness-nav svg path {
    fill: #fbf6f6;
}

/* Scroll Indicator Dots - THEME COLORED */
.ayur-wellness-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.ayur-wellness-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4ebe9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ayur-wellness-dot.active {
    background: #027377;
    width: 30px;
    border-radius: 5px;
}

.ayur-wellness-dot:hover {
    background: #03989e;
}

/* Desktop: Show 4 cards (more compact) */
@media (min-width: 1200px) {
    .ayur-wellness-card-scroll {
        min-width: calc((100% - 310px) / 4);
        width: calc((100% - 310px) / 4);
    }
}

/* Large tablets: Show 3 cards */
@media (min-width: 992px) and (max-width: 1199px) {
    .ayur-wellness-card-scroll {
        min-width: calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3);
    }
}

/* Tablet: Show 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
    .ayur-wellness-scroll-container {
        padding: 0 50px;
    }
    
    .ayur-wellness-card-scroll {
        min-width: 250px;
        width: 250px;
        height: 300px;
    }
}

/* Mobile: Show 1 card */
@media (max-width: 767px) {
    .ayur-wellness-scroll-container {
        padding: 0 40px;
    }
    
    .ayur-wellness-card-scroll {
        min-width: 240px;
        width: 240px;
        height: 290px;
    }
    
    .ayur-wellness-content {
        padding: 20px;
    }
    
    .ayur-wellness-content h4 {
        font-size: 18px;
    }
    
    .ayur-wellness-badge {
        width: 50px;
        height: 50px;
    }
    
    .ayur-wellness-badge svg {
        width: 26px;
        height: 26px;
    }
    
    .ayur-wellness-nav {
        width: 40px;
        height: 40px;
    }
    
    .ayur-wellness-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* Smooth scrolling animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ayur-wellness-card-scroll {
    animation: slideIn 0.5s ease-out forwards;
}

.ayur-wellness-card-scroll:nth-child(1) { animation-delay: 0.1s; }
.ayur-wellness-card-scroll:nth-child(2) { animation-delay: 0.2s; }
.ayur-wellness-card-scroll:nth-child(3) { animation-delay: 0.3s; }
.ayur-wellness-card-scroll:nth-child(4) { animation-delay: 0.4s; }
.ayur-wellness-card-scroll:nth-child(5) { animation-delay: 0.5s; }






/**********Consultation pAage**********/

.row doctors-section h4 {
  text-align: center;
   margin-bottom: 40px; 
  font-size: 24px; 
  font-weight: 600; 
  color: #2d4a45;



}

.appointment-form-section{
/*  display:none;*/
  margin:60px 0;
}

.ayur-heading-wrap{
  margin-bottom:30px;
}

.selectedDoctorInfo{
  background:#e8f5f6;
  padding:15px;
  border-radius: 8px;
  margin-top:15px;


}

.consultation-type-section h5{
  margin-bottom:20px;
  color:#2d4a45;
  font-size:18px;
  font-weight:600;
}


/* Icon Styles */
.icon-inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.icon-inline-small {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.facility-icon {
    color: var(--ayur-primary-color);
    margin-bottom: 15px;
}

/* Hospital Info Card */
.ayur-hospital-info-card {
     background: linear-gradient(135deg, white 0%, teal 100%);
    border: 2px solid var(--ayur-primary-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(1, 35, 35, 0.1);   

    position: relative;
    overflow: hidden;
}

.ayur-hospital-info-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ayur-primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.hospital-tagline {
    color: #d4941f;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.hospital-details p {
    margin: 10px 0;
    font-size: 14px;
     color: var(--ayur-para-color);
    display: flex;
    align-items: center;
}

.hospital-details svg {
    color: var(--ayur-primary-color);
    margin-right: 8px;
    flex-shrink: 0;
}

.hospital-details a {
    color: var(--ayur-primary-color);
    font-weight: 600;
    text-decoration: none;
}

.hospital-details a:hover {
    text-decoration: underline;
}

.hospital-badge {
    text-align: center;
}

/* Doctor Card Styles */
.ayur-doctor-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
    border: 3px solid transparent;
     background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #b7ecf0 0%, #65dddd 50%, #a7a09d 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 15px;
    padding: 50px 25px;
    margin-bottom: 30px;
    box-shadow: 
        0 4px 20px rgba(3, 152, 158, 0.08),
        0 0 0 1px rgba(3, 152, 158, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--ayur-border-color);
    text-align: center;
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    height:100%;
}


.ayur-doctor-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(135deg, #87d6d8, #0cd5df, #e5d9d6);
    opacity: 0;
    z-index: -1;
    
    transition: opacity 0.4s ease;
}

.ayur-doctor-card:hover::after {
    opacity: 0.5;
}

.ayur-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(3, 152, 158, 0.18),
        0 0 0 3px rgba(3, 152, 158, 0.12),
        0 0 30px rgba(205, 137, 115, 0.1);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--ayur-primary-color);
}

.doctor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.doctor-badge span {
    background: linear-gradient(135deg, var(--ayur-primary-color), #03989e);
    color: var(--ayur-white-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-availability-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.availability-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.availability-badge.online {
    background: #e8f5e9;
    color: #2e7d32;
}

.availability-badge.offline {
    background: var(--ayur-primary-light);
    color: var(--ayur-banheading-color);
}

.doctor-avatar {
    margin: 0 auto 20px;
    position: relative;
    display: inline-block;
}


.doctor-avatar::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03989e, #CD8973, #d4941f, #03989e);
    opacity: 0.25;
    z-index: -1;
    animation: rotateGradient 8s linear infinite;
}

.doctor-avatar::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #03989e 0%,
        #027377 25%,
        #CD8973 50%,
        #d4941f 75%,
        #03989e 100%
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.ayur-doctor-card:hover .doctor-avatar::after {
    opacity: 0.4;
    animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ayur-doctor-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ayur-heading-color);
    margin-bottom: 8px;
}

.doctor-qualification {
    color: var(--ayur-para-color);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-specialty {
   position: relative;
    padding-bottom: 18px;
    color: var(--ayur-primary-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;

    border-bottom: 1px solid var(--ayur-border-color);
}

.doctor-specialty::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #03989e, #CD8973, #d4941f);
    border-radius: 2px;
}

.doctor-description {
    color: var(--ayur-para-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

.doctor-select-btn {
    width: 100%;
    margin-top: auto;
     background: linear-gradient(135deg, #03989e 0%, #027377 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(3, 152, 158, 0.3);
}


.doctor-select-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.doctor-select-btn:hover::before {
    left: 100%;
}

.doctor-select-btn:hover {
    background: linear-gradient(135deg, #027377 0%, #015f63 100%);
    box-shadow: 
        0 6px 20px rgba(3, 152, 158, 0.4),
        0 0 20px rgba(205, 137, 115, 0.2);
    transform: translateY(-2px);
}
/* Consultation Type Selection */
.consultation-type-card {
    background: var(--ayur-white-color);
    border: 2px solid var(--ayur-border-color);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    height: 100%;
}

.consultation-type-card:hover {
    border-color: var(--ayur-primary-color);
    box-shadow: 0 5px 20px rgba(2, 115, 119, 0.1);
    transform: translateY(-3px);
}

.consultation-type-card.active {
    border-color: var(--ayur-primary-color);
    background: linear-gradient(135deg, var(--ayur-primary-light), var(--ayur-white-color));
    box-shadow: 0 5px 20px rgba(2, 115, 119, 0.15);
}

.consultation-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.consultation-type-card label {
    cursor: pointer;
    margin: 0;
}

.consultation-icon {
    color: var(--ayur-primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.consultation-type-card h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ayur-heading-color);
    margin-bottom: 10px;
    text-align: center;
}

.consultation-type-card > label > p {
    color: var(--ayur-para-color);
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.consultation-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.consultation-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ayur-para-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.consultation-features svg {
    color: #27ae60;
    flex-shrink: 0;
}

.consultation-fee {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--ayur-primary-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--ayur-border-color);
}

/* Appointment Form Styles */
.ayur-appointment-form-wrapper {
    background: var(--ayur-white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--ayur-primary-light);
}

.ayur-form-input {
    margin-bottom: 20px;
}

.ayur-form-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    font-size: 14px;
}

.ayur-form-input label span {
    color: #d9534f;
}

.ayur-form-input .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--ayur-border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--ayur-white-color);
    color: var(--ayur-heading-color);
}

.ayur-form-input .form-control:focus {
    outline: none;
    border-color: var(--ayur-primary-color);
    box-shadow: 0 0 0 3px rgba(2, 115, 119, 0.1);
}

.ayur-form-input .form-control:disabled {
    background-color: var(--ayur-testpara-bgcolor);
    cursor: not-allowed;
    color: var(--ayur-text-color);
}

.ayur-form-input .form-control::placeholder {
    color: var(--ayur-text-color);
}

.slot-help-text {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 12px;
    color: var(--ayur-para-color);
}

.ayur-note-box {
    background: #fff9e6;
    border-left: 4px solid #d4941f;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.ayur-note-box.online-note {
    background: var(--ayur-primary-light);
    border-left-color: var(--ayur-primary-color);
}

.ayur-note-box p {
    margin: 0;
    font-size: 13px;
    color: var(--ayur-para-color);
    display: flex;
    align-items: flex-start;
}

.ayur-note-box svg {
    color: #d4941f;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ayur-note-box.online-note svg {
    color: var(--ayur-primary-color);
}

#selectedDoctorInfo {
    font-size: 15px;
    line-height: 1.8;
}

#selectedDoctorInfo p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

#selectedDoctorInfo strong {
    color: var(--ayur-primary-color);
}

/* Button Styles */
.ayur-btn {
   /* padding: 12px 30px;
    border: none;
    border-radius: 8px;*/
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
   
}


.ayur-btn-primary {
    background: linear-gradient(135deg, var(--ayur-primary-color), #03989e);
    color: var(--ayur-white-color);
}

.ayur-btn-primary:hover {
    background: linear-gradient(135deg, #015f63, #027b80);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 115, 119, 0.3);
}

.ayur-btn-primary:disabled {
    background: var(--ayur-border-color);
    cursor: not-allowed;
    transform: none;
}

.ayur-btn-outline {
    background: transparent;
    color: var(--ayur-white-color);
    border: 2px solid var(--ayur-primary-color);
}

.ayur-btn-outline:hover {
    background: var(--ayur-primary-color);
    color: var(--ayur-white-color);
}

/* Benefit Box Styles */
.ayur-benefit-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: var(--ayur-primary-light);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--ayur-borderbox-color);
    display:flex;
    flex-direction:column;
    height:100%;
}

.ayur-benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(179, 222, 222);
    border-color: var(--ayur-primary-color);
    background:var(--ayur-borderbox-color);
}

.benefit-icon {
    margin-bottom: 20px;
}

.ayur-benefit-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    margin-bottom: 12px;
}

.ayur-benefit-box p {
    color: var(--ayur-para-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Facilities Card Styles */
.ayur-facility-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--ayur-checkbox-label-color);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--ayur-borderbox-color);
    transition: all 0.3s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.ayur-facility-card:hover {
    background: var(--ayur-white-color);
    box-shadow: 0 5px 20px rgba(2, 115, 119, 0.1);
    border-color: var(--ayur-primary-color);
}

.ayur-facility-card h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    margin-bottom: 10px;
}

.ayur-facility-card p {
    font-size: 13px;
    color: var(--ayur-para-color);
    margin: 0;
}

/* Form Response Styles */
#formResponse.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formResponse.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Consultation Type Section Heading */
.consultation-type-section h5 {
    color: var(--ayur-heading-color);
}

/* Appointment Form Heading */
.ayur-heading-wrap h5 {
    color: var(--ayur-primary-color);
    font-weight: 600;
}

.ayur-heading-wrap h3 {
    color: var(--ayur-heading-color);
    font-weight: 700;
}

/* Selected Doctor Info Box */
#selectedDoctorInfo {
    background: var(--ayur-primary-light);
}

/* Why Choose Section Heading */
.ayur-consult-benefits h4,
.ayur-facilities-section h4 {
    color: var(--ayur-heading-color);
}

/* Intro Section */
.ayur-consult-intro h5 {
    color: var(--ayur-primary-color);
    font-weight: 600;
}

.ayur-consult-intro h3 {
    color: var(--ayur-banheading-color);
    font-weight: 700;
}

.ayur-intro-text {
    color: var(--ayur-para-color);
}

/* Responsive */
@media (max-width: 992px) {
    .ayur-doctor-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .ayur-hospital-info-card {
        padding: 20px;
    }
    
    .ayur-hospital-info-card h4 {
        font-size: 20px;
    }
    
    .ayur-appointment-form-wrapper {
        padding: 25px 20px;
    }
    
    .ayur-benefit-box,
    .ayur-facility-card {
        margin-bottom: 40px;
    }
    
    .hospital-badge {
        margin-top: 20px;
    }
    
    .consultation-type-card {
        margin-bottom: 15px;
    }
}

/* Add spinner animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Filter Section Styles */
.ayur-filter-wrapper {
    background: var(--ayur-white-color);
    border: 2px solid var(--ayur-borderbox-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ayur-border-color);
}

.filter-header h5 {
    margin: 0;
    color: var(--ayur-heading-color);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.ayur-btn-text {
    background: none;
    border: none;
    color: var(--ayur-primary-color);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ayur-btn-text:hover {
    background: var(--ayur-primary-light);
}

.filter-controls {
    margin-bottom: 15px;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    font-size: 13px;
}

.filter-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--ayur-border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--ayur-heading-color);
    background: var(--ayur-white-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--ayur-primary-color);
    box-shadow: 0 0 0 3px rgba(2, 115, 119, 0.1);
}

.filter-results-info {
    padding-top: 15px;
    border-top: 1px solid var(--ayur-border-color);
}

.filter-results-info p {
    margin: 0;
    color: var(--ayur-para-color);
    font-size: 14px;
}

.filter-results-info strong {
    color: var(--ayur-primary-color);
    font-weight: 700;
}

/* Availability Status Badges */
.doctor-availability-status {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-badge.available-now {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.available-now svg {
    color: #2e7d32;
    animation: pulse 2s infinite;
}

.status-badge.available-tomorrow {
    background: #fff3e0;
    color: #e65100;
}

.status-badge.available-tomorrow svg {
    color: #e65100;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hidden class for filtering */
.doctor-card-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .ayur-filter-wrapper {
        padding: 20px 15px;
    }
}


/* ============================================
   AYURVEDIC CONSULTATION PAGE ENHANCEMENTS
   ============================================ */

/* Add subtle Ayurvedic pattern background */
.ayur-consultation-wrapper {
  
    background-size: cover, 100px 100px;
}



.ayur-hospital-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
 .ayur-hospital-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
  background: linear-gradient(90deg, 
    #027377 0%, 
    #c17855 25%, 
    #5d8a66 50%, 
    #c17855 75%, 
    #027377 100%
);
}

}

.ayur-hospital-info-card::after {
    content: '🌿';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Ayurvedic leaf decorations for doctor cards */
.ayur-doctor-card::before {
    content: '';
    position: absolute;
   top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(3, 152, 158, 0.08) 0%, transparent 100%);
    border-radius: 15px 0 40px 0;
    pointer-events: none;
}


.ayur-doctor-card .doctor-select-btn::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(205, 137, 115, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Name Highlight on Hover */
.ayur-doctor-card:hover h5 {
    background: linear-gradient(135deg, #03989e, #CD8973);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Qualification with Subtle Color */
.doctor-qualification {
    background: linear-gradient(90deg, rgba(205, 137, 115, 0.1), rgba(3, 152, 158, 0.05));
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Icon Badge Glow Effect */
.ayur-doctor-card:hover .doctor-avatar svg circle:first-child {
    fill: rgba(3, 152, 158, 0.25);
    filter: drop-shadow(0 0 8px rgba(3, 152, 158, 0.4));
}

.ayur-doctor-card:hover .doctor-avatar svg path {
    fill: #03989e;
    filter: drop-shadow(0 2px 4px rgba(3, 152, 158, 0.3));
}

/* Enhanced doctor avatar with Ayurvedic border */
.doctor-avatar {
    position: relative;
    padding: 5px;
}

.doctor-avatar::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #027377, #03989e, #d4941f);
    opacity: 0.15;
    z-index: -1;
}

/* Consultation type cards with Ayurvedic symbols */
.consultation-type-card::after {
    content: '☸';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 60px;
    opacity: 0.03;
    color: var(--ayur-primary-color);
}

.consultation-type-card.active::after {
    opacity: 0.08;
    animation: rotateSymbol 20s linear infinite;
}

@keyframes rotateSymbol {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Add Ayurvedic mandala pattern to form wrapper */
.ayur-appointment-form-wrapper {
    background: 
        radial-gradient(circle at top right, rgba(2, 115, 119, 0.03) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(212, 148, 31, 0.03) 0%, transparent 50%),
        white;
}

/* Benefit boxes with traditional Ayurvedic colors */
.ayur-benefit-box {
    position: relative;
    overflow: hidden;
}

.ayur-benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ayur-primary-color), transparent);
}

.ayur-benefit-box:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, rgba(2, 115, 119, 0.1), rgba(2, 115, 119, 0.05));
    border-radius: 50%;
    padding: 15px;
}

.ayur-benefit-box:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, rgba(212, 148, 31, 0.1), rgba(212, 148, 31, 0.05));
    border-radius: 50%;
    padding: 15px;
}

.ayur-benefit-box:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, rgba(125, 60, 152, 0.1), rgba(125, 60, 152, 0.05));
    border-radius: 50%;
    padding: 15px;
}

.ayur-benefit-box:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.05));
    border-radius: 50%;
    padding: 15px;
}

/* Traditional Ayurvedic color accents for facilities */
.ayur-facility-card {
    border-left: 4px solid var(--ayur-primary-color);
    transition: all 0.3s ease;
}

.ayur-facility-card:hover {
    border-left-width: 6px;
    border-left-color: #d4941f;
}

/* Add subtle herbal pattern to section headings */
.ayur-heading-wrap h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--ayur-primary-color), #d4941f, #7d3c98);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Filter section with Ayurvedic aesthetics */
.ayur-filter-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 246, 0.3));
}

.ayur-filter-wrapper::before {
    content: '🌿';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 35px;
    opacity: 0.08;
}

/* Traditional Ayurvedic badge styling */
.doctor-badge span {
    background: linear-gradient(135deg, #03989e 0%, #027377 50%, #015f63 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(2, 115, 119, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.doctor-badge span::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
/* Lotus pattern for selected doctor info */
#selectedDoctorInfo {
    background: 
        radial-gradient(circle at top left, rgba(2, 115, 119, 0.08) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(212, 148, 31, 0.05) 0%, transparent 40%),
        var(--ayur-primary-light);
    border-left: 4px solid var(--ayur-primary-color);
}

/* Add Ayurvedic scrollwork decoration */
.consultation-type-section {
    position: relative;
}

.consultation-type-section::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 20px;
    height: 100px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 100"><path d="M10 10 Q5 30 10 50 Q15 70 10 90" stroke="rgba(2,115,119,0.15)" stroke-width="2" fill="none"/></svg>');
    transform: translateY(-50%);
    opacity: 0.5;
}

/* Traditional herb symbols for form sections */
.ayur-note-box {
    position: relative;
    padding-left: 25px;
}

.ayur-note-box::before {
    content: '⚕';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    opacity: 0.3;
    color: var(--ayur-primary-color);
}

.ayur-note-box.online-note::before {
    content: '🌿';
}

/* Ayurvedic color palette for availability badges */
.availability-badge.online {
     background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.35);
    position: relative;
}


.availability-badge.online::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
}

.availability-badge.offline {
    background: linear-gradient(135deg, #03989e 0%, #027377 100%);
    box-shadow: 0 4px 12px rgba(3, 152, 158, 0.35);
}

.availability-badge.offline {
    background: linear-gradient(135deg, var(--ayur-primary-light), #b2ebf2);
    border: 1px solid #4dd0e1;
}

/* Traditional mandala decoration for buttons */
.ayur-btn-primary {
    position: relative;
    overflow: hidden;
}

.ayur-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ayur-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .consultation-type-section::before {
        display: none;
    }
    
    .ayur-doctor-card::before {
        opacity: 0.2;
    }
}



/* Health Concern Categories Section */
.ayur-health-concern-sec {
    padding: 20px 0;
  background: #faf7f2;
}

.ayur-health-concern-sec .ayur-heading-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.ayur-health-concern-sec .ayur-heading-wrap h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ayur-heading-color);
    margin-bottom: 15px;
}

.ayur-health-concern-sec .ayur-category-subtitle {
    font-size: 16px;
    color: var(--ayur-para-color);
    margin: 0;
}

.ayur-health-concern-sec .ayur-category-subtitle strong {
    color: var(--ayur-primary-color);
}

/* Grid Layout */
.ayur-health-concerns-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.ayur-concern-category {
  background: linear-gradient(135deg, #f4f9f4, #e8f5e9);
    border-radius: 16px;
    padding: 30px 20px 25px;
    box-shadow: 0 2px 12px rgba(2, 115, 119, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--ayur-border-color);
    position: relative;
    overflow: hidden;
}.ayur-concern-category:nth-child(1) {
    background: #f5e6d3; /* Warm sand/beige */
}

.ayur-concern-category:nth-child(2) {
    background: #d4e5d4; /* Sage green */
}

.ayur-concern-category:nth-child(3) {
    background: #e8dcc8; /* Light clay/terracotta */
}

.ayur-concern-category:nth-child(4) {
    background: #c9d4c3; /* Moss green */
}

.ayur-concern-category:nth-child(5) {
    background: #dfd5c5; /* Earthy taupe */
}
.ayur-concern-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ayur-primary-color), var(--ayur-primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ayur-concern-category:hover::before {
    transform: scaleX(1);
}

.ayur-concern-category:hover {
    box-shadow: 0 8px 24px rgba(2, 115, 119, 0.15);
    transform: translateY(-8px);
    border-color: var(--ayur-primary-color);
}

/* Category Icons */
.ayur-category-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ayur-category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ayur-category-icon.ayur-icon-digestive {
    background: linear-gradient(135deg, #FEF3E2, #FAD4A5);
    color: #D97706;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.ayur-category-icon.ayur-icon-respiratory {
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #0284C7;
    border-radius: 20% 80% 55% 45% / 45% 25% 75% 55%;
}

.ayur-category-icon.ayur-icon-hairskin {
    background: linear-gradient(135deg, #FCE7F3, #F9A8D4);
    color: #DB2777;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.ayur-category-icon.ayur-icon-women {
    background: linear-gradient(135deg, #FEE2E2, #FCA5A5);
    color: #DC2626;
    border-radius: 50% 50% 0 50%;
}

.ayur-category-icon.ayur-icon-joint {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    color: #4F46E5;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.ayur-concern-category:hover .ayur-category-icon {
    transform: rotate(360deg) scale(1.1);
}

.ayur-concern-category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ayur-banheading-color);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ayur-borderbox-color);
}

/* Concern Buttons */
.ayur-concern-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.ayur-concern-btn {
    background: #a8cfc9; /* Muted teal/sage */
    color: #2d5f5a;
     border: 2px solid #a8cfc9;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
}

.ayur-concern-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--ayur-primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.ayur-concern-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ayur-concern-btn:hover {
    background: #2d5f5a;
    color: #ffffff;
    border-color: #2d5f5a;
    transform: scale(1.05);
}

.ayur-concern-btn span {
    position: relative;
    z-index: 1;
}

/* Different Button Shapes */
.ayur-concern-btn.ayur-shape-pill {
    border-radius: 50px;
}

.ayur-concern-btn.ayur-shape-round {
    border-radius: 12px;
}

.ayur-concern-btn.ayur-shape-hex {
    border-radius: 4px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.ayur-concern-btn.ayur-shape-hex:hover {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ayur-health-concerns-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ayur-health-concerns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ayur-health-concern-sec .ayur-heading-wrap h3 {
        font-size: 28px;
    }
    
    .ayur-health-concern-sec {
        padding: 40px 0;
    }
    
    .ayur-category-icon {
        width: 60px;
        height: 60px;
    }
    
    .ayur-category-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .ayur-concern-category-title {
        font-size: 16px;
    }
    
    .ayur-concern-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .ayur-health-concerns-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ayur-concern-category {
        padding: 25px 15px 20px;
    }
}

.ayur-concern-btn span {
    position: relative;
    z-index: 1;
    display: block;  /* ADD THIS LINE */
}


/***shop page********/

/* ============================================
   CIRCULAR MEDICINE BADGES
   ============================================ */

/* Option 1 & 2: Basic Circular Badge */
.ayur-medicine-circle {
    position: absolute;
    top: 50px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.ayur-medicine-circle:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Classical Badge - Gold/Ancient Color */
/*.ayur-circle-classical {
    background: linear-gradient(135deg, #d4941f 0%, #f4c430 100%);
}

.ayur-circle-classical svg {
    color: #fff;
}

.ayur-circle-classical span {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    font-family: "Archivo", sans-serif;
} */

/* Proprietary Badge - Modern Purple/Blue */
.ayur-circle-proprietary {
    background: linear-gradient(135deg, #7d3c98 0%, #a569bd 100%);
}

.ayur-circle-proprietary svg {
    color: #fff;
}

.ayur-circle-proprietary span {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    font-family: "Archivo", sans-serif;
}

/* Animated Pulse Effect */
.ayur-medicine-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* Product Detail Page - Larger Badge */
.ayur-medicine-type-badge .ayur-medicine-circle {
    position: relative;
    top: auto;
    left: auto;
    width: 60px;
    height: 60px;
    border-width: 4px;
}

.ayur-medicine-type-badge .ayur-medicine-circle svg {
    width: 32px;
    height: 32px;
}

.ayur-medicine-type-badge .ayur-medicine-circle span {
    font-size: 28px;
}

.ayur-medicine-type-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ayur-badge-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--ayur-heading-color);
}

.ayur-badge-description {
    font-size: 13px;
    color: var(--ayur-para-color);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .ayur-medicine-circle {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
    
    .ayur-medicine-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .ayur-medicine-circle span {
        font-size: 16px;
    }
}

/* ============================================
   PRODUCT ENHANCEMENTS - SIZE, BADGES, DOSAGE
   ============================================ */

/* Medicine Type Badges */
.ayur-medicine-badge {
    position: absolute;
    top: 50px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ayur-badge-classical {
       background: linear-gradient(135deg, #d4941f 0%, #c17855 100%);
    box-shadow: 0 4px 12px rgba(212, 148, 31, 0.4);

    color: #fff;
   
}

.ayur-badge-proprietary {
       background: linear-gradient(135deg, #7d3c98 0%, #a569bd 100%);
    box-shadow: 0 4px 12px rgba(125, 60, 152, 0.4);
    
    color: #fff;
  
}

.ayur-medicine-type-badge {
    margin-bottom: 15px;
}

.ayur-medicine-type-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

/* Size Selector - Shop Page */
.ayur-size-selector {
    margin: 15px 0;
}

.ayur-size-selector label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    margin-bottom: 8px;
}

.ayur-size-options {
    display: flex;
    gap: 8px;
}

.ayur-size-btn {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid var(--ayur-border-color);
    background: var(--ayur-white-color);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ayur-banheading-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ayur-size-btn:hover,
.ayur-size-btn.active {
    border-color: var(--ayur-primary-color);
    background: var(--ayur-primary-light);
    color: var(--ayur-primary-color);
}

/* Enhanced Price Display */
.ayur-price-wrapper {
    display: flex;
   align-items: baseline !important;
    gap: 10px;
    flex-wrap: wrap;
}

.ayur-current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--ayur-primary-color);
    margin: 0;
     font-family: "Inter", sans-serif;
}
.ayur-current-price,
.ayur-current-price span {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.ayur-original-price {
    font-size: 18px !important;
    color: #999;
    margin: 0;
     font-family: "Inter", sans-serif;
}

.ayur-original-price del {
    font-size: 18px !important;
}
.ayur-discount-badge {
    margin-top: px;
    padding: 4px 10px;
    background: #28a745;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    white-space:nowrap;
     font-weight: 600;
}

/* Product Detail Page Enhancements */
.ayur-price-detail {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ayur-price-detail .ayur-current-price {
    font-size: 32px;
}

.ayur-price-detail .ayur-original-price {
    font-size: 20px;
}

.ayur-discount-info {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Size Selection - Detail Page */
.ayur-product-options {
    margin: 25px 0;
}

.ayur-option-group {
    margin-bottom: 20px;
}

.ayur-option-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    margin-bottom: 12px;
}

.ayur-size-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ayur-size-option {
    position: relative;
    padding: 15px;
    border: 2px solid var(--ayur-border-color);
    background: var(--ayur-white-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ayur-size-option:hover,
.ayur-size-option.active {
    border-color: var(--ayur-primary-color);
    background: var(--ayur-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 115, 119, 0.15);
}

.size-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--ayur-banheading-color);
}

.size-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--ayur-primary-color);
}

.size-popular,
.size-save {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4941f;
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.size-save {
    background: #27ae60;
}

/* Dosage & Anupana Information */
.ayur-usage-info {
    background: var(--ayur-primary-lightcolor);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    display: grid;
    gap: 15px;
}

.ayur-info-card {
    background: var(--ayur-white-color);
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid var(--ayur-primary-color);
}

.ayur-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ayur-info-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ayur-heading-color);
    margin: 0;
}

.ayur-info-content p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--ayur-para-color);
    line-height: 1.6;
}

.ayur-info-content strong {
    color: var(--ayur-primary-color);
    font-weight: 600;
}

/* Buy Now Button */
.ayur-btn-buynow {
    background: linear-gradient(135deg, #027377 0%, #03989e 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(2, 115, 119, 0.3);
    flex: 1;

}

.ayur-btn-buynow:hover {
  background: linear-gradient(135deg, #015f63 0%, #027b80 100%) !important;
    box-shadow: 0 6px 16px rgba(2, 115, 119, 0.4);
    transform: translateY(-2px);
}

.ayur-btn-buynow::after {
    background-color: #015f63 !important;
}
.ayur-btn-buynow span {
    color: white !important;
}


/* Two Button Layout */
.ayur-shopsin-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.ayur-btn-secondary {
    background: transparent;
    border: 2px solid var(--ayur-primary-color);
    color: var(--ayur-primary-color);
}

.ayur-btn-secondary:hover {
    background: var(--ayur-primary-color);
    color: var(--ayur-white-color);
}

/* Responsive */
@media (max-width: 768px) {
    .ayur-size-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .ayur-size-options {
        flex-direction: column;
    }
    
    .ayur-price-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ayur-shopsin-btn {
        grid-template-columns: 1fr;
    }
}


/***products in shop page-same height***/

/* Make product grid use flexbox */

.ayur-shopsin-products {
    display: flex;
    flex-direction: column;    
     min-height: 70vh;
}
/* Control full shop page height */
.ayur-shopsin-products,
.ayur-shop-sidebar {
    height: auto;
}
.ayur-shopsin-products .row {
     flex-grow: 1;   
      align-items: stretch;   
}

.ayur-shopsin-products .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Make product cards fill the column height */
.ayur-tpro-box {
    display: flex;
    flex-direction: column;
    height: auto;
   
}

/* Make image container consistent */
.ayur-tpro-img {
    height: 250px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

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

/* Make text section flexible */
.ayur-tpro-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px 10px 10px;
}


.ayur-tpro-text h3 {
      min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;  
    margin-bottom: 10px;
}

/* Size selector consistent height */
.ayur-size-selector {
    margin: 15px 0;
    min-height: 70px; /* Adjust if needed */
}

/* Price section */
.ayur-tpro-price {
      margin-top: auto;
    margin-bottom: 10px;
}

/* Push buttons to bottom */
.ayur-tpro-btn {
  display:flex;
  gap:10px;
  margin-top: auto;
}


/* ============================================
   STICKY SIDEBAR - NO SCROLL VERSION
   ============================================ */

/* Sticky behavior for desktop */
@media (min-width: 992px) {
    .ayur-shop-sidebar {
        position: sticky;
        top: 120px;
        background-color: var(--ayur-white-color);
        box-shadow: 3px 4px 29.6px 0px #0000000F;
        border-radius: 10px;
        padding: 25px;
        transition: box-shadow 0.3s ease;
          max-height: calc(128vh - 10px);
        overflow-y: auto;
        height:100%;
        align-self:flex-start;
        
    }
     .col-lg-4{
        display: flex;
    }

    .col-lg-4 .ayur-shop-sidebar {
        flex: 1;
    }
    
    /* Enhance shadow when sticky */
    .ayur-shop-sidebar.is-sticky {
        box-shadow: 3px 4px 40px 0px #0000001A;
    }
}

/* Mobile - normal flow */
@media (max-width: 991px) {
    .ayur-shop-sidebar {
        position: relative;
        margin-bottom: 30px;
    }
}


/*******filter btn shop page mobile*********/

/* ============================================
   MOBILE FILTER SIDEBAR
   ============================================ */

/* Mobile Filter Button - Hidden on desktop */
.ayur-mobile-filter-btn {
    margin-bottom:20px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.ayur-btn-filter {
    background: linear-gradient(135deg, var(--ayur-primary-color), #03989e);
    color: var(--ayur-white-color);
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(2, 115, 119, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ayur-btn-filter:hover,
.ayur-btn-filter:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(2, 115, 119, 0.45);
}

.ayur-btn-filter svg {
    width: 20px;
    height: 20px;
}

/* Filter Overlay Backdrop */
.ayur-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ayur-filter-overlay.active {
    display: block;
    opacity: 1;
}

/* Sticky Sidebar - Desktop & Mobile Slide-in */
@media (min-width: 992px) {
    .ayur-shop-sidebar {
        position: sticky;
        top: 100px;
        background-color: var(--ayur-white-color);
        box-shadow: 3px 4px 29.6px 0px #0000000F;
        border-radius: 10px;
        padding: 25px;
        transition: box-shadow 0.3s ease;
    }
    
    .ayur-shop-sidebar.is-sticky {
        box-shadow: 3px 4px 40px 0px #0000001A;
    }
}

/* Mobile - Slide-in Sidebar */
@media (max-width: 991px) {
    /* Show mobile filter button */
    .ayur-mobile-filter-btn {
        display: block !important;
    }
    
    /* Sidebar as slide-in panel */
    .ayur-shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--ayur-white-color);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
        padding: 25px 20px;
        overflow-y: auto;
        z-index: 1001;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Open state */
    .ayur-shop-sidebar.active {
        left: 0;
    }
    
    /* Close button for sidebar */
    .ayur-sidebar-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        background: var(--ayur-primary-light);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .ayur-sidebar-close:hover {
        background: var(--ayur-primary-color);
        transform: rotate(90deg);
    }
    
    .ayur-sidebar-close::before,
    .ayur-sidebar-close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 2px;
        background: var(--ayur-primary-color);
        transition: background 0.3s ease;
    }
    
    .ayur-sidebar-close:hover::before,
    .ayur-sidebar-close:hover::after {
        background: var(--ayur-white-color);
    }
    
    .ayur-sidebar-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    
    .ayur-sidebar-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    /* Sidebar header */
    .ayur-sidebar-header {
        padding-bottom: 15px;
        margin-bottom: 20px;
        border-bottom: 2px solid var(--ayur-border-color);
    }
    
    .ayur-sidebar-header h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--ayur-heading-color);
        margin: 0;
        padding-right: 40px;
    }
    
    /* Custom scrollbar for mobile sidebar */
    .ayur-shop-sidebar::-webkit-scrollbar {
        width: 5px;
    }
    
    .ayur-shop-sidebar::-webkit-scrollbar-track {
        background: var(--ayur-primary-lightcolor);
    }
    
    .ayur-shop-sidebar::-webkit-scrollbar-thumb {
        background: var(--ayur-primary-color);
        border-radius: 10px;
    }
}

/* Prevent body scroll when sidebar is open */
body.filter-open {
    overflow: hidden;
}

/* Animation for filter count badge */
.ayur-filter-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

@media (min-width: 992px) {
    .ayur-mobile-filter-btn {
        display: none !important;
    }
}

/***Home page - products card size update*******/

/* Mobile - 2 Column Product Layout */
@media (max-width: 576px) {
    /* Adjust product card padding for mobile 2-column */
    .ayur-tpro-box {
        padding: 3px;
    }
    
    /* Smaller image height for mobile */
    .ayur-tpro-img {
        height: 180px;
    }
    
    /* Reduce text padding */
    .ayur-tpro-text {
        padding: 8px 6px;
    }
    
    /* Smaller title font */
    .ayur-tpro-text h3, 
    .ayur-tpro-text h3 a {
        font-size: 14px;
        min-height: 20px;
    }
    
    /* Compact price section */
    .ayur-tpro-price > p {
        font-size: 16px;
     
    }
    .ayur-tpro-price{
      padding:0px;
    }
    
    
    .ayur-tpro-star > p {
        font-size: 12px;
    }
    
    /* Smaller button */
    .ayur-tpro-btn .ayur-btn {
        font-size: 12px;
        min-height: 38px;
        padding: 8px 6px;
    }
    
    /* Adjust size selector for mobile */
    .ayur-size-selector {
        min-height: auto;
    }
    
    .ayur-size-options {
        gap: 4px;
    }
    
    .ayur-size-btn {
        padding: 6px 8px;
        font-size: 11px;
    }
}

.ayur-hours-info{
  color:whitesmoke;
}

.ayur-hour-item p{
  color:#f4f8fa

};


/*** Quick view modal done*********/

/*YE ICON FOR QUICK VIEW */
.ayur-tpro-quick-view {
    position: relative;
    top: auto;
    right: auto;   
    cursor: pointer;
    transition: all 0.3s ease;  
  transform: translateY(-8px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: #027377;
   
     
}
.ayur-tpro-quick-view svg{
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.ayur-tpro-box:hover .ayur-tpro-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.ayur-tpro-quick-view:hover {
  
    transform: scale(1.5);
    color: black;
       
        
}

/* Scale up the SVG icon on hover */
.ayur-tpro-quick-view:hover svg {
    transform: scale(1.2);
}

.ayur-tpro-quick-view svg {
    width: 20px;
    height: 20px;
}

.ayur-tpro-quick-view:hover svg path {
    fill: rgb(35, 32, 32);
}

/* Tooltip text */
.ayur-tpro-quick-view::after {
    content: "Quick View";
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color:black;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Arrow for tooltip */
.ayur-tpro-quick-view::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ayur-tpro-quick-view:hover::after,
.ayur-tpro-quick-view:hover::before {
    opacity: 1;
    transform:translateY(-50%) scale(1);
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */

.ayur-quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ayur-quick-view-modal.active {
    display: flex;
    opacity: 1;
}

.ayur-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.ayur-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.ayur-modal-close:hover {
    background: #027377;
    transform: rotate(90deg);
}

.ayur-modal-close::before,
.ayur-modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    transition: background 0.3s ease;
}

.ayur-modal-close:hover::before,
.ayur-modal-close:hover::after {
    background: white;
}

.ayur-modal-close::before {
    transform: rotate(45deg);
}

.ayur-modal-close::after {
    transform: rotate(-45deg);
}

.ayur-modal-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ayur-modal-image {
    position: relative;
}

.ayur-modal-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ayur-modal-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ayur-modal-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: #FFAE34;
}

.ayur-modal-details {
    display: flex;
    flex-direction: column;
}

.ayur-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d4a45;
    margin-bottom: 15px;
}

.ayur-modal-price-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e1f0ef;
}

.ayur-modal-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.ayur-modal-current-price {
    font-size: 32px;
    font-weight: 700;
    color: #027377;
}

.ayur-modal-original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.ayur-modal-discount {
    background: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.ayur-modal-size-section {
    margin-bottom: 25px;
}

.ayur-modal-size-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d4a45;
    margin-bottom: 12px;
}

.ayur-modal-size-options {
    display: flex;
    gap: 10px;
}

.ayur-modal-size-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #d4ebe9;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2d4a45;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ayur-modal-size-btn:hover,
.ayur-modal-size-btn.active {
    border-color: #027377;
    background: #e8f5f6;
    color: #027377;
}

.ayur-modal-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6f6b;
    margin-bottom: 25px;
}

.ayur-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.ayur-modal-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ayur-modal-btn-cart {
    background: #f0f0f0;
    color: #2d4a45;
}

.ayur-modal-btn-cart:hover {
    background: #e1f0ef;
    transform: translateY(-2px);
}

.ayur-modal-btn-buy {
    background: linear-gradient(135deg, #027377, #03989e);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 115, 119, 0.3);
}

.ayur-modal-btn-buy:hover {
    background: linear-gradient(135deg, #015f63, #027b80);
    box-shadow: 0 6px 16px rgba(2, 115, 119, 0.4);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ayur-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .ayur-modal-body {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
    
    .ayur-modal-title {
        font-size: 22px;
    }
    
    .ayur-modal-current-price {
        font-size: 26px;
    }
    
    .ayur-modal-actions {
        flex-direction: column;
    }
}

.ayur-modal-content::-webkit-scrollbar {
    width: 8px;
}

.ayur-modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.ayur-modal-content::-webkit-scrollbar-thumb {
    background: #027377;
    border-radius: 10px;
}

.ayur-modal-content::-webkit-scrollbar-thumb:hover {
    background: #015f63;
}


/* Review Modal */
.ayur-review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ayur-review-modal.active {
    display: flex;
}

.ayur-review-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

.ayur-review-modal-body {
    padding: 40px;
}

.ayur-review-modal-body h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ayur-heading-color);
    margin-bottom: 25px;
    text-align: center;
}

.ayur-review-form .ayur-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Star Rating */
.ayur-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.ayur-star-rating input {
    display: none;
}

.ayur-star-rating label {
    font-size: 35px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
}

.ayur-star-rating input:checked ~ label,
.ayur-star-rating label:hover,
.ayur-star-rating label:hover ~ label {
    color: #ffc107;
}

@media (max-width: 768px) {
    .ayur-review-form .ayur-form-row {
        grid-template-columns: 1fr;
    }
    
    .ayur-review-modal-body {
        padding: 25px 20px;
    }
}

/* Prevent bootstrap from stretching sidebar */
.ayur-shop-sidebar {
    align-self: flex-start;
}


/*******8Shop details page*********/

   .ayur-product-gallery {
            position: relative;
        }

        .ayur-main-image {
            position: relative;
            min-height: 350px;
            overflow: hidden;
            border-radius: 18px;
            margin-bottom: 15px;
            background: #f8f8f8;
        }

        .ayur-main-image img {
            width: 100%;
            height: 500px;
            object-fit: contain;
            display:block;
            border-radius: 18px;
            transition: transform 0.3s ease;
        }

        .ayur-main-image:hover img {
           will-change: transform;
    backface-visibility: hidden;
        }

        .ayur-thumbnail-nav{
            display:flex;
            align-items:center;
            gap:6px;
            margin-top:10px;
            
        }

    .ayur-thumbnail-gallery {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: scroll;
    padding-bottom: 10px;
          flex-wrap: nowrap;
     scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; 
      scrollbar-width: thin;
    scrollbar-color:  rgba(2, 115, 119, 0.3) transparent;
    cursor: grab;
}

.ayur-thumbnail-gallery::-webkit-scrollbar {
     height: 3px;
    border-radius: 10px;
}

.ayur-thumbnail-gallery::-webkit-scrollbar-track {
background: transparent;
 border-radius: 10px;
}

.ayur-thumbnail-gallery::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.45);
    border-radius: 10px;
}

.ayur-thumbnail-gallery::-webkit-scrollbar-thumb:hover {
    background:  rgba(2, 115, 119, 0.65);
     
}
      
.ayur-thumbnail {
    flex-shrink: 0;
    width: 80px;   /* fix thumbnail width so they don't stretch */
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}



.ayur-thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}      


        .ayur-thumbnail:hover {
            border-color: var(--ayur-primary-color);
            transition: transform .25s ease, border-color .25s ease;
        }

        .ayur-thumbnail.active {
            border-color: var(--ayur-primary-color);
            box-shadow: 0 4px 12px rgba(2, 115, 119, 0.3);
        }

        .ayur-thumbnail:hover img {
            transform: scale(1.1);
        }

        /* Product Info Sections */
        .ayur-product-section {
            background: var(--ayur-white-color);
            border: 1px solid var(--ayur-border-color);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .ayur-section-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--ayur-heading-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--ayur-primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ayur-section-title svg {
            color: var(--ayur-primary-color);
        }

        /* Ingredients List */
        .ayur-ingredients-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .ayur-ingredient-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px;
            background: var(--ayur-primary-lightcolor);
            border-radius: 8px;
        }

        .ayur-ingredient-item svg {
            color: var(--ayur-primary-color);
            flex-shrink: 0;
        }

        .ayur-ingredient-item span {
            font-size: 14px;
            color: var(--ayur-para-color);
        }

        /* Storage Info */
        .ayur-storage-info {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .ayur-storage-item {
            flex: 1;
            min-width: 200px;
            padding: 12px;
            background: var(--ayur-primary-lightcolor);
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .ayur-storage-item svg {
            color: var(--ayur-primary-color);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ayur-storage-item-content h6 {
            font-size: 14px;
            font-weight: 600;
            color: var(--ayur-heading-color);
            margin: 0 0 4px 0;
        }

        .ayur-storage-item-content p {
            font-size: 13px;
            color: var(--ayur-para-color);
            margin: 0;
        }

        /* Disclaimer Box */
        .ayur-disclaimer {
            background: #fff9e6;
            border-left: 4px solid #d4941f;
            padding: 15px;
            border-radius: 8px;
        }

        .ayur-disclaimer p {
            margin: 0;
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        .ayur-disclaimer strong {
            color: #d4941f;
        }

        /* Traditional Indications */
        .ayur-indications-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .ayur-indication-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px;
            background: var(--ayur-primary-lightcolor);
            border-radius: 8px;
        }

        .ayur-indication-item svg {
            color: var(--ayur-primary-color);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ayur-indication-item p {
            margin: 0;
            font-size: 14px;
            color: var(--ayur-para-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ayur-main-image img {
                height: 350px;
                object-fit: contain;
            }

      .ayur-thumbnail-gallery{
    display:flex;
    overflow-x:auto;
}

            .ayur-ingredients-list,
            .ayur-indications-grid {
                grid-template-columns: 1fr;
            }

            .ayur-storage-info {
                flex-direction: column;
            }
        }

        .ayur-care-slider-wrapper{
          /* margin-top:50px; */
          padding-top:40px;
        }

        @media (max-width: 600px) {
          .ayur-care-slider-wrapper {
            padding-top: 10px;
          }
        }

        .section-heading{
          padding-bottom:50px;
        }
        @media (max-width: 600px) {
            .section-heading {
              padding-bottom: 10px;
            }
          }

        .ayur-shopsin-sec .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

.ayur-shopsin-sec .row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Add to your style.css */
.ayur-bgcover.ayur-shopsin-sec .container {
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .ayur-bgcover.ayur-shopsin-sec .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*********Home page product styles *********/

/* Icon Container */
.ayur-tpro-icons {
    position: absolute;
    top: 10px;
    left: auto;
    right: 10px;
    display: flex;

   flex-direction:column;
    gap: 8px;
    z-index: 3;
}

.ayur-tpro-right-icons{
    display:flex;
    flex-direction:column;
    gap:8px;
   
}
.ayur-badge-tooltip {
    visibility: hidden;
    opacity: 0;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    position: absolute;
    top: 50%;
     right: calc(100% + 10px); /* → appears to the RIGHT */
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 10;
}
/* Arrow pointing RIGHT toward the badge */
.ayur-badge-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
}

/* Arrow pointing left back toward the badge */
.ayur-badge-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
}

/* Classical → gold/brown */
.ayur-tpro-badge-circle.ayur-badge-classical .ayur-badge-tooltip {
    background: #d4941f;
}
.ayur-tpro-badge-circle.ayur-badge-classical .ayur-badge-tooltip::before {
    border-right-color: #d4941f;
}

/* Proprietary → purple */
.ayur-tpro-badge-circle.ayur-badge-proprietary .ayur-badge-tooltip {
    background: #7d3c98;
}
.ayur-tpro-badge-circle.ayur-badge-proprietary .ayur-badge-tooltip::before {
    border-right-color: #7d3c98;
}

.ayur-tpro-badge-circle:hover .ayur-badge-tooltip {
    visibility: visible;
    opacity: 1;
}
/* Circular Badge (Left) */
.ayur-tpro-badge-circle {
  position:relative;
    width: 42px;
    height: 42px;
    background:  linear-gradient(135deg, #4d7968 0%, #5d8a66 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(77, 121, 104, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
     cursor: pointer;
}

.ayur-tpro-badge-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(77, 121, 104, 0.5);
}

.ayur-tpro-badge-circle svg {
    width: 22px;
    height: 22px;
     color: #fff;
}



.ayur-tpro-badge-circle:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.ayur-tpro-badge-circle:hover::before {
    opacity: 1;
}
/* Icon Group (Right Side) */
.ayur-tpro-icons > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Circular Icon Base (Heart & Cart) */
.ayur-tpro-icon-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ayur-tpro-icon-circle:hover {
    background: rgba(2, 115, 119, 0.95);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(2, 115, 119, 0.3);
}

.ayur-tpro-icon-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.ayur-tpro-icon-circle svg {
   width: 20px;
    height: 20px;
    color: #555;
    transition: all 0.3s ease;
}

.ayur-tpro-icon-circle:hover svg {
    color: #fff;
}

/* Heart Specific */
.ayur-tpro-like svg path {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}
.ayur-tpro-like.likeproduct {
    background: rgba(255, 255, 255, 0.95) !important;
}

.ayur-tpro-like.likeproduct svg {
    color: #fff !important;
}
.ayur-tpro-like.likeproduct svg path {
    fill: #e74c3c !important;
    stroke: #e74c3c !important;
}


.ayur-tpro-like.likeproduct .like-fill {
    display: block !important;
}

/* Keep cart icon white */
.ayur-tpro-cart-icon svg path {
    fill: #555;
}

/* Buy Now Button - Keep existing ayur-btn styles but override text */
.ayur-tpro-btn .ayur-btn {
    width: 100%;
    background: linear-gradient(135deg, #027377 0%, #03989e 100%);
    color: #fff;
    border-color: #027377;
}
.ayur-tpro-cart-icon:hover svg path {
    fill: #fff;
}

.ayur-tpro-btn .ayur-btn:hover {
    background: linear-gradient(135deg, #015f63 0%, #027b80 100%);
    border-color: #015f63;
}

.ayur-tpro-btn .ayur-btn::after {
    background-color: #015f63;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .ayur-tpro-badge-circle {
        width: 36px;
        height: 36px;
    }
    
    .ayur-tpro-badge-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .ayur-tpro-icon-circle {
        width: 32px;
        height: 32px;
    }
    
    .ayur-tpro-icon-circle svg {
        width: 16px;
        height: 16px;
    }
    .ayur-tpro-badge-circle::after {
        font-size: 10px;
        padding: 6px 10px;
        bottom: -35px;
    }
}

/*****logo mobile *******/

/* Default (Desktop) */
.logo-desktop {
    display: block;
}

.logo-mob {
    display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
    
    
    .logo-desktop {
        display: none;
    }

    .logo-mob {
        display: block;
        width:80px;
        height:80px;
        
    }
      .ayur-menu-logo img {
      margin-left:50px;  

}

}

/* Mobile view */
@media (min-width: 547px) and (max-width: 767px) {
    
    
    .logo-desktop {
        display: none;
    }

    .logo-mob {
        display: block;
        width:80px;
        height:80px;
        
    }
      .ayur-menu-logo img {
      margin-left:50px;  

}

}

/* Mobile view */
@media (max-width: 546px) {
    .logo-desktop {
        display: none;
    }

    .logo-mob {
        display: block;
        width:70px;
        height:70px;
        
    }
    .ayur-menu-logo img {
      margin-left:50px;  

}
.ayur-menu-wrapper{
  background: linear-gradient(80deg, #03989e 0%, #03989e 40%, #061d13 70%, #061d13 100%);

}
}

/* ================================
   MOBILE MENU STYLES
   ================================ */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    box-shadow: 0 2px 10px rgba(13, 148, 136, 0.2);
}

.mobile-menu-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Menu List */
.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: #1F2937;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #0D9488 0%, #14B8A6 100%);
    transition: width 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: #0D9488;
    background: rgba(13, 148, 136, 0.05);
}

.mobile-menu-link:hover::before,
.mobile-menu-link.active::before {
    width: 4px;
}

.mobile-menu-link svg {
    min-width: 20px;
    transition: transform 0.3s ease;
}

.mobile-menu-link:hover svg {
    transform: scale(1.1);
}

.mobile-menu-link span:not(.mobile-menu-badge) {
    flex: 1;
}

/* Badge */
.mobile-menu-badge {
    background: #F97316;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 1.5rem;
    background: #F9FAFB;
    border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.mobile-menu-cta,
.mobile-menu-cta-secondary {
    display: block;
    text-align: center;
    padding: 0.875rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.mobile-menu-cta {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

.mobile-menu-cta-secondary {
    background: white;
    color: #0D9488;
    border: 2px solid #0D9488;
}

.mobile-menu-cta-secondary:hover {
    background: #0D9488;
    color: white;
}

/* Mobile Menu Trigger - Update existing button */
.mobile-menu-trigger {
    cursor: pointer;
    z-index: 1000;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-menu-trigger {
        display: none !important;
    }
}



/* ================================
   MOBILE BOTTOM NAVIGATION BAR
   ================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
    z-index: 999;
    border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #6B7280;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item.active {
    color: #0D9488;
}

.mobile-nav-item.active .mobile-nav-icon {
    stroke: #0D9488;
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0D9488 0%, #14B8A6 100%);
    border-radius: 0 0 3px 3px;
}

.mobile-nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
    transform: scale(1.1);
}

.mobile-nav-label {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.mobile-nav-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #F97316;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
}

/* Add padding to body to prevent content from being hidden behind bottom nav */
body {
    padding-bottom: 70px;
}

/* Hide on desktop */
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 360px) {
    .mobile-nav-item {
        padding: 0.4rem 0.5rem;
    }
    
    .mobile-nav-label {
        font-size: 0.7rem;
    }
    
    .mobile-nav-icon {
        width: 22px;
        height: 22px;
    }
}

/* Animation when page loads */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-bottom-nav {
    animation: slideUp 0.4s ease-out;
}


/*****Responsiveness in mobile**/

@media (max-width: 746px) {
   
    .ayur-nav-icons > a:nth-child(2), 
    .ayur-nav-icons > a:nth-child(3), 
    .ayur-nav-product                 
    {
        display: none !important;
    }
    
   .ayur-nav-icons a[href*="/account"],
    .ayur-nav-icons a[href*="/account"],
    .ayur-nav-icons a[href*="/wishlist"] {
        display: none !important;
    }
    
    .ayur-navmenu-wrapper {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    

   


}
@media (min-width:992px){

.mob-sidebar-footer{
    display:none;
}
}

@media (max-width:991px){
      .ayur-nav-menu ul li a:hover, .ayur-nav-menu ul li.active a{
  color: var(--ayur-primary-light)
}
.ayur-nav-menu ul li a{
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--ayur-banheading-color)
}
}

@media (min-width: 748px) {
    
    .mobile-bottom-nav {
        display: none !important;
    }
    
  
    body {
        padding-bottom: 0 !important;
    }
}

@media (min-width: 700px) and (max-width: 1400px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1362px) {
    
      .nav-text-full {
        display: none;
    }
    
    .nav-text-short {
        display: inline;
    }
    
    /* Adjust spacing */
    .ayur-nav-menu ul li {
        padding: 0 8px;
    }
    
    .ayur-nav-menu ul li a {
        font-size: 13px;
    }
}




/* ==========================================
   SMOOTH TRANSITIONS
   ========================================== */

.ayur-nav-icons,
.ayur-nav-icons > *,
.ayur-menu-logo img,
.ayur-toggle-btn {
    transition: all 0.3s ease;
}

@media (min-width:1363px){
/* Default: Show full text */
.nav-text-short {
    display: none;
}
}
@media (max-width:991px){
.nav-text-short {
        display: none;
    }
}

/************Filter css**********/

/* Filter Options Styling */
.ayur-filter-options {
    padding: 10px 0;
}

.ayur-filter-options .ayur-checkbox-label {
    margin-bottom: 12px;
}

.ayur-filter-options .ayur-checkbox-label:last-child {
    margin-bottom: 0;
}

/* Clear All Filters Button */
#clearAllFilters {
    transition: all 0.3s ease;
}

#clearAllFilters:hover {
    background: #c0392b !important;
    transform: translateY(-2px);
}

/* Scrollable filters for mobile */
@media (max-width: 991px) {
    .ayur-shop-sidebar {
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .ayur-filter-options {
        max-height: 200px;
        overflow-y: auto;
    }
}

/* ========================================
   CNS Account Page Styles
   ======================================== */

/* Account Page Wrapper */
.cns-account-wrapper {
    padding: 60px 0;
}

/* Account Sidebar */
.cns-account-sidebar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.cns-account-sidebar .cns-profile-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.cns-account-sidebar .cns-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.cns-account-sidebar .cns-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cns-account-sidebar .cns-nav-item {
    border: none;
    background: transparent;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cns-account-sidebar .cns-nav-item svg {
    flex-shrink: 0;
}

.cns-account-sidebar .cns-nav-item:hover {
    background: #fff;
}

.cns-account-sidebar .cns-nav-item.active {
    background: #2f5233;
    color: #fff;
}

/* Account Content Area */
.cns-account-content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Account Tabs */
.cns-account-tabs .nav-link {
    border: none;
    color: #666;
    padding: 12px 20px;
    font-weight: 500;
}

.cns-account-tabs .nav-link.active {
    background: #2f5233;
    color: #fff;
    border-radius: 6px;
}

/* Orders Table */
.cns-orders-table {
    width: 100%;
    margin-top: 20px;
}

.cns-orders-table th {
    background: #f8f9fa;
    padding: 12px;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.cns-orders-table td {
    padding: 15px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

/* Status Badges */
.cns-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.cns-status-badge.in-progress {
    background: #e3f2fd;
    color: #1976d2;
}

.cns-status-badge.delivered {
    background: #e8f5e9;
    color: #388e3c;
}

.cns-status-badge.canceled {
    background: #ffebee;
    color: #d32f2f;
}

/* Product Thumbnails */
.cns-product-thumbnails {
    display: flex;
    gap: 5px;
}

.cns-product-thumbnails img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

/* Form Sections */
.cns-form-section {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cns-form-section:last-child {
    border-bottom: none;
}

/* Buttons */
.cns-btn-primary {
    background: #2f5233;
    border-color: #2f5233;
    color: #ffffff;
}

.cns-btn-primary:hover {
    background: #234019;
    border-color: #234019;
}

/* Customer Service Section */
.cns-customer-service-title {
    padding-left: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cns-account-wrapper {
        padding: 40px 0;
    }
    
    .cns-account-sidebar {
        margin-bottom: 30px;
    }
    
    .cns-account-content {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .cns-orders-table {
        font-size: 14px;
    }
    
    .cns-orders-table th,
    .cns-orders-table td {
        padding: 10px 8px;
    }
    
    .cns-product-thumbnails img {
        width: 40px;
        height: 40px;
    }
}

/***********Shipping page*****/

   .cns-terms-section {
            padding: 60px 0 80px;
            background: #faf9f7;
        }

        .cns-terms-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 50px 55px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

        .cns-terms-box h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 6px;
        }

        .cns-terms-effective {
            font-size: 14px;
            color: #888;
            margin-bottom: 30px;
            display: block;
        }

        .cns-terms-intro {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 36px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .cns-terms-item {
            margin-bottom: 36px;
        }

        .cns-terms-item h2 {
            font-size: 18px;
            font-weight: 700;
            color: #1a6b54;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cns-terms-item h2 .cns-term-num {
            background: #1a6b54;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cns-terms-item p {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .cns-terms-item ul {
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .cns-terms-item ul li {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 6px;
            list-style: disc;
        }

        .cns-terms-divider {
            border: none;
            border-top: 1px solid #eee;
            margin: 30px 0;
        }

        .cns-terms-contact-box {
            background: #f0f8f5;
            border-left: 4px solid #1a6b54;
            border-radius: 8px;
            padding: 24px 28px;
            margin-top: 36px;
        }

        .cns-terms-contact-box h3 {
            font-size: 17px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 10px;
        }

        .cns-terms-contact-box p,
        .cns-terms-contact-box a {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 4px;
        }

        .cns-terms-contact-box a {
            color: #1a6b54;
            font-weight: 600;
            text-decoration: none;
        }

        .cns-terms-contact-box a:hover {
            text-decoration: underline;
        }

        /* Shipping-specific highlight table */
        .cns-shipping-table {
            width: 100%;
            border-collapse: collapse;
            margin: 14px 0 10px;
            font-size: 14.5px;
        }

        .cns-shipping-table thead tr {
            background: #1a6b54;
            color: #fff;
        }

        .cns-shipping-table thead th {
            padding: 10px 16px;
            text-align: left;
            font-weight: 600;
        }

        .cns-shipping-table tbody tr:nth-child(even) {
            background: #f0f8f5;
        }

        .cns-shipping-table tbody td {
            padding: 10px 16px;
            color: #444;
            border-bottom: 1px solid #eee;
        }

        .cns-info-badge {
            display: inline-block;
            background: #e8f5f0;
            color: #1a6b54;
            font-size: 13px;
            font-weight: 600;
            border-radius: 6px;
            padding: 4px 12px;
            margin-bottom: 12px;
        }

        @media (max-width: 767px) {
            .cns-terms-box {
                padding: 30px 22px;
            }

            .cns-terms-box h1 {
                font-size: 24px;
            }

            .cns-shipping-table {
                font-size: 13px;
            }

            .cns-shipping-table thead th,
            .cns-shipping-table tbody td {
                padding: 8px 10px;
            }
        }

        /*************terms and conditions *********/

         .cns-terms-section {
            padding: 60px 0 80px;
            background: #faf9f7;
        }

        .cns-terms-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 50px 55px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

        .cns-terms-box h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 6px;
        }

        .cns-terms-effective {
            font-size: 14px;
            color: #888;
            margin-bottom: 30px;
            display: block;
        }

        .cns-terms-intro {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 36px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .cns-terms-item {
            margin-bottom: 36px;
        }

        .cns-terms-item h2 {
            font-size: 18px;
            font-weight: 700;
            color: #1a6b54;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cns-terms-item h2 .cns-term-num {
            background: #1a6b54;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cns-terms-item p {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .cns-terms-item ul {
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .cns-terms-item ul li {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 6px;
            list-style: disc;
        }

        .cns-terms-divider {
            border: none;
            border-top: 1px solid #eee;
            margin: 30px 0;
        }

        .cns-terms-contact-box {
            background: #f0f8f5;
            border-left: 4px solid #1a6b54;
            border-radius: 8px;
            padding: 24px 28px;
            margin-top: 36px;
        }

        .cns-terms-contact-box h3 {
            font-size: 17px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 10px;
        }

        .cns-terms-contact-box p,
        .cns-terms-contact-box a {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 4px;
        }

        .cns-terms-contact-box a {
            color: #1a6b54;
            font-weight: 600;
            text-decoration: none;
        }

        .cns-terms-contact-box a:hover {
            text-decoration: underline;
        }

        @media (max-width: 767px) {
            .cns-terms-box {
                padding: 30px 22px;
            }

            .cns-terms-box h1 {
                font-size: 24px;
            }
        }

        /********privacy policy **********/

        .cns-privacy-section {
            padding: 60px 0 80px;
            background: #faf9f7;
        }

        .cns-privacy-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 50px 55px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

        .cns-privacy-box h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 6px;
        }

        .cns-privacy-effective {
            font-size: 14px;
            color: #888;
            margin-bottom: 30px;
            display: block;
        }

        .cns-privacy-intro {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 36px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .cns-privacy-item {
            margin-bottom: 36px;
        }

        .cns-privacy-item h2 {
            font-size: 18px;
            font-weight: 700;
            color: #1a6b54;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cns-privacy-num {
            background: #1a6b54;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cns-privacy-item p {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .cns-privacy-item ul {
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .cns-privacy-item ul li {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 6px;
            list-style: disc;
        }

        .cns-privacy-divider {
            border: none;
            border-top: 1px solid #eee;
            margin: 30px 0;
        }

        .cns-privacy-contact-box {
            background: #f0f8f5;
            border-left: 4px solid #1a6b54;
            border-radius: 8px;
            padding: 24px 28px;
            margin-top: 36px;
        }

        .cns-privacy-contact-box h3 {
            font-size: 17px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 10px;
        }

        .cns-privacy-contact-box p,
        .cns-privacy-contact-box a {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 4px;
        }

        .cns-privacy-contact-box a {
            color: #1a6b54;
            font-weight: 600;
            text-decoration: none;
        }

        .cns-privacy-contact-box a:hover {
            text-decoration: underline;
        }

        /* Data category cards */
        .cns-privacy-data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
            margin: 14px 0 10px;
        }

        .cns-privacy-data-card {
            background: #f0f8f5;
            border: 1px solid #d4ece3;
            border-radius: 8px;
            padding: 16px 18px;
        }

        .cns-privacy-data-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: #1a6b54;
            margin-bottom: 6px;
        }

        .cns-privacy-data-card p {
            font-size: 13.5px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* User rights grid */
        .cns-privacy-rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 14px 0 10px;
        }

        .cns-privacy-rights-card {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: #faf9f7;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 14px 16px;
        }

        .cns-privacy-rights-icon {
            background: #1a6b54;
            color: #fff;
            font-size: 13px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .cns-privacy-rights-card p {
            font-size: 14px;
            color: #555;
            line-height: 1.65;
            margin-bottom: 0;
        }

        .cns-privacy-rights-card strong {
            display: block;
            font-size: 14px;
            color: #1a4a3a;
            margin-bottom: 2px;
        }

        @media (max-width: 767px) {
            .cns-privacy-box {
                padding: 30px 22px;
            }

            .cns-privacy-box h1 {
                font-size: 24px;
            }

            .cns-privacy-data-grid,
            .cns-privacy-rights-grid {
                grid-template-columns: 1fr;
            }
        }


        /****refund policy********/

         .cns-refund-section {
            padding: 60px 0 80px;
            background: #faf9f7;
        }

        .cns-refund-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 50px 55px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

        .cns-refund-box h1 {
            font-size: 32px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 6px;
        }

        .cns-refund-effective {
            font-size: 14px;
            color: #888;
            margin-bottom: 30px;
            display: block;
        }

        .cns-refund-intro {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 36px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .cns-refund-item {
            margin-bottom: 36px;
        }

        .cns-refund-item h2 {
            font-size: 18px;
            font-weight: 700;
            color: #1a6b54;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cns-refund-num {
            background: #1a6b54;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cns-refund-item p {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 10px;
        }

        .cns-refund-item ul {
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .cns-refund-item ul li {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 6px;
            list-style: disc;
        }

        .cns-refund-divider {
            border: none;
            border-top: 1px solid #eee;
            margin: 30px 0;
        }

        .cns-refund-contact-box {
            background: #f0f8f5;
            border-left: 4px solid #1a6b54;
            border-radius: 8px;
            padding: 24px 28px;
            margin-top: 36px;
        }

        .cns-refund-contact-box h3 {
            font-size: 17px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 10px;
        }

        .cns-refund-contact-box p,
        .cns-refund-contact-box a {
            font-size: 15px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 4px;
        }

        .cns-refund-contact-box a {
            color: #1a6b54;
            font-weight: 600;
            text-decoration: none;
        }

        .cns-refund-contact-box a:hover {
            text-decoration: underline;
        }

        /* Eligibility summary table */
        .cns-refund-table {
            width: 100%;
            border-collapse: collapse;
            margin: 14px 0 10px;
            font-size: 14.5px;
        }

        .cns-refund-table thead tr {
            background: #1a6b54;
            color: #fff;
        }

        .cns-refund-table thead th {
            padding: 10px 16px;
            text-align: left;
            font-weight: 600;
        }

        .cns-refund-table tbody tr:nth-child(even) {
            background: #f0f8f5;
        }

        .cns-refund-table tbody td {
            padding: 10px 16px;
            color: #444;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
        }

        .cns-refund-badge-yes {
            display: inline-block;
            background: #d4ece3;
            color: #1a6b54;
            font-size: 12.5px;
            font-weight: 700;
            border-radius: 20px;
            padding: 3px 12px;
        }

        .cns-refund-badge-no {
            display: inline-block;
            background: #fde8e8;
            color: #c0392b;
            font-size: 12.5px;
            font-weight: 700;
            border-radius: 20px;
            padding: 3px 12px;
        }

        .cns-refund-badge-cond {
            display: inline-block;
            background: #fef3cd;
            color: #856404;
            font-size: 12.5px;
            font-weight: 700;
            border-radius: 20px;
            padding: 3px 12px;
        }

        /* Process steps */
        .cns-refund-steps {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 14px 0 10px;
        }

        .cns-refund-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #faf9f7;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 16px 18px;
        }

        .cns-refund-step-num {
            background: #1a6b54;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .cns-refund-step-content h4 {
            font-size: 15px;
            font-weight: 700;
            color: #1a4a3a;
            margin-bottom: 4px;
        }

        .cns-refund-step-content p {
            font-size: 14.5px;
            color: #666;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* Alert note box */
        .cns-refund-note {
            background: #fff8ec;
            border-left: 4px solid #f0a500;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 14px 0 10px;
        }

        .cns-refund-note p {
            font-size: 14.5px;
            color: #6b4a00;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .cns-refund-note strong {
            color: #5a3c00;
        }

        @media (max-width: 767px) {
            .cns-refund-box {
                padding: 30px 22px;
            }

            .cns-refund-box h1 {
                font-size: 24px;
            }

            .cns-refund-table {
                font-size: 13px;
            }

            .cns-refund-table thead th,
            .cns-refund-table tbody td {
                padding: 8px 10px;
            }

            .cns-refund-step {
                flex-direction: column;
                gap: 10px;
            }
        }

        /*****order details *********/


/* ── Page Wrapper ── */
.cns-od-wrapper {
    padding: 50px 0 80px;
    background: #f8f9f6;
    min-height: 60vh;
}

/* ── Fix Bootstrap row overflow ── */
.cns-od-wrapper .container {
    max-width: 1170px;
    width: 100%;
}
.cns-od-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}
.cns-od-wrapper .col-lg-8,
.cns-od-wrapper .col-lg-4 {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

/* ── Right column: force cards to stack vertically ── */
.cns-od-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-width: 0; /* prevent flex child overflow */
}
.cns-od-right-col .cns-od-card {
    width: 100%;
    min-width: 0;
    flex-shrink: 1;
}

/* ── Left column ── */
.cns-od-left-col {
    min-width: 0;
}

/* ── Back Link ── */
.cns-od-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d5a27;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 28px;
    transition: gap 0.2s;
}
.cns-od-back-link:hover {
    gap: 13px;
    color: #3e7a36;
}
.cns-od-back-link svg {
    flex-shrink: 0;
}

/* ── Page Header ── */
.cns-od-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.cns-od-page-header h3 {
    font-weight: 700;
    font-size: 26px;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.cns-od-order-meta {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cns-od-order-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

/* ── Help Banner ── */
.cns-od-help-banner {
    background: #f0f5ef;
    border: 1px solid #c6dbc3;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.cns-od-help-banner p {
    margin: 0;
    font-size: 14px;
    color: #2d5a27;
    font-weight: 500;
    line-height: 1.5;
}
.cns-od-help-banner a {
    font-size: 13px;
    font-weight: 600;
    color: #2d5a27;
    text-decoration: underline;
    white-space: nowrap;
}
.cns-od-help-banner a:hover {
    color: #3e7a36;
}

/* ── Cards ── */
.cns-od-card {
    background: #fff;
    border: 1px solid #e4e8e3;
    border-radius: 12px;
    padding: 26px;
    margin-bottom: 22px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.cns-od-card-title {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e8e3;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cns-od-card-title svg {
    color: #2d5a27;
    flex-shrink: 0;
}

/* ── Order Tracker ── */
.cns-od-tracker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 10px 0 4px;
}
.cns-od-tracker::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e4e8e3;
    z-index: 0;
}
.cns-od-tracker-bar {
    position: absolute;
    top: 26px;
    left: 40px;
    height: 3px;
    background: #2d5a27;
    z-index: 1;
    transition: width 0.7s ease;
}
.cns-od-tracker-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}
.cns-od-tracker-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #e4e8e3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #b0b8af;
    transition: all 0.3s;
}
.cns-od-tracker-step.cns-od-done .cns-od-tracker-icon {
    background: #2d5a27;
    border-color: #2d5a27;
    color: #fff;
}
.cns-od-tracker-step.cns-od-active .cns-od-tracker-icon {
    background: #f0f5ef;
    border-color: #2d5a27;
    color: #2d5a27;
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.12);
}
.cns-od-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    line-height: 1.3;
}
.cns-od-tracker-step.cns-od-done .cns-od-step-label,
.cns-od-tracker-step.cns-od-active .cns-od-step-label {
    color: #2d5a27;
}
.cns-od-step-date {
    font-size: 11px;
    color: #b0b8af;
    text-align: center;
    margin-top: 3px;
}
.cns-od-tracker-step.cns-od-done .cns-od-step-date,
.cns-od-tracker-step.cns-od-active .cns-od-step-date {
    color: #6b7280;
}

/* ── Product Items ── */
.cns-od-product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e4e8e3;
}
.cns-od-product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cns-od-product-item:first-child {
    padding-top: 0;
}
.cns-od-product-thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e4e8e3;
    background: #f0f5ef;
    flex-shrink: 0;
}
.cns-od-product-info {
    flex: 1;
    min-width: 0;
}
.cns-od-product-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cns-od-product-variant {
    font-size: 12px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}
.cns-od-product-qty {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.cns-od-product-price {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

/* ── Action Buttons ── */
.cns-od-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cns-od-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #2d5a27;
    border: 1.5px solid #2d5a27;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.cns-od-btn-outline:hover {
    background: #2d5a27;
    color: #fff;
}
.cns-od-btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #dc2626;
    border: 1.5px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.cns-od-btn-danger:hover {
    background: #fee2e2;
    border-color: #dc2626;
}

/* ── Order Summary ── */
.cns-od-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f2;
    font-family: 'Inter', sans-serif;
}
.cns-od-summary-row:last-child {
    border-bottom: none;
}
.cns-od-summary-row span:last-child {
    font-weight: 500;
    color: #1a1a1a;
}
.cns-od-summary-row.cns-od-total {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid #e4e8e3;
    border-bottom: none;
}
.cns-od-summary-row.cns-od-total span:last-child {
    color: #2d5a27;
    font-size: 18px;
}
.cns-od-discount-val {
    color: #16a34a !important;
}
.cns-od-free-ship {
    color: #16a34a !important;
    font-weight: 600 !important;
}

/* ── Info Labels / Values ── */
.cns-od-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9ca3af;
    margin-bottom: 6px;
}
.cns-od-info-value {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}
.cns-od-info-value strong {
    font-weight: 600;
    color: #1a1a1a;
}
.cns-od-info-muted {
    color: #9ca3af;
    font-size: 13px;
}

/* ── Payment Row ── */
.cns-od-payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-family: 'Inter', sans-serif;
}

/* ── Support CTA Card ── */
.cns-od-support-card {
    text-align: center;
}
.cns-od-support-card .cns-od-emoji {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}
.cns-od-support-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.cns-od-btn-primary {
    display: inline-block;
    background: #2d5a27;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.cns-od-btn-primary:hover {
    background: #3e7a36;
    color: #fff;
}

/* ── Status Badge overrides for order detail page ── */
.cns-od-status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.cns-od-status-badge.in-progress {
    background: #dbeafe;
    color: #1d4ed8;
}
.cns-od-status-badge.delivered {
    background: #dcfce7;
    color: #15803d;
}
.cns-od-status-badge.paid {
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    padding: 4px 12px;
}
.cns-od-status-badge.canceled {
    background: #fee2e2;
    color: #dc2626;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cns-od-wrapper {
        padding: 40px 0 60px;
    }
    /* Stack columns on tablet/mobile */
    .cns-od-wrapper .col-lg-8,
    .cns-od-wrapper .col-lg-4 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .cns-od-right-col {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .cns-od-wrapper .col-lg-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
    .cns-od-wrapper .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .cns-od-tracker::before {
        left: 24px;
        right: 24px;
    }
    .cns-od-tracker-bar {
        left: 24px;
    }
    .cns-od-step-label {
        font-size: 10px;
    }
    .cns-od-page-header {
        flex-direction: column;
    }
    .cns-od-card {
        padding: 16px;
    }
    .cns-od-help-banner {
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .cns-od-actions {
        flex-direction: column;
    }
    .cns-od-btn-outline,
    .cns-od-btn-danger {
        justify-content: center;
        width: 100%;
    }
    .cns-od-product-thumb {
        width: 54px;
        height: 54px;
    }
    .cns-od-product-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .cns-od-product-price {
        margin-left: auto;
    }
}


/* ── Other Orders Card ── */
.cns-od-other-orders-card {
    margin-bottom: 0; /* last card in left col */
}

/* ── Each order row ── */
.cns-oo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e4e8e3;
}
.cns-oo-item:first-of-type {
    padding-top: 0;         /* flush with card title border */
}
.cns-oo-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* ── Left side: thumbs + info ── */
.cns-oo-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* ── Stacked thumbnails ── */
.cns-oo-thumbs {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    height: 46px;
    /* width grows with the number of visible thumbs */
    width: 46px;
}
.cns-oo-thumb {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #fff;
    background: #f0f5ef;
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.cns-oo-thumb-stack {
    left: 20px;
    z-index: 1;
}
/* When there's a stack thumb, widen the container */
.cns-oo-thumbs:has(.cns-oo-thumb-stack) {
    width: 72px;
}
.cns-oo-thumbs:has(.cns-oo-thumb-more) {
    width: 92px;
}
.cns-oo-thumb-more {
    position: absolute;
    left: 40px;
    top: 0;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #e8f0e7;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #2d5a27;
    flex-shrink: 0;
}

/* ── Order info text ── */
.cns-oo-info {
    flex: 1;
    min-width: 0;
}
.cns-oo-order-id {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cns-oo-meta {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}
.cns-oo-dot {
    color: #d1d5db;
}
.cns-oo-amount {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

/* ── Right side: badge + view btn ── */
.cns-oo-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

/* ── View button ── */
.cns-oo-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #2d5a27;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.cns-oo-view-btn:hover {
    gap: 7px;
    color: #3e7a36;
}

/* ── Footer: View all link ── */
.cns-oo-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e4e8e3;
    text-align: center;
}
.cns-oo-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #2d5a27;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
}
.cns-oo-all-link:hover {
    gap: 9px;
    color: #3e7a36;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .cns-oo-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .cns-oo-item-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}


/* ============================================
   CONSULTATION PAGE - RESPONSIVE FIXES
  
   ============================================ */

/* ── Base wrapper ── */
.ayur-consultation-wrapper {
    padding: 40px 20px !important;
}

/* ── Hospital Info Card ── */
.ayur-hospital-info-card {
    padding: 25px 20px;
}

/* ── Filter wrapper ── */
.ayur-filter-wrapper {
    padding: 20px 15px;
}

/* ── Doctor Cards ── */
.ayur-doctor-card {
    min-height: auto;
    padding: 30px 20px;
    margin-bottom: 24px;
}

/* ── Benefit & Facility Boxes ── */
.ayur-benefit-box,
.ayur-facility-card {
    margin-bottom: 20px;
}

/* ── Appointment Form ── */
.ayur-appointment-form-wrapper {
    padding: 25px 15px;
}

/* ============================================
   TABLET — max 991px
   ============================================ */
@media (max-width: 991px) {

    .ayur-consultation-wrapper {
        padding: 30px 15px !important;
    }

    /* Hospital card — stack columns */
    .ayur-hospital-info-card .row {
        flex-direction: column;
        gap: 20px;
    }

    .hospital-badge {
        text-align: center;
    }

    /* Filter grid — 2 columns */
    .filter-controls .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Doctors — 2 per row already handled by col-md-6 */
    .doctors-section {
        margin: 40px 0 !important;
    }

    /* Why choose & facilities — 2 col */
    .ayur-consult-benefits,
    .ayur-facilities-section {
        margin: 50px 0 !important;
    }

    /* Consultation type cards */
    .consultation-type-card {
        margin-bottom: 15px;
    }

    /* Form submit buttons */
    .col-lg-12[style*="text-align: center"] button {
        display: block;
        width: 100%;
        margin: 8px 0 !important;
    }

    /* Appointment section */
    .appointment-form-section {
        margin: 40px 0 !important;
    }
}

/* ============================================
   MOBILE — max 767px
   ============================================ */
@media (max-width: 767px) {

    .ayur-consultation-wrapper {
        padding: 20px 12px !important;
    }

    /* ── Hospital Info Card ── */
    .ayur-hospital-info-card {
        padding: 20px 15px;
    }

    .ayur-hospital-info-card h4 {
        font-size: 18px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .hospital-tagline {
        font-size: 13px;
    }

    .hospital-details p {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 4px;
        align-items: flex-start;
    }

    /* ── Intro Heading ── */
    .ayur-consult-intro .ayur-heading-wrap h3 {
        font-size: 24px;
    }

    .ayur-intro-text {
        font-size: 14px;
    }

    /* ── Filter Section ── */
    .filter-controls .col-lg-3,
    .filter-controls .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filter-section {
        margin: 20px 0 !important;
    }

    /* ── Doctor Cards — single column ── */
    .doctors-section .col-lg-4,
    .doctors-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .doctors-section {
        margin: 30px 0 !important;
    }

    .doctors-section h4 {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }

    .ayur-doctor-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .ayur-doctor-card h5 {
        font-size: 18px;
    }

    .doctor-description {
        font-size: 13px;
    }

    .doctor-select-btn {
        width: 100%;
    }

    /* ── Availability Badges ── */
    .doctor-availability-badges {
        flex-wrap: wrap;
        gap: 6px;
    }

    /* ── Appointment Form Section ── */
    .appointment-form-section {
        margin: 30px 0 !important;
    }

    .ayur-appointment-form-wrapper {
        padding: 20px 12px;
    }

    /* ── Consultation Type Cards — single column ── */
    .consultation-type-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .consultation-type-card {
        padding: 20px 15px;
    }

    .consultation-type-card h6 {
        font-size: 16px;
    }

    .consultation-features li {
        font-size: 13px;
    }

    /* ── Form Row — stack fields ── */
    .ayur-appointment-form-wrapper .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ayur-form-input {
        margin-bottom: 15px;
    }

    /* ── Note Boxes ── */
    .ayur-note-box {
        padding-left: 15px;
    }

    .ayur-note-box::before {
        display: none;
    }

    .ayur-note-box p {
        font-size: 13px;
    }

    /* ── Submit Buttons ── */
    .col-lg-12[style*="text-align: center"] {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .col-lg-12[style*="text-align: center"] button {
        width: 100% !important;
        min-width: unset !important;
        margin: 0 !important;
    }

    /* ── Why Choose Section ── */
    .ayur-consult-benefits {
        margin: 40px 0 !important;
    }

    .ayur-consult-benefits h4,
    .ayur-facilities-section h4 {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }

    .ayur-consult-benefits .col-lg-3,
    .ayur-consult-benefits .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* ── Facilities Section ── */
    .ayur-facilities-section {
        margin: 30px 0 !important;
    }

    .ayur-facilities-section .col-lg-3,
    .ayur-facilities-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ayur-facility-card {
        padding: 18px 12px;
        margin-bottom: 15px;
    }

    .ayur-facility-card h6 {
        font-size: 14px;
    }

    .ayur-facility-card p {
        font-size: 12px;
    }

    /* ── Selected Doctor Info Box ── */
    #selectedDoctorInfo p {
        font-size: 13px;
        flex-wrap: wrap;
    }
}

/* ============================================
   SMALL MOBILE — max 480px
   ============================================ */
@media (max-width: 480px) {

    /* Facilities — single column on very small screens */
    .ayur-facilities-section .col-lg-3,
    .ayur-facilities-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ayur-hospital-info-card h4 {
        font-size: 16px;
    }

    .hospital-details p {
        font-size: 12px;
    }

    .ayur-doctor-card h5 {
        font-size: 16px;
    }

    .consultation-type-card h6 {
        font-size: 15px;
    }

    .ayur-appointment-form-wrapper {
        padding: 15px 10px;
    }

    /* Benefit boxes — 2 col on small screens works fine, keep it */
    .ayur-consult-benefits .col-lg-3,
    .ayur-consult-benefits .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/*****mob sidebar*******/

@media (max-width: 991px) {

    .ayur-nav-menu ul li a .nav-text-short { display: none !important; }
    .ayur-nav-menu ul li a .nav-text-full { display: inline !important; }

    .ayur-nav-menu ul li {
        display: block;
        padding: 0;
        border-bottom: 1px solid #f0ebe3;
    }

    .ayur-nav-menu ul li a {
        display: block;
        padding: 5px 10px;   /* ← reduced from 17px */
        font-size: 15px;
        font-weight: 500;
        color: #2c4a3e;
        transition: all 0.3s ease;
    }

    .ayur-nav-menu ul li a:hover {
        color: #027377;
        padding-left: 26px;
        background: #f0f9f8;
    }

    .ayur-nav-menu ul li.active a {
        color: #027377;
        font-weight: 600;
        border-left: 3px solid #027377;
    }

    /* Footer */
    .mob-sidebar-footer {
        padding: 14px 50px;  
        border-top: 1px solid #f0ebe3;
      /*  background: #faf7f2;*/
        margin-top: auto;
    }

    .mob-footer-login {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 18px;    /* ← reduced */
        border-radius: 25px;
        border: 1.5px solid #d4c9b8;
        background: var(--ayur-primary-color);
        color: white;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 12px;  /* ← reduced */
        transition: all 0.3s ease;
    }

    .mob-footer-login:hover {
        border-color: #027377;
        color: #027377;
        background: #e8f5f6;
    }

    .mob-help-title {
        font-size: 13px;
        font-weight: 700;
        color: #027377;
        margin: 0 0 2px;
    }

    .mob-help-sub {
        font-size: 12px;
        color: #5a6f6b;
        margin: 0;
    }
}


/****8wishlist**********/

/* Wishlist Variants */
.ayur-pro-type {
    font-size: 12px;
    color: var(--ayur-text-color);
    display: block;
    margin-top: 4px;
}

.ayur-size-selector .ayur-size-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ayur-size-btn {
    padding: 4px 10px;
    border: 1px solid var(--ayur-border-color);
    background: transparent;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    color: var(--ayur-heading-color);
    transition: all 0.2s;
}

.ayur-size-btn.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.ayur-qty-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--ayur-border-color);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.ayur-qty-btn {
    width: 30px;
    height: 32px;
    background: var(--ayur-primary-lightcolor);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--ayur-heading-color);
    transition: background 0.2s;
}

.ayur-qty-btn:hover { background: var(--teal); color: #fff; }

.ayur-qty-input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 14px;
    outline: none;
    color: var(--ayur-heading-color);
}


/* ── Wishlist Mobile Responsive ── */

@media (max-width: 991px) {
    .ayur-wishlist-table table thead tr th:nth-child(4),
    .ayur-wishlist-table table tbody tr td:nth-child(4) {
        min-width: 160px;
    }
    .ayur-wishlist-table table thead tr th:nth-child(5),
    .ayur-wishlist-table table tbody tr td:nth-child(5) {
        min-width: 120px;
    }
}

@media (max-width: 767px) {

    /* Stack table as cards */
    .ayur-wishlistpage .ayur-cart-table {
        border: none;
    }

    .ayur-wishlist-table table,
    .ayur-wishlist-table thead,
    .ayur-wishlist-table tbody,
    .ayur-wishlist-table th,
    .ayur-wishlist-table td,
    .ayur-wishlist-table tr {
        display: block;
        width: 100%;
    }

    /* Hide table headers */
    .ayur-wishlist-table thead {
        display: none;
    }

    /* Each row = card */
    .ayur-wishlist-table tbody tr {
        background: #fff;
        border: 1px solid var(--ayur-border-color);
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 16px;
        position: relative;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    /* Hide S.No on mobile */
    .ayur-wishlist-table tbody tr td:first-child {
        display: none;
    }

    /* Product image — center top */
    .ayur-wishlist-table tbody tr td:nth-child(2) {
        text-align: center;
        padding-bottom: 12px;
    }

    .ayur-wishlist-table tbody tr td:nth-child(2) img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        border-radius: 8px;
        background: var(--ayur-primary-lightcolor);
        padding: 8px;
    }

    /* Product name */
    .ayur-wishlist-table tbody tr td:nth-child(3) h2 {
        font-size: 16px;
        margin-bottom: 2px;
        text-align: center;
    }

    .ayur-wishlist-table tbody tr td:nth-child(3) .ayur-pro-type {
        text-align: center;
        display: block;
    }

    /* Add labels before each cell */
    .ayur-wishlist-table tbody tr td:nth-child(4)::before { content: "Size:"; }
    .ayur-wishlist-table tbody tr td:nth-child(5)::before { content: "Quantity:"; }
    .ayur-wishlist-table tbody tr td:nth-child(6)::before { content: "Price:"; }

    .ayur-wishlist-table tbody tr td:nth-child(4)::before,
    .ayur-wishlist-table tbody tr td:nth-child(5)::before,
    .ayur-wishlist-table tbody tr td:nth-child(6)::before {
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--ayur-text-color);
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    /* Size, Qty, Price cells */
    .ayur-wishlist-table tbody tr td:nth-child(4),
    .ayur-wishlist-table tbody tr td:nth-child(5),
    .ayur-wishlist-table tbody tr td:nth-child(6) {
        padding: 8px 0;
        border-top: 1px solid var(--ayur-borderbox-color);
    }

    /* Size buttons wrap nicely */
    .ayur-size-selector .ayur-size-options {
        flex-wrap: wrap;
        gap: 6px;
    }

    .ayur-size-btn {
        padding: 5px 12px;
        font-size: 13px;
    }

    /* Qty selector full row */
    .ayur-qty-selector {
        width: 120px;
    }

    /* Price */
    .ayur-price-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Add to Cart button — full width */
    .ayur-wishlist-table tbody tr td:nth-child(7) {
        padding-top: 12px;
    }

    .ayur-wishlist-table tbody tr td:nth-child(7) .ayur-btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Delete — absolute top right */
    .ayur-wishlist-table tbody tr td:nth-child(8) {
        position: absolute;
        top: 12px;
        right: 12px;
        width: auto;
        padding: 0;
        border: none;
    }

    .ayur-tab-delete img {
        width: 20px;
        height: 20px;
        opacity: 0.6;
        transition: opacity 0.2s;
    }

    .ayur-tab-delete:hover img {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .ayur-wishlist-table tbody tr {
        padding: 12px;
    }

    .ayur-wishlist-table tbody tr td:nth-child(2) img {
        width: 80px;
        height: 80px;
    }

    .ayur-wishlist-table tbody tr td:nth-child(3) h2 {
        font-size: 15px;
    }

    .ayur-size-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* ── Wishlist Card Mobile Fixes ── */
@media (max-width: 767px) {

    /* Card inner padding */
    .ayur-wishlist-table tbody tr {
        padding: 20px 16px 16px !important;
    }

    /* Size buttons — don't stretch full width */
    .ayur-wishlist-table .ayur-size-options {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: flex-start;
    }

    .ayur-wishlist-table .ayur-size-btn {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 6px 16px !important;
    }

    /* Center quantity row */
    .ayur-wishlist-table tbody tr td:nth-child(5) {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .ayur-wishlist-table tbody tr td:nth-child(5)::before {
        text-align: center;
        width: 100%;
    }

    .ayur-qty-selector {
        margin: 0 auto !important;
    }

    /* Center price row */
    .ayur-wishlist-table tbody tr td:nth-child(6) {
        text-align: center;
    }

    .ayur-wishlist-table tbody tr td:nth-child(6) .ayur-price-wrapper {
        justify-content: center !important;
    }
}

@media (max-width: 767px) {

    /* Center size row */
    .ayur-wishlist-table tbody tr td:nth-child(4) {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .ayur-wishlist-table tbody tr td:nth-child(4)::before {
        text-align: center;
        width: 100%;
    }

    .ayur-wishlist-table .ayur-size-options {
        justify-content: center !important;
    }
}

/* ── Cart Mobile Responsive ── */
@media (max-width: 767px) {

    .ayur-cart-table table,
    .ayur-cart-table thead,
    .ayur-cart-table tbody,
    .ayur-cart-table th,
    .ayur-cart-table td,
    .ayur-cart-table tr {
        display: block;
        width: 100%;
    }

    /* Hide header */
    .ayur-cart-table thead {
        display: none;
    }

    /* Each row = card */
    .ayur-cart-table tbody tr {
        background: #fff;
        border: 1px solid var(--ayur-border-color);
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 20px 16px;
        position: relative;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    /* Coupon + update row — flat, no card style */
    .ayur-cart-table tbody tr:last-child {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    /* Hide S.No */
    .ayur-cart-table tbody tr td:first-child {
        display: none;
    }

    /* Product image — centered */
    .ayur-cart-table tbody tr td:nth-child(2) {
        text-align: center;
        padding-bottom: 12px;
    }

    .ayur-cart-table tbody tr td:nth-child(2) img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        border-radius: 8px;
        background: var(--ayur-primary-lightcolor);
        padding: 8px;
    }

    /* Product name — centered */
    .ayur-cart-table tbody tr td:nth-child(3) {
        text-align: center;
        padding-bottom: 8px;
    }

    .ayur-cart-table tbody tr td:nth-child(3) h2 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .ayur-cart-table tbody tr td:nth-child(3) .ayur-pro-type {
        text-align: center;
        display: block;
    }

    /* Labels for size, unit price, qty, total */
    .ayur-cart-table tbody tr td:nth-child(4)::before { content: "Size:"; }
    .ayur-cart-table tbody tr td:nth-child(5)::before { content: "Unit Price:"; }
    .ayur-cart-table tbody tr td:nth-child(6)::before { content: "Quantity:"; }
    .ayur-cart-table tbody tr td:nth-child(7)::before { content: "Total:"; }

    .ayur-cart-table tbody tr td:nth-child(4)::before,
    .ayur-cart-table tbody tr td:nth-child(5)::before,
    .ayur-cart-table tbody tr td:nth-child(6)::before,
    .ayur-cart-table tbody tr td:nth-child(7)::before {
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--ayur-text-color);
        letter-spacing: 0.5px;
        margin-bottom: 6px;
        text-align: center;
    }

    /* Size, price, qty, total cells */
    .ayur-cart-table tbody tr td:nth-child(4),
    .ayur-cart-table tbody tr td:nth-child(5),
    .ayur-cart-table tbody tr td:nth-child(6),
    .ayur-cart-table tbody tr td:nth-child(7) {
        padding: 10px 0;
        border-top: 1px solid var(--ayur-borderbox-color);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Size pills centered */
    .ayur-cart-table .ayur-size-options {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ayur-cart-table .ayur-size-btn {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 6px 16px !important;
    }

    /* Qty centered */
    .ayur-cart-table .ayur-qty-selector {
        margin: 0 auto;
    }

    /* Delete — top right */
    .ayur-cart-table tbody tr td:nth-child(8) {
        position: absolute;
        top: 12px;
        right: 12px;
        width: auto;
        padding: 0;
        border: none;
        display: block !important;
    }

    .ayur-cart-table tbody tr td:nth-child(8) .ayur-tab-delete img {
        width: 20px;
        height: 20px;
        opacity: 0.6;
    }

    /* Coupon row */
    .ayur-coupon-code .ayur-form-input {
        flex-direction: column;
        gap: 10px;
    }

    .ayur-coupon-code .form-control,
    .ayur-coupon-code .ayur-btn {
        width: 100% !important;
    }

    .ayur-updatecart-btn {
        text-align: center;
        padding-top: 10px;
    }

    .ayur-updatecart-btn .ayur-btn {
        width: 100%;
    }

    /* Cart totals */
    .ayur-carttotal-wrapper {
        margin-top: 10px;
    }

    .ayur-cart-total {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .ayur-checkout-btn .ayur-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .ayur-cart-table tbody tr {
        padding: 12px;
    }

    .ayur-cart-table tbody tr td:nth-child(2) img {
        width: 80px;
        height: 80px;
    }

    .ayur-cart-table tbody tr td:nth-child(3) h2 {
        font-size: 15px;
    }

    .ayur-cart-table .ayur-size-btn {
        padding: 4px 10px !important;
        font-size: 12px;
    }
}


/********Login modal *****/

 /* ── Modal Overlay ── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20,14,8,0.55);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.modal-overlay.active {
    opacity: 1; pointer-events: auto;
}

.modal-box {
    background: #fff;
    border-radius: 18px;
    max-width: 460px;
    width: 100%;
    padding: 44px 44px 36px;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute; top: 16px; right: 18px;
    background: none; border: none; cursor: pointer;
    font-size: 20px; color: #999;
}
.modal-close:hover { color: #333; }

        /* Logo badge inside modal */
        .modal-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
        }
        .modal-brand-icon {
            width: 42px; height: 42px;
            background: linear-gradient(135deg, #4ecdc4, #2a9d8f);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .modal-brand-icon svg { width: 22px; height: 22px; }
        .modal-brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: #2a2018;
            letter-spacing: .5px;
        }
        .modal-brand-tagline {
            font-size: 11px;
            color: #9b8b7a;
            letter-spacing: .5px;
            margin-top: 1px;
        }

        .modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            font-weight: 600;
            color: #1a120b;
            margin-bottom: 6px;
        }
        .modal-subtitle {
            font-size: 13px;
            color: #9b8b7a;
            margin-bottom: 28px;
        }

        /* Form */
        .form-group { margin-bottom: 18px; }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: #3a2e24;
            margin-bottom: 7px;
            letter-spacing: .2px;
        }
        .form-group input {
            width: 100%;
            border: 1.5px solid #e0d6cd;
            border-radius: 10px;
            padding: 13px 16px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #1a120b;
            background: #faf8f6;
            outline: none;
            transition: border-color .2s, box-shadow .2s, background .2s;
        }
        .form-group input::placeholder { color: #b5a899; }
        .form-group input:focus {
            border-color: #4ecdc4;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(78,205,196,0.12);
        }

        /* hCaptcha placeholder */
        .captcha-wrap {
            border: 1.5px solid #e0d6cd;
            border-radius: 10px;
            background: #faf8f6;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 22px;
        }
        .captcha-checkbox {
            width: 22px; height: 22px;
            border: 2px solid #b5a899;
            border-radius: 4px;
            flex-shrink: 0;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: border-color .2s, background .2s;
        }
        .captcha-checkbox.checked {
            background: #4ecdc4;
            border-color: #4ecdc4;
        }
        .captcha-checkbox.checked::after {
            content: '';
            width: 12px; height: 7px;
            border-left: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(-45deg) translateY(-2px);
            display: block;
        }
        .captcha-label { font-size: 13px; color: #5a4a3a; }
        .captcha-logo { margin-left: auto; text-align: center; }
        .captcha-logo-icon {
            width: 30px; height: 30px;
            background: linear-gradient(135deg, #4ecdc4, #2a9d8f);
            border-radius: 50%;
            margin: 0 auto 2px;
        }
        .captcha-logo span { font-size: 9px; color: #9b8b7a; }

        /* Sign In button */
        .btn-signin {
            width: 100%;
            padding: 15px;
            background: #1e1610;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: .5px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background .2s, transform .15s;
            margin-bottom: 18px;
        }
        .btn-signin:hover { background: #2a2018; transform: translateY(-1px); }
        .btn-signin:active { transform: translateY(0); }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e8ddd4;
        }
        .divider span { font-size: 12px; color: #b5a899; white-space: nowrap; }

        /* Google button */
        .btn-google {
            width: 100%;
            padding: 13px;
            background: #fff;
            color: #3a2e24;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            border: 1.5px solid #e0d6cd;
            border-radius: 10px;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            transition: background .2s, border-color .2s, transform .15s;
        }
        .btn-google:hover {
            background: #faf8f6;
            border-color: #c9b99a;
            transform: translateY(-1px);
        }
        .btn-google:active { transform: translateY(0); }
        .google-icon { width: 18px; height: 18px; }

        /* Register link */
        .modal-footer-text {
            text-align: center;
            font-size: 12.5px;
            color: #9b8b7a;
            margin-top: 18px;
        }
        .modal-footer-text a {
            color: #4ecdc4;
            text-decoration: none;
            font-weight: 500;
        }
        .modal-footer-text a:hover { text-decoration: underline; }

          .nav-icon-btn {
            background: none; border: none; cursor: pointer;
            color: #fff; display: flex; align-items: center; justify-content: center;
            padding: 6px; border-radius: 50%; transition: background .2s;
            position: relative;
        }
        .nav-icon-btn:hover { background: rgba(255,255,255,0.1); }


        
    /* ============================================
   PRODUCT CARD CIRCULAR BADGE 
   ============================================ */

.ayur-tpro-badge-circle-home {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Classical → Green circle */
.ayur-tpro-badge-circle-home.ayur-badge-classical-home {
    background: linear-gradient(135deg, #4d7968 0%, #5d8a66 100%);
    box-shadow: 0 4px 12px rgba(77, 121, 104, 0.45);
}

/* Proprietary → Blue circle */
.ayur-tpro-badge-circle-home.ayur-badge-proprietary-home {
    background: linear-gradient(135deg, #0b6a8a 0%, #17a2b8 100%);
    box-shadow: 0 4px 12px rgba(11, 106, 138, 0.45);
}

.ayur-tpro-badge-circle-home:hover {
    transform: scale(1.1);
}

.ayur-tpro-badge-circle-home svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

/* ── Tooltip ── */
.ayur-badge-tooltip-home {
    visibility: hidden;
    opacity: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    color: #fff;

    position: absolute;
    top: 50%;
    right: calc(100% + 12px); /* appears to the LEFT of the badge */
    transform: translateY(-50%);

    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 20;
}

/* Arrow pointing right → toward the badge */
.ayur-badge-tooltip-home::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
}

/* Classical tooltip → green */
.ayur-badge-classical-home .ayur-badge-tooltip-home {
    background: #4d7968;
}
.ayur-badge-classical-home .ayur-badge-tooltip-home::after {
    border-left-color: #4d7968;
}

/* Proprietary tooltip → blue */
.ayur-badge-proprietary-home .ayur-badge-tooltip-home {
    background: #0b6a8a;
}
.ayur-badge-proprietary-home .ayur-badge-tooltip-home::after {
    border-left-color: #0b6a8a;
}

/* Show on hover */
.ayur-tpro-badge-circle-home:hover .ayur-badge-tooltip-home {
    visibility: visible;
    opacity: 1;
}

/* Mobile */
@media (max-width: 576px) {
    .ayur-tpro-badge-circle-home {
        width: 36px;
        height: 36px;
    }
    .ayur-tpro-badge-circle-home svg {
        width: 18px;
        height: 18px;
    }
}



/* ============================================
   BANNER SECTION - HOME PAGE
   
   ============================================ */

/* ── Outer wrapper ── */
.ayur-ban-home-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ── Swiper ── */
.ayur-ban-home-slider {
    width: 100%;
    height: 680px;
}

/* ── Each slide: background image ── */
.ayur-ban-home-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: ayurBanHomeZoom 10s ease-in-out infinite alternate;
}

@keyframes ayurBanHomeZoom {
    0%   { transform: scale(1);    }
    100% { transform: scale(1.07); }
}


/* Dark forest green — for yoga, herbs, oil slides */
.ayur-ban-home-slide--overlay-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 29, 19, 0.78) 0%,
        rgba(3, 85, 88, 0.55) 55%,
        rgba(6, 29, 19, 0.40) 100%
    );
    z-index: 1;
}

/* Teal tone — for forest, pharma slides */
.ayur-ban-home-slide--overlay-teal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 60, 62, 0.82) 0%,
        rgba(3, 152, 158, 0.45) 55%,
        rgba(6, 29, 19, 0.50) 100%
    );
    z-index: 1;
}

/* Warm earth tone — for family/kids slide */
.ayur-ban-home-slide--overlay-warm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 29, 19, 0.75) 0%,
        rgba(20, 60, 40, 0.55) 50%,
        rgba(3, 90, 70, 0.35) 100%
    );
    z-index: 1;
}

/* ── Text overlay — sits above slide overlays ── */
.ayur-ban-home-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    pointer-events: none; /* lets clicks pass through to arrows & dots */
}

/* Re-enable clicks only on actual links/buttons inside */
.ayur-ban-home-content a,
.ayur-ban-home-content button {
    pointer-events: all;
}

.ayur-ban-home-inner {
    max-width: 780px;
    width: 100%;
}

/* Small pill tag */
.ayur-ban-home-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(3, 152, 158, 0.12);
    border: 1px solid rgba(3, 152, 158, 0.45);
    border-radius: 30px;
    padding: 6px 20px;
    margin-bottom: 22px;
}

/* Main heading */
.ayur-ban-home-inner h1 {
    font-size: clamp(26px, 4.2vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}

.ayur-ban-home-inner h1 span {
    color: #03989e;
}

/* Description */
.ayur-ban-home-desc {
    font-size: clamp(14px, 1.4vw, 17px);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Buttons */
.ayur-ban-home-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Arrows ── */
.ayur-ban-home-prev,
.ayur-ban-home-next {
    z-index: 10;
    width: 50px !important;
    height: 50px !important;
    background: rgba(3, 152, 158, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1.5px solid rgba(3, 152, 158, 0.40);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ayur-ban-home-prev:hover,
.ayur-ban-home-next:hover {
    background: rgba(3, 152, 158, 0.65);
    border-color: #03989e;
    transform: scale(1.08);
}

.ayur-ban-home-prev::after,
.ayur-ban-home-next::after {
    display: none !important;
}

.ayur-ban-home-prev svg,
.ayur-ban-home-next svg {
    width: 18px;
    height: 9px;
    flex-shrink: 0;
}

/* ── Pagination dots ── */
.ayur-ban-home-pagination {
    z-index: 10 !important;
    bottom: 24px !important;
}

.ayur-ban-home-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.40);
    opacity: 1;
    transition: all 0.35s ease;
    margin: 0 4px !important;
}

.ayur-ban-home-pagination .swiper-pagination-bullet-active {
    background: #03989e;
    width: 32px;
    border-radius: 5px;
}

/* ── Decorative leaves ── */
.ayur-ban-home-leaves {
    position: absolute;
    inset: 0;
    z-index: 2;          /* above slide overlay, below text */
    pointer-events: none;
}

.ayur-ban-home-leaf-left {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 210px;
    opacity: 0.22;
}

.ayur-ban-home-leaf-right {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 160px;
    opacity: 0.20;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ayur-ban-home-slider { height: 560px; }
}

@media (max-width: 767px) {
    .ayur-ban-home-slider { height: 500px; }
    .ayur-ban-home-inner h1 { font-size: 26px; }
    .ayur-ban-home-desc   { font-size: 14px; }
    .ayur-ban-home-btns   { flex-direction: column; gap: 12px; }
    .ayur-ban-home-btns .ayur-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    .ayur-ban-home-prev,
    .ayur-ban-home-next {
        width: 38px !important;
        height: 38px !important;
    }
    .ayur-ban-home-leaf-left  { max-width: 130px; }
    .ayur-ban-home-leaf-right { max-width: 100px; }
}

@media (max-width: 480px) {
    .ayur-ban-home-slider  { height: 440px; }
    .ayur-ban-home-tag     { font-size: 10px; letter-spacing: 2px; }
}


/* New */
.ayur-quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* Banner content styles */
.banner-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 600px;
  color: #fff;
  z-index: 10;
}

.banner-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.banner-content .ayur-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #03989e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-content .ayur-btn:hover {
  background-color: #061d13;
  transform: translateY(-2px);
}

/* Responsive styles for banner content */
@media (max-width: 992px) {
  .banner-content {
    bottom: 30px;
    left: 30px;
    max-width: 500px;
  }

  .banner-content h2 {
    font-size: 36px;
  }

  .banner-content h3 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .banner-content {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
  }

  .banner-content h2 {
    font-size: 30px;
  }

  .banner-content h3 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .banner-content {
    bottom: 15px;
    left: 15px;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .banner-content h3 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-content .ayur-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

}

/* Banner content styles */
.banner-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 600px;
  color: #fff;
  z-index: 10;
}

.banner-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.banner-content .ayur-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #03989e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-content .ayur-btn:hover {
  background-color: #061d13;
  transform: translateY(-2px);
}

/* Responsive styles for banner content */
@media (max-width: 992px) {
  .banner-content {
    bottom: 30px;
    left: 30px;
    max-width: 500px;
  }

  .banner-content h2 {
    font-size: 36px;
  }

  .banner-content h3 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .banner-content {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
  }

  .banner-content h2 {
    font-size: 30px;
  }

  .banner-content h3 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .banner-content {
    bottom: 15px;
    left: 15px;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .banner-content h3 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-content .ayur-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}


.ayur-quick-view-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ayur-quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}


/* Quick View Modal Image */
.ayur-modal-image {
    width: 100%;
    text-align: center;
}

.ayur-modal-image img {
    max-height: 300px;       
    max-width: 100%;         
    width: auto;
    height: auto;
    object-fit: contain;     
    display: inline-block;
}




/* New - address cards */
.checkout-title{
font-weight:600;
margin-bottom:20px;
}

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

.ayur-address-card{
border:1px solid #e6e6e6;
border-radius:12px;
padding:18px;
cursor:pointer;
position:relative;
transition:0.25s;
background:#fff;
}

.ayur-address-card:hover{
border-color:#0aa89e;
}

.ayur-address-card.active{
border:2px solid #0aa89e;
background:#f7fffd;
}

.address-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.address-type{
background:#eef6f6;
padding:4px 10px;
border-radius:20px;
font-size:12px;
}

.address-type.work{
background:#f3eaff;
}

.address-check{
width:22px;
height:22px;
background:#0aa89e;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:12px;
opacity:0;
}

.ayur-address-card.active .address-check{
opacity:1;
}

.address-name{
font-size:16px;
font-weight:600;
margin-bottom:6px;
}

.address-text{
font-size:14px;
color:#666;
margin-bottom:10px;
}

.address-contact{
font-size:14px;
margin-bottom:12px;
}

.address-actions{
display:flex;
gap:10px;
}

.address-actions button{
background:none;
border:none;
color:#0aa89e;
font-weight:500;
cursor:pointer;
}

.add-address-card{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
border:2px dashed #ddd;
}

.add-icon{
font-size:28px;
margin-bottom:6px;
}

.modern-checkbox{
display:flex;
align-items:center;
gap:10px;
cursor:pointer;
}

.modern-checkbox input{
display:none;
}

.checkbox-ui{
width:18px;
height:18px;
border:2px solid #aaa;
border-radius:4px;
}

.modern-checkbox input:checked + .checkbox-ui{
background:#0aa89e;
border-color:#0aa89e;
}

.order-item{
display:flex;
align-items:center;
gap:12px;
margin-bottom:12px;
}

.order-item img{
width:60px;
border-radius:6px;
}

.payment-option{
border:1px solid #ddd;
padding:12px;
border-radius:8px;
margin-top:10px;
cursor:pointer;
}

.payment-option.active{
border:2px solid #0aa89e;
background:#f7fffd;
}

.place-order-btn{
width:100%;
margin-top:20px;
}
.default-badge{
background:#0aa89e;
color:#fff;
font-size:11px;
padding:3px 8px;
border-radius:10px;
margin-left:8px;
}
.ayur-order-summary{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.summary-title{
font-size:20px;
margin-bottom:20px;
font-weight:600;
}

.order-items{
border-bottom:1px solid #eee;
padding-bottom:15px;
margin-bottom:15px;
}

.order-item{
display:flex;
align-items:center;
margin-bottom:15px;
}

.order-item img{
width:55px;
height:55px;
border-radius:6px;
margin-right:12px;
}

.item-info{
flex:1;
}

.item-info h4{
font-size:14px;
margin:0;
}

.item-info span{
font-size:12px;
color:#777;
}

.item-info p{
font-size:12px;
margin:0;
}

.item-price{
font-weight:600;
}

.coupon-box{
display:flex;
margin-bottom:15px;
}

.coupon-box input{
flex:1;
padding:8px;
border:1px solid #ddd;
border-radius:6px 0 0 6px;
}

.coupon-box button{
background:#111;
color:#fff;
border:none;
padding:8px 14px;
border-radius:0 6px 6px 0;
}

.price-breakdown{
font-size:14px;
}

.price-row{
display:flex;
justify-content:space-between;
margin:8px 0;
}

.price-row.discount{
color:#1a9f3a;
}

.price-divider{
height:1px;
background:#eee;
margin:10px 0;
}

.price-row.total{
font-size:18px;
font-weight:600;
}

.free{
color:#1a9f3a;
}

.payment-method{
margin-top:20px;
}

.payment-option{
border:1px solid #eee;
padding:12px;
border-radius:6px;
margin-bottom:8px;
cursor:pointer;
display:flex;
align-items:center;
gap:8px;
}

.payment-option.active{
border-color:#000;
background:#fafafa;
}

.place-order-btn{
width:100%;
margin-top:15px;
}

.address-modal{
border-radius:16px;
overflow:hidden;
}

.address-modal .modal-header{
border-bottom:1px solid #eee;
}

.address-type-wrap{
display:flex;
gap:15px;
margin-top:5px;
}

.address-type{
cursor:pointer;
}

.address-type input{
display:none;
}

.address-type span{
display:inline-block;
padding:10px 18px;
border:1px solid #ddd;
border-radius:10px;
background:#f9f9f9;
transition:0.3s;
}

.address-type input:checked + span{
background:#198754;
color:#fff;
border-color:#198754;
}

.default-check{
display:flex;
align-items:center;
gap:8px;
margin-top:10px;
}
.no-address{
text-align:center;
padding:40px;
border:2px dashed #ddd;
border-radius:10px;
}

/* ============================================================
    CART PAGE STYLES
   
============================================================ */

/* ── Page Wrapper ── */
.cns-cart-wrapper {
    padding: 60px 0;
    background: #f9f9f9;
    min-height: 60vh;
}

/* ── Loading State ── */
.cns-cart-loading {
    text-align: center;
    padding: 60px 0;
    color: #777;
    font-size: 16px;
}

.cns-cart-loading::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #027377;
    border-radius: 50%;
    margin: 20px auto 0;
    animation: cns-cart-spin 0.8s linear infinite;
}

@keyframes cns-cart-spin {
    to { transform: rotate(360deg); }
}

/* ── Empty State ── */
.cns-cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cns-cart-empty__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    opacity: 0.3;
}

.cns-cart-empty__title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.cns-cart-empty__subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 30px;
}

.cns-cart-empty__btn {
    display: inline-block;
    padding: 12px 32px;
    background: #027377;
    color: #fff !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.cns-cart-empty__btn:hover {
    background: #015a5d;
}

/* ── Table Wrapper ── */
.cns-cart-table-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 32px;
}

/* ── Table ── */
.cns-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.cns-cart-table thead {
    background: #027377;
    color: #fff;
}

.cns-cart-table thead th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

.cns-cart-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.cns-cart-table tbody tr:last-child {
    border-bottom: none;
}

.cns-cart-table tbody tr:hover {
    background: #fafafa;
}

.cns-cart-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    font-size: 14px;
    color: #444;
    border: none;
}

/* ── Product Image Cell ── */
.cns-cart-product-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* ── Product Name Cell ── */
.cns-cart-product-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px;
    line-height: 1.3;
}

.cns-cart-product-meta {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* ── Size Cell ── */
.cns-cart-size-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f8f8;
    color: #027377;
    border: 1px solid #c5e4e5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ── Price Cell ── */
.cns-cart-unit-price {
    font-size: 15px;
    font-weight: 600;
    color: #027377;
    white-space: nowrap;
}

/* ── Quantity Selector ── */
.cns-cart-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    min-width: 110px;
}

.cns-cart-qty-btn {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.cns-cart-qty-btn:hover {
    background: #027377;
    color: #fff;
}

.cns-cart-qty-input {
    width: 42px;
    height: 36px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    outline: none;
    -moz-appearance: textfield;
}

.cns-cart-qty-input::-webkit-outer-spin-button,
.cns-cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Row Total Cell ── */
.cns-cart-row-total {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

/* ── Delete Button ── */
.cns-cart-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff0f0;
    border: 1px solid #ffd5d5;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-decoration: none;
}

.cns-cart-delete-btn:hover {
    background: #ff4444;
    border-color: #ff4444;
}

.cns-cart-delete-btn:hover img {
    filter: brightness(0) invert(1);
}

.cns-cart-delete-btn img {
    width: 16px;
    height: 16px;
    transition: filter 0.15s;
}

/* ── Serial Number ── */
.cns-cart-serial {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}

/* ── Totals Section ── */
.cns-cart-totals-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.cns-cart-totals-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 32px;
    min-width: 320px;
    width: 100%;
    max-width: 400px;
}

.cns-cart-totals-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.cns-cart-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cns-cart-totals-row:last-of-type {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 4px;
}

.cns-cart-totals-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.cns-cart-totals-value {
    font-size: 16px;
    font-weight: 700;
    color: #027377;
}

.cns-cart-totals-value--grand {
    font-size: 20px;
    color: #222;
}

/* ── Checkout Button ── */
.cns-cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background: #027377;
    color: #fff !important;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.3px;
}

.cns-cart-checkout-btn:hover {
    background: #015a5d;
    transform: translateY(-1px);
}

/* ── Updating Overlay (shows when API call in progress) ── */
.cns-cart-row--updating {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.2s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cns-cart-table thead {
        display: none;
    }

    .cns-cart-table tbody tr {
        display: block;
        padding: 16px;
        border-bottom: 8px solid #f0f0f0;
        position: relative;
    }

    .cns-cart-table tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 0;
        border: none;
        font-size: 13px;
    }

    .cns-cart-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #888;
        font-size: 12px;
        text-transform: uppercase;
        min-width: 80px;
    }

     .cns-cart-unit-price,
    .cns-cart-row-total {
        justify-content: flex-start;
        gap: 0;
    }
      .cns-cart-unit-price::before,
    .cns-cart-row-total::before {
        flex: 1;
    }

    .cns-cart-totals-wrapper {
        justify-content: stretch;
    }

    .cns-cart-totals-box {
        max-width: 100%;
    }

    .cns-cart-product-img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .cns-cart-wrapper {
        padding: 30px 0;
    }

    .cns-cart-totals-box {
        padding: 20px 16px;
    }
}
/* Coupon */
.coupon-section{
  margin-top:20px;
}

.coupon-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.coupon-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  border:1px dashed #ddd;
  border-radius:10px;
  background:#fafafa;
}

.coupon-code{
  font-weight:600;
  color:#333;
}

.coupon-desc{
  font-size:13px;
  color:#777;
}

.coupon-btn{
  background:#000;
  color:#fff;
  border:none;
  padding:6px 14px;
  border-radius:6px;
  cursor:pointer;
  font-size:13px;
}

.coupon-btn.applied{
  background:#28a745;
}

.applied-coupon{
  margin-top:10px;
  font-size:14px;
  color:#444;
}

.remove-coupon{
  margin-left:10px;
  border:none;
  background:#dc3545;
  color:#fff;
  padding:4px 10px;
  border-radius:5px;
}


/* Mobile Banner Slider Styles */
.ayur-mobile-banner-section {
    display: none; /* Hidden by default, only shown on mobile */
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .ayur-mobile-banner-slider {
    width: 100%;
    height: auto;
  }
  
  .ayur-mobile-banner-slide {
    position: relative;
    width: 100%;
    height:90vh; /* Same height as main banner for mobile */
    overflow: hidden;
  }
  
  .mobile-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .mobile-banner-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .ayur-mobile-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  
  .ayur-mobile-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
  
  .ayur-mobile-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
  }
  
  /* Mobile banner content styling - same as main banner */
  .ayur-mobile-banner-content {
    position: absolute;
    bottom: 50px;
    left: 20px;
    max-width: 80%;
    color: #fff;
    z-index: 10;
  }
  
  .ayur-mobile-banner-tag {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .ayur-mobile-banner-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  
  .ayur-mobile-banner-desc {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    display: none; /* Hide description on mobile for cleaner look */
  }
  
  .ayur-mobile-banner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .ayur-mobile-banner-btn {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
  }
  
  /* Show mobile banner only on mobile devices and hide main banner */
  @media (max-width: 768px) {
    .ayur-mobile-banner-section {
      display: block;
    }
  
    .ayur-ban-home-section {
      display: none;
    }
  }
  
  /* Adjust for smaller mobile devices */
  @media (max-width: 480px) {
    .ayur-mobile-banner-slide {
      height: 90vh;
    }
  
    .ayur-mobile-banner-content {
      bottom: 30px;
      left: 15px;
      max-width: 90%;
    }
  
    .ayur-mobile-banner-title {
      font-size: 20px;
    }
  }


  /**order confirmation page styles*/

  
  .oc-page {
    background: #f5f5f0;
    min-height: 60vh;
    padding: 48px 0 72px;
  }
  .oc-hero {
    text-align: center;
    padding: 40px 24px 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    margin-bottom: 24px;
  }
  .oc-hero .check-ring {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #e6f4f1;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 16px;
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
  }
  .oc-hero .check-ring i { font-size: 32px; color: #027377; }
  @keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .oc-hero h1 { font-size: 1.6rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
  .oc-hero .order-id-pill {
    display: inline-block;
    background: #f0f9f9; border: 1px solid #c2e0df;
    color: #027377; font-weight: 600; font-size: .85rem;
    padding: 4px 14px; border-radius: 100px; letter-spacing: .5px;
  }
  .oc-hero .order-date { font-size: .82rem; color: #888; margin-top: 6px; }
  .oc-card {
    background: #fff; border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden; margin-bottom: 20px;
  }
  .oc-card-header {
    padding: 16px 20px; border-bottom: 1px solid #f0f0f0;
    display: flex; align-items: center; gap: 10px;
  }
  .oc-card-header i { font-size: 18px; color: #027377; }
  .oc-card-header h5 { margin: 0; font-size: .95rem; font-weight: 700; color: #1a1a1a; }
  .oc-card-body { padding: 20px; }
  .oc-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 0; border-bottom: 1px solid #f5f5f5;
  }
  .oc-item:last-child { border-bottom: none; }
  .oc-item img {
    width: 64px; height: 64px; object-fit: cover;
    border-radius: 10px; background: #f5f5f0; flex-shrink: 0;
  }
  .oc-item-img-placeholder {
    width: 64px; height: 64px; border-radius: 10px;
    background: #f0f9f9; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
  }
  .oc-item-img-placeholder i { font-size: 22px; color: #c2e0df; }
  .oc-item-info { flex: 1; min-width: 0; }
  .oc-item-name { font-weight: 600; font-size: .9rem; color: #1a1a1a; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .oc-item-qty { font-size: .8rem; color: #888; }
  .oc-item-price { font-weight: 700; font-size: .9rem; color: #1a1a1a; white-space: nowrap; }
  .oc-address-block p { margin: 0 0 4px; font-size: .88rem; color: #444; line-height: 1.6; }
  .oc-address-block .addr-name { font-weight: 700; font-size: .92rem; color: #1a1a1a; }
  .oc-address-block .addr-phone { color: #027377; font-weight: 600; }
  .oc-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: .88rem; color: #555;
    border-bottom: 1px solid #f5f5f5;
  }
  .oc-summary-row:last-child { border-bottom: none; }
  .oc-summary-row.total { font-weight: 700; font-size: 1rem; color: #1a1a1a; padding-top: 12px; }
  .oc-summary-row .discount { color: #2e7d32; font-weight: 600; }
  .payment-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 100px; font-size: .8rem; font-weight: 600;
  }
  .payment-badge.paid { background: #e8f5e9; color: #2e7d32; }
  .payment-badge.pending { background: #fff8e1; color: #f57f17; }
  .payment-badge.failed { background: #ffebee; color: #c62828; }
  .oc-status-track {
    display: flex; align-items: flex-start;
    justify-content: space-between;
    position: relative; padding: 0 8px;
  }
  .oc-status-track::before {
    content: ''; position: absolute;
    top: 16px; left: 32px; right: 32px;
    height: 2px; background: #e0e0e0; z-index: 0;
  }
  .oc-status-step { display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 1; flex: 1; }
  .oc-status-step .dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: #e0e0e0; display: flex; align-items: center;
    justify-content: center; font-size: 14px; color: #aaa;
  }
  .oc-status-step.active .dot { background: #027377; color: #fff; box-shadow: 0 0 0 4px rgba(2,115,119,.15); }
  .oc-status-step.done .dot { background: #027377; color: #fff; }
  .oc-status-step span { font-size: .72rem; color: #999; text-align: center; font-weight: 500; }
  .oc-status-step.active span, .oc-status-step.done span { color: #027377; font-weight: 600; }
  .oc-cta { display: flex; gap: 12px; flex-wrap: wrap; }
  .oc-cta .btn { flex: 1; min-width: 140px; }
  .btn-ayur { background: #027377; color: #fff; border: 2px solid #027377; font-weight: 600; }
  .btn-ayur:hover { background: #025a5e; border-color: #025a5e; color: #fff; }
  .btn-ayur-outline { background: transparent; color: #027377; border: 2px solid #027377; font-weight: 600; }
  .btn-ayur-outline:hover { background: #027377; color: #fff; }
  .coupon-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f0f9f9; border: 1px dashed #027377;
    color: #027377; font-size: .78rem; font-weight: 600;
    padding: 3px 10px; border-radius: 100px;
  }

  .ayur-shop-sort-bar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
padding:10px 15px;
background:#f7f7f7;
border-radius:6px;
}

.ayur-sort-select{
padding:8px 12px;
border:1px solid #ddd;
border-radius:5px;
font-size:14px;
cursor:pointer;
}
/* Enhanced Chatbot Styles */

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    min-width: 60px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Product carousel */
.product-carousel {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 12px 0;
    margin: 8px 0;
    scrollbar-width: thin;
}

.product-card {
    min-width: 140px;
    max-width: 160px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 1px solid #eef2f6;
}

.product-info {
    padding: 10px;
}

.product-info h4 {
    font-size: 0.9rem;
    margin: 0 0 4px 0;
    color: #1e293b;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    margin: 0 0 8px 0;
}

.view-product-btn {
    width: 100%;
    padding: 6px;
    background: #f0f4ff;
    border: none;
    border-radius: 6px;
    color: #667eea;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-product-btn:hover {
    background: #667eea;
    color: white;
}

/* Doctor list */
.doctor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
}

.doctor-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.doctor-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateX(4px);
}

.doctor-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.doctor-info {
    flex: 1;
}

.doctor-info h4 {
    font-size: 1rem;
    margin: 0 0 4px 0;
    color: #1e293b;
    font-weight: 600;
}

.doctor-qualification {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 2px 0;
}

.doctor-specialization {
    font-size: 0.8rem;
    color: #667eea;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.doctor-experience {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0 0 8px 0;
}

.book-doctor-btn {
    padding: 6px 12px;
    background: #667eea;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-doctor-btn:hover {
    background: #764ba2;
    transform: scale(1.02);
}

/* Formulation list */
.formulation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.formulation-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f0f4ff;
    border-radius: 30px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.formulation-chip:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.formulation-chip i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.formulation-chip:hover i {
    transform: translateX(4px);
}

/* Suggestion buttons */
.suggestion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.suggestion-btn {
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    color: #334155;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Scrollbar styling for carousel */
.product-carousel::-webkit-scrollbar {
    height: 4px;
}

.product-carousel::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.product-carousel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.product-carousel::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive */
@media (max-width: 576px) {
    .product-card {
        min-width: 120px;
    }
    
    .product-card img {
        height: 100px;
    }
    
    .doctor-item {
        padding: 10px;
    }
    
    .doctor-item img {
        width: 50px;
        height: 50px;
    }
    
    .suggestion-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
.stock-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
}

.in-stock {
  background-color: #d4edda;
  color: #155724;
}

.low-stock {
  background-color: #fff3cd;
  color: #856404;
}

.out-of-stock {
  background-color: #f8d7da;
  color: #721c24;
}
.ayur-modal-thumbnails{
    display:flex;
    gap:8px;
    margin-top:12px;
}

.modal-thumb{
    width:55px;
    height:55px;
    border:2px solid transparent;
    cursor:pointer;
    border-radius:6px;
    overflow:hidden;
}

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

.modal-thumb.active{
    border-color:#027377;
}
.ayur-tpro-img a{
    display:flex;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
}

.ayur-tpro-img a img{
    width:100%;
    height:100%;
    object-fit:contain;
}



/*product details */

#mainProductImage{
    object-fit:contain;
}
.healthConcernSlider .swiper-wrapper{
    align-items: stretch;
}

.healthConcernSlider .swiper-slide{
    height: auto;
}

.ayur-concern-category{
    height: 100%;
}
.healthConcernSlider .swiper-pagination{
    margin-top: 15px;
    position: relative;
}

.ayur-tpro-dis {
    position: absolute;
    top: 14px;
    left: 10px;
    z-index: 3;
<<<<<<< HEAD
}


=======
    padding: 5px 14px 5px 10px;
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #fff;
    border-radius: 4px;
    pointer-events: none;
}
.ayur-dis-top{
    top: 45px;
    left: 1px;
}
.healthConcernSlider .swiper-pagination-bullet-active{
    background:#027377;   /* active bullet color */
}
@media (max-width: 768px) {
  .ayur-btn-buynow span {
    display: none;
  }
}
.more-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    cursor:pointer;
}


/* fix  */


.ayur-tpro-label {
    top: 10px;
    left: -4px;
    z-index: 3;
}


.ayur-tpro-dis.ayur-dis-top,
.ayur-tpro-dis.ayur-discount-badge {
    position: absolute;
    top: auto !important;   
    bottom: 10px;           
    left: 10px;
    z-index: 3;
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    pointer-events: none;
}


.ayur-tpro-label ~ .ayur-tpro-dis {
    top: 46px !important;   
    bottom: auto;
    left: 8px;
}


/* Fix review card layout in product details */
.ayur-post-div.ayur-shop-post {
    display: block !important;
    background: var(--ayur-white-color);
    border: 1px solid var(--ayur-border-color);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    grid-template-columns: unset !important;
}

.ayur-post-div.ayur-shop-post .ayur-blog-post-para h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ayur-banheading-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ayur-post-div.ayur-shop-post .ayur-blog-post-para h3 span {
    font-size: 13px;
    font-weight: 400;
    color: var(--ayur-para-color);
}

.ayur-post-div.ayur-shop-post .ayur-blog-post-para p {
    color: var(--ayur-para-color);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 8px;
}

.ayur-post-div.ayur-shop-post .ayur-shop-review {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.ayur-post-div.ayur-shop-post .ayur-shop-review img {
    width: 18px;
    height: 18px;
}

@media (max-width: 576px) {
    .ayur-tpro-img {
        height: 160px;
    }

    .ayur-tpro-text h3 {
        min-height: 40px;
        font-size: 13px;
    }
}


/* Card fills full column height */
.ayur-tpro-box.ayur-shoppro-sing {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* Fixed image height */
.ayur-shoppro-sing .ayur-tpro-img {
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.ayur-shoppro-sing .ayur-tpro-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text area grows to fill remaining space */
.ayur-shoppro-sing .ayur-tpro-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px 10px 10px;
}

/* Fixed title height — max 2 lines */
.ayur-shoppro-sing .ayur-tpro-text h3 {
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

/* Push price + buttons to bottom */
.ayur-shoppro-sing .ayur-tpro-price {
    margin-top: auto;
    margin-bottom: 10px;
}

.ayur-shoppro-sing .ayur-tpro-btn {
    margin-top: auto;
}

/* Mobile */
@media (max-width: 576px) {
    .ayur-shoppro-sing .ayur-tpro-img {
        height: 160px;
    }

    .ayur-shoppro-sing .ayur-tpro-text h3 {
        font-size: 13px;
        min-height: 38px;
    }
}

/* ── Hide sidebar column space on tablet (768px–991px) ── */
@media (min-width: 768px) and (max-width: 991px) {

    
    .ayur-shopsin-sec .row > div:first-child  {
        display: none !important;
    }

   
    .ayur-shopsin-sec .row > div:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Show the mobile filter button */
    .ayur-mobile-filter-btn {
        display: block !important;
    }
    .ayur-shopsin-products .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}