@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');

:root{
  --main-color:#2980b9;
   --orange:#f39c12;
   --red:#e74c3c;
   --black:#333;
   --white:#ffffff;
   --light-color:#666;
   --light-bg:#eee;
   --border:.2rem solid var(--black);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  
   
}




*{
   font-family: 'Nunito', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
}

*::selection{
   background-color: var(--main-color);
   color:var(--white);
}

::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

::-webkit-scrollbar-track{
   background-color: transparent;
}

::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
}

body{
   background-color: white;
}

section{
   /* padding:2rem; */
   max-width: 1200px;
   margin:0 auto;
  
}

a {
   text-decoration: none !important;
 }
.heading{
   font-size: 3rem;
   color:white;
   margin-bottom: 2rem;
   text-align: center;

   text-transform: uppercase;
}

   /* About section css Start */


 /* About section css End */
 /* Achieveent section css Start */
 




/* Container Styling */
.products-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr); /* 3 columns */
   grid-template-rows: auto;
   gap: 25px;
   max-width: 1200px;
   margin: auto;
   padding: 20px;
}

/* Product Card */
.product-card {
   background: #fff;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
   transform: translateY(-5px);
   box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-img {
   position: relative;
   width: 100%;
   height: 200px;
   overflow: hidden;
}

.product-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s;
}

.product-card:hover .product-img img {
   transform: scale(1.1);
}

/* Product Icons */
.product-icons {
   position: absolute;
   top: 10px;
   right: 10px;
   display: flex;
   gap: 10px;
}

.product-icons button,
.product-icons a {
   background: rgba(255, 255, 255, 0.8);
   padding: 8px;
   border-radius: 50%;
   transition: background 0.3s;
}

.product-icons button:hover,
.product-icons a:hover {
   background: #ff4081;
   color: white;
}

/* Product Info */
.product-info {
   padding: 15px;
   text-align: center;
}

.product-name {
   font-size: 18px;
   font-weight: bold;
   color: #333;
   margin-bottom: 5px;
}

.product-saleprice {
   font-size: 16px;
   color: #ff4081;
   font-weight: bold;
   margin-bottom: 10px;
}
.product-price{
    
   font-size: 16px;
   color: #ff4081;
   font-weight: bold;
   margin-bottom: 10px; 
   text-decoration: line-through;
}

/* Quantity Box */
.quantity-box input {
   width: 50px;
   padding: 5px;
   text-align: center;
   border: 1px solid #ddd;
   border-radius: 5px;
}

/* Add to Cart Button */
.btn {
   display: block;
   width: 100%;
   padding: 10px;
   background: #ff4081;
   color: white;
   border: none;
   border-radius: 5px;
   font-weight: bold;
   cursor: pointer;
   transition: background 0.3s;
}

.btn:hover {
   background: #e6005c;
}

/* Responsive Design */
@media (max-width: 1024px) {
   .products-grid {
       grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
   }
}

@media (max-width: 600px) {
   .products-grid {
       grid-template-columns: 1fr; /* 1 column on mobile */
   }
}

.s2{
   max-width: 1500px;
   margin: 0;
}

.s3{
   max-width: 90%;
}


.images2{
   display: flex;
   /* background-color: black; */
   justify-content: center;
   align-items: center;
   /* margin-top: 2rem; */
   height: 100vh; /* Full screen height */
}
.images2 img {
   width: 100%;
   max-width: 100%;
   height:500px;
   
}

.video-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: -1;
}

.video-container video {
   position: absolute;
   top: 50%;
   left: 50%;
   min-width: 100%;
   min-height: 100%;
   width: auto;
   height: auto;
   transform: translate(-50%, -50%);
   object-fit: cover;
}

/* 1. कंटेनर (con<style>
  /* Container slide-in animation */
  @keyframes contentSlideUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Heading soft glow / pulse */
  @keyframes ayurGlow {
    0%   { text-shadow: 0 0 6px rgba(255, 255, 255, 0.3); }
    50%  { text-shadow: 0 0 14px rgba(255, 215, 0, 0.8); }
    100% { text-shadow: 0 0 6px rgba(255, 255, 255, 0.3); }
  }

  /* Tagline fade-in with slight delay */
  @keyframes fadeInSoft {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .content2-responsive h1 {
      font-size: 1.7rem !important;
    }
    .content2-responsive p {
      font-size: 0.95rem !important;
    }
  }

 के लिए डिज़ाइन */


