@import url('https://db.onlinewebfonts.com/c/2aea0ac500c896188f9ad191c231029c?family=Orpheus+Pro');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

.container-fluid{
   max-width: 1440px !important;
}


h1, h2, h3, h4, h5, h6{
    font-family: 'Orpheus Pro', serif !important;
}

p, li, input, button{
   font-family: "Poppins", sans-serif !important;
}

.list-item:hover, .mobile-nav-item:hover{
   color: #BD9B65 !important;
}

.line{
   width: 100%;
   height: 1px;
   background-color: #2c2c2c !important;
   margin-top: 40px !important;
}

.owl-theme .owl-dots .owl-dot{
   display: none !important;
}

.insta-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instagram-image {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.insta-box:hover .instagram-image {
  transform: scale(1.05); /* optional zoom effect */
}

.insta-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-box:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  font-size: 24px;
  color: white;
}

.email-container{
   margin-bottom: 40px;
}

.owl-carousel02, .owl-carousel03{
   margin-bottom: 60px !important;
   margin-top: 40px !important;
}




.input-container input {
  width: 100%;
  padding-right: 40px; 
  padding: 10px 10px 10px 0px;
  box-sizing: border-box;
  background-color: transparent;
  border-bottom: 1px solid #000;
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
}

.input-container i {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #000; 
  pointer-events: none;
  font-size: 18px;
}

.form-control01::placeholder{
   color: #000 !important;
}

.input-container input:focus {
  outline: none;
  border-color: #000; /* keeps only bottom border visible */
  box-shadow: none;
}


.partner-image{
   width: 60% !important;
}

.shop-now-button:hover{
   background-color: #BD9B65;
}

.banner-image-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/banner-image-01.webp");
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.banner-image-container01::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/banner-image-02.webp");
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.banner-image-container:hover::before,  .banner-image-container01:hover::before{
  transform: scale(1.1);
}

.banner-image-container .container-fluid, .banner-image-container01 .container-fluid {
  position: relative;
  z-index: 1;
}



.owl-carousel03 .owl-nav {
  top: 50%;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
  display: block !important;
}

.owl-carousel03 .owl-nav button {
  background: none;
  border: none;
  font-size: 30px;
  color: #8f8f8f !important;
  pointer-events: all;
}

.owl-carousel03 .owl-nav button:hover{
   background-color: transparent !important;
}


.product-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-container img {
  width: 100%;
  display: block;
  transition: opacity 1s ease;
}

.default-img {
  display: block;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.product-container:hover .hover-img {
  opacity: 1;
}

.product-container:hover .default-img {
  opacity: 0;
}


.product-container:hover .icon-overlay {
  opacity: 1;
}


.icon-btn:hover {
  background-color: #BD9B65;
  color: #fff;
}



.owl-carousel04 .owl-nav button.owl-prev:hover, .owl-carousel04 .owl-nav button.owl-next:hover{
   background: #BD9B65 !important;
   color: #fff !important;
}


.product-name{
   color: #e2d8ce;
   font-size: 20px;
   padding-top: 15px;
}

.product-price{
   color: #c9c9c9;
   font-size: 20px;
}


.collection-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-image {
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.collection-wrapper:hover .collection-image {
  transform: scale(1.1);
}

.collection-text {
  position: absolute;
  bottom: 5px;
  left: 35px;
  z-index: 2;
  right: 15px;
}

.collection-heading {
  font-size: 35px;
  font-weight: 800;
  color: #e2d8ce;
  margin-top: 15px;
  letter-spacing: 1.5px;
}

.collection-paragraph {
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  color: #cecece;

}

.collection-wrapper:hover .collection-heading {
  transform: translateY(-10px);
}

.collection-wrapper:hover .collection-paragraph {
  opacity: 1;
  transform: translateY(0);
}

.category-button:hover{
   background-color: #000;
   color: #fff;
   border: 1px solid #000;
}


.continuous-carousel-container{
   background-color: #E2D8CF;
}


.marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-right 25s linear infinite ;
}



@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }

}

.marquee-inner01 {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-right01 25s linear infinite ;
}

@keyframes scroll-right01 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }

}

.collection-product-name{
   color: #000;
   font-size: 24px;
   padding-top: 15px;
}

.collection-product-price{
   color: #959595;
   font-size: 20px;
   font-weight: 600;
}



.our-collcetion-button:hover, .story-container button:hover{
   background-color: #000;
   border: 0px;
   color: #fff;
}


/* Base sidebar styling */
.sidebar {
  position: fixed;
  top: 0;
  right: -400px; /* Hidden to the right */
  width: 400px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  transition: right 0.4s ease;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: none;
}

/* When active (visible) */
.sidebar.active {
  right: 0;
}

/* Close (X) icon styling */
.close-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #BD9B65;
}

/* Optional: Style for menu items */
.sidebar ul {
  list-style: none;
  padding: 40px 20px 0px 20px;
}
.sidebar ul li {
  margin: 15px 0;
}
.sidebar ul li a {
  font-size: 16px !important;
      font-weight: 500 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 30px !important;
      color: #5b5b5b !important;
}

