@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');

:root {
  --theme-color: #000000;
  --theme-color-second:#ce9b7a;
  --theme-color-third: #000;

  --heading-font: 'head-font';
  --paragraph-font: "Poppins", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}

@font-face {
  font-family: 'head-font';
  src: url(../fonts/BRANCH.ttf);
}

@font-face {
  font-family:'spanist';
  src: url(../fonts/better.ttf);
}
a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
    font-size: 48px;
    margin-bottom: 0;
}

h2 {
  font-size: 45px;
}

h3 {}

h4{}

h5{}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
  max-width: none;	
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}
a.comon-btn  span{
  position: relative;
  z-index: 111;
}
a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 500px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
a.comon-btn::before {
    content: '';
    display: block;
    background-color: #000;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -60px;
    left: 0;
    transition: 0.3s;
}
a.comon-btn:hover::before{
  top: 0;
  transition: 0.3s;
}
a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff !important;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
.header_menu {
  position: relative;
}
.header_menu li a {
    color: #000000;
    font-size: 13px;
    text-transform: capitalize;
    padding: 29px 13px;
    display: inline-block;
    font-weight: normal;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}



#main_header .navbar-expand-lg .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
    width: 100%;
}
#main_header  .navbar-brand{
  margin: 0px 15px;
}

#main_header .top-header{
  padding: 10px;
  background-color: #dfe6ef;
}

#main_header .top-header a.phone{
  font-size: 14px;
  color: #666;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
}
#main_header .top-header p{
   font-size: 14px;
  color: #666;
  font-weight: normal;
  line-height: normal;
}
#main_header .top-header .hd_info{
  flex-wrap: nowrap;
}

#main_header .top-header .hd_info form {
    display: flex;
    width: 210px;
    background: #c3d1e2;
    border-radius: 50px;
    overflow: hidden;
}
#main_header .top-header .hd_info form input , #main_header .top-header .hd_info form button{
  padding:10px 15px;
  background-color: transparent;
  font-size: 14px;
  border: none;
}
#main_header .top-header .hd_info form::placeholder{
  color: #000;
}

#main_header .cart-btn{
  background-color: #000;
  color: #fff;
  display: flex;
  gap: 5px;
  height: 45px;
  align-items: center;
  font-size: 12px;
  width:100px;
  border-radius: 600px;
  justify-content: center;
}

#main_header .desktop-sidebar{
  height: 45px;
  width: 45px;
  display: flex;
  font-size: 14px;
  border-radius: 600px;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--theme-color-second);
}

/* --- Basics --- */
#main_header  .custom-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 520px;
    max-width: 90vw;
    height: 100vh;
    background: var(--theme-color-second);
    box-shadow: 2px 0 12px rgba(0,0,0,.15);
    transform: translateX(-100%);
    transition: transform .25s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 2rem;
}

#main_header  .custom-sidebar.open {
  transform: translateX(0);
}
#main_header  .custom-sidebar-close {
    margin-left: auto;
    font-size: 1.5rem;
    line-height: 1;
    background: white;
    border: 0;
    cursor: pointer;
    outline: none;
}

#main_header  .custom-sidebar-content {
    overflow-y: scroll;
    margin-top: 1rem;
    flex: 1;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    height: 100vh;
/*     padding: 1rem; */
    text-align: center;
    color: #fff;
}

#main_header  .custom-sidebar-content h2{
  font-family: var(--paragraph-font);
  font-size: 30px;
}
#main_header  .custom-sidebar-content p b{
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Backdrop */
#main_header  .custom-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: #ce9b7a8f;
    z-index: 1000;
}

/* Utility for screen readers */
#main_header  .sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


.banner h2{
  font-size: 65px;
  color: var(--theme-color-second);
  margin-bottom: 0;
}

.banner {
  height: 80vh;
}