.btn,
.delete-btn,
.option-btn{
   display: block;
   width: 100%;
   margin-top: 1rem;
   border-radius: .5rem;
   padding:1rem 3rem;
   font-size: 5opx;
   text-transform: capitalize;
   color:var(--white);
   cursor: pointer;
   text-align: center;
}

.btn:hover,
.delete-btn:hover,
.option-btn:hover{
   background-color: var(--black);
}

.btn{
   background-color:darkgreen;
}

.option-btn{
   background-color:darkgreen;
   border: 1px sold white;
   padding: 10px;
   text-align: center;
   font-size: 15px;
   color: white;
   /* font-size: larger; */

}

.delete-btn{
   background-color: var(--red);
}

.flex-btn{
   display: flex;
   gap:1rem;
}

.message{
   position: sticky;
   top:0;
   max-width: 1200px;
   margin:0 auto;
   background-color: var(--light-bg);
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1.5rem;
   z-index: 1100;
}

.message span{
   font-size: 2rem;
   color:var(--black);
}

.message i{
   cursor: pointer;
   color:var(--red);
   font-size: 2.5rem;
}
.header {
   background: #fff;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   position: sticky;
   top: 0;
   z-index: 1000;
}
.header .flex {
   display: flex;
   justify-content: space-between;
   align-items: center;
   
}
.navbar a {
   margin: 0 18px;
   color: #333;
   font-size: 1.5rem;
   text-decoration: none;
   transition: color 0.3s ease;
}
.navbar a:hover {
   color: #3498db;
}
.icons {
   display: flex;
   align-items: center;
}
.icons a, .icons #user-btn, .icons #menu-btn {
   margin-left: 22px;
   color: #333;
   font-size: 2rem;
   cursor: pointer;
   position: relative;
   transition: color 0.3s, transform 0.2s;
}
.icons a:hover, .icons #user-btn:hover, .icons #menu-btn:hover {
   color: #3498db;
   transform: scale(1.15);
}
.cart-icon span {
   position: absolute;
   top: -10px;
   right: -14px;
   background: #e74c3c;
   color: #fff;
   font-size: 1rem;
   padding: 2px 6px;
   border-radius: 50%;
   font-weight: bold;
}

/* Mobile styles */
#menu-btn.mobile-only {
   display: none;
}
@media(max-width: 768px) {
   #menu-btn.mobile-only {
      display: inline-block;
   }
   .navbar {
      display: none;
      flex-direction: column;
      background: #fff;
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 10px 0;
   }
   .navbar a {
      margin: 10px 0;
      padding: 10px;
      font-size: 1.5rem;
   }
   .navbar.active {
      display: flex;
   }
   .icons a, .icons #user-btn, .icons #menu-btn {
      margin-left: 15px;
   }
}
.profile {
   display: none;
}

.message i:hover{
   color:var(--black);
}

.empty{
   padding:1.5rem;
   background-color: var(--white);
   border: var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   color:var(--red);
   border-radius: .5rem;
   font-size: 2rem;
   text-transform: capitalize;
}

.disabled{
   pointer-events: none;
   user-select: none;
   opacity: .5;
}