.sidebar ul li a:hover{
   color: #BD9B65 !important;
}


.sidebar::-webkit-scrollbar {
  display: none;
}

.hero-banner01 button:hover{
   background-color: #fff;
   color: #000;
   border: 0px;
}

.owl-theme .owl-nav{
   margin: -15px !important;
}


.owl-carousel05 .owl-nav button.owl-prev:hover,  .owl-carousel05 .owl-nav button.owl-next:hover{
   color: #fff !important;
   background: none !important;
}


/* .scrolled {
  background-color: #fff !important;
}

.scrolled .nav-link,
.scrolled .search-icon,
.scrolled .shopping-bag-icon,
.scrolled .bars-icon {
  color: #000 !important;
} */

















@media screen and (min-width: 1280px){





   .header-container{
      background-color: rgba(0, 0, 0, 0);
      padding: 25px 50px !important;
      position: fixed !important;
      top: 0 !important;
      right:0 !important;
      left:0 !important;
      z-index: 1000 !important;
      transition: background-color 0.3s ease !important;
   }

   .nav-link{
   color: #fff;
   text-transform: uppercase !important;
   font-weight: 300 !important;
   font-size: 15px !important;
   margin-right: 10px !important;
   letter-spacing: 0.75px !important;
   }

   .search-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
   }

   .shopping-bag-icon{
      color: #fff;
      font-size: 18px !important;
      margin: 0px 30px !important;
      cursor: pointer;
   }

   .bars-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
   }

   .shop-sidebar-banner-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* optional */
}

.shop-sidebar-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.sidebar-banner-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  max-width: 80%;
}

.sidebar-banner-content h2 {
  color: #fff0;
    font-size: 80px;
    font-weight: 400;
    line-height: 80px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-family: "Poppins", sans-serif !important;
    stroke: #FFF;
}

.sidebar-banner-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.sidebar-banner-content .btn01 {
      font-size: 14px;
    line-height: 35px;
    fill: #222;
    color: #222;
    background-color: #FFF;
    border-radius: 0 0 0 0;
    box-shadow: 5px 5px 0 0 #171717;
    padding: 0 40px 0 40px;
    border: 0px;
}


.hero-banner01{
   background-image: url("./assets/hero-banner-image-01.webp");
   background-size: cover;
   background-position: center center;
   height: 100vh;
   padding-left: 100px !important;
   padding-right: 100px !important;
}

.text-container-position{
   position: absolute;
   right: 10%;
   top: 40%;
}



.hero-banner01-heading{
   color: #fff;
   text-align: center;
   letter-spacing: 0.2em;
   font-size: 60px;
   font-weight: 400;
   padding-left: 10px;
   
}

.span01{
   font-size: 30px;
   color: #FFF;
   margin-top: 5px;
}

.hero-banner01-heading01{
   color: #fff;
   text-align: center;
   font-size: 24px;
   font-weight: 400;
   padding: 10px 0px;
   
}

.hero-banner-button{
   border: 1px solid #ffffff42;
   background-color: transparent;
   padding: 15px 30px;
   color: #fff;
   letter-spacing: 7px;
   margin-top: 10px;
}



.hero-banner02{
   background-image: url("./assets/hero-banner-image-02.webp");
   background-size: cover;
   background-position: center center;
   height: 100vh;
   padding-left: 100px !important;
   padding-right: 100px !important;
}


.owl-carousel05 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: 10px !important;
    top: 45%;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    
   
}


.owl-carousel05 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: 10px !important;
    top: 45%;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    
   
}



   .story-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 80px 50px 30px 50px;
   }


   .story-image{
      width: 90%;
      margin-top: -150px !important;
   }

   .story-container h3{
      color: #000;
      font-size: 45px;
      padding-bottom: 10px;
   }

   .story-container p{
      color: #7B7876;
      font-size: 16px;
      line-height: 30px;
      font-weight: 300;
   }

   .story-container button{
   padding: 15px 25px 15px 25px;
   border: 1px solid #22222238;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #000;
   width: 70%;
   }

   .story-image-small{
      width: 100%;
   }




   .the-collection-container{
      background-image: url("./assets/carousel-banner.webp");
      background-size: cover;
      background-position: center center;
      padding: 80px 50px 80px 50px;
   }

   .the-collection-container h3{
      color: #fff;
      font-size: 55px;
      font-weight: 400;
   }

   .the-collection-container p{
      color: #BC9A85;
      font-size: 17px;
      line-height: 30px;
      width: 550px;
   }

   .our-collcetion-button{
   padding: 15px 25px 15px 25px;
   border: 1px solid #BC9A85;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   width: 40%;
   color: #fff;
}



   .new-collection-heading{
      color: #000;
      font-size: 45px;
      padding-bottom: 35px;
   }


   .fashion-flavoyr-heading{
      color: #5f5f5f;
      font-size: 20px;
      font-style: italic;
      font-weight: 500;
      margin-left: 10px;
      margin-top: 5px;
      margin-right: 10px;
   }


   .collection-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 50px 50px 30px 50px;
   }

   .category-button{
      padding: 15px 25px 15px 25px;
      background-color: transparent;
      border: 1px solid #c5ca8f;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin-top: 30px;
      margin-bottom: 30px;
   }



   .design-banner-image{
      width: 50%;
      background-image: url("./assets/design-banner-image.webp");
      background-size: cover;
      background-position: center center;
      height: 700px;
      padding-left: 30px;
      padding-bottom: 35px;
   }


   .design-banner-image h2{
      color: #fff;
      text-transform: uppercase;
      font-size: 85px;
      line-height: 80px;
      font-weight: 800;
   }

   .carousel-banner-container{
   background-image: url("./assets/carousel-banner.webp");
   background-size: cover;
   background-position: center center;
   width: 50%;
   position: relative;
   }

   .content-container{
      padding: 0px 50px;
   }

   .carousel-banner-container h6{
      color: #fff;
      font-size: 35px;
   }

   .carousel-banner-container p{
      color: #c9c9c9;
      font-size: 17px;
      line-height: 30px;
   }

   .icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 10px;
  opacity: 0;
  transition: 1s ease-in-out;
  z-index: 3;
}