.banner-sec .owl-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.banner-sec .owl-dots .owl-dot.active {
  border: 2px solid #000;
  border-radius: 60px;

}
.banner-sec .owl-dots .owl-dot {
  height: 20px;
  width: 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-sec .owl-dots .owl-dot span{
  display: block;
  height: 5px;
  width: 5px;
  background-color: #000;
  border-radius: 600px
}

.main-side .product-box{
  text-align: center;
  color: #fff;
}

.main-side .product-box .img-box{
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  transition: 0.6s;
}

.main-side .product-box .img-box .secondary-image{
  position: absolute;
  width: 100%;
  bottom: -100%;
  left: 0;
  right: 0;
  opacity: 0;
   transition: 0.6s;
}

.main-side .product-box .img-box:hover .secondary-image{
  position: absolute;
  width: 100%;
  bottom: 0%;
  left: 0;
  right: 0;
  opacity: 1;
   transition: 0.6s;
}

.main-side .product-box h4{
  font-family: var(--paragraph-font);
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
}
.main-side .product-box .img-box img {
    height: 240px;
    object-fit: cover;
    transform: scale(1);
}

.product-box {
  background-color: #f9f2ee;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-box .img-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 15px;
}
.product-box .img-box  img{
  height: 100%;
  object-fit: cover;
}

.product-box .img-box .secondary-image{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: -100%;
  opacity: 0;
  transition: 0.6s;

}

.product-box:hover .img-box .secondary-image{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0%;
  opacity: 1;
  transition: 0.6s;

}
.product-box .over-lay-1 ul li{
  margin-bottom: 10px;
}
.product-box .over-lay-1 ul li a{
  display: flex;
  background-color: var(--theme-color-second);
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 600px;
  line-height: 1;
}
.product-box .over-lay-1 ul li a i{
  position: relative;
  top: 2px;
}

.product-box .over-lay-1 {
  padding: 10px;
  position: absolute;
  top: 0;
  left: -100%;
   transition: 0.6s;
}

.product-box:hover .over-lay-1 {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 1%;
   transition: 0.6s;
}
.product-box .over-lay-2 {
    width: 70px;
    height: 22px;
    border-radius: 600px;
    display: flex;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--theme-color-second);
    align-items: center;
    justify-content: center;
    background: #f9f2ee;
    position: absolute;
    top: 20px;
    right: 10px;
    opacity: 1;
     transition: 0.6s;
}
.product-box:hover .over-lay-2 {
  right:-100%;
  opacity: 0;
     transition: 0.6s;
}

.product-box .content h6 {
    font-family: var(--paragraph-font);
    font-weight: normal;
    font-size: 14px;
    min-height: 70px;
}

.product-box .content h5.price{
 font-family: var(--paragraph-font);
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 10px;
}

.product-box .content h5 del{
  font-size: 14px;
  color: #666;
}

.product-box .button-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -70px;
    transition: 0.6s;
}
.product-box:hover .button-box{
    bottom: 5px;
    transition: 0.6s;
}