@keyframes fadeIn{
   0%{
      transform: translateY(1rem);
   }
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

@keyframes whatsapp-bounce {
   0%, 100% {
       transform: translateY(0);
   }
   50% {
       transform: translateY(-5px);
   }
}

.whatsapp-float img {
   animation: whatsapp-bounce 2s infinite;
}






.products-section {
   padding: 50px 0;
   background: #f7f7f7;
}
.products-section .heading {
   text-align: center;
   font-size: 2rem;
   margin-bottom: 30px;
   color: #222;
}
.products-section .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
   padding: 0 20px;
}
.products-section form.box {
   background: #fff;
   border: 1px solid #e0e0e0;
   border-radius: 5px;
   padding: 15px;
   text-align: center;
   transition: 0.3s;
   position: relative;
}
.products-section form.box:hover {
   border-color: #3498db;
   transform: translateY(-5px);
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.products-section form.box img {
   width: 100%;
   height: 200px;
   object-fit: contain;
   margin-bottom: 10px;
   border-radius: 3px;
}
.products-section form.box .name {
   font-size: 2.3rem;
   color: #333;
   margin-bottom: 8px;
}
.products-section form.box .flex-group {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
}
.products-section form.box .price {
   font-weight: 800;
   color: #27ae60;
   font-size: 1.8rem;
}
.products-section form.box input.qty-input {
   width: 60px;
   padding: 5px;
   font-size: 1.6rem;
   border-radius: 3px;
   border: 1px solid #ccc;
}
.products-section form.box input.add-btn {
   background: #3498db;
   color: #fff;
   padding: 8px 15px;
   border: none;
   border-radius: 3px;
   cursor: pointer;
   transition: 0.3s;
   font-size: 1.6rem;
}
.products-section form.box input.add-btn:hover {
   background: #2980b9;
}
.products-section form.box .fa-eye {
   position: absolute;
   top: 15px;
   right: 15px;
   color: #888;
   transition: 0.3s;
   font-size: 3rem;
}
.products-section form.box .fa-eye:hover {
   color: #3498db;
}
.products-section .empty {
   text-align: center;
   color: #888;
   font-size: 1rem;
}

.category .slide{
   margin-bottom: 5rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
   text-align: center;
   padding:2rem;
   background: var(--white);
   border-radius: .5rem;
}

.category .slide:hover{
   background-color: var(--black);
}

.category .slide:hover img{
   filter:invert();
}

.category .slide:hover h3{
   color:var(--white);
}

.category .slide img{
   height: 7rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
   user-select: none;
}

.category .slide h3{
   font-size: 2rem;
   color:var(--black);
   user-select: none;
}

.home-products .slide{
   position: relative;
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   background-color: white;
   box-shadow: var(--box-shadow);
   margin-bottom: 5rem;
   overflow: hidden;
   user-select: none;

}

.home-products{
   max-width: 90%;
}

.home-products .slide img{
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.home-products .slide .name{
   font-size: 2rem;
   color:var(--black);
}

.home-products .slide .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1rem;
}

.home-products .slide .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.home-products .slide .flex .price{
   margin:1rem 0;
   font-size: 2rem;
   color:var(--red);
   text-decoration: line-through;
}



.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 8px;
    flex-wrap: wrap;
}

.price-box .sale-price {
    color: #d32f2f;
    font-size: 2.3rem;
    font-weight: bold;
}

.price-box .mrp {
    color: #777;
    font-size: 2.3rem;
    text-decoration: line-through;
}

.price-box .discount {
    background-color: #e0f2f1;
    color: #00796b;
    padding: 2px 8px;
    font-size: 1.5rem;
    border-radius: 12px;
    font-weight: 500;
}



.home-products .slide .fa-heart,
.home-products .slide .fa-eye{
   position: absolute;
   top:1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   color:var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.home-products .slide .fa-heart{
   right: -6rem;
}

.home-products .slide .fa-eye{
   left: -6rem;
}

.home-products .slide .fa-heart:hover,
.home-products .slide .fa-eye:hover{
   background-color: var(--black);
   color:var(--white);
}

.home-products .slide:hover .fa-heart{
   right: 1rem;
}

.home-products .slide:hover .fa-eye{
   left: 1rem;
}

.quick-view form{
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   margin-top: 1rem;
}

.quick-view form .row{
   /*display: flex;*/
   align-items: center;
   gap:1.5rem;
   flex-wrap: wrap;
}

.quick-view form .row .image-container{
   margin-bottom: 2rem;
   flex:1 1 40rem;
}

.quick-view form .row .image-container .main-image img{
   height: 30rem;
   width: 100%;
   object-fit: contain;
}

.quick-view form .row .image-container .sub-image{
   display: flex;
   gap:1.5rem;
   justify-content: center;
   margin-top: 2rem;
}

.quick-view form .row .image-container .sub-image img{
   height: 7rem;
   width: 10rem;
   object-fit: contain;
   padding:.5rem;
   border:var(--border);
   cursor: pointer;
   transition: .2s linear;
}

.quick-view form .flex .image-container .sub-image img:hover{
   transform: scale(1.1);
}

.quick-view form img{
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.quick-view form .row .content{
   flex:1 1 40rem;
}

.quick-view form .row .content .name{
   font-size: 2rem;
   color:var(--black);
}

.quick-view form .row .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1rem;
   margin:1rem 0;
}

.quick-view form .row .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.quick-view form .row .flex .price{
   font-size: 2rem;
   color:var(--red);
}

.quick-view form .row .content .details{
   font-size: 1.6rem;
   color:var(--light-color);
   line-height: 2;
}  

.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 33rem);
   gap:1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.products .box-container .box{
   position: relative;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   padding:2rem;
   overflow: hidden;
}