.icon-btn {
  background-color: white;
  border: none;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  padding: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  font-size: 16px;
}

.owl-carousel04 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: -60px !important;
    top: 37.5%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}

.owl-carousel04 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: -60px !important;
    top: 37.5%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}
 



   .webkit-heading{
   color: #ffffff00;
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 80px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #D4C9BD;
    stroke: #D4C9BD;
    text-align: end;
    margin-bottom: 40px;
    margin-top: -100px !important;
   }

   .testimonial-box-position{
      display: flex;
      flex-direction: row;
   }


   .image-box{
      width: 30%;
      margin-right: 15px;
   }

   .testimonial-image{
      width: 70% !important;
      margin-top: -30px !important;
   }

   .content-box{
      width: 70%;
   }
   .testimonial-heading{
      color: #000;
      font-size: 24px;
      text-align: left !important;
   }

   .testimonial-description{
      color: #5b5b5b;
      font-size: 22px;
      font-family: 500;
      line-height: 40px;
      font-style: italic;
   }

   .testimonial-name{
      color: #8f5432;
      font-size: 26px;
      font-weight: 500;
      padding-top: 10px;
   }



   .banner-image-container, .banner-image-container01{
  position: relative;
  overflow: hidden;
  height: 500px;
  padding-bottom: 35px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}



   .banner-image-container h6, .banner-image-container01 h6{
      color: #ffffff9c;
      font-size: 28px;
      line-height: 40px;
   }

   .banner-image-container h2{
      color: #fff;
      font-size: 120px;
      font-weight: 700;
      line-height: 150px;
   }


   .banner-image-container01 h2{
      color: #fff;
      font-size: 65px;
      font-weight: 700;
      line-height: 75px;
   }

   .shop-now-button{
      background-color: #8f5432;
      border: 0px;
      padding: 12px 30px 12px 30px;
      color: #fff;
      letter-spacing: 8px;
      font-weight: 400;
   }



   .instagram-image-container h5{
      text-align: center;
      font-size: 35px;
      text-transform: capitalize;
      line-height: 45px;
      padding-bottom: 25px;
   }


   .input-container {
  position: relative;
  width: 60%; /* or your desired width */

}

   .instagram-image-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 70px 30px 70px;
   }


   .home-footer-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 70px 30px 70px;
     
   }

   .footer-logo{
      width: 120px;
   }

   .footer-heading{
      color: #5b5b5b;
      font-size: 24px;
      font-weight: 500;
      text-transform: uppercase;
      padding-bottom: 20px;
   }

   .list-item{
      color: #8f8f8f !important;
      font-size: 16px !important;
      font-weight: 500 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 30px !important;
   }

   .bottom-footer-position{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
   }

   .copyright-paragraph{
      color: #8f8f8f;
      font-size: 15px;
   }

   .footer-payment{
      display: block;
      width: 15%;
      height: 34px;
   }

}



@media screen and (min-width: 992px) and (max-width: 1280px){





   .header-container{
      background-color: rgba(0, 0, 0, 0);
      padding: 25px 50px !important;
      position: fixed !important;
      top: 0 !important;
      right:0 !important;
      left:0 !important;
      z-index: 1000 !important;
      transition: background-color 0.3s ease !important;
   }

   .nav-link{
   color: #fff;
   text-transform: uppercase !important;
   font-weight: 300 !important;
   font-size: 15px !important;
   margin-right: 10px !important;
   letter-spacing: 0.75px !important;
   }

   .search-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
   }

   .shopping-bag-icon{
      color: #fff;
      font-size: 18px !important;
      margin: 0px 30px !important;
      cursor: pointer;
   }

   .bars-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
   }

   .shop-sidebar-banner-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* optional */
}

.shop-sidebar-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.sidebar-banner-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  max-width: 80%;
}

.sidebar-banner-content h2 {
  color: #fff0;
    font-size: 80px;
    font-weight: 400;
    line-height: 80px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-family: "Poppins", sans-serif !important;
    stroke: #FFF;
}

