@charset "UTF-8";
/*=============== FONTS ===============*/
@font-face {
  font-family: "Effra_Lt";
  src: url("../fonts/Effra_Trial_Lt.ttf");
}
@font-face {
  font-family: "Effra_Rg";
  src: url("../fonts/Effra_Trial_Rg.ttf");
}
@font-face {
  font-family: "Effra_Md";
  src: url("../fonts/Effra_Trial_Md.ttf");
}
@font-face {
  font-family: "Effra_Bd";
  src: url("../fonts/Effra_Trial_Bd.ttf");
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Effra_Rg", sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #152058;
  transition: 0.3s;
  /* For animation dark mode */
}

h1,
h2,
h3 {
  color: #152058;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  outline: none;
  border: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.grid {
  display: grid;
}

.section {
  padding: 4rem 0 4rem;
}

.section_title {
  position: relative;
  font-family: "Effra_Md";
  font-size: 35px;
  margin-bottom: 1rem;
}
.section_title span {
  color: var(--second-color);
}

.section_subtitle {
  display: block;
  font-size: 19px;
  color: #777E90;
}

.main {
  overflow: hidden;
  /* For the animations ScrollReveal*/
}
.main .main-content-inner {
  padding-top: 106px;
}

/*=============== HEADER & NAV ===============*/
header.main-header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}
header.main-header .top-header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  gap: 1rem;
}
header.main-header .user-login .user-login-btn {
  min-width: 37px;
  height: 37px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #142058;
  border-radius: 50px;
  cursor: pointer;
}
header.main-header .searchWrapper {
  position: relative;
  flex: 1;
}
header.main-header .searchWrapper .search-bar-wrap {
  display: flex;
  align-items: center;
}
header.main-header .searchWrapper .search-bar input {
  border-radius: 18px;
  padding: 0 1.5rem 0 2.5rem;
  outline: none;
  border: 0;
  background-color: rgba(229, 231, 235, 0.5);
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 36px;
  min-width: 220px;
  font-size: 14px;
  font-weight: 400;
}
header.main-header .searchWrapper .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #152058;
  font-size: 13px;
}
header.main-header .inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
header.main-header .inner-header .logo {
  max-width: 130px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .logo img {
  width: 100%;
}
header.main-header .inner-header .nav-links nav .nav-items {
  list-style: none;
  margin: 0;
}
header.main-header .inner-header .nav-links nav .nav-items > li {
  position: relative;
  font-family: "Effra_Md";
  display: inline-block;
  color: #000;
  font-size: 16px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li a {
  position: relative;
  z-index: 2;
  padding: 14px 20px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li.active {
  font-family: "Effra_Bd";
}
header.main-header .inner-header .nav-links nav .nav-items > li.active a {
  color: #152058;
}
header.main-header .inner-header .nav-links nav .nav-items > li.orderPriceBtn a {
  background-color: #152058;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.16);
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li.orderPriceBtn a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
header.main-header .inner-header .nav-links nav .nav-items > li.orderPriceBtn a:hover {
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.4);
}
header.main-header .inner-header .dropdown-menu {
  padding: 0;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
}
header.main-header .inner-header .dropdown-menu .dropdown-item:focus, header.main-header .inner-header .dropdown-menu .dropdown-item:hover {
  background-color: #152058;
  color: #fff;
}
header.main-header .inner-header.fixed-header {
  background: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  padding: 10px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-backdrop-filter: blur(5px);
  /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
  backdrop-filter: blur(5px);
  /* Supported in Chrome 76 */
}
header.main-header .inner-header.fixed-header .logo {
  max-width: 100px;
}
header.main-header.inside {
  position: relative;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

#m-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(54, 68, 87, 0.6);
  z-index: 2222222;
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#m-menu.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
#m-menu .toggle-nav {
  position: absolute;
  top: 20px;
  left: 24%;
  cursor: pointer;
  z-index: 2222;
}
#m-menu .toggle-nav .fa,
#m-menu .toggle-nav i {
  color: #152058;
  font-size: 30px;
}
#m-menu .toggle-nav span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #0A2842;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .toggle-nav span:nth-child(2) {
  width: 14px;
}
#m-menu .toggle-nav.active span:nth-child(2) {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}
#m-menu .toggle-nav.active span:nth-child(1) {
  -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
}
#m-menu .toggle-nav.active span:nth-child(3) {
  -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
}
#m-menu .nav-items {
  width: 80%;
  height: 100%;
  min-height: 100vh;
  display: block;
  text-align: right;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
}
#m-menu .nav-items li {
  position: relative;
  font-family: "Effra_Md";
  display: block;
  color: #152058;
  font-size: 17px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li.orderPriceBtn {
  margin: 0 25px;
}
#m-menu .nav-items li.orderPriceBtn a {
  background-color: #152058;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.16);
  text-align: center;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li.orderPriceBtn a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
