@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 */
.ayur-about-sec {
   padding: 50px 0 1px;
 }
 .ayur-about-head{
   text-align: left;
 }
 .ayur-about-head p{
   padding: 14px 0 30px;
   font-size: 2rem;
   font-weight: 400;

 }
 .ayur-about-img{
   position: relative;
   
 }
 .ayur-about-exp {
   position: absolute;
   bottom: 26px;
   left: 74px;
   display: flex;
   align-items: center;
   gap: 10px;
 }
 .ayur-about-exp p:nth-child(1){
   font-size: 50px;
   font-weight: 700;
   color: var(--ayur-primary-color);
 }
 .ayur-about-exp p{
   font-size: 24px;
   font-weight: 600;
   color: var(--ayur-heading-color);
   font-family: "Archivo", sans-serif;
 }
 .ayur-heading-wrap h3{
   font-size: 32px;
   font-weight: 700;
   color: var(--ayur-heading-color);
 }



 .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;
 }


 


 img{
   max-width: 100%;
 }




.ayur-heading-left{
   text-align: center;
   margin: 0 0 30px;
}








 @media (max-width:991px) {
   .ayur-about-exp {
      bottom: 25px;
      left: 19%;
  }
  .ayur-about-img {
      margin: 0 0 20px;
      text-align: center;
  }
}


 /* 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: white;
   border: 1px solid #ffebe4;
   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: #cd8973;
   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 */









 @media (max-width:480px) {
   
   .ayur-achieve-box-wrapper {
       grid-template-columns: auto;
   }
}


@media(max-width:767px) {
   
 
   .ayur-achieve-text {
       padding-left: 5px;
   }
   /* .ayur-achieve-box {
       padding: 24px 5px;
   } */
   .ayur-achieve-box{
       grid-template-columns: 85px 1fr;
   }
}





/* 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;
}

.content2 {
   position: relative;
   z-index: 1;
   color: black;
   text-align: center;
   font-size: 2rem;
   font-weight: 500;
   padding: 20px;
  margin-top: 20rem;
  background: rgba(255, 252, 252, 0.655);
  
}
@media (max-width: 768px) {
   .video-container {
       width: 100%;
       height: 80%;
       /* top: 25%;
       left: 10%; */
   }
}

.btn,
.delete-btn,
.option-btn{
   display: block;
   width: 100%;
   margin-top: 1rem;
   border-radius: .5rem;
   padding:1rem 3rem;
   font-size: 1.7rem;
   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: var(--orange);
}

.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;
   padding: 15px 5%;
}
.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 {
      font-size: 3rem;
      margin-left: 18px;
   }
}
.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;
}


.home-bg{
   background-color:#e15e55;
   /* background:url(../images/b4.jpg) no-repeat; */
   background-size: cover;
   background-position: center;
}

.home-bg .home .slide{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:1.5rem;
   padding-bottom: 6rem;
   padding-top: 2rem;
   user-select: none;
}

.home-bg .home .slide .image{
   flex:1 1 40rem;
}

.home-bg .home .slide .image img{
   height: 40rem;
   width: 100%;
   object-fit: contain;
}

.home-bg .home .slide .content{
   flex:1 1 40rem;
}

.home-bg .home .slide .content span{
   font-size: 2rem;
   color:var(--white);
}

.home-bg .home .slide .content h3{
   margin-top: 1rem;
   font-size: 4rem;
   color:var(--white);
   text-transform: uppercase;
}

.home-bg .home .slide .content .btn{
   display: inline-block;
   width: auto;
}

.swiper-pagination-bullet-active{
   background-color: var(--main-color);
}




.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: var(--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: 50%;
   }

   .heading{
      font-size: 3rem;
   }

   .flex-btn{
      flex-flow: column;
      gap:0;
   }

   .quick-view form .row .image-container .sub-image img{
      width: 8rem;
   }

   .checkout-orders form .flex .inputBox{
      width: 100%;
   }

}