.sidebar-banner-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.sidebar-banner-content .btn01 {
      font-size: 14px;
    line-height: 35px;
    fill: #222;
    color: #222;
    background-color: #FFF;
    border-radius: 0 0 0 0;
    box-shadow: 5px 5px 0 0 #171717;
    padding: 0 40px 0 40px;
    border: 0px;
}


.hero-banner01{
   background-image: url("./assets/hero-banner-image-01.webp");
   background-size: cover;
   background-position: center center;
  height: 75vh;
}



.hero-banner01-heading{
   color: #fff;
   text-align: center;
   letter-spacing: 0.2em;
   font-size: 60px;
   font-weight: 400;
   padding-left: 10px;
   
}

.span01{
   font-size: 30px;
   color: #FFF;
   margin-top: 5px;
}

.hero-banner01-heading01{
   color: #fff;
   text-align: center;
   font-size: 24px;
   font-weight: 400;
   padding: 10px 0px;
   
}

.hero-banner-button{
   border: 1px solid #ffffff42;
   background-color: transparent;
   padding: 15px 30px;
   color: #fff;
   letter-spacing: 7px;
   margin-top: 10px;
}



.hero-banner02{
   background-image: url("./assets/hero-banner-image-02.webp");
   background-size: cover;
   background-position: center center;
   height: 75vh;
  
}


.owl-carousel05 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: 10px !important;
    top: 45%;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 18px !important;
    
}

.owl-carousel05 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: 10px !important;
    top: 45%;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 18px !important;
    
}





    .story-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 80px 50px 30px 50px;
   }


   .story-image{
      width: 90%;
      margin-top: -120px !important;
   }

   .story-container h3{
      color: #000;
      font-size: 35px;
      padding-bottom: 10px;
   }

   .story-container p{
      color: #7B7876;
      font-size: 15px;
      line-height: 28px;
      font-weight: 300;
   }

   .story-container button{
   padding: 15px 25px 15px 25px;
   border: 1px solid #22222238;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #000;
   
   }

   .story-image-small{
      width: 100%;
   }



   .the-collection-container{
      background-image: url("./assets/carousel-banner.webp");
      background-size: cover;
      background-position: center center;
      padding: 50px 50px 30px 50px;
   }

   .the-collection-container h3{
      color: #fff;
      font-size: 55px;
      font-weight: 400;
   }

   .the-collection-container p{
      color: #BC9A85;
      font-size: 17px;
      line-height: 30px;
   }

   .our-collcetion-button{
   padding: 20px 30px;
   border: 1px solid #BC9A85;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #fff;
}



    .new-collection-heading{
      color: #000;
      font-size: 38px;
      padding-bottom: 30px;
   }




   .fashion-flavoyr-heading{
      color: #5f5f5f;
      font-size: 20px;
      font-style: italic;
      font-weight: 500;
      margin-left: 10px;
      margin-top: 5px;
      margin-right: 10px;
   }


   .collection-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 0px 50px 30px 50px;
   }



   .collection-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 50px 50px 30px 50px;
   }

   .category-button{
      padding: 15px 25px 15px 25px;
      background-color: transparent;
      border: 1px solid #c5ca8f;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin-top: 30px;
      margin-bottom: 30px;
   }




   .design-banner-image{
      width: 50%;
      background-image: url("./assets/design-banner-image.webp");
      background-size: cover;
      background-position: center center;
      height: 700px;
      padding-left: 30px;
      padding-bottom: 35px;
   }


   .design-banner-image h2{
      color: #fff;
      text-transform: uppercase;
      font-size: 65px;
      line-height: 65px;
      font-weight: 800;
   }

   .carousel-banner-container{
   background-image: url("./assets/carousel-banner.webp");
   background-size: cover;
   background-position: center center;
   width: 50%;
   }

   .content-container{
      padding: 0px 30px;
   }

   .carousel-banner-container h6{
      color: #fff;
      font-size: 35px;
   }

   .carousel-banner-container p{
      color: #c9c9c9;
      font-size: 17px;
      line-height: 30px;
   }

   .icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 5px;
  opacity: 0;
  transition: 1s ease-in-out;
  z-index: 3;
}

.icon-btn {
  background-color: white;
  border: none;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  font-size: 15px;
}

.owl-carousel04 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: -40px !important;
    top: 37.5%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}

