@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.woff2") format("woff2"),
    url("../fonts/Cairo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-SemiBold.woff2") format("woff2"),
    url("../fonts/Cairo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Cairo", sans-serif;
  text-decoration: none !important;
  color: #353535;
  transition: all 0.5s ease-in-out;
}

.clear {
  clear: both;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

:hover {
  text-decoration: none;
}

body {
  background-color: var(--graybacground);
  box-sizing: border-box;

  overflow-x: hidden;

  margin: 0;
}
input:focus{
  box-shadow: none !important;
  border-color: var(--maincolor) !important;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.95rem;
}

h3 {
  font-size: 1.63rem;
}

h4 {
  font-size: 1.35rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

::selection {
  background-color: var(--maincolor);
  color: #fff;
}



/* From Uiverse.io by alexruix */
.loader {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;

  top: 50%;

}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #f1f1f1;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--maincolor);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}

.shop_card img {
  width: 96px;
  height: 151px;
  object-fit: contain;
}

.topheader {
  min-height: 61px;
  background-color: #fff;
}

.topheader,
.bottomheader,
.centerheader,
#searchforma button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvasicon:active{
  background-color: var(--darktext) !important;
}

.centerheader {
  min-height: 100px;
  border-top: 5px solid #f1f1f1
}
.site_logo{
  display: block;
  margin-top: 5px;
}

.bottomheader {
  min-height: 74px;
  background-color: var(--maincolor);
}

#searchforma, #searchforma_mobile {
  background-color: #fff;
  border: 1px solid #f6f6f6;
  height: 55px;
  border-radius: var(--borderRadius);
  overflow: hidden;
}

#searchforma input, #searchforma_mobile input {
  border: none;
}
#searchforma input:focus, #searchforma_mobile input:focus{
  box-shadow: none !important;
}

#searchforma button, #searchforma_mobile button {
  background-color: var(--maincolor);
  border: none;
  width: 65px;
  position: relative;
}
#searchforma button:before, #searchforma_mobile button:before{
  position: absolute;
  content: '';
  width: 10px;
  height: 20px;
  background-color: var(--maincolor);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  right: -10px;
  z-index: 11
}
#searchforma button i, #searchforma_mobile button i {
  color: #fff;
  font-size: 1.5rem;
}

.carticon,
.wishlisticon {
  width: 53px;
  height: 53px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.carticon i,
.wishlisticon i {
  color: #fff;
  font-size: 1.5rem;
}

.carticon {
  background-color: var(--maincolor);
  border-radius: var(--borderRadius);
  position: relative;
}

.wishlisticon {
  background-color: var(--secondcolor);
  border-radius: var(--borderRadius);
}

.cartnum {
  position: absolute;
  background-color: var(--secondcolor);
  width: 22px;
  height: 22px;
  border-radius: 100%;
  color: #fff;
  font-weight: bold;
  top: -7px;
  right: -7px;
}

.headernav {
  background-color: transparent !important;
}

.headernav li a {
  color: #fff;
  font-size: 1.187rem;
  font-weight: 700;
}

.headernav ul {
  gap: 10px;
  background-color: var(--maincolor);
  text-align: right;
}

.headernav ul ul.dropdown-menu {
  box-shadow: none !important;
  min-width: 200px;
  right: 0;
  background-color: var(--darkermaincolor);
  opacity: 0 !important;
  visibility: hidden !important;
  padding-block: 0;
  border-bottom-right-radius: var(--borderRadius) !important;
  border-bottom-left-radius: var(--borderRadius) !important;
  overflow: hidden;
  height: auto;
  transition: all 0.5s ease-in-out;
  position: absolute;
}

.headernav ul ul.dropdown-menu.show {
  transform: translateY(12px);
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 0;
  border: none;
  animation: bounce 0.4s ease-in-out;
}
.shop_card .card-body{
  padding-top: 0 !important;
}

@keyframes bounce {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(12px);
  }
}