.best-selling .owl-nav img{
 width: 50px;
}
.best-selling .owl-nav{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.shop-product .heading p b{
  letter-spacing: 2px;
}

.shop-product .object-fit{
  object-fit: cover;
}

.shop-product .img-box {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.shop-product .img-box .over-lay-1{
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}
.shop-product .img-box img{
  opacity: 0.8;
  transform: scale(1);
  transition: 0.6s;
}
.shop-product .img-box:hover img{
  opacity: 0.6;
    transform: scale(1.03);
  transition: 0.6s;
}
.shop-product .img-box h4{
  font-size: 28px;
  margin-bottom: 10px;
}

.shop-product .img-box  p{
  border-bottom: 2px solid #fff;
  display: inline-block;
  line-height: normal;
}


.shop-product .img-box .over-lay-2 p{
  border-bottom: 2px solid #fff;
  display: inline-block;
  line-height: normal;
}

.shop-product .img-box .over-lay-2{
  position: absolute;
  width: 100%;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}
.shop-product .img-box .over-lay-3{
  position: absolute;
  width: 100%;
  bottom: 50px;
  
  right: 0px;
  text-align:end;
  color: #fff;
}

.shop-product .img-box .over-lay-4{
  position: absolute;
  width: 100%;
  top: 50px;
  
  left: 0px;
  text-align:start;
  color: #fff;
}

.shop-product .img-shop-4 {
    height: 664px;
}

.shop-product .img-shop-1 {
    height: 374px!important;
}

.shop-product .img-shop-2 {
    height: 282px!important;
}

.home_sec_2{
  padding: 180px 0;
}

.home_sec_4 {
  padding: 80px 0 295px;
}
.contact_Sec ::placeholder{
  color: #fff;
}
.contact_Sec form input{
 padding: 15px;
 border: none;
 border-radius: 5px;
 color: #fff;
 background-color: #ffffff42;
}

.contact_Sec form textarea{
 padding: 15px;
 border: none;
 border-radius: 5px;
 color: #fff;
 background-color: #ffffff42;
 height: 120px;
}

.contact_Sec form button{
 padding: 15px 25px;
 width: 100%;
 border: none;
 border-radius: 500px;
 color: #fff;
 background-color:var(--theme-color-second);
 
 position: relative;
 overflow: hidden;
}
.contact_Sec form button::before{
  content: '';
    display: block;
    background-color: #000;
    height: 100%;
    width: 101%;
    position: absolute;
    top: -60px;
    left: 0;
    transition: 0.3s;
}

.contact_Sec form button:hover::before{
  top: 0;
  transition: 0.3s;
}
.contact_Sec form button span{
display: flex; 
justify-content: space-between;
position: relative;
z-index: 1;
}
.testimonial_sec .test-heading {
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.testimonial_sec .test-heading p {
    line-height: 1;
    font-weight: 400;
    width: 80%;
    font-size: 14px;
}
.testimonial_sec .test-heading img{
  width: 23px!important;
}
.testimonial_sec .content{
  height: 130px;
  overflow-y: scroll;
   margin-bottom: 25px;
}
.testimonial_sec .content p{
  opacity: 0.5;
}

.testimonial_sec .test-heading  ul{
  display: flex;
  font-size: 14px;
  gap: 2px;
  color: orange;
}

.testimonial_sec .test-heading p.wid{
  width: inherit;
  margin: 0;
}

.blog_sec .blog-box{
  position: relative;
}
.blog_sec .blog-box .over-lay{
  position: absolute;
  width: 100%;
  bottom: 0;
}

.blog_sec .blog-box img{
  object-fit: cover;
  border-radius: 10px;
}
.blog_sec .blog-box-2 .object-fit {
    object-fit: cover;
    height: 181px;
}
.blog_sec .blog-box img {
    object-fit: cover;
    border-radius: 10px;
    height: 591px;
}

.footer {
  background-position: bottom!important;
  color: #fff;
}

.footer .counter-box-1 h4{
  font-size: 35px;
}
.footer .counter-box-1  p {
    font-size: 14px;
    text-transform: uppercase;
}

.footer h5{
  font-family: var(--paragraph-font);
}

.footer .ft-list li{
  margin-bottom: 10px;
}
.footer .ft-list li a{
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.footer .contact-list li{
  margin-bottom: 10px;

}
.footer .contact-list  li a{
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: start;
  gap: 5px;
}

.footer .select-language {
  display: flex;
  gap: 5px;
  align-items: center;
   font-size: 14px;
  font-weight: normal;
}

.footer  form {
  display: flex;
  border: 2px solid #fff;
  overflow: hidden;
  border-radius: 600px;
}
.footer  form input[type='text'],  .footer  form input[type='email']{
  padding: 15px;
  background: transparent;
  border: none;
  color: #fff;
}
.footer  form ::placeholder{
  color: #fff;
}
  .footer  form input[type='submit']{
 padding: 15px;
  background: transparent;
  border: none;
  color: #fff;
  width: 200px;
  border-left: 2px solid #fff;
  }

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

    .footer .social a{
      color: #fff;
    }

    
.contact-us .contact-info{
  padding: 10%;
  background-color: #ced4da41;
  height: 100%;
  border-radius: 5px;
  box-shadow: 2px 5px 2px  #ced4da41;
}

.contact-us .contact-info h5{
  margin-bottom: 5px;
}

.contact-us .contact-info a{
  color: #000;
  font-size: 14px;
}
.contact-us .contact-info  .social{
  display: flex;
  gap: 10px;
  padding-top: 5px;
}

.contact-us .contact-info  .social a{
  display: flex;
  height: 35px;
  width: 35px;
  background-color: var(--theme-color-second);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.contact-us .input-object{
  position: relative;
}

.contact-us .input-object i {
  position: absolute;
    top: 39px;
    left: 10px;
    color: var(--theme-color-third);
    z-index: 999;
}
.contact-us .input-object input[type="text"], .contact-us  input[type="submit"], .contact-us .input-object textarea{
 padding: 12px 12px 12px 32px;
    border-radius: 3px;
    position: relative;
}
.contact-us  input[type="submit"]{
  background-color: var(--theme-color-second);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
}
.contact-us .input-object textarea{
  height: 125px;
}

.map{
  line-height: 0;
}
.map iframe{
  width: 100%;
}

.product-table .w-note{
  width: inherit;
  padding:18px 18px;
  width: 80%;
  margin: 0 auto;
}
.about_sec img{
  border-radius: 10px;
}

.our-mission .heading ul li{
  margin-bottom: 10px;
}

.more-products  .product_seach form{
  display: flex;
  gap: 10px;
  border: 1px solid var(--theme-color-second);
  padding: 10px;
  align-items: center;
}

.more-products .product_seach  form input{
  border: none;
  background: transparent;

}
.more-products .product_seach  form button{
   border: none;
  background: transparent;
}

.more-products .shop-cat ul li a{
   font-size: 14px;
   color: #000;
}
.more-products .shop-cat ul li{
  margin-bottom: 10px;
}

.more-products .product-tags ul li a{
    font-size: 14px;
   color: #000;
   padding: 10px;
   border: 1px solid var(--theme-color);
   display: inline-block;
}

.more-products .product-tags ul  {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product_details .basket li{
  margin-bottom: 15px;
  display: flex;
  gap: 2px;
}


.product_dec .nav-pills .nav-link.active, .product_dec .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #000000;
    width: fit-content;
    text-transform: uppercase;
}

.product_dec .nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem;
    background-color:var(--theme-color-second);
    color: #000;
    width: fit-content;
      text-transform: uppercase;
}

.product_dec .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    gap: 15px;
}

.brand .brand-date .brand-box{
  border: 5px solid var(--theme-color-second);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.brand .brand-date .brand-box img{
  max-height: 200px;
  object-fit: contain;
}

.contact-us .input-object input[type="text"], .contact-us input[type="submit"], .contact-us .input-object textarea {
    padding: 12px 12px 12px 32px;
    border-radius: 3px;
    position: relative;
}
.contact-us .input-object input[type="email"]{
	 padding: 12px 12px 12px 32px;
    border-radius: 3px;
    position: relative;
}
.contact-us .input-object input[type="tel"]{
	 padding: 12px 12px 12px 32px;
    border-radius: 3px;
    position: relative;
}

.wpcf7-form.init p {
    margin-bottom: -16px;
}
.footer  input[type="hidden"] {
    display: none;
}

.footer .es-form-field-container {
    width: 100%;
    display: flex;
}
.footer .gjs-row {
    margin: 0!important;
}
.footer  form input[type='text'], .footer  form input[type='email'] {
    padding: 15px;
    background: transparent;
    border: none;
    color: #fff;
    width: 457px!important;
}
 .footer .gjs-row {
    margin-bottom: 0.6em;
    width: 100%;
}

.footer .es-form-field-container .gjs-row {
    display: none!important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: red;
}
/* Pagination CSS */
.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #ce9b7a;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}

body.woocommerce .site-logo img,
body.single-product .site-logo img {
    max-height: 80px !important; /* or whatever height you want */
    width: auto !important;
}
/* Style the filter list */
.wpc-filters-ul-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each checkbox item */
.wpc-checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
}

/* Style the checkbox */
.wpc-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

/* Category link styling */
.wpc-filter-link {
    color: #b84d57; /* soft pink-red */
    text-decoration: none;
    font-weight: 600;
}

.wpc-filter-link:hover {
    text-decoration: underline;
}

/* Product count */
.wpc-term-count {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
}

/* Optional: make count lighter */
.wpc-term-count-value {
    opacity: 0.7;
}

/* new css */
.pagination  .page-link{
  color: #000;
}
.pagination .active .page-link{
  background-color: #ce9b7a!important;
  color: #000;
}


.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  /* padding: 15px 19px 35px; */
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%;
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}
input#submit{	
    color: #ffffff;
    background-color: #000;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #000;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 400;
    transition: 0.5s;
}

/* shop page */
#shop-products {
	margin-top: 3rem;
}
a.wpc-filter-link {
    color: black;
}
.woocommerce .woocommerce-ordering select {
    font-size: 14px;
    color: rgb(0, 0, 0);
    display: inline-block;
    padding: 2px;
    border: 1px solid var(--theme-color);
}