#m-menu .nav-items li.orderPriceBtn a:hover {
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.4);
}
#m-menu .nav-items li:last-child::after {
  display: none;
}
#m-menu .nav-items li:last-child .btn-custom.primary {
  box-shadow: none;
}
#m-menu .nav-items li .nav-link {
  position: relative;
  padding: 15px 30px;
  display: block;
  color: inherit;
  text-align: right;
  z-index: 2;
}
#m-menu .nav-items li:hover {
  color: #152058;
}
#m-menu .nav-items li:hover::after {
  width: 100%;
}
#m-menu .nav-items li.logo .nav-link {
  display: inline-block !important;
}
#m-menu .social {
  padding: 15px 30px;
  text-align: right;
}
#m-menu .social a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  margin-left: 5px;
  background-color: #f6f7fd;
  color: #152058;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .social a:last-child {
  margin-left: 0;
}
#m-menu .social a:hover {
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.4);
}

@media (min-width: 1200px) {
  header .toggle-nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  header nav,
header .social ul {
    display: none;
  }
  header .toggle-nav {
    margin-top: 0;
    line-height: 0;
    margin-left: 0px;
  }
  header .toggle-nav .toggle-btn {
    background: none;
    border: none;
    outline: 0;
    direction: ltr;
  }
  header .toggle-nav .toggle-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #152058;
    margin-bottom: 5px;
    border-radius: 10px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header .toggle-nav .toggle-btn span:nth-child(1) {
    width: 14px;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(2) {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(1) {
    -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
    transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  }
  header .toggle-nav .toggle-btn.active span:nth-child(3) {
    -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
    transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  }
  header .toggle-nav .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    -webkit-transform: translateX(270px);
    transform: translateX(270px);
    -webkit-box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  header .toggle-nav .mobile-menu .mobile-menu-items {
    background-color: #ffffff;
    margin: 0;
    width: 270px;
    height: 100%;
    overflow: auto;
    list-style: none;
    padding: 0;
  }
  header .toggle-nav .mobile-menu-items li {
    padding: 15px 23px;
    border-bottom: 1px solid #f1f1f1;
    font-family: "Effra_Rg";
    color: #3C2663;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
  }
  header .toggle-nav .mobile-menu-items li a {
    color: inherit;
    text-decoration: none;
  }
  header .toggle-nav .mobile-menu-items li a.myaccount i {
    margin-left: 10px;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select {
    float: none;
    text-align: right !important;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select .list {
    width: 100%;
  }
  header .toggle-nav .mobile-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
}
/*=============== HOME ===============*/
.home {
  position: relative;
  padding: 2rem 0 2rem 0 !important;
}
.home .home_contnet {
  position: relative;
  z-index: 22;
}
.home .home_contnet h1 {
  font-family: "Effra_Bd";
  font-size: 30px;
  color: #152058;
  margin-bottom: 20px;
}
.home .home_contnet p {
  font-family: "Effra_Rg";
  color: #949CA9;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 35px;
}
@media (min-width: 567px) {
  .home .home_contnet p {
    max-width: 450px;
  }
}
.home .home_contnet a {
  display: inline-block;
  background-color: #152058;
  border-radius: 10px;
  padding: 14px 25px;
  font-size: 17px;
  font-family: "Effra_Md";
  color: #fff;
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.16);
  transition: all 300ms ease-in-out;
}
.home .home_contnet a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
.home .home_contnet a:hover {
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.4);
}
@media (max-width: 767px) {
  .home .home_contnet {
    margin-bottom: 30px;
    text-align: center;
  }
}
.home .home_image {
  max-width: 570px;
  margin-right: auto;
  display: block;
}
.home .home_image img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/*=============== Categories===============*/
.categories {
  background-color: #F5F7F9;
}
.categories .categoriesAllWrap {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(150px, 4fr));
  grid-gap: 20px;
  margin-top: 40px;
}
.categories .categoriesAllWrap .categorie-wrap-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 15px;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item {
  display: block;
  text-align: center;
  font-family: "Effra_Md";
  font-size: 17px;
  color: #152058;
  width: 100%;
  transition: all 300ms ease-in-out;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item .categorie-item_image {
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0 16.3px 43.4px white;
  border-radius: 20px;
  width: 90%;
  overflow: hidden;
  height: 140px;
  margin: 0 auto 20px;
  transition: all 300ms ease-in-out;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item .categorie-item_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80px;
  transition: all 300ms ease-in-out;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item .categorie-item_image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item .categorie-item_image .icon i {
  line-height: 0;
  font-size: 40px;
  transition: all 300ms ease-in-out;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item:hover .categorie-item_image {
  transition: all 300ms ease-in-out;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item:hover .categorie-item_image .icon i {
  font-size: 50px;
}
.categories .categoriesAllWrap .categorie-wrap-block .categorie-item:hover .categorie-item_image img {
  transform: translate(-50%, -50%) scale(1.3);
}

/*=============== Product Details ===============*/
.product-main-details {
  background-color: #F5F7F9;
}
.product-main-details .main-card {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-bottom: 30px;
}
.product-main-details .main-card .card-header {
  background-color: #EDF0F4;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  padding: 1rem 1rem;
  font-family: "Effra_Md";
  font-size: 20px;
}
.product-main-details .main-card .form-group {
  margin-bottom: 30px;
}
.product-main-details .main-card .form-group label {
  margin-bottom: 15px;
  color: #152058;
  font-family: "Effra_Md";
  font-size: 16px;
}
.product-main-details .main-card .form-group label span {
  color: #EA1818;
  margin-right: 4px;
}
.product-main-details .main-card .form-group input {
  color: #838383;
  outline: none;
  box-shadow: none;
}
.product-main-details .main-card .form-group input::placeholder {
  color: #838383;
}
.product-main-details .main-card .form-group textarea {
  color: #838383;
  outline: none;
  box-shadow: none;
}
.product-main-details .main-card .form-group textarea::placeholder {
  color: #838383;
}
.product-main-details .sendButton {
  background-color: #152058;
  color: #fff;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.16);
}
.product-main-details .sendButton svg {
  margin-left: 5px;
}
.product-main-details .userImage {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #FAFAFA;
  border: 1px dashed #E2E2E2;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.product-main-details .userImage.favIcon {
  width: 90px;
  height: 90px;
  padding: 9px;
  border-radius: 15px;
}
.product-main-details .userImage img {
  max-width: 100%;
  max-height: 100%;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block;
  margin: 0 auto;
}
.product-main-details .userImage.favIcon img {
  max-width: 100%;
}
.product-main-details .upload-btn-wrapper {
  overflow: hidden;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  right: 0;
  bottom: 0;
}
.product-main-details .upload-btn-wrapper .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: #C1C1C1;
  border-radius: 50px;
  font-size: 25px;
  padding: 0;
  text-align: center;
}
.product-main-details .upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

/*=============== Contact Info ===============*/
.contact-info {
  background-color: #F5F7F9;
}
.contact-info .main-card {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-bottom: 30px;
}
.contact-info .main-card .card-header {
  background-color: #EDF0F4;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  padding: 1rem 1rem;
  font-family: "Effra_Md";
  font-size: 20px;
}
.contact-info .main-card .form-group {
  margin-bottom: 30px;
}
.contact-info .main-card .form-group label {
  margin-bottom: 15px;
  color: #152058;
  font-family: "Effra_Md";
  font-size: 16px;
}
.contact-info .main-card .form-group label span {
  color: #EA1818;
  margin-right: 4px;
}
.contact-info .main-card .form-group input {
  color: #838383;
  outline: none;
  box-shadow: none;
}
.contact-info .main-card .form-group input::placeholder {
  color: #838383;
}
.contact-info .main-card .form-group textarea {
  color: #838383;
  outline: none;
  box-shadow: none;
}
.contact-info .main-card .form-group textarea::placeholder {
  color: #838383;
}
.contact-info .products-select-categories {
  background-color: #FAFAFA;
  border: 1px solid #E2E2E2;
  padding: 20px;
  border-radius: 15px;
}
.contact-info .products-select-categories .checkInput {
  display: inline-block;
  padding-left: 10px;
  margin-bottom: 10px;
}
.contact-info .products-select-categories .checkInput input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.contact-info .products-select-categories .checkInput label {
  position: relative;
  cursor: pointer;
}
.contact-info .products-select-categories .checkInput label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #E2E2E2;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 8px;
}
.contact-info .products-select-categories .checkInput input:checked + label:after {
  content: "";
  font-family: uicons-regular-rounded !important;
  display: block;
  position: absolute;
  top: 55%;
  right: 5px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
}
.contact-info .products-select-categories .checkInput input:checked + label:before {
  background-color: #152058;
  border-radius: 3px;
}
.contact-info .sendButton {
  background-color: #152058;
  color: #fff;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(21, 32, 88, 0.16);
}
.contact-info .sendButton svg {
  margin-left: 5px;
}
.contact-info .userImage {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #FAFAFA;
  border: 1px dashed #E2E2E2;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.contact-info .userImage.favIcon {
  width: 90px;
  height: 90px;
  padding: 9px;
  border-radius: 15px;
}
.contact-info .userImage img {
  max-width: 100%;
  max-height: 100%;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block;
  margin: 0 auto;
}
.contact-info .userImage.favIcon img {
  max-width: 100%;
}
.contact-info .upload-btn-wrapper {
  overflow: hidden;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  right: 0;
  bottom: 0;
}
.contact-info .upload-btn-wrapper .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: #C1C1C1;
  border-radius: 50px;
  font-size: 25px;
  padding: 0;
  text-align: center;
}
.contact-info .upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

/*=============== Product ===============*/
.product-full-wrapper {
  background-color: #F5F7F9;
}
.product-full-wrapper .product-wrap-inner {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}
.product-full-wrapper .product-preview .mainPreview {
  border-radius: 20px;
}
.product-full-wrapper .product-preview .swiper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.product-full-wrapper .product-preview .swiper-slide {
  text-align: center;
  font-size: 18px;
  border-radius: 20px;
  background: #FAFAFA;
  border: 1px solid #E2E2E2;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.product-full-wrapper .product-preview .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-full-wrapper .product-preview .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.product-full-wrapper .product-preview .swiper-slide {
  background-size: cover;
  background-position: center;
}
.product-full-wrapper .product-preview .mySwiper2 {
  height: 80%;
  width: 90%;
}
.product-full-wrapper .product-preview .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  width: 90%;
}
.product-full-wrapper .product-preview .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.product-full-wrapper .product-preview .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.product-full-wrapper .product-preview .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-full-wrapper .product-preview .swiper-button-next:after,
.product-full-wrapper .product-preview .swiper-button-prev:after {
  font-size: 16px;
}
.product-full-wrapper .product-preview .swiper-button-next,
.product-full-wrapper .product-preview .swiper-button-prev {
  bottom: 10px;
  top: auto;
  background-color: #fff;
  background: #FFFFFF;
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  opacity: 1;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}
.product-full-wrapper .product-preview .swiper-button-next {
  right: 60px;
  left: auto;
}
.product-full-wrapper .product-details .description h2 {
  font-family: "Effra_Md";
  font-size: 33px;
}
.product-full-wrapper .product-details .description p {
  padding: 20px 0;
  font-family: "Effra_Lt";
  color: #949CA9;
  font-size: 21px;
}
.product-full-wrapper .product-details .quantities {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(190px, 4fr));
  grid-gap: 10px;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 20px 0;
}
.product-full-wrapper .product-details .quantities .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
}
.product-full-wrapper .product-details .quantities .item span {
  font-family: "Effra_Lt";
  font-size: 17px;
  color: #949CA9;
}
.product-full-wrapper .product-details .quantities .item p {
  font-family: "Effra_Md";
  margin-bottom: 0;
  font-size: 20px;
  color: #152058;
}
.product-full-wrapper .product-details .sub_title {
  font-family: "Effra_Md";
  font-size: 21px;
  margin-bottom: 20px;
  display: block;
}
.product-full-wrapper .product-details .sizes {
  padding: 20px 0;
}
.product-full-wrapper .product-details .sizes .button {
  position: relative;
  display: inline-block;
  margin: 0 0 0 5px;
  width: 100px;
  height: 50px;
  background-color: #FAFAFA;
  border: 1px solid #E2E2E2;
  border-radius: 15px;
}
.product-full-wrapper .product-details .sizes .button label,
.product-full-wrapper .product-details .sizes .button input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-full-wrapper .product-details .sizes .button input[type=radio] {
  opacity: 0.011;
  z-index: 100;
}
.product-full-wrapper .product-details .sizes .button input[type=radio]:checked + label {
  background: #152058;
  border-radius: 15px;
  color: #fff;
  border-color: #152058;
}
.product-full-wrapper .product-details .sizes .button label {
  color: #838383;
  font-size: 18px;
  cursor: pointer;
  z-index: 90;
  line-height: 1.8em;
  text-align: center;
  line-height: 45px;
}
.product-full-wrapper .product-details .quantityInput {
  padding: 20px 0;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap {
  display: inline-block;
  background-color: #F5F7F9;
  border-radius: 5px;
  overflow: hidden;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap .value-button {
  display: inline-block;
  border: 0;
  background-color: #f5f7f9;
  color: #000;
  margin: 0px;
  width: 50px;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  background: F5F7F9;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap form #decrease {
  margin-left: -4px;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap form #increase {
  margin-right: -4px;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap form #input-wrap {
  margin: 0px;
  padding: 0px;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap input.number {
  text-align: center;
  border: none;
  border: 0;
  margin: 0px;
  width: 120px;
  height: 44px;
  line-height: 50px;
  position: relative;
  background-color: #FAFAFA;
  background-color: transparent;
  outline: none;
  color: #838383;
  box-shadow: none;
}
.product-full-wrapper .product-details .quantityInput .countBtnWrap input[type=number]::-webkit-inner-spin-button,
.product-full-wrapper .product-details .quantityInput .countBtnWrap input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-full-wrapper .product-details .add-cart button {
  background-color: #152058;
  color: #fff;
  width: 100%;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  font-family: "Effra_Md";
  font-size: 17px;
}
.product-full-wrapper .product-details .add-cart button svg {
  width: 15px;
  margin-left: 10px;
}
.product-full-wrapper .product-details .supplier-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #F5F7F9;
  padding: 15px;
  margin-top: 40px;
  border-radius: 10px;
}
.product-full-wrapper .product-details .supplier-item .supplier-logo {
  position: relative;
  width: 75px;
  height: 75px;
  background-color: #FAFAFA;
  border: 1px solid #E2E2E2;
  border-radius: 15px;
}
.product-full-wrapper .product-details .supplier-item .supplier-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.product-full-wrapper .product-details .supplier-item .supplier-info h3 {
  font-family: "Effra_Md";
  color: #152058;
  font-size: 22px;
}
.product-full-wrapper .product-details .supplier-item .supplier-info .rates > span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.product-full-wrapper .product-details .supplier-item .supplier-info .rate-number {
  color: #838383;
}
.product-full-wrapper .product-details .supplier-item .supplier-info .stars {
  color: #FFC107;
  position: relative;
  top: -2px;
}
.product-full-wrapper .product-details .supplier-item .supplier-info .stars img {
  width: 18px;
}
.product-full-wrapper .product-details .supplier-item .supplier-info .total-rates {
  color: #152058;
  font-size: 17px;
}
.product-full-wrapper .product-inner-spics {
  padding: 30px 0;
}
.product-full-wrapper .product-inner-spics .sub_title {
  font-family: "Effra_Md";
  font-size: 26px;
  margin-bottom: 20px;
  display: block;
}
.product-full-wrapper .product-inner-spics .spics-table {
  background-color: #FFFFFF;
  border-radius: 5px;
}
.product-full-wrapper .product-inner-spics .spics-table .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #C0CCDB;
  background: #EDF0F4;
}
.product-full-wrapper .product-inner-spics .spics-table .item .title {
  background-color: #EDF0F4;
  width: 40%;
  padding: 20px;
  font-family: "Effra_Md";
  font-size: 17px;
}
.product-full-wrapper .product-inner-spics .spics-table .item .content {
  width: 60%;
  padding: 20px;
  font-family: "Effra_Md";
  font-size: 17px;
  background-color: #fff;
}
.product-full-wrapper .product-inner-spics .spics-table .item:last-child {
  border-bottom: 0;
}
.product-full-wrapper .product-inner-spics .spics-table .item:last-child .title {
  border-bottom-right-radius: 5px;
}
.product-full-wrapper .product-inner-spics .spics-table .item:last-child .content {
  border-bottom-left-radius: 5px;
}
.product-full-wrapper .product-inner-spics .spics-table .item:nth-child(1) .title {
  border-top-right-radius: 5px;
}
.product-full-wrapper .product-inner-spics .spics-table .item:nth-child(1) .content {
  border-top-left-radius: 5px;
}
@media (min-width: 576px) {
  .product-full-wrapper .product-inner-spics .spics-table {
    max-width: 65%;
  }
}
.product-full-wrapper .similar-products {
  padding: 30px 0;
}

/*=============== Products ===============*/
.productsAllWrap {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 4fr));
  grid-gap: 20px;
}
.productsAllWrap .product-wrap-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.productsAllWrap .product-wrap-block .productItem {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex: auto;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #eee;
  padding: 0px;
  margin-top: 15px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  border-radius: 10px;
}
.productsAllWrap .product-wrap-block .productItem .image {
  position: relative;
  flex: auto;
  padding: 20px 0;
  margin: 0 auto;
}
.productsAllWrap .product-wrap-block .productItem .image > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.productsAllWrap .product-wrap-block .productItem .image > a > img {
  display: block;
  max-width: 100%;
  border-radius: 5px;
  max-height: 200px;
}
.productsAllWrap .product-wrap-block .productItem .content {
  padding: 20px 20px;
  display: block;
  width: 100%;
}
.productsAllWrap .product-wrap-block .productItem .content h3 {
  font-family: "Effra_Md";
  color: #6F6E6E;
  font-size: 18px;
}
.productsAllWrap .product-wrap-block .productItem .content p {
  font-family: "Effra_Md";
  font-size: 16px;
  color: #838383;
}
.productsAllWrap .product-wrap-block .productItem .content p strong {
  color: #152058;
  margin-left: 10px;
}
.productsAllWrap .product-wrap-block .productItem .content button {
  font-family: "Effra_Md";
  width: 100%;
  display: block;
  background-color: #F6F7FA;
  border: 1px solid #CFD3D9;
  border-radius: 7px;
  padding: 12px 10px;
  color: #152058;
  font-size: 16px;
  transition: all 300ms ease-in-out;
}
.productsAllWrap .product-wrap-block .productItem .content button svg {
  margin-left: 5px;
  width: 15px;
}
.productsAllWrap .product-wrap-block .productItem .content button:hover {
  background-color: #152058;
  color: #fff;
}
.productsAllWrap .product-wrap-block .productItem .content button:hover svg {
  fill: #fff;
}