.products .box-container .box img{
   height: 20rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
}

.products .box-container .box .fa-heart,
.products .box-container .box .fa-eye{
   position: absolute;
   top:1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   color:var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.products .box-container .box .fa-heart{
   right: -6rem;
}

.products .box-container .box .fa-eye{
   left: -6rem;
}

.products .box-container .box .fa-heart:hover,
.products .box-container .box .fa-eye:hover{
   background-color: var(--black);
   color:var(--white);
}

.products .box-container .box:hover .fa-heart{
   right:1rem;
}

.products .box-container .box:hover .fa-eye{
   left:1rem;
}

.products .box-container .box .name{
   font-size: 2rem;
   color:var(--black);
}

.products .box-container .box .flex{
   display: flex;
   align-items: center;
   gap:1rem;
}

.products .box-container .box .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.products .box-container .box .flex .price{
   font-size: 2rem;
   color:var(--red);
   margin-right: auto;
}

.form-container form{
   background-color: var(--white);
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   margin:0 auto;
   max-width: 50rem;
}

.form-container form h3{
   font-size: 2.5rem;
   text-transform: uppercase;
   color:var(--black);
}

.form-container form p{
   font-size: 2rem;
   color:var(--light-color);
   margin:1.5rem 0;
}

.form-container form .box{
   margin:1rem 0;
   background-color: var(--light-bg);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);  
   width: 100%;
   border-radius: .5rem;
}

.about .row{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:1.5rem;
}

.about .row .image{
   flex:1 1 40rem;
}

.about .row .image img{
   width: 100%;
}

.about .row .content{
   flex:1 1 40rem;
}

.about .row .content h3{
   font-size: 3rem;
   color:var(--black);
}

.about .row .content p{
   line-height: 2;
   font-size: 1.5rem;
   color:var(--light-color);
   padding:1rem 0;
}

.about .row .content .btn{
   display: inline-block;
   width: auto;
}

.reviews .slide{
   padding:2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   margin-bottom: 5rem;
   user-select: none;
}

.reviews .slide img{
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
   margin-bottom: .5rem;
}

.reviews .slide p{
   padding:1rem 0;
   line-height: 2;
   font-size: 1.5rem;
   color:var(--light-color);
}

.reviews .slide .stars{
   display: inline-block;
   margin-bottom: 1rem;
   background-color: var(--light-bg);
   padding:1rem 1.5rem;
   border-radius: .5rem;
}

.reviews .slide .stars i{
   margin:0 .3rem;
   font-size: 1.7rem;
   color:var(--orange);
}

.reviews .slide h3{
   font-size: 2rem;
   color:var(--black);
}

.contact form{
   padding:2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   max-width: 50rem;
   margin:0 auto;
}

.contact form h3{
   margin-bottom: 1rem;
   text-transform: capitalize;
   font-size: 2.5rem;
   color:var(--black);
}