.headernav li li a {
  font-size: 1rem;
  font-weight: normal;
  padding-block: 15px;
}

.headernav li li a:hover {
  padding-right: 20px !important;
}

.headernav li li {
  border-bottom: 1px solid var(--maincolor);
}

.registnow {
  width: 181px;
  height: 52px;
  font-weight: 700;
  margin-top: 3px;
  margin-left: 0;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  border-radius: var(--borderRadius)
}

.block_title {
  font-weight: 600;
}

.block_title span span {
  background-color: var(--maincolor);
  width: 13px;
  height: 13px;
  border-radius: 100%;
}

.block_title span span:nth-child(2) {
  width: 16px;
  height: 16px;
}

.shop_card {
  border: 1px solid #f1f1f1;
  border-radius: var(--borderRadius);
  position: relative;
}

.shop_card a.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
}

.type_location li i {
  color: var(--secondcolor);
  vertical-align: middle;
  margin-left: 5px;
  width: 20px;
  text-align: center;
}

.type_location li span {
  font-size: 1.0625rem;
}

.shopping_button {
  direction: ltr;
  border: 1px solid var(--maincolor);
  font-size: 0.9375rem;
  width: 116px;
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}
.shop_card .shopping_button{
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.shopping_button i {
  color: var(--borderRadius);
  color: var(--maincolor);
}

.shopping_button:hover,
.shopping_button:hover i {
  background-color: var(--maincolor);
  color: #fff;
}

#recent_shop {
  background-color: #fff;
}

.more_shops {
  width: 180px;
  height: 53px;
  margin: 0 auto;
  background-color: var(--maincolor);
  border: none;
  border-radius: var(--borderRadius);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  border-width: 0 !important;
}
.more_shops:hover{
  color: #fff;
  background-color: var(--maincolor);
}

.topfooter {
  background-color: var(--darktext);
}

.about_title {
  background-color: var(--secondcolor);
  width: 179px;
  height: 51px;
  border-radius: var(--borderRadius);
  color: #fff;
  font-weight: bold;
  margin-top: -60px;
  border-top-right-radius: 0;
  padding: 0 !important;
  position: relative;
}

.about_title:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #000;
  display: block;
  position: absolute;
  right: -12px;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.abouttext {
  color: #fff;
  line-height: 35px;
  display: block;
  margin-top: 38px;
}

.footermenu {
  color: var(--maincolor);
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footerm li {
  background-color: transparent !important;
  border: none;
  list-style-type: disc !important;
  color: var(--maincolor);
  padding-right: 0px;
}

.footerm li a {
  color: #fff;
  font-size: 1rem;
}

.bottomfooter {
  border-bottom: 4px solid var(--secondcolor);

  min-height: 70px;
}

.site_copyrights {
  margin: 0;
  min-height: 70px;
}

.payment_option {
  min-height: 70px;
}

.payment_option img {
  max-width: 40px;
  max-height: 40px;
  object-fit: cover;
}

.footerm li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: var(--maincolor);
  border-radius: 100%;
  margin-left: 6px;
}

.socialmedia li {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--borderRadius);
  line-height: 12px;
}

.socialmedia li i {
  color: #fff;
  font-size: 1.3rem;
}

.footerm li:hover {
  padding-right: 5px;
}

#product_carousel .carousel-inner .carousel-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#product_carousel .carousel-item .card {
  flex: 1 0 calc(20% - 10px);
  /* Five cards in a row with spacing */
  margin: 5px;
}

