/* =====================================
   1. RESET & BASE
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: auto;

}

html {
  scroll-behavior: smooth;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
html {
  scrollbar-width: none;
}

/* For IE, Edge */

body {
    font-family: 'Sapphire Sanford', sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background-color: #FDF8F2;
    -ms-overflow-style: none;
}

/* For Full Site*/
@font-face {
    font-family: 'Sapphire Sanford';
    src: url('../fonts/Sanford-Book.woff2') format('woff2'),
         url('../fonts/Sanford-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* For Brand Heading*/
@font-face {
    font-family: 'Whispered Trails';
    src: url('../fonts/WhisperedTrails.woff2') format('woff2'),
        url('../fonts/WhisperedTrails.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*@font-face {*/
/*    font-family: 'Morganite';*/
/*    src: url('../fonts/Morganite-Medium.woff2') format('woff2'),*/
/*        url('../fonts/Morganite-Medium.woff') format('woff');*/
/*    font-weight: 500;*/
/*    font-style: italic;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Amethyst';*/
/*    src: url('../fonts/AmethystRegular.woff2') format('woff2'),*/
/*        url('../fonts/AmethystRegular.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Obsidian';*/
/*    src: url('../fonts/Obsidian-Regular.woff2') format('woff2'),*/
/*        url('../fonts/Obsidian-Regular.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

*{
  font-family: 'Sapphire Sanford', serif;
} 

.Sapphire-Sanford{
    font-family: 'Sapphire Sanford';
}
.Morganite {
    font-family: 'Morganite';
}
.Amethyst{
    font-family: 'Amethyst';
}
.Obsidian{
    font-family: 'Obsidian';
}

/* fonts  */
/* @font-face {
    font-family: 'Sanford-Book';
    src: url('../fonts/Sanford-Book.woff2') format('woff2'),
         url('../fonts/Sanford-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}


/* fonts end */

.premium-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  border-top: 1px solid #290b0b;
  border-bottom: 1px solid #290b0b;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 22px;
   
  letter-spacing: 1px;

  /* premium gradient text */
  /*background: linear-gradient(90deg, #d4af37, #ffffff, #a855f7);*/
  background: #290b0b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;

  /*text-shadow: 0 0 10px rgba(168, 85, 247, 0.15);*/
}

/* smooth infinite scroll */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* mobile optimization */
@media (max-width: 768px) {
  .marquee-track {
    gap: 40px;
    animation-duration: 18s;
  }

  .marquee-track span {
    font-size: 15px;
  }
}

/* =====================================
   2. IMAGES & LINKS
===================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

p:last-child {
  margin-bottom: 0px;
  font-family: 'Sapphire Sanford', serif;
}
p{
  font-family: 'Sapphire Sanford', serif;

}
a:hover {
  color: var(--yellow);
}

ul {
  margin: 0;
  padding: 0;

}


/* font size  */
.fs-13 {
  font-size: 13px;
}

.fs-12 {
  font-size: 12px;
}

.fs-10 {
  font-size: 10px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-30 {
  font-size: 30px;
}

.fw-500 {
  font-weight: 500;
}

.fw-100 {
  font-weight: 100;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800 !important;
}

/* font size end */


/* =====================================
   3. ROYAL COLOR PALETTE (FROM PSD)
===================================== */
:root {
  --text-dark: #000;
  --text: #1C1C1C;
  --white: #fff;
  --heading: #C6A25A;
  --gold-bg: #F5EDE3;
  --border-color: #c6a25a;
  --dark-bg: #1C1C1C;
}


.space {
  padding: 70px 0px;
}

.dark-bg {
  background-color: var(--dark-bg);
}

.gr-bg {
  background: linear-gradient(135deg, #E8DCCB, #D6C3A3);
}

.gold-bg {
  background-color: var(--gold-bg);
}

.heading {
  color: var(--heading);

}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Spectral", serif; */
  /* font-family: "Playfair Display", serif; */
     /*font-family: 'SapphireSanford', sans-serif;*/
     font-family: 'Sapphire Sanford', serif;

}

.global-heading {
  font-size: 35px;
}

.heading-font {
  font-family: 'Sapphire Sanford', sans-serif;

}


/* navbar css  */
.btn-small {
  font-size: 12px !important;
  padding: 6px 12px !important;
  line-height: normal;
}

/* Navbar Background */
section.navbar-section {
  background-color: var(--gold-bg);


}

/* Logo */
section.navbar-section {
  /* position: fixed;
  top: 0px;
  left: 0px; */
  width: 100%;
  z-index: 999;
}

.navbar-brand {
  max-width: 90px;
}

.cart-login-wrapper i {
  color: #000;
}

/* Menu Links */
.navbar-nav .nav-link {
  color: var(--text);
  margin: 0 12px;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d4a017 !important;
}

/* Underline Hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #d4a017;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Icons */
.icon-link {
  color: #ccc;
  font-size: 18px;
  transition: 0.3s;
}

.icon-link:hover {
  color: #d4a017;
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #d4a017;
  color: #000;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}

/* Gold Button */
.btn-gold {
  background: linear-gradient(45deg, #d4a017, #f5d06f);
  color: #000;
  border: none;
  font-size: 14px;

}

.btn-gold:hover {
  background: #fff;
  color: #000;
}

/* navbar css end */


/* btn css  */
.btn-primary {
  background: linear-gradient(135deg, #c6a25a, #a8842d);
  border: 1px solid #c6a25a;
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-primary:hover {
  background: transparent;
  border-color: #c6a25a;
  color: #c6a25a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgb(245 237 227);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #c6a25a;
  color: #c6a25a;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover Reverse */
.btn-secondary:hover {
  background: linear-gradient(135deg, #c6a25a, #a8842d);
  border-color: #c6a25a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(198, 162, 90, 0.3);
}


.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

/* subtle shine effect */
.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 100%;
}

/* btn css  */


.section-2 {
  min-height: 100vh;
}


/* banner css  */


/* Banner */
.ayura-main-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Image */
.ayura-main-banner-img img {
  width: 100%;
  height: 100%;
  height: 600px;
  object-fit: cover;
}

.banner-img {
  will-change: transform;
}

/* Content */
.ayura-main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

/* Text animation initial state */


/* Typography */
.banner-heading {
  font-size: 90px;
  font-weight: 500;
  margin-bottom: 15px;
  
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: none;
  text-shadow: 0 10px 30px rgb(0 0 0);
/*font-family: 'Sapphire Sanford', sans-serif;*/
font-family: 'Whispered Trails';
}

.banner-subtext {
  font-size: 18px;
  margin-bottom: 25px;
}

/* Button */
.banner-btn {

  transition: 0.3s;
}


.shilajit-bottle-img {
  position: absolute;
  bottom: 135px;
  max-width: 390px;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 0px);
}

.powder-rock {
  opacity: 0;
  /* initially hidden */
}

.rock-1 {
  position: absolute;
  max-width: 200px;
  top: 30%;
  left: 28%;

}

.rock-2 {
  max-width: 150px;
  position: absolute;
  top: 40%;
  right: 20%;
}

.rock-3 {
  max-width: 200px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

/* initial hidden state for animation */
.rock-1,
.rock-2,
.rock-3 {
  opacity: 0;
}

.shilajit-bottle-img {
  opacity: 0;
  transform: translate(-50%, 50px);
}

.main-banner-image {
  transform: scale(1.2);
  opacity: 0;
  will-change: transform;
}

.rock-4 {
  position: absolute;
  max-width: 130px;
  top: 55%;
  left: 15%;
}

.rock-5 {
  position: absolute;
  max-width: 200px;
  top: 70%;
  left: 40%;
}

.mini-rock img {
  filter: drop-shadow(5px 5px 10px #000000);
}

/* banner css end */


/* section 2 */
.mini-rock {

  z-index: 8;
}

.about-right {
  z-index: 9;
}

.empty-bottles {
  z-index: 8;
  max-width: 250px;
  margin: auto;
}

.empty-bottles img {
  margin: auto;
  max-width: 250px;
  width: 100%;
}


.bottle-cap {
  position: absolute;
  transform: rotate(70deg);
  right: -170px;
  top: 0px;
}


.empty-bottles-wrap {
  z-index: 2;
  max-width: 300px;
  margin: auto;
}

.empty-bottles-wrap img {
  margin: auto;
  max-width: 300px;
  width: 100%;
}


.bottle-cap-wrap {
  position: absolute;
  transform: rotate(80deg);
  right: -195px;
  top: 0px;
}


.svg-shape {
  position: absolute;
  max-width: 400px;
  bottom: 0px;
  left: 0px;
}

.empty-bottle {
  max-width: 350px;
  margin: auto;
  z-index: 9;
}

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

.premium-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 15px;

  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Marker (Golden Glow Dot) */
.premium-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #c5a059, #c5a059);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Hover Effect */
.premium-list li:hover {

  transform: translateX(5px);
  transition: 0.3s ease;
}

.main-heading {
  font-size: 26px;

}

.svg-shape svg {
  margin-top: 50vh;
  width: 90%;
  transform: rotateX(50deg);
}

/* section 2 end */


/* section 3  */
/* Category */
.product-category {
  color: var(--heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Title */
.product-title {
  font-size: 26px;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Description */
.product-desc {

  font-size: 15px;
}

/* Price */
.price {
  font-size: 20px;
  font-weight: 600;
}

.home-product-img {
  max-width: 350px;
  margin: auto;
  visibility: hidden;
  display: none;
}

.new-price {
  color: var(--heading);
}

.old-price {
  color: #777;
  text-decoration: line-through;
  margin-left: 10px;
}

/* Stock */
.stock {

  font-size: 14px;
}

/* Quantity Box */
.qty-box {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 35px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  color: #fff;
}

/* section 3  */


/* footer css  */
/* link */
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #000;
  font-size: 18px !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* hover */
.footer-social a:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* brand colors */
.footer-social a.instagram:hover {
  background: #E1306C;
}

.footer-social a.facebook:hover {
  background: #1877F2;
}

.footer-social a.youtube:hover {
  background: #FF0000;
}

.footer-social a.twitter:hover {
  background: #000;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer {
  background-color: var(--gold-bg);

}

h5.footer-title {
  font-size: 20x;
  color: var(--heading);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer a {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-list a:hover {
  color: var(--heading);
}

.footer-link:hover {
  color: var(--heading);
}

.copyright-text {
  text-transform: capitalize !important;
}

.footer p {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-logo {
  max-width: 120px;
}

.footer-list li {
  padding-bottom: 5px;
}


.bg-img {
  /* background: linear-gradient(rgb(0 0 0 / 84%), rgb(0 0 0)), url(../images/mountain-bg.jpg);
    background-size: cover;
    background-position: top center;
    background-blend-mode: color-burn;
    background-attachment: fixed; */
}

.image-bg {
  /* background: linear-gradient(rgb(0 0 0 / 84%), rgb(0 0 0)), url(../images/main-banner-2.jpg);
    background-size: cover;
    background-position: top center;
    background-blend-mode: color-burn;
    background-attachment: fixed; */
}

/* footer css end */


/* input css  */

/* Input + Select Base */
.form-control {
  background: #ffffff;
  border: 1px solid #c6a25a;
  color: #000000;
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

/* Placeholder */
.form-control::placeholder {
  color: #777;
}

/* Focus State */
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.15rem rgb(245 237 227);
  background: var(--gold-bg);
  color: #000;
  border: 1px solid #c6a25a;
}

/* Select Specific */
.form-select {
  background: #121212;
  border: 1px solid rgba(245, 208, 111, 0.2);
  color: #fff;
  height: 48px;
  border-radius: 8px;
  padding: 10px 14px;
}

/* Fix Bootstrap arrow color */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23f5d06f' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Focus Select */
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.15rem rgba(245, 208, 111, 0.15);
}

/* Disabled */
.form-control:disabled,
.form-select:disabled {
  background: #1a1a1a;
  color: #777;
}

/* Small Size */
.form-sm {
  height: 40px;
  font-size: 13px;
}

/* Large Size */
.form-lg {
  height: 56px;
  font-size: 16px;
}

.ayura-veda-label {
  font-size: 15px;
  margin-bottom: 5px;
}

.textarea-group textarea {
  height: 120px;
}

/* input css end */


/* privacy  */
.policy-content h2 {
  font-weight: 600;

}

.policy-content h4 {
  margin-top: 25px;
  font-weight: 600;
  color: var(--heading);
  font-size: 22px;
}


.policy-content ul {
  padding-left: 18px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

/* privacy end */


/* product details/single page css  */
.ayura-variant-btn {
  background: transparent;
  border: 1px solid #c6a25a;
  color: #c6a25a;
  border-radius: 8px;
  padding: 6px 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ayura-variant-btn:hover {
  background: linear-gradient(135deg, #c6a25a, #a8842d);
  border-color: #c6a25a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(198, 162, 90, 0.3);


}

.ayura-variant-btn.active {
  background: linear-gradient(135deg, #c6a25a, #a8842d);
  color: #fff;
}

.ayura-qty-box {
  border: 1px solid var(--gold-bg);
  border-radius: 6px;
  overflow: hidden;
}

.ayura-qty-btn {
  background: transparent;

  color: #c6a25a;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.ayura-qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background-color: var(--gold-bg);
  outline: none;
  font-weight: 600;
}

.ayura-qty-btn:hover {
  background: linear-gradient(135deg, #c6a25a, #a8842d);
  color: #000;
}

.single-product-title {
  font-size: 28px;
}

.step-card h4 {
  font-size: 20px;
}


/* gallery css  */
/* MAIN */
.ayura-main-slider {

  overflow: hidden;

}

.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.zoom-container img {
  width: 100%;
  transition: transform 0.1s ease;
  transform-origin: center;
}

/* THUMBS */
.ayura-thumb-slider {
  margin-top: 15px;
}

.ayura-thumb-slider .swiper-slide {
  width: 100px !important;
  opacity: 0.8;
  cursor: pointer;
}

.ayura-thumb-slider img {
  width: 100%;


}

.ayura-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #c6a25a;

}

.ayura-thumb-slider .swiper-wrapper {
  justify-content: center;
}

/* gallery css end */
/* product details/single page css end */


.user-rating i {
  color: #FFD700;
}


/* search bar css  */
.ayura-searchbar {}

/* --- Search Wrapper --- */
.ayura-search-wrapper {
  position: relative;

}

.ayura-search-container {
  position: relative;
  height: 38px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 16px;

  z-index: 10;
}

.ayura-search-icon {
  color: #666666;
  font-size: 14px;
  margin-right: 10px;
}

/* --- Main Input --- */
.ayura-main-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #333333;
  z-index: 3;
}

.ayura-main-input::placeholder {
  font-size: 14px;
}

/* --- Clear (X) Icon --- */
.ayura-clear-btn {
  cursor: pointer;
  color: #999999;
  font-size: 18px;
  display: none;
  /* Initially hidden */
  z-index: 4;
  padding: 5px;
  transition: color 0.2s;
}

.ayura-clear-btn:hover {
  color: #333333;
}

/* --- Animated Sliding Placeholder --- */
.ayura-placeholder-overlay {
  position: absolute;
  left: 45px;
  display: flex;
  align-items: center;
  color: #000;
  pointer-events: none;
  z-index: 1;
  font-size: 14px;
}

.ayura-sliding-box {
  height: 26px;
  overflow: hidden;
  margin-left: 6px;
}

.ayura-sliding-list {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: ayura-slide-up 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.ayura-sliding-list li {
  height: 26px;
  display: flex;
  align-items: center;
}

@keyframes ayura-slide-up {

  0%,
  25% {
    transform: translateY(0);
  }

  30%,
  55% {
    transform: translateY(-26px);
  }

  60%,
  85% {
    transform: translateY(-52px);
  }

  90%,
  100% {
    transform: translateY(-78px);
  }
}

section.navbar-section .navbar {
  padding: 6px 0px;
}

/* --- Suggestions Dropdown --- */
/* --- Suggestions Dropdown with Animation --- */
.ayura-suggestions-box {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  z-index: 9;

  /* Animation initial state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  /* 10px niche se start hoga */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Jab wrapper 'active' ho tab animation trigger hoga */
.ayura-search-wrapper.active .ayura-suggestions-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Apni sahi jagah pe aa jayega */
}

/* Thoda extra effect: Products chips ek-ek karke fade-in honge (Optional) */
.ayura-search-wrapper.active .ayura-product-chip {
  animation: ayura-fade-in 0.4s ease forwards;
}

@keyframes ayura-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ayura-suggestions-title {
  margin: 0 0 18px 0;
  font-weight: normal;
  font-size: 16px;
  color: #000000;
  letter-spacing: 1px;
}

.ayura-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ayura-product-chip {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  color: #000;
  background-color: #ffffff;
}

.ayura-product-chip:hover {
  background-color: #f8f8f8;
  border-color: #e0e0e0;
}

.ayura-product-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 10px;
  background: #f5f5f5;
  border-radius: 6px;
}

/* Show Dropdown logic */
.ayura-search-wrapper.active .ayura-suggestions-box {
  display: block;
}

.top-right-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  margin-bottom: 12px;
}

.ayura-searchbar {
  max-width: 350px;
  margin-left: auto;
  width: 100%;
}

.ayura-nav-toggle {
  color: #000;
  font-size: 25px;
}

.menu-searchbar-wrap {
  width: calc(100% - 101px);

}

.search-toggle-mobile {
  text-align: right;
}

/* search bar css end */


/* about ayura css  */
.about-ayura-left-img {
  filter: drop-shadow(5px 5px 10px rgba(184, 134, 11, 0.5));
  max-width: 400px;
  width: 100%;
}

.about-ayura.space {
  background-color: #fff;
  overflow: hidden;
}

.ayura-heading {
  font-size: 40px;
  margin-bottom: 20px;
  color: #000;
}

.watermark {
  position: absolute;
  width: 400px;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  right: 15px;
  bottom: 15px;
}

.watermark.left-watermark {
  left: 15px !important;
  top: 15px;
  max-width: 300px;
}

/* Initial state to prevent flash of unstyled content */
.apear-from-left-1,
.apear-from-left-2,
.apear-from-left-3,
.apear-from-left,
.apear-from-right,
[class^="apear-from-bottom-"],
.premium-list li {
  opacity: 1;
  will-change: transform, opacity;
  /* Performance boost */
}

.about-ayura {
  overflow-x: hidden;
  /* Taaki horizontal scrollbar na aaye animation ke waqt */
}


/* about ayura css end  */


/* video section  */
.video-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  border-radius: 20px;

}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.7);
  border-radius: 20px;
  overflow: hidden;

}

.angle-design:after {
  color: #000;
  font-size: 25px !important;
}

/* video section end */


/* home page product  */
.white-product .white {
  color: #fff !important;
}

/* home page product end */


/* home page product css  */
.homepage-product {}

/* home page product css end */


/* why us  */
.white-bg {
  background-color: #fff;
}

.why-counter {
  font-size: 45px;
  margin-top: -25px;

}

.why-ayura-heading h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.why-ayura-heading p {

  max-width: 600px;
  margin: auto;
}

/* timeline */
.why-ayura-timeline {
  position: relative;
}

/* base line */
.why-ayura-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
  transform: translateX(-50%);
}

/* animated line */
.why-ayura-line-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: #d4af37;
  transform: translateX(-50%);
}

/* item */
.why-ayura-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

/* content */
.why-ayura-content {
  width: 45%;
  opacity: 0;
  transform: translateY(60px);
}

.why-ayura-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  text-transform: uppercase;
}


/* dot */
.why-ayura-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.5);
}

/* pulse */
.why-ayura-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #d4af37;
  opacity: 0.5;
  animation: why-ayura-pulse 2s infinite;
}

@keyframes why-ayura-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* alignment */
.why-ayura-item:nth-child(odd) .why-ayura-content {
  text-align: right;
}

.why-ayura-item:nth-child(even) {
  flex-direction: row-reverse;
}

.why-ayura-item:nth-child(even) .why-ayura-content {
  text-align: left;
}

/* responsive */
@media(max-width:768px) {
.why-ayura-content h3 {
    font-size: 18px;
}

  .why-ayura-timeline::before,
  .why-ayura-line-fill {
    left: 20px;
  }

  .why-ayura-item {
    flex-direction: column;
    padding-left: 40px;
  }

  .why-ayura-content {
    width: 100%;
    text-align: left !important;
  }

  .why-ayura-dot {
    left: 20px;
  }
}

/* why us end */


/* side cart  */
/* OVERLAY */
.ayura-side-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 999;
}

.ayura-side-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* DRAWER */
.ayura-side-cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  color: #111;
  transition: .4s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.ayura-side-cart-drawer.active {
  right: 0;
}

/* HEADER */
.ayura-side-cart-header {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ayura-side-cart-close {
  cursor: pointer;
  font-size: 22px;
}

/* ITEMS */
.ayura-side-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.ayura-side-cart-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
}

.ayura-side-cart-item img {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  object-fit: cover;
}

.ayura-side-cart-title {
  font-size: 15px;
  margin: 0;
}

.ayura-side-cart-price {
  color: #c89b3c;
  font-size: 13px;
  margin: 4px 0;
}

.ayura-remove {
  font-size: 12px;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ayura-remove:hover {
  color: red;
}

/* QTY */
.ayura-side-cart-qty {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.ayura-side-cart-qty button {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ayura-side-cart-qty span {
  margin: 0 10px;
}

/* FOOTER */
/* Container */
.ayura-contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Style */
.ayura-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* WhatsApp */
.ayura-icon.whatsapp {
  background: #25D366;
}

/* Phone */
.ayura-icon.phone {
  background: #000;
}

/* Hover Effect */
.ayura-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .ayura-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.ayura-side-cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.ayura-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ayura-side-cart-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #c89b3c, #f5d27a);
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

/* EMPTY */
.ayura-side-cart-empty {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.ayura-side-cart-empty i {
  font-size: 50px;
  color: #c89b3c;
}

.ayura-empty-btn {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

/* side cart end */

.mobile-banner {
  display: none;
}



.typing-animation {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #000;
  display: inline-block;
}

/* smooth blinking cursor */
.typing-animation.typing-active {
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}





/* mobile css  */

@media (max-width: 991px) {
  .navbar-brand {
    max-width: 80px;
}

  .ayura-search-wrapper-mobile {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #efe7de;
    z-index: 9999;
    transition: 0.4s ease;
    padding: 20px 15px 15px;
  }

  .ayura-search-wrapper-mobile.active {
    top: 0;
  }

  /* Close icon */
  .ayura-search-wrapper-mobile-close-icon {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }


  .mobile-navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.2s ease;
    padding: 60px 20px 20px;
    overflow-y: auto;
  }

  .mobile-navbar-collapse.show {
    left: 0;
  }

  /* Overlay */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

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

  /* Close Button */
  .close-navbar-mobile {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
  }
}

@media(min-width:992px) {
  section.navbar-section .navbar-nav {
    align-items: center;
  }
}


@media(max-width:767px) {
  
.animated-heading {
    white-space: pre-wrap;
}
  .mobile-banner {
    display: block;
  }

  .desktop-banner {
    display: none;
  }

  .banner-heading {
    font-size: 70px;
  }
}


@media(max-width:480px) {
  .product-btn-group {
    flex-wrap: wrap;
  }

  .banner-heading {
    font-size: 60px;
  }
}


/* Hide on Desktop (show only on mobile) */
.hide-on-desktop-lg {
  display: block;
}

@media (min-width: 992px) {
  .hide-on-desktop-lg {
    display: none !important;
  }
}


/* Hide on Mobile (show only on desktop) */
.hide-on-mobile-lg {
  display: block;
}

@media (max-width: 991px) {
  .hide-on-mobile-lg {
    display: none !important;
  }
}


/* mobile css end */