.owl-carousel04 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: -40px !important;
    top: 37.5%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}

   .testimonial-box-position{
      display: flex;
      flex-direction: row;
      justify-content: start ;
   }

    .webkit-heading{
   color: #ffffff00;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 60px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #D4C9BD;
    stroke: #D4C9BD;
    text-align: end;
    margin-bottom: 40px;
    margin-top: -50px !important;
   }

   .testimonial-box-position{
      display: flex;
      flex-direction: row;
   }


   .image-box{
      width: 40%;
   }

   .testimonial-image{
      width: 70% !important;
     
   }

   .content-box{
      width: 60%;
   }
   .testimonial-heading{
      color: #000;
      font-size: 24px;
      text-align: left !important;
   }

   .testimonial-description{
      color: #5b5b5b;
      font-size: 22px;
      font-family: 500;
      line-height: 40px;
      font-style: italic;
   }

   .testimonial-name{
      color: #8f5432;
      font-size: 26px;
      font-weight: 500;
      padding-top: 10px;
   }



   .banner-image-container, .banner-image-container01{
  position: relative;
  overflow: hidden;
  height: 500px;
  padding-bottom: 35px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}



   .banner-image-container h6, .banner-image-container01 h6{
      color: #ffffff9c;
      font-size: 24px;
      line-height: 35px;
   }

   .banner-image-container h2{
      color: #fff;
      font-size: 100px;
      font-weight: 700;
      line-height: 130px;
   }


   .banner-image-container01 h2{
      color: #fff;
      font-size: 45px;
      font-weight: 700;
      line-height: 55px;
   }

   .shop-now-button{
      background-color: #8f5432;
      border: 0px;
      padding: 12px 30px 12px 30px;
      color: #fff;
      letter-spacing: 8px;
      font-weight: 400;
   }



   .instagram-image-container h5{
      text-align: center;
      font-size: 33px;
      text-transform: capitalize;
      line-height: 45px;
      padding-bottom: 25px;
   }

   .input-container {
  position: relative;
  width: 80%; /* or your desired width */

}


   .instagram-image-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 50px 30px 50px;
     
   }

   
   .home-footer-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 50px 30px 50px;
     
   }

   .footer-logo{
      width: 120px;
   }

   .footer-heading{
      color: #5b5b5b;
      font-size: 22px;
      font-weight: 500;
      text-transform: uppercase;
      padding-bottom: 20px;
   }

   .list-item{
      color: #8f8f8f !important;
      font-size: 16px !important;
      font-weight: 500 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 30px !important;
   }

   .copyright-paragraph{
      color: #8f8f8f;
      font-size: 14px;
      padding-top: 10px;
   }

   .footer-payment{
      display: block;
      width: 20%;
      height: 34px;
   }

   .bottom-footer-position{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
   }

}




@media screen and (min-width: 768px) and (max-width: 992px){



     .mobile-header{
      background-color: rgba(0, 0, 0, 0);
      padding: 25px 10px !important;
      position: fixed !important;
      top: 0 !important;
      right:0 !important;
      left:0 !important;
      z-index: 1000 !important;
      transition: background-color 0.3s ease !important;
   }

   .mobile-header-logo-image{
      width: 90px;
   }

    .mobile-search-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
      margin-top: 5px;
   }

   .mobile-shopping-bag-icon{
      color: #fff;
      font-size: 18px !important;
      margin: 5px 30px !important;
      cursor: pointer;
   }

   .mobile-bars-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
      margin-top: 5px;
   }


   .mobile-sidebar {
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: left 0.5s ease-in-out;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

/* Show Sidebar */
.mobile-sidebar.mobile-sidebar-open {
  left: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.mobile-close-icon {
  font-size: 1.5rem;
  cursor: pointer;
  color: #BD9B65;
}

.mobile-sidebar-content {
  padding: 1rem;
}

.mobile-sidebar-content ul {
  list-style: none;
  padding: 0;
}

.mobile-sidebar-content li {
  margin-bottom: 1rem;
}

.mobile-sidebar-content a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}

/* Show Overlay */
.mobile-overlay.mobile-overlay-open {
  display: block;
}


.mobile-nav-item{
      color: #000 !important;
      font-size: 16px !important;
      font-weight: 300 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 28px !important;
      text-transform: uppercase;
      
   }



   
.hero-banner01{
   background-image: url("./assets/hero-banner-image-01.webp");
   background-size: cover;
   background-position: center center;
  height: 75vh;
}



.hero-banner01-heading{
   color: #fff;
   text-align: center;
   letter-spacing: 0.2em;
   font-size: 60px;
   font-weight: 400;
   padding-left: 10px;
   
}

.span01{
   font-size: 30px;
   color: #FFF;
   margin-top: 5px;
}

.hero-banner01-heading01{
   color: #fff;
   text-align: center;
   font-size: 24px;
   font-weight: 400;
   padding: 10px 0px;
   
}

.hero-banner-button{
   border: 1px solid #ffffff42;
   background-color: transparent;
   padding: 15px 30px;
   color: #fff;
   letter-spacing: 7px;
   margin-top: 10px;
}



.hero-banner02{
   background-image: url("./assets/hero-banner-image-02.webp");
   background-size: cover;
   background-position: center center;
   height: 75vh;
  
}


.owl-carousel05 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: 10px !important;
    top: 45%;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 18px !important;
    
}