.contact form .box{
   margin:1rem 0;
   width: 100%;
   background-color: var(--light-bg);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.contact form textarea{
   height: 15rem;
   resize: none;
}


   .search-form {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 3rem 1rem;
      background: #f9f9f9;
   }

   .search-form form {
      display: flex;
      width: 100%;
      max-width: 500px;
      border-radius: 50px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
   }

   .search-form input[type="text"] {
      flex: 1;
      padding: 1rem 1.5rem;
      border: none;
      outline: none;
      font-size: 1.1rem;
      border-radius: 50px 0 0 50px;
      transition: 0.3s;
   }

   .search-form input[type="text"]:focus {
      background: #f0f0f0;
   }

   .search-form button {
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      border: none;
      padding: 0 1.5rem;
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
      transition: 0.3s;
      border-radius: 0 50px 50px 0;
   }

   .search-form button:hover {
      background: linear-gradient(135deg, #5a0eb7, #1f63e0);
   }

   .tag-suggestions {
      margin-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
   }

   .tag-suggestions a {
      background: #e0e0e0;
      padding: 0.5rem 1.2rem;
      border-radius: 30px;
      color: #333;
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
   }

   .tag-suggestions a:hover {
      background: #2575fc;
      color: #fff;
      transform: translateY(-2px);
   }

   /* Mobile tweaks */
   @media (max-width: 480px) {
      .search-form input[type="text"] {
         padding: 0.8rem 1rem;
         font-size: 1rem;
      }

      .search-form button {
         padding: 0 1rem;
         font-size: 1rem;
      }
   }



.wishlist-total{
   max-width: 50rem;
   margin:0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;;
   padding:2rem;
   text-align: center;
}

.wishlist-total p{
   font-size: 2.5rem;
   color:var(--black);
   margin-bottom: 2rem;
}

.wishlist-total p span{
   color:var(--red);
}

.shopping-cart .fa-edit{
   height: 4.5rem;
   border-radius: .5rem;
   background-color: var(--orange);
   width: 5rem;
   font-size: 2rem;
   color:var(--white);
   cursor: pointer;
}

.shopping-cart .fa-edit:hover{
   background-color: var(--black);
}

.shopping-cart .sub-total{
   margin:2rem 0;
   font-size: 2rem;
   color:var(--light-color);
}

.shopping-cart .sub-total span{
   color:var(--red);
}

.cart-total{
   max-width: 50rem;
   margin:0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;;
   padding:2rem;
   text-align: center;
}

.cart-total p{
   font-size: 2.5rem;
   color:var(--black);
   margin-bottom: 2rem;
}

.cart-total p span{
   color:var(--red);
}

/* Checkout page styles */
.checkout-orders {
   padding: 3rem 2rem;
   max-width: 1200px;
   margin: auto;
}

.checkout-orders form {
   background: #fff;
   padding: 2.5rem;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.checkout-orders h3 {
   font-size: 2.4rem;
   margin-bottom: 1.5rem;
   color: #333;
}

.display-orders {
   margin-bottom: 2.5rem;
}

.display-orders .item {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 1.2rem;
   background: #f9f9f9;
   padding: 1.2rem;
   border-radius: 8px;
   border: 1px solid #ddd;
}

.display-orders .item img {
   width: 90px;
   height: 90px;
   object-fit: cover;
   border-radius: 5px;
   border: 1px solid #ccc;
}

.display-orders .item .details {
   flex: 1;
}

.display-orders .item .details h4 {
   font-size: 1.9rem;
   color: #222;
   margin-bottom: 0.4rem;
}

.display-orders .item .details span {
   font-size: 1.6rem;
   color: #555;
}

.grand-total {
   text-align: right;
   font-size: 2.2rem;
   font-weight: bold;
   color: #1e7e34;
   margin-top: 1.5rem;
}

.flex {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.inputBox {
   flex: 1 1 45%;
}

.inputBox span {
   display: block;
   font-size: 1.8rem;
   margin-bottom: .4rem;
   color: #444;
}

.inputBox input,
.inputBox select {
   width: 100%;
   padding: 1.2rem;
   font-size: 1.7rem;
   border: 1px solid #ccc;
   border-radius: 5px;
}

.btn {
   display: block;
   width: 100%;
   padding: 1.5rem;
   background: #28a745;
   color: #fff;
   font-size: 2rem;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   margin-top: 2rem;
   transition: 0.3s;
}

.btn:hover {
   background: #218838;
}

.success, .error {
   margin-top: 1.5rem;
   font-size: 1.7rem;
   padding: 1rem;
   border-radius: 5px;
}

.success {
   background: #d4edda;
   color: #155724;
}

.error {
   background: #f8d7da;
   color: #721c24;
}

@media (max-width: 768px) {
   .inputBox {
       flex: 1 1 100%;
   }

   .display-orders .item img {
       width: 75px;
       height: 75px;
   }

   .checkout-orders h3 {
       font-size: 2rem;
   }

   .grand-total {
       font-size: 1.9rem;
   }
}

.success-message {
   background: #d4edda;
   color: #155724;
   padding: 15px;
   border: 1px solid #c3e6cb;
   border-radius: 5px;
   margin: 15px 0;
   text-align: center;
   font-size: 2rem;
}







/* .orders .box-container{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   align-items: flex-start;
}

.orders .box-container .box{
   padding:1rem 2rem;
   flex:1 1 40rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.orders .box-container .box p{
   margin:.5rem 0;
   line-height: 1.8;
   font-size: 2rem;
   color:var(--light-color);
}

.orders .box-container .box p span{
   color:var(--main-color);
}
 */


 .orders {
   padding: 4rem; /* doubled padding */
}

.orders .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* larger boxes */
   gap: 3rem; /* increased gap */
}

.orders .box {
   background: #ffffff;
   padding: 3rem; /* doubled padding */
   border-radius: 12px;
   box-shadow: 0 6px 20px rgba(0,0,0,0.1);
   transition: 0.4s ease;
   position: relative;
}

.orders .box:hover {
   transform: translateY(-8px);
}

.orders .box img {
   width: 100%;
   max-height: 400px; /* doubled image height */
   object-fit: contain;
   border-radius: 8px;
   margin-bottom: 2rem; /* doubled margin */
}

.orders .box p {
   font-size: 1.6rem; /* larger text */
   margin: 0.6rem 0;
   color: #333;
}

.orders .box p span {
   font-weight: bold;
   color: #000;
}

.orders .box .status {
   padding: 0.6rem 1.2rem; /* larger pill */
   border-radius: 6px;
   font-weight: bold;
   display: inline-block;
   color: #fff;
   font-size: 1.4rem;
}

.orders .box .status.pending {
   background: #e74c3c;
}

.orders .box .status.completed {
   background: #2ecc71;
}

/* Mobile adjustments */
@media(max-width:768px){
   .orders .box-container {
      grid-template-columns: 1fr;
   }
   .orders {
      padding: 2rem;
   }
}



.custom-message {
   position: fixed;
   top: 20px;
   right: 20px;
   background: #2ecc71;
   color: #fff;
   padding: 15px 20px;
   border-radius: 5px;
   box-shadow: 0 5px 15px rgba(0,0,0,0.2);
   display: flex;
   align-items: center;
   gap: 10px;
   z-index: 2000;
   animation: slideIn 0.5s ease forwards;
   cursor: pointer;
}

.custom-message.error {
   background: #e74c3c;
}

.custom-message.success {
   background: #27ae60;
}

.custom-message i {
   cursor: pointer;
}

@keyframes slideIn {
   from { opacity: 0; transform: translateY(-20px); }
   to { opacity: 1; transform: translateY(0); }
}






@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   #menu-btn{
      display: inline-block;
   }

   .header .flex .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      border-top: var(--border);
      border-bottom: var(--border);
      background-color: var(--white);
      transition: .2s linear;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
   }

   .header .flex .navbar a{
      display: block;
      margin:2rem;
   }

   .home-bg .home .slide .content{
      text-align: center;
   }

   .home-bg .home .slide .content h3{
      font-size: 3rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 70%;
   }

   .heading{
      font-size: 5rem;
   }

  
    
}


   .quick-view form .row .image-container .sub-image img{
      width: 8rem;
   }

   .checkout-orders form .flex .inputBox{
      width: 100%;
   }