/*=============== Supply Wrapper ===============*/
.supply-wrapper {
  background-color: #F5F7F9;
}
.supply-wrapper .filter-item {
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
}
.supply-wrapper .filter-item .filter-head {
  background-color: #EDF0F4;
  padding: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.supply-wrapper .filter-item .filter-body {
  padding: 20px;
}
.supply-wrapper .filter-item .filter-body > div {
  padding: 10px 0;
}
.supply-wrapper .filter-item .filter-body input[type=radio] {
  appearance: none;
}
.supply-wrapper .filter-item .filter-body input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  line-height: 20px;
}
.supply-wrapper .filter-item .filter-body input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  border: 1px solid #C1C1C1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s;
}
.supply-wrapper .filter-item .filter-body input[type=radio] + label::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1;
  border: 1px solid #152058;
  background: #152058;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}
.supply-wrapper .filter-item .filter-body input[type=radio]:checked + label::after {
  opacity: 1;
}
.supply-wrapper .filter-results {
  background-color: #EDF0F4;
  border-radius: 11px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.supply-wrapper .filter-results .result {
  color: #152058;
}
.supply-wrapper .filter-results .result span {
  color: #C1C1C1;
  margin-right: 5px;
}
.supply-wrapper .filter-results .viewTabs {
  border: 1px solid #E2E4E4;
  background-color: #EDF0F4;
  border-radius: 8px;
  padding: 5px;
}
.supply-wrapper .filter-results .viewTabs .nav-link {
  color: #707070;
  border-radius: 8px;
  background-color: #fff;
  margin: 0 5px;
}
.supply-wrapper .filter-results .viewTabs .nav-link i {
  vertical-align: middle;
  line-height: 0;
}
.supply-wrapper .filter-results .viewTabs .nav-link.active {
  background-color: #152058;
  box-shadow: 0 3px 6px rgba(21, 32, 88, 0.16);
  color: #fff;
  border-color: #152058;
}

/*=============== Supplier Profile ===============*/
.supplier-profile {
  background-color: #F5F7F9;
  padding-bottom: 4rem;
}
.supplier-profile .supplier-card {
  background-color: #FFFFFF;
  padding: 20px 0;
  margin-bottom: 30px;
}
.supplier-profile .supplier-card .supplier-logo {
  position: relative;
  width: 156px;
  height: 156px;
  background-color: #FAFAFA;
  border: 1px solid #E2E2E2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.supplier-profile .supplier-card .supplier-info {
  background-color: #FAFAFA;
  border: 1px solid #E2E2E2;
  border-radius: 15px;
  padding: 20px;
}
.supplier-profile .supplier-card .supplier-info .head-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 20px;
}
.supplier-profile .supplier-card .supplier-info .head-info .orderPriceBtn a {
  display: block;
  padding: 14px 20px;
  background-color: #152058;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  transition: all 300ms ease-in-out;
}
.supplier-profile .supplier-card .supplier-info .head-info .orderPriceBtn a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
.supplier-profile .supplier-card .supplier-info .head-info h3 {
  font-family: "Effra_Md";
  color: #152058;
  font-size: 24px;
}
.supplier-profile .supplier-card .supplier-info .head-info .rates > span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.supplier-profile .supplier-card .supplier-info .head-info .rate-number {
  color: #838383;
}
.supplier-profile .supplier-card .supplier-info .head-info .stars {
  color: #FFC107;
  position: relative;
  top: -2px;
}
.supplier-profile .supplier-card .supplier-info .head-info .stars img {
  width: 18px;
}
.supplier-profile .supplier-card .supplier-info .head-info .total-rates {
  color: #152058;
  font-size: 17px;
}
.supplier-profile .supplier-card .supplier-info .head-info .location {
  font-family: "Effra_Md";
  font-size: 16px;
  color: #838383;
  margin-top: 10px;
}
.supplier-profile .supplier-card .supplier-info .head-info .location i {
  vertical-align: middle;
  margin-left: 5px;
}
.supplier-profile .supplier-card .supplier-info .body-info {
  padding: 20px 0 10px;
}
.supplier-profile .supplier-card .supplier-info .body-info p {
  color: #838383;
  font-size: 17px;
  margin-bottom: 0;
  line-height: 30px;
}
.supplier-profile .filter-results {
  background-color: #EDF0F4;
  border-radius: 11px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}