.owl-carousel05 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: 10px !important;
    top: 45%;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 18px !important;
    
}



    .story-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 50px 50px 30px 50px;
   }


   .story-image{
      width: 100%;
   }

   .story-container h3{
      color: #000;
      font-size: 35px;
      padding-bottom: 10px;
   }

   .story-container p{
      color: #7B7876;
      font-size: 15px;
      line-height: 28px;
      font-weight: 300;
   }

   .story-container button{
   padding: 15px 25px 15px 25px;
   border: 1px solid #22222238;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #000;
   
   }

   .story-image-small{
      width: 50%;
   }




    .the-collection-container{
      background-image: url("./assets/carousel-banner.webp");
      background-size: cover;
      background-position: center center;
      padding: 50px 50px 30px 50px;
   }

   .the-collection-container h3{
      color: #fff;
      font-size: 35px;
      font-weight: 400;
   }

   .the-collection-container p{
      color: #BC9A85;
      font-size: 17px;
      line-height: 30px;
   }

   .our-collcetion-button{
   padding: 20px 30px;
   border: 1px solid #BC9A85;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #fff;
   width: 40%;
}



    .new-collection-heading{
      color: #000;
      font-size: 35px;
      padding-bottom: 30px;
   }



   .fashion-flavoyr-heading{
      color: #5f5f5f;
      font-size: 18px;
      font-style: italic;
      font-weight: 500;
      margin-left: 10px;
      margin-top: 5px;
      margin-right: 10px;
   }


   .collection-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 50px 50px 30px 50px;
   }


   

   .category-button{
      padding: 15px 25px 15px 25px;
      background-color: transparent;
      border: 1px solid #c5ca8f;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin-top: 30px;
      margin-bottom: 30px;
   }



    .design-banner-image{
      width: 100%;
      background-image: url("./assets/design-banner-image.webp");
      background-size: cover;
      background-position: center center;
      height: 700px;
      padding-left: 30px;
      padding-bottom: 35px;
   }


   .design-banner-image h2{
      color: #fff;
      text-transform: uppercase;
      font-size: 65px;
      line-height: 65px;
      font-weight: 800;
   }

   .carousel-banner-container{
   background-image: url("./assets/carousel-banner.webp");
   background-size: cover;
   background-position: center center;
   width: 100%;
   }

   .content-container{
      padding: 0px 30px;
   }

   .carousel-banner-container h6{
      color: #fff;
      font-size: 35px;
   }

   .carousel-banner-container p{
      color: #c9c9c9;
      font-size: 17px;
      line-height: 30px;
   }

   .icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 10px;
  opacity: 0;
  transition: 1s ease-in-out;
  z-index: 3;
}

.icon-btn {
  background-color: white;
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  padding: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  font-size: 15px;
}

.owl-carousel04 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: -40px !important;
    top: 37.5%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}

.owl-carousel04 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: -40px !important;
    top: 37.5%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}



    .testimonial-box-position{
      display: flex;
      flex-direction: row;
      justify-content: center ;
      flex-wrap: wrap;
   }

    .webkit-heading{
   color: #ffffff00;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 50px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #D4C9BD;
    stroke: #D4C9BD;
    text-align: end;
    margin-bottom: 40px;
    margin-top: -50px !important;
   }

   .testimonial-box-position{
      display: flex;
      flex-direction: row;
   }


   .image-box{
      width: 100%;
   }

   .testimonial-image{
      width: 60% !important;
   }

   .content-box{
      width: 100%;
   }
   .testimonial-heading{
      color: #000;
      font-size: 24px;
      text-align: center;
   }

   .testimonial-description{
      color: #5b5b5b;
      font-size: 22px;
      font-family: 500;
      line-height: 35px;
      font-style: italic;
      text-align: center;
   }

   .testimonial-name{
      color: #8f5432;
      font-size: 24px;
      font-weight: 500;
      padding-top: 10px;
      text-align: center;
   }


   .banner-image-container, .banner-image-container01{
  position: relative;
  overflow: hidden;
  height: 500px;
  padding-bottom: 35px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}



   .banner-image-container h6, .banner-image-container01 h6{
      color: #ffffff9c;
      font-size: 24px;
      line-height: 35px;
   }

   .banner-image-container h2{
      color: #fff;
      font-size: 100px;
      font-weight: 700;
      line-height: 130px;
   }


   .banner-image-container01 h2{
      color: #fff;
      font-size: 45px;
      font-weight: 700;
      line-height: 55px;
   }

   .shop-now-button{
      background-color: #8f5432;
      border: 0px;
      padding: 12px 30px 12px 30px;
      color: #fff;
      letter-spacing: 8px;
      font-weight: 400;
   }


   .input-container {
  position: relative;
  width: 90%; /* or your desired width */

}

.instagram-image-container h5{
      text-align: center;
      font-size: 28px;
      text-transform: capitalize;
      line-height: 45px;
      padding-bottom: 25px;
   }


   .instagram-image-container h5{
      text-align: center;
      font-size: 35px;
      text-transform: capitalize;
      line-height: 45px;
      padding-bottom: 25px;
   }


    .instagram-image-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 50px 30px 50px;
   }


   .home-footer-container{
      background-color: #E2D8CF !important;
      background-size: cover;
     padding: 50px 50px 30px 50px;
     
   }

   .footer-logo-position{
      display: flex !important;
      flex-direction: row !important;
      justify-content: center !important;
   }

   .footer-logo{
      width: 120px;
      margin-bottom: 25px;
   }

   .footer-heading{
      color: #5b5b5b;
      font-size: 24px;
      font-weight: 500;
      text-transform: uppercase;
      padding-bottom: 20px;
      text-align: center;
   }

   .list-item{
      color: #8f8f8f !important;
      font-size: 16px !important;
      font-weight: 500 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 30px !important;
      text-align: center !important;
   }

   .bottom-footer-position{
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
   }

   .copyright-paragraph{
      color: #8f8f8f;
      font-size: 14px;
      width: 100%;
      text-align: center;
   }

   .footer-payment{
      width: 30%;
      height: 34px;
      text-align: center;
      margin-bottom: 10px;
   }

}