#product_carousel .center {
  border: 2px solid #007bff;
  /* Highlight the centered card */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);

}
.product-card button{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px
}
.productbtn{
  background-color: var(--maincolor);
  max-width: 227px;
  height: 54px;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 700;
  direction: rtl;
  border-radius: var(--borderRadius);
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.productbtn i{
  color: #fff;
}

.product-card{
  border: 1px solid #f1f1f1 !important;
  box-shadow: none !important;
  border-radius: var(--borderRadius);
  overflow: hidden;
  text-align: center;
  position: relative;
  padding-block: 33px;
  /*! max-width: 235px; */
  margin: 0 auto;
  padding-inline: 16px;

}
.owl-one .owl-item.center .product-card{
  max-width: 272px;
  padding-block:  60px;

  margin-top: -25px;

}
.owl-one .owl-stage{
  padding-top: 40px;
}
.product-card img{
  height: 151px;
  display: block;
  margin: 0 auto 10px;
}
.owl-one{
  direction: ltr;
}
.wishlist-icon{
  display: block;
  position: absolute;
  right: -30px;
  top: 20px;
  transition-delay: 0.3s;
  z-index: 1;
}
.product-card:hover .wishlist-icon{
  right: 20px;
}
.wishlist-icon i{
  color: var(--secondcolor);
  font-size: 1.3rem;
  cursor: pointer;
}


.product-card a{
  color: var(--darktext);
  font-size: 1.125rem;
  font-weight: 600;
}
.product-card a, .product-card p{
  display: block;
  margin-bottom: 10px !important;
}
.product-card p{
  font-size: 15px;
  direction: rtl;
  line-height: 30px;
  max-width: 246px;
  margin: 0 auto;
}
.price .old-price{
  text-decoration: line-through !important;
  color: gray;
  font-size: 18px;
}
.price{
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.product-card:hover button{
  bottom: 11px;
}

.owl-one .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
}
.owl-one .owl-prev{
  position: absolute;
  left: -30px;
  right: auto;
}
.owl-one .owl-next{
  position: absolute;
  right:  0;
  left: auto;
}
.owl-one .owl-prev, .owl-one .owl-next{
  width: 40px;
  height: 40px;
  background-color: var(--secondcolor) !important;
  border-radius: var(--borderRadius) !important;
}
.owl-one .owl-prev i, .owl-one .owl-next i{
  color: #fff
}
#carouselExampleIndicators img{
  border-radius: 10px;
  height: 600px;
  object-fit: cover;
  width: 100%;
}

/* product page */
#product_tabs{
  justify-content: center;
  border:none;
  padding: 0
}
#product_tabs li button{
  min-width:  150px;
}
#myTabContent{
  background-color: #fff;
  padding: 20px;
  line-height: 2.2;
  border: 1px solid #eee;
  border-radius: var(--borderRadius)
}
#product_tabs li button.active{
  background-color: var(--maincolor);
  color: #fff;
  border: none;
}
#product_tabs li button{
  color: #1f1f1f;
  font-weight: bold;
  height: 50px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 1.2rem;
  border:1px dashed var(--maincolor) !important;

  background-color: #fff
}
#product_tabs li button:hover {
  border-color: var(--maincolor) !important;

  color: var(--maincolor);
}
#product_tabs li button.active:hover{
  color: #fff
}

.stars{
  color: orange
}
.more_shops span, .more_shops i{
  color: #fff;
}

.cart_total, .cart_total td, .cart_total tr{
  text-align: right !important;

}
.cart_total td, .cart_total tr, .cart_total th, .cart_total table{
  border: 1px solid #f1f1f1;
  padding-block: 15px
}
.cart_total span{
  border: 1px solid var(--maincolor);
  display: block;
  border-radius: var(--borderRadius);
  padding-block: 15px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700
}

.search-results {
  position: absolute;
  top: 100%; /* Position below the search input */
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Ensure it appears above other elements */
  max-height: 300px;
  overflow-y: auto; /* Add scroll if results exceed max height */
  margin-top: 5px; /* Add some spacing between the input and dropdown */
}

/* Search result items */
.search-result-item {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.search-result-item:hover {
  background: #f8f9fa; /* Highlight on hover */
}

/* Headings inside the dropdown */
.search-results h4 {
  padding: 10px 15px;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

#customertable th, #customertable tr{
  background-color: var(--maincolor);
  border-color: #fff !important;


}
#customertable th, #customertable td{
  height: 50px;
  line-height: 50px;
}
#customertable tr{
  border-bottom-color: #f1f1f1 !important;
}