.supplier-profile .filter-results .result {
  color: #152058;
}
.supplier-profile .filter-results .result span {
  color: #C1C1C1;
  margin-right: 5px;
}
.supplier-profile .filter-results .viewTabs {
  border: 1px solid #E2E4E4;
  background-color: #EDF0F4;
  border-radius: 8px;
  padding: 5px;
}
.supplier-profile .filter-results .viewTabs .nav-link {
  color: #707070;
  border-radius: 8px;
  background-color: #fff;
  margin: 0 5px;
}
.supplier-profile .filter-results .viewTabs .nav-link i {
  vertical-align: middle;
  line-height: 0;
}
.supplier-profile .filter-results .viewTabs .nav-link.active {
  background-color: #152058;
  box-shadow: 0 3px 6px rgba(21, 32, 88, 0.16);
  color: #fff;
  border-color: #152058;
}
.supplier-profile .supplier-gallery {
  padding: 30px 20px;
}
.supplier-profile .supplier-gallery .swiper-button-next:after,
.supplier-profile .supplier-gallery .swiper-button-prev:after {
  font-size: 16px;
}
.supplier-profile .supplier-gallery .swiper-button-next,
.supplier-profile .supplier-gallery .swiper-button-prev {
  background-color: #fff;
  background: #FFFFFF;
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  opacity: 1;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}
.supplier-profile .sub_title {
  font-family: "Effra_Md";
  font-size: 21px;
  margin-bottom: 20px;
  display: block;
}