.mobile-search-icon,
.mobile-shopping-bag-icon,
.mobile-bars-icon {
  transition: color 0.3s ease;
}






@media screen and (max-width: 768px){



   .mobile-header{
      background-color: rgba(0, 0, 0, 0);
      padding: 25px 10px !important;
      position: fixed !important;
      top: 0 !important;
      right:0 !important;
      left:0 !important;
      z-index: 1000 !important;
      transition: background-color 0.3s ease !important;
   }

   .mobile-header-logo-image{
      width: 90px;
   }

    .mobile-search-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
      margin-top: 5px;
   }

   .mobile-shopping-bag-icon{
      color: #fff;
      font-size: 18px !important;
      margin: 5px 30px !important;
      cursor: pointer;
   }

   .mobile-bars-icon{
      color: #fff;
      font-size: 18px !important;
      cursor: pointer;
      margin-top: 5px;
   }


   .mobile-sidebar {
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: left 0.5s ease-in-out;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

/* Show Sidebar */
.mobile-sidebar.mobile-sidebar-open {
  left: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.mobile-close-icon {
  font-size: 1.5rem;
  cursor: pointer;
  color: #BD9B65;
}

.mobile-sidebar-content {
  padding: 1rem;
}

.mobile-sidebar-content ul {
  list-style: none;
  padding: 0;
}

.mobile-sidebar-content li {
  margin-bottom: 1rem;
}

.mobile-sidebar-content a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}

/* Show Overlay */
.mobile-overlay.mobile-overlay-open {
  display: block;
}


.mobile-nav-item{
      color: #000 !important;
      font-size: 16px !important;
      font-weight: 300 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 28px !important;
      text-transform: uppercase;
      
   }

   
.hero-banner01{
   background-image: url("./assets/hero-banner-image-01.webp");
   background-size: cover;
   background-position: center center;
  height: 75vh;
}



.hero-banner01-heading{
   color: #fff;
   text-align: center;
   letter-spacing: 0.1em;
   font-size: 30px;
   font-weight: 400;
   padding-right: 10px;
   padding-left: 10px;
   
}

.span01{
   font-size: 20px;
   color: #FFF;
}

.hero-banner01-heading01{
   color: #fff;
   text-align: center;
   font-size: 18px;
   font-weight: 400;
   padding: 10px 0px;
   
}

.hero-banner-button{
   border: 1px solid #ffffff42;
   background-color: transparent;
   padding: 10px 20px;
   color: #fff;
   letter-spacing: 5px;
   margin-top: 10px;
   font-size: 14px;
}



.hero-banner02{
   background-image: url("./assets/hero-banner-image-02.webp");
   background-size: cover;
   background-position: center center;
   height: 75vh;
  
}


.owl-carousel05 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    bottom: 3%;
    left: 40% !important;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 18px !important;
    
}

.owl-carousel05 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    bottom: 3%;
    right: 40% !important;
    color: rgba(255,255,255,0.45) !important;
    border: none;
    font: inherit;
    font-size: 18px !important;
    
}



   .story-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 30px 10px;
   }


   .story-image{
      width: 100%;
   }

   .story-container h3{
      color: #000;
      font-size: 35px;
      padding-bottom: 10px;
   }

   .story-container p{
      color: #7B7876;
      font-size: 15px;
      line-height: 28px;
      font-weight: 300;
   }

   .story-container button{
   padding: 15px 25px 15px 25px;
   border: 1px solid #22222238;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #000;
   
   }

   .story-image-small{
      width: 50%;
   }



   .the-collection-container{
      background-image: url("./assets/carousel-banner.webp");
      background-size: cover;
      background-position: center center;
      padding: 30px 10px !important;
   }

   .the-collection-container h3{
      color: #fff;
      font-size: 28px;
      font-weight: 400;
   }

   .the-collection-container p{
      color: #BC9A85;
      font-size: 16px;
      line-height: 30px;
   }

   .our-collcetion-button{
   padding: 20px 30px;
   border: 1px solid #BC9A85;
   font-size: 16px;
   letter-spacing: 6px;
   background-color: transparent;
   color: #fff;
   
}



    .new-collection-heading{
      color: #000;
      font-size: 28px;
      padding-bottom: 25px;
   }




    .fashion-flavoyr-heading{
      color: #5f5f5f;
      font-size: 18px;
      font-style: italic;
      font-weight: 500;
      margin-left: 10px;
      margin-top: 5px;
      margin-right: 10px;
   }





   .collection-container{
      background-color: #E2D8CF;
      background-size: cover;
      padding: 25px 10px 30px 10px;
   }

   .category-button{
      padding: 15px 25px 15px 25px;
      background-color: transparent;
      border: 1px solid #c5ca8f;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 5px;
      margin-top: 30px;
      margin-bottom: 30px;
   }



    .design-banner-image{
      width: 100%;
      background-image: url("./assets/design-banner-image.webp");
      background-size: cover;
      background-position: center center;
      height: 700px;
      padding-left: 30px;
      padding-bottom: 35px;
   }


   .design-banner-image h2{
      color: #fff;
      text-transform: uppercase;
      font-size: 45px;
      line-height: 60px;
      font-weight: 800;
   }

   .carousel-banner-container{
   background-image: url("./assets/carousel-banner.webp");
   background-size: cover;
   background-position: center center;
   width: 100%;
   }

   .content-container{
      padding: 0px 10px;
   }

   .carousel-banner-container h6{
      color: #fff;
      font-size: 35px;
   }

   .carousel-banner-container p{
      color: #c9c9c9;
      font-size: 17px;
      line-height: 30px;
   }

   .icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 10px;
  opacity: 0;
  transition: 1s ease-in-out;
  z-index: 3;
}