#customertable {
  border-radius: 10px;
  overflow: hidden;
}

@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.offcanvasicon {
  display: none;
}
.shrink {
  position: fixed !important;
  width: 100% !important;
  z-index: 111 !important;
  top: 0;
  background-color: #fff;
  /*! box-shadow: 0px 0px 10px 0px #eee */
}
.totopa {
  display: none;
}

.totopa2:hover {
  background-color: var(--darktext);

}

.totopa2:hover i {
  color: #fff;
}

.totopa2 {
  display: block;
  position: fixed;
  right: 20px;
  background-color: var(--maincolor);
  width: 45px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  height: 45px;
  z-index: 100;
  border-radius: var(--borderRadius);
  border: 0px solid #fff;
  bottom: 86px;
  text-align: center;
  line-height: 45px;
  overflow: hidden;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.07);

}

.totopa2 i {
  color: #fff;
  font-size: 19px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0px;

}

.totopa2 i.upclass {
  bottom: 12px;
}

.totopa2 i.bottomclass {
  bottom: -124px;
}

.totopa2:hover i.upclass {
  bottom: 50px;
}

.totopa2:hover i.bottomclass {
  bottom: 10px;
}
#navbarNavDropdown{
  display: block;

}
#navbarNavDropdown .navbar-nav{
  gap: 20px;
  display: flex;
  flex-direction: row
}
.mobilefoorermenu{
  display: none;

}
.spacebottom{
  display: block;
  height: 20px;
}

/* hove*/
.shopping_button:hover i{
  animation-name: flash;
  animation-duration: .7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes flash {
  0%, 100% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully transparent */
  }
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 212, 255, 0) 100%);
    width: 100%;
    height: 200% !important;
    display: block;
    z-index: 11;
    transform: rotate(90deg);
    bottom: -200%;
    transition: all 1.5s ease-in-out;
}

.shop_card:hover .image-wrapper:before, .product-card:hover .image-wrapper:before {
  bottom: 100%;
}
.socialmedia li:hover{
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  border-radius: 100%
}
.productbtn:before, .more_shops:before, .registnow:before{
  content:'';
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  background-color: #1f1f1f;
  right: 0;
  top: 0;
  z-index: -1;
  margin: 0 auto;
  left: 0;
  right: 0
}
.productbtn:hover:before, .more_shops:hover:before, .registnow:hover:before{
  width: 100%;
}
.productbtn:hover{
  color: #fff;
}
.registnow:hover{
  color: #fff;

}
.owl-prev:hover, .owl-next:hover{
  background-color: var(--maincolor) !important;
}
.animate {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}


.animate.in-view {
  animation-name:  fadeIn;
  opacity: 1
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.carticon:hover, .wishlisticon:hover{
  background-color: var(--darktext)
}
.blockbnr img{
  width: 417px;
  height: 367px;
  object-fit: contain;
}


/* shop page */
.breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: 10px;
}
.breadcrumb{
  border: 1px solid #f1f1f1;
  border-radius: var(--borderRadius);
  background-color: #fff;
  margin-bottom: 0;
}
.breadcrumb li a{
  color: #1f1f1f;
  font-weight: 600
}
.cat_f_title{
  background-color: #fff;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  color: var(--maincolor);
  font-weight: bold;
  border: 1px solid var(--maincolor);
}

.category_list li{
  border-color: #f1f1f1;
  position: relative;
  z-index: 1;
  padding-block: 12px
}
.category_list .badge{
  background-color: var(--maincolor) !important;
}
.category_list li a{
  color: #1f1f1f
}
.category_list li:before{
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #f9f9f9;
  z-index: -1;
  right: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
}
.category_list li:hover:before{
  width: 100%;
}
.range-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.range-slider .form-range {
  appearance: none;
  width: 100%;
  height: 8px;
  background: #e9ecef;
  outline: none;
  cursor: pointer;
  border-radius: var(--borderRadius) !important;
}