/*=============== Order Product ===============*/
.orderWrapModal .modal-header {
  background-color: #152058;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.orderWrapModal .modal-header .modal-title {
  color: #fff;
}
.orderWrapModal .modal-content {
  border-radius: 15px;
}
.orderWrapModal .form-group label {
  margin-bottom: 15px;
  color: #152058;
  font-family: "Effra_Md";
  font-size: 16px;
}
.orderWrapModal .form-group label span {
  color: #EA1818;
  margin-right: 4px;
}
.orderWrapModal .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EA1818'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
  font-size: 12px;
}
.orderWrapModal .sendButton {
  background-color: #152058;
  color: #fff;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}
.orderWrapModal .sendButton svg {
  margin-left: 5px;
}

/*=============== breadcrumb ===============*/
.breadcrumb-wrap {
  background-color: #F5F7F9;
}

.breadcrumb {
  padding: 30px 0;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  color: #949CA9;
}
.breadcrumb .breadcrumb-item a {
  color: #949CA9;
}
.breadcrumb .breadcrumb-item.active {
  font-family: "Effra_Md";
  color: #000;
}
.breadcrumb .breadcrumb-item .icon {
  vertical-align: middle;
  line-height: 0;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "-");
}

/*=============== Categories ===============*/
.categories {
  background-color: #F5F7F9;
}
.categories .categories-card {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.categories .categories-card .categorie-main {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 30px 20px;
}
.categories .categories-card .categorie-main.color1 {
  background-color: #171717;
}
.categories .categories-card .categorie-main.color2 {
  background-color: #5616AD;
}
.categories .categories-card .categorie-main img {
  max-width: 90px;
}
.categories .categories-card .categorie-main p {
  font-family: "Effra_Md";
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
  margin-top: 20px;
}
.categories .categories-card .sub-categories {
  width: 75%;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 4fr));
  grid-gap: 20px;
}
.categories .categories-card .sub-categories .item {
  background-color: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 15px;
}
.categories .categories-card .sub-categories .item .item-content {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
  color: inherit;
  padding: 15px;
}
.categories .categories-card .sub-categories .item .item-image {
  position: relative;
  background-color: #F5F7F9;
  box-shadow: 0 16.3px 43.4px white;
  border-radius: 20px;
  width: 120px;
  overflow: hidden;
  height: 120px;
  transition: all 300ms ease-in-out;
}
.categories .categories-card .sub-categories .item .item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100px;
  transition: all 300ms ease-in-out;
}
.categories .categories-card .sub-categories .item .item-title {
  font-family: "Effra_Md";
  font-size: 20px;
  margin-bottom: 0;
}