.icon-btn {
  background-color: white;
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  padding: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  font-size: 15px;
}


.owl-carousel04 .owl-nav button.owl-prev {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    left: -25px !important;
    top: 39%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}

.owl-carousel04 .owl-nav button.owl-next {
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    position: absolute;
    right: -25px !important;
    top: 39%;
    background: #fff !important;
    color: #000 !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    width: 37px;
    height: 37px;
    border-radius: 21px !important;
    text-align: center !important;
    align-self: center !important;
    box-shadow: 0px 4px 20px -4px rgba(9, 43, 70, 0.16);
   
}

   




   .testimonial-box-position{
      display: flex;
      flex-direction: row;
      justify-content: center ;
      flex-wrap: wrap;
   }

    .webkit-heading{
   color: #ffffff00;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 30px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #D4C9BD;
    stroke: #D4C9BD;
    text-align: end;
    margin-bottom: 40px;
    margin-top: -50px !important;
   }

   .testimonial-box-position{
      display: flex;
      flex-direction: row;
   }


   .image-box{
      width: 100%;
   }

   .testimonial-image{
      width: 60% !important;
   }

   .content-box{
      width: 100%;
   }
   .testimonial-heading{
      color: #000;
      font-size: 26px;
      text-align: center;
   }

   .testimonial-description{
      color: #5b5b5b;
      font-size: 18px;
      font-family: 500;
      line-height: 30px;
      font-style: italic;
      text-align: center;
   }

   .testimonial-name{
      color: #8f5432;
      font-size: 20px;
      font-weight: 500;
      padding-top: 10px;
      text-align: center;
   }



   .banner-image-container, .banner-image-container01{
  position: relative;
  overflow: hidden;
  height: 500px;
  padding-bottom: 35px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}



   .banner-image-container h6, .banner-image-container01 h6{
      color: #ffffff9c;
      font-size: 24px;
      line-height: 35px;
   }

   .banner-image-container h2{
      color: #fff;
      font-size: 80px;
      font-weight: 700;
      line-height: 110px;
   }


   .banner-image-container01 h2{
      color: #fff;
      font-size: 30px;
      font-weight: 700;
      line-height: 40px;
   }

   .shop-now-button{
      background-color: #8f5432;
      border: 0px;
      padding: 12px 30px 12px 30px;
      color: #fff;
      letter-spacing: 8px;
      font-weight: 400;
   }


    .instagram-image-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 10px 30px 10px;
   }

   .instagram-image-container h5{
      text-align: center;
      font-size: 24px;
      text-transform: capitalize;
      line-height: 40px;
      
   }


   .input-container {
  position: relative;
  width: 100%; /* or your desired width */

}

   .home-footer-container{
      background-color: #E2D8CF !important;
      background-size: cover;
      padding: 50px 10px 30px 10px;
     
   }

   .footer-logo-position{
      display: flex !important;
      flex-direction: row !important;
      justify-content: center !important;
   }

   .footer-logo{
      width: 120px;
      margin-bottom: 25px;
   }

   .footer-heading{
      color: #5b5b5b;
      font-size: 20px;
      font-weight: 500;
      text-transform: uppercase;
      padding-bottom: 20px;
      text-align: center;
   }

   .list-item{
      color: #8f8f8f !important;
      font-size: 16px !important;
      font-weight: 500 !important;
      letter-spacing: 0.5px !important;
      text-decoration: none !important;
      line-height: 28px !important;
      text-align: center !important;
   }

   .bottom-footer-position{
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
   }

   .copyright-paragraph{
      color: #8f8f8f;
      font-size: 14px;
      width: 100%;
      text-align: center;
   }

   .footer-payment{
      width: 60%;
      height: 34px;
      text-align: center;
      margin-bottom: 10px;
   }

}