.form-range::-webkit-slider-thumb {
  appearance: none;
  height: 20px;
  width: 20px;
  background: var(--secondcolor);
  border-radius: 50%;

}
.form-range:focus::-webkit-slider-thumb,
.form-range:focus::-moz-range-thumb {
  box-shadow: none;
  background-color: var(--maincolor)
}


.form-range::-moz-range-thumb {
  height: 20px;
  width: 20px;
  background: var(--secondcolor);
  border-radius: 50%;

}
.price_card{
  border-color: #f1f1f1;
  border-radius: var(--borderRadius)
}
.category_list {
  border-radius: var(--borderRadius)
}
.btn-reset {
  background-color: var(--maincolor);
  color: #fff;
}
.btn-reset:hover {
  background-color: #e6e6e6;
}
.form-select:focus {
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.form-select option:hover{
  background-color: #f1f1f1 !important;
}
.form-select{
  background-position: left 0.7rem center;
  padding-right: 0.7rem;
}
select {
  overflow: hidden;
  position: relative;
  transition: height 0.3s ease;
}

.pagination_shop a{
  color: #1f1f1f;
  border-radius: var(--borderRadius);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  border-color: #f1f1f1
}
.pagination_shop li.active a{
  background-color: var(--maincolor) !important;
  border-color: var(--maincolor);
}
.pagination_shop a:hover, .pagination_shop a:focus{
  background-color: var(--darktext);
  border-color: var(--darktext);
  color: #fff;
  box-shadow: none;
}
.pagination_shop a:hover span, .pagination_shop a:focus span{
  color: #fff;
  animation-name: flash;
  animation-duration: .7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.pagination_shop a span{
  font-size: 1.5rem
}

select option:checked {
  background-color: var(--maincolor);
  color: #fff;
}
select option {
  background-color: #fff;
  color: #000;
  box-shadow: none !important;
  border: none !important;
}

.icons_card{
  border-color: #f1f1f1;
  border-radius: var(--borderRadius)
}
.icons_card i{
  color: var(--secondcolor);
  font-size: 2.5rem;
  width: 80px;
  text-align: center;
}

.icons_card .card-body{
  padding-block: 8px;
  padding-inline: 8px
}
.icons_card span{
  font-size: 1.1rem;
  font-weight: 600;

}
.icons_card p{
  margin-top: 5px !important;
  display: block;
  margin-top: 8px;
  line-height: 30px;
  font-size: 1rem;
}
.topfilter{
  background-color: #f1f1f1;
  border-radius: var(--borderRadius)
}
.viewmenu li i{

  font-weight: 600
}
.threec_view {
  flex: 0 0 33.3333%; /* Three columns */
  max-width: 33.3333%;
}

.twoc_view {
  flex: 0 0 50%; /* Two columns */
  max-width: 50%;
}

.list_view {
  flex: 0 0 100%; /* Full width for list */
  max-width: 100%;
}

.list_view .product-card{
  flex-direction: row;
  gap: 25px
}
.list_view .product-card .product_body{
  display: flex;
  flex-direction: column;
  text-align: right;
  width: 100%;
}
.list_view .product-card .product_body .price{
  justify-content: start
}
.list_view .product-card p{
  margin-right: 0
}
.list_view button {
  left: 20px !important;
  right: auto !important;
}
.list_view .wishlist-icon{
  left: -40px;
  right: auto
}
.list_view .product-card:hover .wishlist-icon {
  left:  20px;
  right: auto;
}
.viewmenu li span{
  cursor: pointer;
}
.viewmenu li.active i{
  color: var(--maincolor)
}
.list_view .image-wrapper{
  width: 110px
}
h1.shop_title{
  font-size: 1.7rem;

}
h2.cat_f_title{
  font-size: 1.5rem;
  font-weight: 600;
}
h3.cat_f_title{
  font-size: 1.4rem;
  font-weight: 600;
}

.shopimg img{
  width: 50%;
  height: 50%;
  border-radius: var(--borderRadius);
  max-width: 131px;
  object-fit: cover;
}
.shop_title i{
  color: var(--maincolor);
  margin-left: 5px;
  font-size: 1.5rem
}
.shop_dis{
  color: var(--secondcolor);
}

.show_details li{
  border: 1px solid #f1f1f1;
  border-radius: var(--borderRadius) !important;
}
.show_details li i{
  color: var(--maincolor);
  margin-left: 5px;
  font-size: 1.3rem
}
hr{
  color: #bfbfbf
}
.contact_info li{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--borderRadius)
}
.contact_info li i{
  color: #fff;
  font-size: 1.1rem
}
.c_p{
  background-color: gray
}
.c_w{
  background-color: #4aa116
}
.c_f{
  background-color: #163da1
}
.c_t{
  background-color: #639cd7
}
.c_i{
  background-color: #9f2a40
}
.c_s{
  background-color: #e6d016
}
.shop_info{
  line-height: 35px;
}
#staticBackdrop iframe{
  width: 100%;
  height: 400px;
}
.category_list input{
  margin-left: 5px
}
input{
  border: 1px solid #f1f1f1 !important;
}
.category_filter button{
  min-height: 50px;
}
.category_filter button{
  min-width: 48% !important;
}