/* Basic Styling and Fonts */
.ayurveda-treatments-section {
    padding: 80px 20px;
    background-color: #f5f5f5; /* Light background */
    font-family: 'Georgia', serif; /* Or your preferred font */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
}

.text-center h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.05em;
    color: #666;
    line-height: 1.5;
}

/* Treatment Cards Grid Layout */
.treatments-grid {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between cards */
    align-items: stretch; /* Ensures all cards stretch to the same height */
}

.treatment-card {
    flex: 1; /* All three columns take roughly equal space */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Left and Right Cards - Green Background */
.left-card, .right-card {
    background-color: #2D5443; /* Dark green background */
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Vertically space content */
}

/* Center Card - Image */
.center-card {
    flex: 1.2; /* Making the image card slightly wider */
    padding: 0;
}

.center-card .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area */
    display: block;
}

/* Card Content Styling */
.card-item {
    padding: 10px 0; /* Add padding within the green boxes */
}

.card-icon {
    width: 35px; 
    height: auto;
    margin-bottom: 15px;
    /* This will be your icon image or SVG */
}

.card-title {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 20px;
    opacity: 0.8;
}

.card-description {
    font-size: 0.9em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Separator for Right Card (between Shirodhara and Swedana) */
.card-separator {
    border: 0;
    height: 1px;
    background-color: rgb(255, 255, 255); 
    margin: 20px 0;
}

/* Adjustments for the Right Card (Shirodhara and Swedana) */
.right-card {
    justify-content: flex-start; /* Items start from the top */
}

.right-card .card-item {
    flex-grow: 1; /* Allows both items to share vertical space */
}

.right-card .right-top-item {
    margin-bottom: 0; /* Adjust spacing around the separator */
}

.right-card .right-bottom-item {
    margin-top: 0;
}
/* ======================================================
   GLOBAL TABLET RESPONSIVE FIX (max-width: 768px)
   Applies to ALL sections together
====================================================== */
@media (max-width: 769px) {

  /* --------- GLOBAL RESET --------- */
  body {
    overflow-x: hidden;
   
  }

  section,
  .section-wrapper,
  .container,
  .section-container,
  .program-wrapper,
  .doctor-content-wrapper,
  .why-section,
  .testimonial-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* --------- FLEX → COLUMN --------- */
  .about-ayurveda-wrapper,
  .why-content,
  .section-container,
  .program-wrapper,
  .doctor-content-wrapper {
    flex-direction: column !important;
    gap: 18px !important;
  }

  /* --------- IMAGES --------- */
 
  video {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  .about-ayurveda-image,
  .image-section,
  .doctor-image-container,
  .image-box {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
  }

  /* --------- TEXT ALIGN --------- */
  h1, h2, h3, h4, h5 {
    text-align: center !important;
    line-height: 1.2 !important;
  }

  p {
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* --------- FONT SCALE --------- */
  h1 { font-size: 24px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 20px !important; }

  /* --------- BUTTONS --------- */
  button,
  .btn,
  .add-btn,
  .consult-button,
  .green-button {
    width: 100% !important;
    max-width: 320px;
    margin: 10px auto 0 auto !important;
    display: block !important;
  }

  /* --------- SWIPER / PRODUCT CARDS --------- */
  .swiper-slide,
  .box {
    width: 100% !important;
  }

  /* --------- GRID → SINGLE COLUMN --------- */
  .testimonial-grid,
  .box-container {
    grid-template-columns: 1fr !important;
  }

  /* --------- WHY PURE AYURVEDA --------- */
  .center-circle-wrap {
    order: -1;
  }

  .center-circle {
    width: 240px !important;
    height: 240px !important;
  }

  /* --------- REMOVE EXTRA SPACING --------- */
  br {
    display: none;
  }
}
/* =====================================================
   📱 TABLET / iPAD RESPONSIVE FIX
   Applies ONLY to iPad & Tablets
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ---------- GLOBAL RESET ---------- */
  html {
    font-size: 86%;
  }

  body {
    overflow-x: hidden;
  }

  section,
  .section-wrapper,
  .section-container,
  .program-wrapper,
  .doctor-content-wrapper,
  .why-section,
  .testimonial-section,
  .about-ayurveda-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ---------- FLEX LAYOUT FIX ---------- */
  .about-ayurveda-wrapper,
  .why-content,
  .section-container,
  .program-wrapper,
  .doctor-content-wrapper {
    flex-direction: column !important;
    gap: 26px !important;
  }

  /* ---------- HERO / VIDEO CONTENT ---------- */
  .content2-responsive {
    margin-top: 14% !important;
    max-width: 85% !important;
    height: auto !important;
    padding: 20px !important;
  }

  .content2-responsive h1 {
    font-size: 2.6rem !important;
    line-height: 1.1 !important;
  }

  .content2-responsive p {
    font-size: 1.4rem !important;
  }

  /* ---------- IMAGES FIX ---------- */
  img,
  video {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  .about-ayurveda-image,
  .image-section,
  .doctor-image-container,
  .image-box {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
  }

  .doctor-image {
    height: 300px !important;
    object-fit: cover;
  }

  /* ---------- TEXT SCALE ---------- */
  h1 { font-size: 28px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 22px !important; }
  p  { font-size: 16px !important; line-height: 1.6 !important; }

  /* ---------- WHY PURE AYURVEDA ---------- */
  .center-circle-wrap {
    order: -1;
  }

  .center-circle {
    width: 260px !important;
    height: 260px !important;
  }

  /* ---------- PRODUCTS / SWIPER ---------- */
  .products-slider .swiper-slide {
    width: auto !important;
  }

  .home-products {
    max-width: 95% !important;
  }

  /* ---------- PRODUCT GRID ---------- */
  .products-section .box-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ---------- BUTTONS ---------- */
  .btn,
  .add-btn,
  .consult-button,
  .green-button {
    font-size: 16px !important;
    padding: 12px 18px !important;
  }

  /* ---------- REMOVE EXTRA <br> SPACE ---------- */
  br {
    display: none;
  }
}