/*=============== Footer ===============*/
.footer {
  padding-bottom: 0;
  background-color: #152058;
}
.footer .footer-content {
  padding: 0 0 20px 0;
}
.footer .footer-content .payment {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: 50px;
}
.footer .footer-content .payment img {
  max-width: 60px;
  display: block;
}
.footer .footer-content .about {
  margin-bottom: 20px;
}
.footer .footer-content .about img {
  max-width: 140px;
  margin-bottom: 20px;
}
.footer .footer-content .about p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 576px) {
  .footer .footer-content .about p {
    max-width: 400px;
  }
}
.footer .footer-content h3 {
  position: relative;
  font-family: "Effra_Bd";
  font-size: 19px;
  color: #fff;
  margin-bottom: 1rem;
}
.footer .footer-content .links ul {
  padding: 0;
  margin: 0;
}
.footer .footer-content .links ul li {
  padding: 10px 0;
}
.footer .footer-content .links ul a {
  position: relative;
  font-family: "Effra_Rg";
  font-size: 18px;
  color: #fff;
  display: block;
}
.footer .footer-content .social ul {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
.footer .footer-content .social li {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
.footer .footer-content .social li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 5px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.footer .footer-content .social li:hover a {
  background-color: #fff;
  color: #000;
}
.footer .footer-copyrights {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.footer .footer-copyrights .copyrights p {
  font-family: "Effra_Md";
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}
.footer .footer-copyrights ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-copyrights ul li {
  display: inline-block;
  margin-left: 15px;
  transition: all 300ms ease-in-out;
}
.footer .footer-copyrights ul li a {
  font-size: 14px;
  position: relative;
  color: #111111;
  transition: all 300ms ease-in-out;
}
.footer .footer-copyrights ul li:last-child {
  margin-left: 0;
}

/*=============== Thanks ===============*/
.thanks-wrapper {
  text-align: center;
  background-color: #fff;
  min-height: 70vh;
}
.thanks-wrapper .icon {
  margin-bottom: 15px;
}
.thanks-wrapper h2 {
  font-family: "Effra_Bd";
  font-size: 30px;
  color: #000;
  margin-bottom: 20px;
}
.thanks-wrapper p {
  color: #949CA9;
}
.thanks-wrapper h4 {
  font-family: "Effra_Md";
  color: #152058;
  font-size: 16px;
}
.thanks-wrapper .back_btn {
  display: block;
  background-color: #152058;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  transition: all 300ms ease-in-out;
  padding: 14px 20px;
  max-width: 140px;
  margin: 20px auto 0;
}

/*=============== Supply Forms ===============*/
.form-group {
  margin-bottom: 30px;
}
.form-group input {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.form-group input::placeholder {
  color: #777E90;
}
.form-group input[type=submit] {
  background-color: #152058;
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "Effra_Md";
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group textarea {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.form-group textarea::placeholder {
  color: #777E90;
}

.nice-select {
  width: 100%;
  text-align: right !important;
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  height: 53px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  line-height: 53px;
  padding-right: 20px;
  padding-left: 30px;
  float: none !important;
}
.nice-select .list {
  width: 100%;
  text-align: right;
}
.nice-select .option {
  text-align: right;
}
.nice-select::after {
  right: auto;
  left: 12px;
}

.modal-backdrop {
  background: rgba(54, 68, 87, 0.6);
}

/*=============== BREAKPOINTS ===============*/
@media (max-width: 1200px) {
  header.main-header .toggle-nav {
    margin-left: 12px;
  }
  header.main-header .inner-header {
    flex-direction: row;
  }
  header.main-header .inner-header.fixed-header {
    padding: 15px 30px;
  }

  .main {
    padding-top: 0px;
  }
}
@media (max-width: 576px) {
  .main {
    padding-top: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .order-price .order-box {
    padding: 40px 10px;
  }
  .order-price .order-box h2 {
    font-size: 30px;
  }
  .order-price .order-box p {
    font-size: 20px;
  }

  .supplier-profile .supplier-card .supplier-logo {
    margin-bottom: 30px;
  }
  .supplier-profile .supplier-card .supplier-info .head-info {
    flex-flow: column;
  }
  .supplier-profile .supplier-card .supplier-info .head-info .side {
    margin-bottom: 30px;
  }
  .supplier-profile .supplier-card .supplier-info .head-info .side:last-child {
    margin-bottom: 0;
  }

  .categories .categories-card {
    flex-flow: column;
  }
  .categories .categories-card .categorie-main {
    width: 100%;
  }

  .footer {
    padding-bottom: 0 !important;
  }
  .footer .social {
    margin-top: 30px;
  }
  .footer .links {
    margin: 30px 0;
  }
}

/*# sourceMappingURL=styles.css.map */

/*=============== WELCOME BANNER ===============*/
.welcome-banner-section {
  width: 100%;
  /* margin: 2rem 0; */
}

/*=============== IMAGE OPTIMIZATION ===============*/
.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

.lazy-image.error {
  opacity: 1;
}

.image-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ccc;
  z-index: 1;
}

.image-placeholder.hidden {
  display: none;
}

/* Product image optimization */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Loading animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.image-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}



.welcome-banner {
  background: #142058;
  /* border-radius: 15px; */
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.welcome-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.welcome-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-banner {
    padding: 2rem 1.5rem;
  }
  
  .welcome-content h2 {
    font-size: 1.8rem;
  }
  
  .welcome-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .welcome-banner {
    padding: 1.5rem 1rem;
  }
  
  .welcome-content h2 {
    font-size: 1.5rem;
  }
  
  .welcome-content p {
    font-size: 0.9rem;
  }
}



.user-menu-side a {
  min-width: 37px;
    height: 37px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: #142058;
    border-radius: 50px;
    cursor: pointer;
}


.user-menu-side svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.user-menu-side a {
      position: relative;
    top: -1px;
}


.side-menu-list {
  padding: 0;
  margin: 0;
}

.side-menu-list li a{
  list-style: none;
  padding: 15px 20px;
  color: #212529;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
}

.side-menu-list li a:hover {
  background-color: #142058;
  color: #fff;
}