@media (min-width: 1101px) and (max-width: 1200px) {
  .owl-one .owl-prev {
    position: absolute;
    left: 0px;
    right: auto;
  }
  .owl-one .owl-next {
    position: absolute;
    right:  23px;
    left: auto;
  }
}


@media (min-width: 769px) and (max-width: 1200px) {
  .container{
    max-width: 100%
  }
  .shop_card .card-body {
    padding-inline: 0 !important;
    padding-top: 0;
  }
  .shop_card .shopping_button {
    position: absolute;
    bottom: 10px;
    left: 10px;
  }

}
@media (min-width: 768px) and (max-width: 920px) {
  .footermenu {

    font-size: 19px;

  }
  .abouttext{
    text-align: justify;
    line-height: 33px;
    margin-top: 15px
  }
  .tfc_c {
    min-width: 50%;
  }
}
@media (min-width: 577px) and (max-width: 767px) {


  .shop_card .card-body {
    padding-top: 0;
  }
  .shop_card .shopping_button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-top: 20px !important;
  }

  #recent_shop .col-lg-4{
    padding-inline: 2px
  }
}
@media (min-width: 320px) and (max-width: 768px) {
  #searchforma, .carticon, .wishlisticon, .bottomheader {
    display: none;
  }
  .product-card{
    padding-block:12px !important;
    padding-inline: 5px;
  }
  .abouttext {
    text-align: justify;
    margin-top: 28px;
  }
  .footermenu{
    text-align: center;
    border:1px solid;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 0;
    font-size: 1.3rem
  }
  .footerm {
    padding-block: 10px
  }
  .footerm li:not(:last-child){
    border-bottom: 1px solid #2f2f2f
  }
  .site_copyrights{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee
  }
  .payment_option{
    gap: 3px !important;
    justify-content: center !important;
  }
  .centerheader .col-12{
    display: flex;
    justify-content: space-between;
  }
  .offcanvasicon{
    background-color: var(--maincolor);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
  }
  .offcanvasicon i{
    color: #fff;
    font-size: 1.3rem;
  }
  .offcanvasicon:hover{
    background-color: var(--darktext)
  }
  #offcanvasmenu{
    max-width: 250px;
    background-color: var(--darktext)
  }
  .offcanvas-body{
    padding: 0
  }
  .menumobile .accordion-item, .menumobile .accordion-body li{
    padding-inline: 15px !important;
    background-color: transparent;
    border-bottom:  1px solid #2f2f2f !important;
    border: 0px;
    padding-block: 14px;
  }

  .menumobile .accordion-item a{
    border: none !important;
    background-color: transparent;
    color: #fff;
    padding-inline:20px;
  }
  .btn-close{
    background-color: var(--secondcolor);
    color: #fff !important;
    opacity: 1;
    font-size: 0.9rem
  }
  .menumobile .accordion-button:after{
    margin-left: 0;
    margin-right: auto;

  }
  .menumobile .accordion-button{
    background-color: transparent;
    color: #fff;
    padding: 0;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none;
    padding-inline:20px;
  }
  .menumobile .accordion-button:focus{
    box-shadow: none;
  }
  .menumobile .accordion-body{
    padding-inline:  0;
    background-color: transparent;
    padding-block: 5px
  }
  .menumobile .accordion-body li{
    padding-inline:  0 !important;
    background-color: transparent
  }
  .menumobile .accordion-item{
    padding-inline: 0 !important;
  }
  .menumobile .accordion-item:last-child{
    border: none !important;
  }
  .menumobile .accordion-body li:last-child{
    border: none !important;
  }
  .btn-close {
    --bs-btn-close-color: white; /* Default icon color */
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e"); /* White icon */
  }
  .menumobile .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;;
  }
  .offcanvas .accordion-body{
    background-color: #161616;
    margin-top: 20px;
  }
  .productbtn{
    max-width: 170px;
  }
  .product-card button {
    position: relative;
    max-width: 160px !important;
    bottom: 0;
    font-size: 1rem;
  }
  .product-card:hover button {
    bottom: 0;
  }
  .product-card .wishlist-icon{
    right: 20px
  }
  .centerheader{
    background-color: var(--maincolor);
    border: none;
    min-height: 70px
  }
  .centerheader a.site_logo img{
    height: 34px;
  }
  .centerheader .offcanvasicon{
    background-color: #fff;
  }
  .centerheader .offcanvasicon i{
    color: var(--darktext);
  }
  .container {
    max-width: 100%
  }

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .mobilefoorermenu {
    display: flex;
    position: fixed;
    bottom: 0 !important;
    left: 0;
    right: 0;
    z-index: 11;
    background-color: #fff;
    justify-content: space-between;
    width: 100%;
    height: 85px;
    align-items: center;
    padding: 0 20px;
    border-top: 1px solid #f1f1f1;
    box-sizing: border-box;
    margin-block: 0 !important;
    padding-block: 0 !important;
  }

  .mobilefoorermenu li i{
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 2.3rem;
    color: var(--secondcolor);
    margin-bottom:10px;

  }
  .mobilefoorermenu li {
    width: 25%;
    text-align: center
  }
  .mobilefoorermenu li:not(:last-child) {
    border-left: 1px solid #f1f1f1
  }
  .bottomfooter{
    padding-bottom: 90px
  }
  .mobilefoorermenu li i{
    font-size: 1.5rem;
    color: var(--maincolor)
  }
  .mobilefoorermenu li a{
    color: #1f1f1f
  }
  .shop_card .shopping_button {
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
  .shop_card .card-body{
    padding-top: 0 !important;
  }
  #carouselExampleIndicators img{
    width: 100% !important;
    height: 200px;
    object-fit: cover;
  }
  .carousel {
    position: relative;
    min-height: 200px;
  }
  .tfc_c{
    min-width: 50%
  }
  #offcanvasmenu #searchforma_mobile{
    display: flex;
    border: none;
    max-width: 94%;
    margin: 10px auto 10px;
    height: 50px;
    background-color: #282828
  }
  #offcanvasmenu #searchforma_mobile input{
    background-color: #282828;
    color: gray;
    border: none !important;
  }
  #offcanvasmenu #searchforma_mobile button, #offcanvasmenu #searchforma_mobile button:before {
    background-color: #5a5a5a;
  }
  #offcanvasmenu #searchforma_mobile button{
    width: 50px
  }

}