ul.tabs.wc-tabs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
	margin-bottom:25px;
}
ul.tabs.wc-tabs li a {
    background: 0 0;
    border: 0;
    border-radius: .25rem;
    background-color: var(--theme-color-second);
    color: #000;
    width: fit-content;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
}
ul.tabs.wc-tabs li.active a {
    color: #fff;
    background-color: #000000;
    width: fit-content;
    text-transform: uppercase;
}
.row.g-3.home-contact-form p {
    margin-bottom: 0px;
}
#main_header .custom-sidebar .product-box h4 {
    color: #000!important;
    font-size: 13px;
    letter-spacing: 0;
}
#main_header .custom-sidebar .product-box {
    color: #000!important;
    /* font-size: 13px; */
    letter-spacing: 0;
    padding: 6px;
    background: transparent;
}
.content a{
	color: #000 !important;
}
.woocommerce table.shop_attributes {
    margin-top: 30px;
}
.sku_wrapper, .posted_in, .tagged_as{
	display:block;
	margin-bottom:10px;
}
.woocommerce table.shop_attributes th {
    width: 200px !important;
}

/* Pagination Code */

/* Main slider images */
.mySwiper2 .swiper-slide img {
    height: 500px; /* set desired height */
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Thumbnail images */
.mySwiper .swiper-slide img {
    height: 100px; /* set desired thumbnail height */
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.myswiper.swiper-button-next:after{
	color: #ce9b7a;
}
.myswiper.swiper-button-prev:after{
	color: #ce9b7a;
}

