body,
html {
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: #363636;
}

.text-color {
  color: var(--text-color);
}

a:hover {
  text-decoration: none;
}

.app {
  width: 100%;
  min-height: 100%;
}

.text-color-primary {
  color: var(--primary-color);
}

.image-logo {
  max-height: 50px;
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .image-logo {
    max-height: 40px;
    max-width: 150px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.announcement-bar > * {
  animation: infinite-slide 36s linear infinite;
  animation-delay: -5s;
}

.stop-animation * {
  animation-play-state: paused !important;
}

header {
  overflow: visible;
}

@keyframes infinite-slide {
  from {
    left: 100%;
  }

  to {
    left: -100%;
  }
}

.announcement-text > * {
  margin-left: 200px;
  white-space: nowrap;
}

.app-content-padded .home {
  padding-top: -70px;
}

.app-content-padded > *:first-child:not(.home) {
  padding-top: 70px;
}

.ltr {
  direction: ltr;
}

.vertical-line {
  border-left: 1px solid
    var(--header-text-color-primary-bg, var(--text-color-primary-bg));
  height: 32px;
  color: var(--text-color-primary-bg);
}

.vertical-line-menu {
  border-left: 1px solid
    var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
}

@media (max-width: 768px) {
  .ltr .slide-menu {
    right: 0 !important;
    left: 0px !important;
  }
  .rtl .slide-menu {
    left: 0 !important;
    right: 0px !important;
  }
}

.c-btn {
  background: none !important;
  border: none !important;

  height: 30px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 26px;
  text-decoration: none;
  cursor: pointer;
}

.flex-even {
  flex: 1;
}

.section-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0%;
}

.sub-category-title {
  font-size: 17px;
  overflow-y: hidden;
  overflow-x: hidden;
  margin: 0 10px;
  gap: 60px;
}

@media (max-width: 768px) {
  .sub-category-title {
    font-size: 16px;
    overflow-y: hidden;
    overflow-x: scroll;
    gap: 12px;
  }

  .sub-category-title {
    display: none;
  }

  .sub-category-title {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 768px) {
  .products-slider .prod-col:nth-child(n + 5) {
    display: none;
  }
}

.more-button {
  border: 1px solid #eee;
  color: #000000 !important;
  font-weight: 500;
  font-size: 24px;
  line-height: 60px;
  letter-spacing: 0%;
  border-radius: 4px;
  padding-inline: 34px;
  height: 55px;
  width: fit-content;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rtl .more-button {
  margin: 0;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .more-button {
    height: 36px;
    font-size: 16px;
    line-height: 150%;
    padding-inline: 20px;
  }
}
.section-padding-space {
  padding-top: 12px;
  padding-bottom: 12px;
}

.section-slider-padding-space {
  padding-top: 15px;
  padding-bottom: 15px;
}

.home > .section-padding-space:first-child {
  padding-top: 0px;
}

.row-slide {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.disable-scroll {
  overflow: hidden;
}

.rtl input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-control {
  padding: 10px 15px;
  border-radius: 5px;
}

/* Mega menu */
.all-categories {
}

.horizontal-menu {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100vw;
  height: 210px;
  background-color: white;
}
/* Mega menu */

/*
    nav-bar
*/
.main-navigation {
  background-color: #dedede;
}

.navbar-items {
  font-weight: var(--font-weight-sizeOne);
  font-size: 15px;
  padding: 15px;
}

.navbar-items .nav-item .nav-link {
  color: #6b6b6b;
  margin-left: 30px;
}

/* Product card image container */
.product-card-image-wrap--dual {
  overflow: hidden;
}

/*
    slide-menu
*/

.slide-menu {
  position: fixed;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  display: none;
  overflow: hidden;
  box-sizing: border-box;
  transform: translateX(100%);
  overflow-y: auto;
  z-index: 1000;
}

.slide-menu,
.slide-menu .slide-menu__slider {
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.slide-menu .slide-menu__slider {
  width: 100%;
  transform: translateX(0);
}

.slide-menu ul {
  position: relative;
  width: 100%;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.slide-menu ul a {
  display: block;
}

.slide-menu a {
  cursor: pointer;
}

.slide-menu {
  width: 330px;
}

@media only screen and (max-width: 768px) {
  .slide-menu {
    width: 70%;
  }
}

/* .slide-menu,
.slide-menu a {
  font-size: 1.2rem;
  color: inherit;
}

.slide-menu a {
  padding: 15px;
  text-decoration: none;
}

.slide-menu .controls {
  display: flex;
  margin-bottom: 1rem;
}

.slide-menu ul {
  padding-right: 0;
}

.slide-menu-ul-li {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.slide-menu-ul-li:first-child,
:not(.slide-menu-ul-li) + .slide-menu-ul-li {
  border-top: 0px;
}

.slide-menu .slide-menu__backlink {
  text-transform: uppercase;
}

.rtl .slide-menu ul ul {
  left: unset;
  right: 100%;
}

.slide-menu__decorator {
  float: right;
}

.rtl .slide-menu__decorator {
  float: left;
}

.slide-menu-arrow {
  font-size: 20px;
}

.slide-menu-arrow-back {
  position: relative;
  top: 3px;
  right: 5px;
  font-size: 20px;
}

.rtl .slide-menu-arrow-back {
  right: unset;
  left: 5px;
} */

#test-menu-left p {
  font-size: 110%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

#sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 100;
}

.sidenav-open .sidenav {
  width: 250px;
}

.sidenav-open #sidenav-overlay {
  width: 100%;
}

/*
    Slider
*/
.slider .carousel-inner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0, 0.6);
  z-index: 2;
}

.slider .carousel-item {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.slider .carousel-indicators li {
  height: 8px;
  cursor: pointer;
  color: black;
  border-radius: 50%;
}

.main-slider {
  max-height: 720px;
}

.slider-image-content {
  box-sizing: content-box;
  width: 100%;
  overflow-y: hidden;
  max-height: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-elements-left {
  width: 40% !important;
  text-align: start;
  margin: 0 auto 0 10%;
}

.slider-elements-right {
  width: 40% !important;
  text-align: start;
  margin: 0 10% 0 auto;
}

.slider-elements-center {
  width: 40% !important;
  text-align: center;
  margin: 0 auto 0 auto;
}

.slider-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 60px;
  letter-spacing: 0%;
  width: 100%;
  cursor: initial;
}

.grid-image-title {
  font-size: 2.2rem;
  width: 100%;
  cursor: initial;
}

.slider-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  max-width: 545px;
}

@media (max-width: 767px) {
  .slider-text {
    font-size: 12px;
  }
}

.grid-image-text {
  font-size: 1rem;
  line-height: 1.6;
}

.cta-header-button,
.cta-grid-image-button {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  width: fit-content !important;
  padding-inline: 24px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

@media only screen and (max-width: 1150px) {
  .grid-image-title {
    font-size: 1.7rem;
  }

  .slider-elements-left {
    width: 50% !important;
    text-align: start;
    margin: 0 auto 0 10%;
  }

  .slider-elements-right {
    width: 50% !important;
    text-align: start;
    margin: 0 10% 0 auto;
  }

  .slider-elements-center {
    width: 50% !important;
    text-align: center;
    margin: 0 auto 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .slider-elements-left,
  .slider-elements-right,
  .slider-elements-center {
    width: 90% !important;
    text-align: start;
    margin: 0 auto;
  }

  .slider-elements-left.grid-elements,
  .slider-elements-right.grid-elements,
  .slider-elements-center.grid-elements {
    width: 60% !important;
    text-align: start;
    margin: 0 auto 0 0;
    padding-left: 10px;
  }

  .slider-elements-left.banner,
  .slider-elements-right.banner,
  .slider-elements-center.banner {
    width: 60% !important;
    text-align: start;
    margin: 0 0 0 auto;
    padding-right: 10px;
  }

  .slider-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0%;
    width: 100%;
    margin-bottom: 24px !important;
  }

  .slider-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    margin-bottom: 15px !important;
    max-width: 100%;
  }

  .cta-header-button {
    font-size: 10px !important;
    width: 120px;
    min-height: 36px;
    height: 36px !important;
  }

  .grid-image-title {
    font-size: 1.3rem;
  }

  .grid-image-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .cta-grid-image-button {
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
  }

  .cta-header-button,
  .cta-grid-image-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    height: 36px;
  }
}

.main-slider .slider-item > a,
.slider-item > a > img {
  height: 100%;
}

.main-slider .slider-item > a > img {
  object-fit: cover;
}

.slider-dots {
  transform: translateY(-30px);
}

.slider-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #585858;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slider-active,
.slider-dot:hover {
  background-color: #ffffff;
}

/*
    announcement-bar.twig
*/

.announcement-bar {
  background: #e8e8e8;
  overflow: hidden;
}

.availability-bar {
  background-color: rgb(252, 241, 214);
}

.availability-bar .announcement-text,
.announcement-bar h1 {
  padding: 5px 15px;
}

.availability-bar .announcement-text,
.announcement-bar .announcement-text {
  font-size: 16px;
  line-height: 26px;
  color: #0a0c10;
  display: flex;
}

.availability-bar .announcement-text {
  color: rgb(151, 86, 76);
}

/*
    account-lang-currency.twig
*/

.language-currency {
  max-height: 50px;
  background-color: transparent !important;
  border: 1px solid
    var(--header-text-color-primary-bg, var(--text-color-primary-bg));
  border-radius: 5px;
  overflow: hidden;
  border: none;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(238, 238, 238, 0.9333333333);
}

.language-currency-menu {
  border: 1px solid
    var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
}

.account-lang-currency .account-btn {
  background-color: transparent;
  border: 1px solid
    var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
  box-sizing: border-box;
  border-radius: 5px;
  color: var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
  min-width: 124px;
  padding: 3px 5px;
}

.currency-button-area,
.language-button-area {
  max-height: 50px;
  min-width: 90px;
}

.language-btn,
.currency-btn {
  color: var(--header-text-color-primary-bg, var(--text-color-primary-bg));
}

.language-btn-menu,
.currency-btn-menu {
  color: var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
}

.language-btn img {
  margin-bottom: 1.5px;
}

.icon-account_circle_black_24dp {
  line-height: 0.95;
  font-size: 22px;
}

.icon-language_white {
  font-size: 22px;
}

.icon-language_white:before {
  color: var(--header-text-color-primary-bg, var(--text-color-primary-bg));
}

.icon-language_white-menu:before {
  color: var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
}

/*

    cart-search-logo.twig

*/

.cart-search-logo {
  height: 135px;
}

.search-bar {
  padding: 0px;
  margin: 0px 30px 0px 30px;
}

#search-input {
  background: #ffffff;
  color: #cbcbcb;
  font-size: 0.929rem;
  line-height: 22px;
  padding: 10px;
  border: none;
  width: 70%;
  height: 46px;
  border-radius: 5px;
}

#search-input:focus {
  outline: none;
}

#search-btn {
  background: #ffffff;
  border: none !important;
  height: inherit;
  width: 50px;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  border-radius: 5px;
}

.cart-items-counter {
  border: 1px solid #ab0000;
  border-radius: 50%;
  background-color: #ab0000;
  color: #fff;
  font-size: 0.857rem;
  line-height: 16px;
  width: 17px;
  height: 17px;
  transform: translate(5px, -5px);
}

.cart-section:hover {
  cursor: pointer;
}

.cart-section .cart-icon-section {
  display: grid;
  grid-gap: 15px;
}

.cart-section .cart-icon-section * {
  grid-column: 1;
  grid-row: 1;
}

.cart-total-price {
  font-size: 1.286rem;
  line-height: 33px;
  color: #ffffff;
}

.categories-list {
  list-style: none;
  word-break: keep-all;
  overflow: hidden;
  overflow-x: scroll;
}

.menu-section li {
  cursor: pointer;
}

.categories-list li.menu {
  font-size: 1.286rem;
  padding: 10px 40px;
  color: #ffffff;
  white-space: nowrap;
}

.menu-items {
  background: #521b25;
}

.submenu {
  list-style: none;
  background: #331546;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  padding: 0px;
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}

.submenu li {
  background: #331546;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 12px;
  color: #ffffff;
  border-radius: 5px;
}

.submenu .main-submenu li {
  width: 100%;
  min-width: 200px;
}

.submenu li:hover {
  filter: brightness(60%);
  color: #ffffff;
}

.submenu li img {
  margin-left: 30px;
}

.submenu .dropitems {
  display: none;
}

.dropitems li,
.dropitems-shown li {
  height: 45px;
  width: 40%;
}

.dropitems-shown {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  filter: none;
}

@media only screen and (max-width: 768px) {
  .availability-bar .announcement-text,
  .announcement-bar .announcement-text {
    font-size: 1.3rem;
    padding: 10px 0px 5px 0px;
  }

  .dropitems,
  .dropitems-shown {
    justify-content: flex-end;
  }
}

/*
    search-header-twig
*/
body[data-template="home"] .fixed-header .top-header-background {
  background-color: transparent !important;
}

.app-content-absolute .home {
  margin-top: -86px;
}

.search-header {
  padding: 18px 0px;
  background-color: var(--secondary-color);
}

.search-header .image-logo {
  padding: 0px;
}

.input-group-text {
  background-color: white;
}

/* Dropdown */

.dd-button {
  display: inline-block;
  padding: 10px 30px 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.dd-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--secondary-color-alt0);
}

.dd-input {
  display: none;
}

.dd-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  list-style-type: none;
  width: 400px;
  z-index: 3;
}

.dd-input + .dd-menu {
  display: none;
}

.dd-input:checked + .dd-menu {
  display: block;
}

.dd-menu li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.dd-menu li:hover {
  background-color: #f6f6f6;
}

.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

.dd-menu li.divider {
  padding: 0;
  border-bottom: 1px solid #cccccc;
}

.menu-icon {
  display: none;
}

.form-icon {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  color: var(--secondary-color-alt1);
  padding: 1.25rem;
  font-size: 1.5rem;
}

.form-input {
  position: relative;
  z-index: 3;
  height: 3.833rem;
}

@media only screen and (max-width: 768px) {
  .input-group {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .menu-icon {
    display: inline-block;
    font-size: 1.667rem;
  }
}

/*
    upper-search-header-twig
*/
.input-group {
  width: 600px;
}

.cart-items {
  width: 400px;
}

.dev3-dropdown-cart:hover > .dev3-cart-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.cart-title {
  text-align: right;
  padding: 10px;
  color: var(--primary-color);
}

.cart-content {
  padding: 10px;
  margin: 10px;
  border: 1px solid;
  border-radius: 5px;
}

.cart-content p {
  font-size: 1rem;
  text-decoration: underline;
}

.cart-content .cart-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.167rem;
}

.cart-show {
  color: var(--primary-color);
  text-align: center;
  font-size: 1.333rem;
  font-weight: var(--font-weight-sizeOne);
}

@media only screen and (max-width: 768px) {
  .navbar-brand {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .input-group {
    width: 300px;
  }
}

/*
    footer
*/

.store-section {
  background-color: #dedede;
  color: var(--text-color-primary-bg);
}

.footer-horizontal-line {
  border-top: 0.5px solid
    var(--footer-text-color-primary-bg, var(--text-color-primary-bg));
  margin-top: 100px;
}

.store-section h1 {
  font-weight: var(--font-wieght-sizeTwo);
  font-size: 1rem;
}

.store-section p {
  font-size: 0.9rem;
}

.store-section a {
  text-decoration: none;
  color: var(--footer-text-color-primary-bg, var(--text-color-primary-bg));
  cursor: pointer;
}

.footer-section-2 {
  padding-top: 50px;
}

.footer-pages div p:last-child {
  margin-bottom: 0px;
}

.subscribe-bar {
  background: var(--primary-color);
  width: 100%;
  max-width: 490px;
  border: 1px solid #ddd7d7;
  border-radius: 5px;
}

#subscribe-input {
  background: var(--primary-color);
  color: #fff;
  padding: 5px;
  border: none;
  border-radius: 5px;
  height: 60px;
}

#subscribe-input:focus {
  outline: none;
}

.subscribe-bar button {
  background: #ffffff !important;
  color: var(--primary-color);
  border-radius: 5px;
  height: 30px;
  width: 70px;
}

.footer-store-section {
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer-store-section-bars {
  min-height: 80px;
  border-bottom: 0.5px solid #cccccc;
}

.footer .logistics-pay-icons {
  margin-right: -8px;
  margin-left: -8px;
}

.footer .icons a,
.footer .logistics-pay-icons a {
  padding: 5px 8px;
}

.footer .icons a,
.footer .logistics-pay-icons a img {
  aspect-ratio: 2 / 1.4;
  max-width: 50px;
  object-fit: contain;
}

.footer-about-us-links-div {
  flex: 1;
}

.footer-about-us-links-div a {
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .footer-about-us-links-div a {
    font-size: 13px;
  }
  .footer-about-us-links-div p {
    text-align: center;
  }
}

.vat-crn-sections span {
  font-size: 0.929rem;
}

.vat-crn-sections {
  margin-left: -5px;
  margin-right: -5px;
  flex: 1;
}

.vat-crn-sections > div {
  padding-left: 5px;
  padding-right: 5px;
}

.footer-bar span {
  padding: 5px;
}

.footer-title {
  font-weight: var(--font-wieght-sizeTwo);
  font-size: 1.1666666666666667rem;
  color: #6b6b6b;
}

.footer-text {
  list-style-type: none;
  padding-right: 0px;
}

.footer-text a {
  font-weight: var(--font-weight-sizeOne);
  font-size: 14px;
  color: #6b6b6b;
}

.footer-sub-text {
  font-weight: var(--font-weight-sizeOne);
  font-size: 14px;
  padding: 10px;
  color: #6b6b6b;
  padding-right: 0px;
}

.footer-vat-box {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.maroof-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.footer-vat-box svg {
  width: 32px;
}

.vat-crn-sections > div img {
  width: auto;
  height: 32px;
}

@media only screen and (max-width: 768px) {
  .logistics-pay-icons a {
    padding: 5px 8px !important;
  }

  .footer-pages div {
    margin-top: 30px;
  }

  .footer-section-2 {
    height: auto;
    padding-top: 10px;
  }

  .subscribe-title {
    margin-top: 40px;
  }
}

/*
    gallery
*/

.gallery .gallery-item.bottom-row {
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
    grid-images
*/

[section-id] .grid-images {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  grid-template-areas:
    "featured top-left "
    "featured bottom-left ";
}

[section-id] .gallery-image {
  overflow: hidden;
  cursor: pointer;
}

[section-id] .gallery-image img {
  transition: transform 0.4s ease;
}

[section-id] .gallery-image:hover img {
  transform: scale(1.05);
}

.grid-images.grid-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "featured";
}

.grid-images.grid-1 .gallery-image {
  grid-area: featured;
}

.grid-images.grid-2 {
  grid-template-rows: 1fr;
}

.grid-images.grid-4 {
  grid-template-rows: 1fr 1fr;
}

[section-id] .grid-images > .top-left {
  grid-area: top-left;
}

[section-id] .grid-images > .featured {
  grid-area: featured;
}

[section-id] .grid-images > .bottom-left {
  grid-area: bottom-left;
}

@media screen and (max-width: 1024px) {
  [section-id] .grid-images {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 1024px) {
  [section-id] .grid-images {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
}

/*
    features section
*/

.features-section {
  background: var(--primary-color);
  color: #ffffff;
}

.feature p {
  font-size: 1.086rem;
  font-weight: 500;
  margin-top: 15px;
}

/*
    categories section
*/

.category-section {
  background-color: #363636;
}

.category-image {
  padding: 5px;
}

.category-image h3 {
  text-align: center;
  padding-top: 10px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}

/* 
.cat-col, .prod-col {
    flex: 0 0 20%;
    max-width: 20%;

    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.prod-col-tb {
    padding-top: 15px;
    padding-bottom: 15px;
}

.slider-arrow {
    height: 50px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.slider-arrow span {
    color: #ffffff;
    font-size: 40px;
}

.slider-arrow.right {
    right: -40px;
}

.slider-arrow.left {
    left: -40px;
}

@media only screen and (max-width: 768px) { 

    .home-categories-section .categories {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

}

@media only screen and (max-width: 414px) { 

    .home-categories-section .categories {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

} */
/* products-section */

.products-section {
  background-color: #ffffff;
}

.product-title {
  color: #363636;
  font-weight: var(--font-wieght-sizeTwo);
  font-size: 48px;
}

.sub-title {
  color: #494949;
  font-weight: var(--font-wieght-sizeTwo);
  font-size: 16px;
  padding: 15px;
}

.image-gallery {
  margin: 20px;
}

/* home-twig */

/* customer feedback slider */
.center-section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: #0a0c10 !important;
}

.testimonials-customer-card {
  position: relative;
  text-align: center;
}

.testimonials-customer-card .card-body:after {
  content: "";
  width: 19px;
  height: 17px;
  position: absolute !important;
  bottom: 46px;
  left: 49%;
  transform: rotate(45deg);
}

.testimonials-customer-card.center-slide .card-body,
.testimonials-customer-card.center-slide .card-body:after {
  background-color: var(--primary-color);
  transition: 0.3s;
}

.testimonials-customer-card.center-slide .card-body:after {
  transition-delay: 0.2s;
}

.testimonials-customer-card.center-slide .testimonials-customer-text {
  color: var(--text-color) !important;
}

.testimonials-customer-card {
  opacity: 0.5;
}

.testimonials-customer-card.center-slide {
  opacity: 1;
}

.testimonials-customer-card .card-body {
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  width: auto;
  min-height: 140px;
  margin: 10px 10px 8px 10px;
  border-radius: 20px;
  outline: none;
  padding: 20px;
}

.testimonials-customer-card .card-body img {
  position: absolute;
}

.testimonials-slider .slick-dots li button:before {
  font-size: 10px;
}

@media only screen and (max-width: 768px) {
  .testimonials-customer-card {
    min-height: 120px;
  }

  .testimonials-customer-card {
    opacity: 1;
  }

  .testimonials-customer-card .card-body,
  .testimonials-customer-card .card-body:after {
    background-color: var(--primary-color);
    transition: 0.3s;
  }

  .testimonials-customer-card .testimonials-customer-text {
    color: var(--text-color) !important;
    font-size: 12px;
    line-height: 180%;
  }

  .testimonials-customer-card .card-body img {
    right: 30px;
  }
}

.testimonials-customer-icon {
  font-size: 45px;
  line-height: initial;
  color: var(--secondary-color-alt9);
}

.testimonials-customer-name {
  margin-top: 25px;
  margin-bottom: 9px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.testimonials-customer-date {
  margin-left: auto;
  margin-top: 9px;
}

.rtl .testimonials-customer-date {
  margin-left: unset;
  margin-right: auto;
  color: #a8a8a8;
}

.testimonials-slider .slick-dots li {
  margin: 0;
}

.testimonials-slider .slick-dots li button:before {
  color: #ddd;
}

.testimonials-slider .slick-dots li.slick-active button:before {
  color: #000;
}

.testimonials-customer-text {
  margin-right: 40px;
  white-space: break-spaces;
  text-align: start;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0%;
}

.partners-item {
  margin: 10px 15px;
}

.partners-slider.slick-slider .slick-track {
  display: flex;
}

.partners-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

/* home video section */
.video-products-section {
  overflow: hidden;
}

.icon-play_arrow:before {
  content: "\e911";
  font-size: 18px;
  color: var(--primary-color);
}

.video-promotion {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 532px;
  margin-left: 35px;
}

.rtl .video-promotion {
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-right: 35px;
}

.video-product-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  max-width: 650px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .video-promotion {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 375px;
    margin-left: 0;
  }

  .rtl .video-promotion {
    margin-right: 0;
  }

  .video-product-description {
    margin-bottom: 24px;
  }
}

.video-product-slider .prod-col {
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

/* home-products-section */
.product-section-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0%;
}

.product-item {
  width: 100%;
  position: relative !important;
}

@media (max-width: 767px) {
  .product-section-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 0%;
  }

  .video-product-slider .prod-col {
    width: 165px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .custom_products_list .product-item {
    width: 100%;
  }
  .custom_products_list.cat .product-item {
    width: 48%;
  }
}
.product-item .product-title {
  color: #0a0c10;
  font-weight: 500;
  font-size: 18px;
  line-height: 13px;
  letter-spacing: 0%;
  max-width: 95%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item .product-title > span {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* عدد الأسطر */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  white-space: normal;
  max-width: 99%;
}

@media (max-width: 767px) {
  .product-item .product-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 13px;
    letter-spacing: 0%;
  }

  .product-item .product-title > span {
    max-width: 130px;
  }
}

.slick-track {
  margin: 0;
}

#loadingIndicator {
  height: 270px;
}

.product-item .section-product-price > * {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 5px;
  margin-bottom: 8px;
}

.product-item .product-card-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0%;
  position: absolute;
  right: unset;
  left: 5px;
  top: 4px;
  color: #fff;
  padding: 1.5px 14px;
  border-radius: 2px;
  z-index: 1;
}
.rtl .product-item .product-card-label {
  left: unset;
  right: 5px;
}

.popup-discount.product-card-label {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0%;
  position: absolute;
  right: unset;
  left: 1px;
  top: 1px;
  color: #fff;
  padding: 0px 9px;
  border-radius: 2px;
}
.rtl .popup-discount.product-card-label {
  left: unset;
  right: 1px;
}

@media (max-width: 767px) {
  .product-item .product-card-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0%;
    padding: 1.5px 18px;
  }
}

.product-item .product-price {
  font-weight: 400;
  font-size: 14px;
  line-height: 13px;
  letter-spacing: 0%;
  font-weight: 400;
  color: var(--primary-color);
}

.product-item .product-prev-price {
  font-size: 18px;
  line-height: 13px;
  letter-spacing: 0%;
  text-decoration: line-through;
  color: "#f7373";
}

.product-item small {
  font-size: 1rem;
  color: #8b8b8b;
}

.product-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 /1;
  object-fit: cover;
}

@media (max-width: 532px) {
  .product-item img {
    max-height: 170px;
  }
  .custom_products_list .product-item img {
    max-height: 100%;
  }
  .custom_products_list {
    max-height: 48%;
  }
}

.products-title-section {
  padding: 5px 0px;
  background-color: #e8e8e8;
}

.products-title-section h1 {
  font-size: 1.286rem;
  font-weight: normal;
}

.products-title-section p {
  font-size: 1rem;
  font-weight: normal;
}

.products-filter {
  font-size: 1.167rem;
}

.products-container {
  padding-top: 24px;
}

.availability-bar .ab-close,
.announcement-bar .ab-close {
  cursor: pointer;
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  right: 0px;
  top: 10px;
  width: 32px;
  height: 32px;
}

.availability-bar .ab-close {
  color: rgb(151, 86, 76);
}

.store-section .social-icons span {
  height: 35px;
  width: 35px;
  color: var(--footer-text-color-primary-bg, var(--text-color-primary-bg));
  font-size: 22px;
  border: 2px solid
    var(--footer-text-color-primary-bg, var(--text-color-primary-bg));
  padding: 5px;
  border-radius: 50%;
}

.store-section .social-icons {
  margin-left: -5px;
  margin-right: -5px;
  flex: 1;
  justify-content: end;
}

.footer-store-section-bars .social-icons {
  flex: 1;
  justify-content: end;
}

@media (max-width: 767px) {
  .footer-store-section-bars .social-icons {
    flex: auto;
    justify-content: center;
    margin-inline: auto;
    margin-top: 16px;
  }
}

.store-section .social-icons a {
  margin: 0px 2.5px 5px 2.5px;
}

/*
    Cart Sidebar
*/

.cart-sidebar {
  height: 100%;
  width: 0%;
  background: #fff;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.cart-sidebar-header {
  font-size: 2.25rem;
  color: var(--primary-color);
}

.empty-cart-title {
  color: #494949;
  font-size: 1.285rem;
}

#cart-items {
  display: none;
}

.cart-item {
  justify-content: space-around;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 8px 0px;
  margin-top: 5px;
  margin-bottom: 5px;
  align-items: center;
}

.cart-item-img {
  height: 46px;
  width: 46px;
  background: #585858;
}

/*
    Mega-menu.twig
*/

/* Navigation Styles */
/* nav {
  position: relative;
} */

/* div.dark { background-color:var(--secondary-color-alt2); } */
div.light nav {
  background-color: var(--secondary-color-alt1);
}

.main-nav-wrapper {
  height: 41px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.main-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.main-nav-wrapper {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

ul.main-nav {
  list-style-type: none;
  padding: 0px;
  font-size: 0px;
  max-width: 100%;
  margin: 0px;
}

ul.main-nav > li {
  display: inline-block;
  padding: 0;
}

ul.main-nav > li > a,
.item-all-categories a {
  display: block;
  padding: 10px 22px;
  position: relative;
  color: inherit;
  font-size: 1.1666666666666667rem;
  font-weight: var(--font-weight-sizeOne);
  box-sizing: border-box;
  cursor: pointer;
}

ul.main-nav > li:hover,
.item-all-categories span {
  font-weight: 600;
  transition: 0.5s leaner;
}

ul.main-nav > li:hover span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30%;
  height: 2px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

ul.main-nav > li:hover > a,
.item-all-categories > a {
  color: #fafafa !important;
  font-weight: var(--font-weight-sizeOne);
}

ul.main-nav > li ul.sub-menu-lists {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: block;
  color: #0a0c10;
}

ul.main-nav > li ul.sub-menu-lists > li {
  padding: 2px 0;
  margin-block: 12px;
}

ul.main-nav > li ul.sub-menu-lists > li > a {
  color: #0a0c10;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.autocomplete-items {
  position: absolute;
}

.autocomplete-items > * {
  background-color: #fff;
  padding: 10px 0;
}

.search-dialog {
  display: none;
  position: absolute;
  top: 57px;
  right: 0;
  left: 0;
  max-height: 600px;
  padding: 0px !important;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.search-close-icon {
  position: absolute;
  top: 51px;
  left: 24px;
}

/* icone */
.icon-facebook-f:before {
  content: url("./Facebook.svg");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-location:before {
  content: url("./icon-location__.svg");
  width: 21px;
  height: 20px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-share:before {
  content: url("./share-button.svg");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-instagram:before {
  content: url("./Instagram-footer.svg");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-twitter:before {
  content: url("./X.svg");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-snapchat-ghost:before {
  content: url("./snapchat_.svg");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-tiktok:before {
  content: url("./tiktok.svg");
  width: 24px;
  height: 24px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.ic {
  cursor: pointer;
  display: inline-block;
  width: 44px;
  height: 32px;
  text-align: center;
  outline: none;
}

.ic.close {
  opacity: 0;
  font-size: 0px;
  font-weight: 300;
  color: #fff;
  top: 8px;
  height: 40px;
  display: block;
  outline: none;
}

/* Menu Icons for Devices*/

.ic.menu .line {
  height: 4px;
  width: 100%;
  display: block;
  margin-bottom: 6px;
  background-color: #212529;
}

.ic.menu .line-last-child {
  margin-bottom: 0px;
}

.sub-menu-head {
  margin: 10px 0;
}

.banners-area {
  margin-top: 1.1666666666666667rem;
  padding-top: 15px;
}

@media only screen and (min-width: 769px) {
  .ic.menu {
    display: none;
  }

  /* Main Menu for Desktop Devices  */
  ul.main-nav {
    display: block;
    /* position: relative; */
  }

  .sub-menu-block {
    padding: 15px 177px;
    width: 100% !important;
  }
  .arrow-icon {
    transition: transform 0.3s ease;
  }

  a[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
  }

  /* Sub Menu */
  ul.main-nav > li > div.sub-menu-block {
    visibility: hidden;
    background-color: #f9f9f9;
    position: absolute;
    margin-top: 0px;
    top: 56px;
    width: 100%;
    color: #333;
    left: 50%;
    box-sizing: border-box;
    z-index: 3;
    font-size: 16px;
    opacity: 0;

    /*CSS animation applied for sub menu : Slide from Top */
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    transform: translateX(-50%) !important;
  }

  ul.main-nav > li:hover > div.sub-menu-block {
    background-color: #f7f7f7;
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }

  ul.main-nav > li > div.sub-menu-block > * {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    opacity: 0;
  }

  ul.main-nav > li:hover > div.sub-menu-block > * {
    opacity: 1;
  }

  .sub-menu-head {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
  }

  div.dark ul.main-nav > li > a:after {
    background-color: #777;
  }

  div.light ul.main-nav > li > a:after {
    background-color: #999;
  }

  /* Drop Down/Up Arrow for Mega Menu */
  ul.main-nav > li > a.mega-menu > span {
    display: block;
  }

  ul.main-nav > li > a.mega-menu > span:after {
    width: 0;
    height: 0;
    content: "";
    background-color: transparent;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  ul.main-nav > li:hover > a.mega-menu span:after {
    bottom: 0;
    width: 30%;
    height: 2px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
  }

  .banners-area {
    border-top: 1px solid #ccc;
  }
}

/* image-slider-twig */
.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
}

.card-slider {
  margin: 0 0.5em;
  border: none;
  border-radius: 0;
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  margin-right: -15px;
}

.star-rate {
  margin-right: 5px;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .card img {
    height: 11em;
  }
}

/* breadCrumb-twig */
.breadcrumb-section {
  background-color: #fff;
}

.breadcrumb-item a {
  color: #000;
  font-size: 16px;
  font-weight: var(--font-weight-sizeOne);
}

.breadcrumb-item.active {
  color: #000;
}

.breadcrumb-item {
  color: var(--secondary-color-alt4);
  font-size: 1.167rem;
  font-weight: var(--font-weight-sizeOne);
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path d="M10 3L5 8L10 13" stroke="%230A0C10" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0.2rem;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .breadcrumb-item + .breadcrumb-item::before {
    margin-top: 1px;
  }
}
/* breadCrumb-subTitle-detail-twig */
.subTitle-detail {
  margin-top: -15px;
  background-color: var(--secondary-color-alt5);
  padding: 30px 30px;
}

.bread-title {
  color: var(--secondary-color-alt3);
  font-weight: var(--font-weight-sizeTwo);
  font-size: 1.6rem;
}

.bread-text {
  margin-right: 1.25rem;
  color: var(--secondary-color-alt3);
  font-weight: var(--font-weight-sizeOne);
  font-size: 1.083rem;
}

.pages-top-title {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #fff;
}

.pages-top-image {
  width: 100%;
}
.box_pages_wrapper {
  height: 576px;
}
.box_pages_wrapper img {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .box_pages_wrapper {
    height: 151px;
  }
}
.pages-top-title-wrapper:before {
  position: absolute;
  content: "";
  /* background-color: #00000020; */
  width: 100%;
  height: 100%;
  display: block;
}

/* card-item-twig */
.card-title {
  color: var(--secondary-color-alt3);
  font-size: 1.333rem;
  font-weight: var(--font-wieght-sizeTwo);
}

.card-price {
  color: var(--primary-color);
  font-size: 1.333rem;
  font-weight: var(--font-wieght-sizeTwo);
}

.card-text {
  color: var(--secondary-color-alt6);
  font-size: 1.333rem;
  font-weight: var(--font-wieght-sizeOne);
}

/* products-filter-twig */

.filter-result {
  font-size: 1.167rem;
  font-weight: var(--font-weight-sizeOne);
  color: var(--secondary-color-alt3);
}

.filter-order {
  font-size: 1.167rem;
  font-weight: var(--font-weight-sizeOne);
  color: var(--secondary-color-alt3);
}

.filter-allResult {
  margin-right: 200px;
  font-size: 1.167rem;
  font-weight: var(--font-weight-sizeOne);
  color: var(--secondary-color-alt3);
}

.btn-filter {
  background-color: var(--white-color);
  border: 0.5px solid var(--secondary-color-alt4);
  border-radius: 5px;
  padding: 10px 40px;
}

.icon-filter_alt_black_24dp {
  color: var(--primary-color);
  font-size: 1.333rem;
}

.icon-sort_filter {
  color: var(--primary-color);
  font-size: 1.333rem;
}

/*drop-down-filter*/
.dropdown-orderEvent {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  background-color: var(--white-color);
  border: 0.5px solid var(--secondary-color-alt4);
  border-radius: 5px;
}

.order-button {
  display: inline-block;
  padding: 10px 30px 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.order-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  list-style-type: none;
  width: 400px;
  z-index: 3;
}

.dd-input + .order-menu {
  display: none;
}

.dd-input:checked + .order-menu {
  display: block;
  width: 110px;
}

.order-menu li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.order-menu li:hover {
  background-color: #f6f6f6;
}

.order-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

.order-menu li.divider {
  padding: 0;
  border-bottom: 1px solid #cccccc;
}

/*Modal-part*/
.modal .modal-body {
  padding: 20px;
}

.modal-header .close {
  left: 20px;
  right: auto;
}

.btn-cancel {
  background-color: transparent;
  border-color: var(--secondary-color-alt7);
  padding: 5px 20px;
  margin-left: 10px;
}

.btn-save {
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 5px 20px;
}

/*slider-filter*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
}

/*404-twig*/
.icon-404 {
  font-size: 288px;
}

.four-title {
  font-weight: var(--font-weight-sizeOne);
  color: var(--black-color);
  font-size: 5.167rem;
}

@media only screen and (max-width: 768px) {
  .icon-404 {
    font-size: 10rem;
  }
}

/*FAQ-twig*/
.accordion {
  margin-top: 40px;
}

.card-accordion {
  border: none;
  margin-bottom: 20px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
}

h2 {
  background-size: 20px;
  cursor: pointer;
  font-size: 18px;
}

.icon-expand_more1:before {
  content: "\e94b";
}

.faqs-title {
  color: var(--primary-color);
  font-size: 1.833rem;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid var(--primary-color);
}

@media only screen and (max-width: 768px) {
  .faqs-title {
    color: var(--primary-color);
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .accordion-icon {
    margin-right: 0px;
  }
}

/*Blog-twig*/
.blog-title h1 {
  font-size: 2.833rem;
  color: var(--primary-color);
  font-weight: var(--font-wieght-sizeTwo);
}

.blog-text p {
  font-size: 1.167rem;
  color: var(--secondary-color-alt11);
  font-weight: var(--font-wieght-sizeOne);
}

.blog-text > * {
  max-width: 100%;
  word-wrap: break-word;
}

/*shipping-nav-twig*/
.shipping-nav {
  background-color: var(--secondary-color-alt4);
  padding: 5px;
}

.shipping-nav-title {
  font-size: 1.167rem;
  color: var(--primary-color);
  font-weight: var(--font-wieght-sizeOne);
}

/*shipping-payment-tabs-twig*/
.shipping-tabs {
  background-color: var(--sub-primary-color);
}

.shipping-payment {
  margin: auto;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px;
  width: 334px;
  height: 117px;
}

.shipping-tabs a {
  color: var(--white-color);
}

/* products-Details-twig */

.bank-account-tab {
  font-size: 1.333rem;
  font-weight: var(--font-wieght-sizeTwo);
  margin: 10px 20px;
}

.bank-account-sub-title {
  font-size: 1rem;
  margin-right: 60px;
}

.icon-local_shipping,
.icon-payments_black,
.icon-account_balance {
  font-size: 40px;
  margin-top: 5px;
}

#shippingAndPaymentMobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  #shippingAndPayment {
    display: none;
  }

  #shippingAndPaymentMobile {
    display: block;
  }
}

/*shipping-payment-tabs-mobile*/
.container-mobile {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.card-mobile {
  background-color: var(--sub-primary-color);
  padding: 10px 30px;
  color: var(--white-color);
}

.accordion-mobile {
  margin-top: 10px;
  margin-right: 60px;
  color: var(--white-color);
}

@media only screen and (max-width: 768px) {
  .payment-card {
    margin: auto;
  }
}

/*product-checkbox-selection*/

.checkbox-label {
  font-size: 1.333rem;
  font-weight: var(--font-weight-sizeOne);
  color: var(--secondary-color-alt10);
}

.checkbox-extra {
  font-size: 1.167rem;
  font-weight: var(--font-weight-sizeOne);
  color: var(--primary-color);
  margin-right: 50px;
  margin-top: 3px;
}

.icon-content_copy {
  color: var(--primary-color);
}

/*shipping-section-twig*/
.card-tard-icon {
  margin-right: 1.25rem;
}

.shipping-section-title {
  font-size: 1.333rem;
  color: var(--sub-primary-color);
  font-weight: var(--font-wieght-sizeOne);
}

.btn-primary {
  color: var(--text-color-primary-bg);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  filter: brightness(80%);
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #cccccc;
  border-color: #cccccc;
}

.form-control:focus {
  box-shadow: none !important;
  border-color: #cccccc;
}

.btn-primary:focus,
.btn-primary.focus.btn-primary:focus,
.btn-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: none !important;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff !important;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.div-dropdown label {
  display: block;
  color: var(--primary-color);
}

.div-dropdown select {
  display: block;
  width: 100%;
  padding: 10px 5px;
  border-color: #ccc;
  border-radius: 3px;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.div-dropdown > div.form-group > div {
  position: relative;
}

.div-dropdown > div.form-group > div:after {
  content: "\e94b";
  font-size: 20px;
  color: #333;
  right: 0px;
  top: 0px;
  padding: 5px 8px;
  border-left: 1px solid #ccc;
  position: absolute;
  pointer-events: none;
  height: 40px;
  width: 40px;
}

.rtl .div-dropdown > div.form-group > div:after {
  right: unset;
  left: 0px;
  border-left: 0;
  border-right: 1px solid #ccc;
}

.row-language-currency {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.row-language-currency > div {
  padding-left: 7.5px;
  padding-right: 7.5px;
  width: 50%;
}

#langCurrecyModal button {
  padding: 5px 25px;
  font-size: 1.1rem;
}

#langCurrecyModal .close {
  position: absolute;
  top: 10px;
  right: 4px;
  width: 44px;
  height: 22px;
}

.rtl #langCurrecyModal .close {
  right: unset;
  left: 4px;
}

/*-- Theme Colors ---*/
.theme-bg-primary {
  background-color: var(--primary-color);
}

.theme-bg-primary-dark-1 {
  background-color: var(--header-primary-color, var(--primary-color));
  filter: brightness(80%);
}

.footer-theme-bg-primary-dark-1 {
  background-color: var(--footer-primary-color, var(--primary-color));
  filter: brightness(80%);
}

.theme-bg-primary-dark-2 {
  background-color: var(--header-primary-color, var(--primary-color));
  filter: brightness(120%);
  color: var(--white-color);
}

.theme-title-primary {
  color: var(--primary-color) !important;
}

.theme-text-primary {
  color: var(--primary-color);
  font-size: 25px;
}

.theme-icon-primary {
  color: var(--text-color-primary-bg);
}

.theme-text-for-primary-bg {
  color: var(--text-color-primary-bg);
}

.theme-border-primary {
  border-color: var(--primary-color) !important;
}

.header-theme-bg-primary {
  background-color: var(--header-primary-color, var(--primary-color));
}

.header-theme-text-primary {
  color: var(--header-primary-color, var(--primary-color));
}

.header-theme-text-for-primary-bg {
  color: var(--header-text-color-primary-bg, var(--text-color-primary-bg));
}

.menu-header-theme-bg-primary {
  background-color: #fff;
  filter: var(--header-primary-brightness);
}

.menu-header-theme-text-primary {
  color: var(--menu-header-primary-color, var(--primary-color));
}

.menu-header-theme-text-for-primary-bg {
  color: var(--menu-header-text-color-primary-bg, var(--text-color-primary-bg));
}

.header-theme-icon-primary {
  color: var(--header-text-color-primary-bg, var(--text-color-primary-bg));
}

.footer-theme-bg-primary {
  background-color: var(--footer-primary-color, var(--primary-color));
}

.footer-theme-text-primary {
  color: var(--footer-primary-color, var(--primary-color));
}

.footer-theme-text-for-primary-bg {
  color: var(--footer-text-color-primary-bg, var(--text-color-primary-bg));
}

.div-bg-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer-copyrights span {
  padding: 5px 0px;
  font-size: 14px;
  color: #0a0c10;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .vat-crn-sections {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center !important;
    flex: auto;
  }

  .footer-store-section-bars {
    padding: 10px 15px;
  }
  .footer-copyrights span {
    font-size: 12px;
  }
}

.footer-copyrights a {
  color: inherit;
}

.blog-text img {
  max-width: 100% !important;
  display: inline-block;
  height: auto !important;
}

@media only screen and (max-width: 767px) {
  .upper-bar {
    display: none;
  }

  .slide-menu-static .upper-bar {
    display: block;
  }
  .slide-menu-static .account-lang-currency {
    border-bottom: 0;
  }

  .section-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 0%;
  }

  .container-slider {
    padding: 0px;
  }

  .products-slider,
  .categories-slider {
    display: block;
  }

  .search-header {
    padding: 0px;
  }

  .search-header .image-logo {
    padding: 0px 0px;
  }

  .page-item-n-last {
    display: none;
  }

  .testimonials-customer-card {
    margin-left: 7.5px;
    margin-right: 7.5px;
  }

  .testimonials-customer-card:first-child {
    margin-left: 15px;
  }

  .rtl .testimonials-customer-card:first-child {
    margin-left: 7.5px;
    margin-right: 7.5px;
  }

  .testimonials-customer-card:last-child {
    margin-right: 15px;
  }

  .rtl .testimonials-customer-card:last-child {
    margin-right: 7.5px;
    margin-left: 15px;
  }
}

.s-slider::-webkit-scrollbar {
  display: none !important;
}

.product-card-rating-count {
  color: #8b8b8b;
}

.product-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
}

.product-card-rating > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.product-card-rating > span:before {
  vertical-align: middle;
}

.rtl .product-card-rating {
  gap: 2.5px;
}

.product-card-bundle-offer {
  display: none;
  position: absolute;
  right: 3px;
  top: 3px;
  max-width: 80%;
  padding: 4px 7px;
  color: var(--text-color-primary-bg);
  background-color: var(--primary-color);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 5px;
}

.rtl .product-card-bundle-offer {
  right: unset;
  left: 3px;
}

.product-card-bundle-offer.bundle-offer-product-tag {
  display: inline-block;
}

.product-card-bundle-offer.badge-product-tag {
  display: inline-block;
  top: 50px;
}

@media (max-width: 767px) {
  .product-card-bundle-offer {
    top: unset;
    bottom: 0;
  }
}

/* custom css */
/* .header-logo,
.header-cart {
  width: 20%;
} */

.header-cart {
  flex-grow: unset;
}

.search-header-bar > * {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .search-header-bar > * {
    height: auto;
  }
}

.search-input > div {
  width: 100%;
}

.search-input-icon {
  font-size: 22px;
}

.rtl .search-input-icon {
  left: 4px;
  right: unset;
}

.search-icon {
  position: absolute;
  right: 4px;
  left: unset;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  padding: 0px 9px;
  background-color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.search-input-input {
  padding-left: 30px;
  height: 50px;
  border-radius: 15px !important;
}

@media (max-width: 767px) {
  .search-input-input {
    padding-left: 16px;
  }
}

.rtl .search-input-input {
  padding-left: inherit;
  padding-right: 30px;
}

.icon-shopping_cart_black_36dp-1-1,
.sm-search-icon > span {
  font-size: 32px;
}

.icon-shopping_cart_black_36dp-1-1 .path1:before {
  color: unset;
}

.icon-shopping_cart_black_36dp-1-1 .path2:before {
  color: unset;
}

.icon-language_black_24dp .path1:before {
  color: unset;
}

.cart-badge {
  position: absolute;
  right: 15px;
  top: -8px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: #ab0000;
}

.rtl .cart-badge {
  right: unset;
  left: 15px;
}

.top-main-menu-wrapper {
  margin-right: -22px;
  margin-left: -22px;
}

.ic.menu {
  text-align: left;
  position: relative;
  right: 4px;
}

.rtl .ic.menu {
  text-align: right;
  right: unset;
  left: 4px;
}

.ic.menu,
.sm-search-icon {
  margin-right: 20px;
}

.icon-menu-top {
  margin-right: 10px !important;
}

.rtl .ic.menu,
.sm-search-icon {
  margin-right: unset;
  margin-left: 20px;
}

.rtl .icon-menu-top {
  margin-right: unset !important;
  margin-left: 10px !important;
}

.icon-menu-top > span {
  font-size: 32px;
}

.icon-menu_open_black_24dp-1:before {
  color: unset;
}

.sm-search-div {
  display: none;
  visibility: hidden;
  position: absolute;
  left: 0;
  padding: 0px 15px 20px 15px;
  width: 100%;
  background-color: var(--header-primary-color, var(--primary-color));
  transform: translateY(-100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.sm-search-div.show {
  visibility: visible;
  transform: translateY(0%);
  -webkit-transform: translate3d(0, 0, 0);
}

.footer .apps-social-icons:nth-child(2) {
  padding-left: 0px;
}

.rtl .footer .apps-social-icons:nth-child(2) {
  padding-right: 0px;
  padding-left: 15px;
}

.footer .google-app-stores {
  margin-left: -4px;
  margin-right: -4px;
}

.footer .icons-wrapper {
  padding: 0px;
}

.footer-about-us-links-div {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.rtl .footer-about-us-div {
  padding-right: unset;
  padding-left: 20%;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.main-slider .slick-dots {
  bottom: 30px;
}

.main-slider .slick-dots li button:before {
  font-size: 10px;
}

.features-section-img {
  max-height: 90px;
  max-width: 90px;
}

/* .slick-next.slick-arrow > span,
.slick-prev.slick-arrow > span {
  color: #000;
  font-size: 3.3rem;
} */

.slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-keyboard_arrow_right_ {
  background-image: url("./icon-right.svg");
  width: 27px;
  height: 27px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-keyboard_arrow_left_ {
  background-image: url("./icon-left.svg");
  width: 27px;
  height: 27px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.products-slider .slick-prev,
.products-slider .slick-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.slick-next .video-product-slider {
  right: 8px;
}

[dir="rtl"] .video-product-slider .slick-next {
  left: 8px;
}

/* instagram section */

.instagram-container {
  position: relative;
}

.instagram-title-container {
  position: absolute;
  width: calc(100% / 6 * 2);
  left: 50%;
  right: 50%;
  transform: translate(50%, 0px);
  height: 100%;
  background-color: #00000021;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-title-wrapper p {
  font-size: 2.2rem;
  color: #9d9d9d;
}

.instagram-title-wrapper img {
  width: calc(100vw / 18);
}

.instagram-title-wrapper {
  width: calc(90vw / 6);
  height: calc(90vw / 6);
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#posts {
  display: flex;
  flex-wrap: wrap;
}

.post {
  width: calc(100% / 6);
}

.post img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 767px) {
  #posts {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    white-space: nowrap;
    display: block;
  }

  .post {
    width: calc(90vw / 2);
    height: calc(90vw / 2);
    display: inline-block;
  }

  .instagram-title-container {
    width: 90%;
  }

  .instagram-title-wrapper {
    width: calc(85vw / 2);
    height: calc(85vw / 2);
  }

  .instagram-title-wrapper img {
    width: calc(100vw / 8);
  }

  .instagram-title-wrapper p {
    font-size: 1.5rem;
  }
}

/* category section */

.category-item a,
.category-item img {
  display: block;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.category-item img {
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.category-item a:hover img {
  transform: scale(1.1) rotate(2deg);
}

.category-title-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.category-title-wrapper.blog-cart h3 {
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 13px !important;
  letter-spacing: 0%;
  max-width: 95%;
  overflow: hidden;
  color: #0a0c10;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-text-title {
  color: #fff;
  padding: 40% 10px 6% 10px;
}

.category-item h3 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  white-space: break-spaces;
}

.category-page-slider .category-item h3 {
  font-size: 2rem;
}

[section-id] button.subCategory.active,
[section-id] button.categoryItemegory.active {
  position: relative;
}

[section-id] .subCategory.active::after,
[section-id] .categoryItemegory.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 1.5px;
  width: 75%;
  background-color: var(--primary-color);
}

.categoryItemegory.active::after {
  width: 100%;
}

.categories-slider .category-item {
  width: 100%;
  max-width: 100%;
}

.slider-container {
  margin-left: 0;
}

.rtl .slider-container {
  margin: 0;
}
.rtl .category-page-slider .slider-container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
}

@media (max-width: 767px) {
  .slider-container {
    margin-inline: 0px;
  }

  .rtl .category-page-slider .slider-container {
    margin-inline: 0px;
  }

  .rtl .slider-container {
    margin-inline: 0px;
  }
}
.section-title {
  padding-left: 0px;
  padding-right: 0px;
}

.products-slider .prod-col {
  padding-left: 5px;
  padding-right: 5px;
  display: block;
  width: auto;
}

.categories-slider .cat-col {
  padding-left: 0px;
  padding-right: 0px;
  aspect-ratio: 1 / 1;
  display: block;
  width: auto;
}

.category-page-slider .categories-slider.s-slider {
  margin-right: -15px;
  margin-left: -15px;
}

.category-page-slider .home-categories-section .section-title {
  margin-right: -15px;
  margin-left: -15px;
}

.category-page-slider .products-slider .prod-col {
  padding-left: 15px;
  padding-right: 15px;
}

.categories-slider .cat-col {
  padding-left: 0px;
  padding-right: 0px;
  aspect-ratio: 1 / 1;
}

.categories-slider-wrapper,
.products-slider-wrapper,
.testimonials-slider-wrapper,
.partners-slider-wrapper {
  margin-right: -15px;
  margin-left: -15px;
}

.products-list .prod-col,
.bundle-offer-products .prod-col {
  width: 20%;
  padding: 15px;
}

.sort-block-width {
  margin-left: 30px;
}

.rtl .sort-block-width {
  margin-left: 0px;
  margin-right: 30px;
}

.select-dropdown .dropdown-item {
  padding-bottom: 7.5px;
  padding-top: 7.5px;
}

#products-list-filter-form-close {
  width: 44px;
  height: 44px;
  position: absolute;
  right: 0;
  top: 0;
}

.rtl #products-list-filter-form-close {
  right: unset;
  left: 0;
}

.products-pagination {
  margin-bottom: 24px;
  padding: 0 15px;
}

.products-pagination ul {
  padding: 0px;
}

.products-pagination .page-link {
  color: var(--primary-color);
  padding: 19px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 13px;
  letter-spacing: 0%;
  height: 40px;
  width: 40px;
}

.page-link {
  color: var(--primary-color);
  padding: 19px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 13px;
  letter-spacing: 0%;
  height: 40px;
  width: 40px;
}

@media (max-width: 767px) {
  .products-pagination .page-link {
    padding: 17px;
    height: 36px;
    width: 36px;
  }
}

.products-pagination .page-link.active {
  color: #ffffff;
  background-color: var(--primary-color);
}

.rtl .products-pagination .page-item:first-child .page-link {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rtl .products-pagination .page-item:last-child .page-link {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.products-container .products-list {
  margin-bottom: 24px;
}

.cart-header-total {
  margin-right: 10px;
  font-size: 1.6rem;
  color: var(--header-text-color-primary-bg, var(--text-color-primary-bg));
}

.rtl .cart-header-total {
  margin-right: unset;
  margin-left: 10px;
}

.form-control:not([type="email"]) {
  border-radius: 4px;
  border-color: #eeeeee;
  color: #808080;
  position: relative;
  height: 52px;
}

.box-1-1 {
  position: relative;
  width: 100%;
}

.box-1-1:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* initial ratio of 1:1*/
}

.box-1-1 .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Other ratios - just apply the desired class to the "box" element */
.box-1-1.ratio2_1:before {
  padding-top: 50%;
}

.box-1-1.ratio1_2:before {
  padding-top: 200%;
}

.box-1-1.ratio4_3:before {
  padding-top: 75%;
}

.box-1-1.ratio16_9:before {
  padding-top: 56.25%;
}

.box-1-1.ratio21_9:before {
  padding-top: 42.85%;
}

.box-1-1.free_size:before {
  padding-top: 42.85%;
}

@media screen and (max-width: 767px) {
  .box-1-1.free_size:before {
    padding-top: 500px !important;
  }

  .category-page-slider .category-item h3 {
    font-size: 1.2rem;
  }
}

.product-item-out-of-stock {
  filter: grayscale(1);
}

.sm-search-div .autocomplete-items,
.lg-search-div .autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.sm-search-div .autocomplete-items div,
.lg-search-div .autocomplete-items div {
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.sm-search-div .autocomplete-items div:hover,
.lg-search-div .autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.sm-search-div .autocomplete-items div a,
.lg-search-div .autocomplete-items div a {
  padding: 10px;
  cursor: pointer;
  color: inherit;
  display: block;
}

.product-crd-spec {
  min-height: 81px;
}

.gallery-section + .gallery-section {
  padding-top: 0px;
}

.ic-menu-back {
  font-size: 22px;
  margin-right: 16px;
  font-weight: bold;
}

.rtl .ic-menu-back {
  margin-right: unset;
  margin-left: 16px;
}

@media screen and (max-width: 767px) {
  .cat-col {
    width: 100%;
  }
}

.category-wrapper {
  gap: 0.5rem;
}

.products-list .prod-col-attr {
  width: 25%;
}

.header-cart > * {
  padding-right: 20px;
}

@media (max-width: 767px) {
  .header-cart {
    flex: 1;
  }

  #toggleSearch {
    display: none !important;
  }

  .search-header-bar {
    height: 64px;
  }

  .footer .apps-social-icons:nth-child(2) {
    padding-left: 15px;
  }

  .rtl .footer .apps-social-icons:nth-child(2) {
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer .icons-wrapper {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .footer-about-us-div {
    padding-right: 0;
  }

  .rtl .footer-about-us-div {
    padding-right: unset;
    padding-left: 0;
  }

  .categories-slider .category-item {
    width: 100%;
  }

  .category-item h3 {
    font-size: 1.6rem;
  }

  .category-page-slider .categories-slider .category-item {
    width: 100px;
    padding-inline: 0;
    padding-block: 5px;
  }

  .category-page-slider .categories-slider.s-slider {
    margin-right: -7.5px;
    margin-left: -7.5px;
  }

  .category-page-slider .products-slider .prod-col {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .categories-slider .cat-col {
    padding-left: 0px;
    padding-right: 0px;
  }

  .products-slider .prod-col,
  .video-product-slider .prod-col,
  .categories-slider .cat-col,
  .testimonials-slider .testimonials-customer-card,
  .partners-slider .partners-item {
    display: inline-block;
    vertical-align: top;
  }

  .partners-slider .partners-item {
    vertical-align: middle;
  }

  .testimonials-slider,
  .video-product-slider,
  .partners-slider {
    overflow-y: hidden;
    overflow-x: scroll;
    white-space: nowrap;
  }

  .categories-slider {
    display: flex;
    flex-direction: column;
  }

  .products-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 10px;
  }

  .products-slider .prod-col {
    padding-left: 0px;
    padding-right: 0px;
  }

  .testimonials-slider::-webkit-scrollbar {
    width: 0 !important;
  }

  .categories-slider-wrapper,
  .products-slider-wrapper,
  .testimonials-slider-wrapper,
  .partners-slider-wrapper {
    margin-right: 0px;
    margin-left: 0px;
  }

  .products-slider-wrapper.blog-container {
    margin-right: -7px;
    margin-left: -7px;
  }

  .cat-with-products {
    display: flex !important;
    flex-wrap: wrap;
    gap: 13px;
    height: auto;
  }

  .cat-with-products {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    height: auto;
    margin-inline: 0;
  }

  .cat-with-products .prod-col {
    width: 48%;
  }

  .slider-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .main-slider .slick-dots li button:before {
    font-size: 10px;
  }

  .main-slider .slick-dots {
    bottom: 4px;
  }

  .section-title {
    padding-right: 15px;
    padding-left: 15px;
  }

  .products-list .prod-col,
  .bundle-offer-products .prod-col {
    margin: 0 auto;
    width: auto;
  }

  .products-list .prod-col,
  .products-list .prod-col-attr {
    width: 50%;
  }

  .products-list .prod-col .product-item {
    width: 100%;
  }

  .sm-search-div {
    display: block;
  }

  .icon-shopping_cart_black_36dp-1-1,
  .sm-search-icon > span {
    font-size: 28px;
  }

  .icon-menu-top {
    width: 32px;
  }
}

.btn:focus,
.btn:active,
.page-link:focus,
.page-link:active {
  outline: none !important;
  box-shadow: none;
}

.products-filters-attribute-form .attribute-group:last-child button {
  display: none;
}

.gift-popover-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 115px;
  height: 140px;
  max-width: 100%;
}

.popover {
  top: 40px;
}

.popover .arrow {
  top: -0.5rem;
  left: 5px;
}

.popover .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.popover .arrow ::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.breadcrumb-section {
  padding: 20px 0px 8px;
}

.content-wrapper {
  width: 97%;
  margin: 0 auto;
}

#sort_blogs {
  border: none;
}

@media screen and (max-width: 768px) {
  .content-wrapper.blogs {
    width: 100%;
  }
}

@media (max-width: 532px) {
  /* .categories-slider .category-item {
    max-height: 410px;
    min-width: 410px;
  } */
}

.page-item a {
  border-radius: 50%;
  margin: 0 4px;
  display: flex;
  align-items: center !important;
  justify-content: center;
}

.page-item:last-child .page-link {
  border-radius: 50% !important;
}

.page-item:first-child .page-link {
  border-radius: 50% !important;
}

.active > .page-link,
.page-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  z-index: 0;
}

a.page-link {
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.blog-style-one .category-item h3 {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: start;
  white-space: break-spaces;
  color: #000;
  padding: 15px 0px 5px;
}

.blog-style-one .category-title-wrapper {
  position: relative;
  background-image: none;
}

.blog-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: start;
  color: #9d9d9d;
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0%;
}

.blog-card-button {
  font-weight: 400;
  font-size: 8px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--primary-color);
}

.blog-card-button span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.blog-card-button {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.pagination .page-link {
  margin: 0 3px !important;
}

.pagination .page-link svg {
  margin: 0 3px !important;
}

@media screen and (max-width: 768px) {
  div#blog-container {
    padding: 0 1rem;
  }

  .blog-style-one .category-item h3 {
    font-size: 1.4rem;
    padding: 10px 0px 3px;
  }

  .blog-card-description {
    line-height: 1.6;
    font-size: 1rem;
  }

  .blog-card-button {
    margin: 3px 0;
  }

  .blog-card-button {
    display: flex !important;
    margin: 3px 0;
    font-size: 0.9rem;
  }

  .blog-card-button span {
    width: 20px;
  }
}

.blog-social-icons a span::before {
  width: 17px;
  height: 17px;
}

.about-section:nth-child(even) {
  flex-direction: row;
}

.about-section:nth-child(odd) {
  flex-direction: row-reverse;
}

.about-section {
  gap: 4rem;
}

.about-section > * {
  width: 50%;
}

.team-section-wrapper {
  gap: 4%;
}

.team-section-wrapper > * {
  width: 22%;
}

.team-section-title {
  font-size: 40px;
  text-align: center;
}

.about-section-title {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.about-section-description {
  font-size: 24px;
  line-height: 2;
}

.about-team-title {
  font-size: 20px;
}

.about-team-job {
  font-size: 14px;
  color: #9d9d9d;
}

@media screen and (max-width: 768px) {
  .about-section {
    flex-direction: column !important;
  }

  .about-section > * {
    width: 100%;
  }

  .content-wrapper.about-section-wrapper {
    width: 93% !important;
  }

  .about-section-title {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  .about-section-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-section {
    gap: 3rem;
  }

  .team-section-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .team-section-wrapper::-webkit-scrollbar {
    display: none;
  }

  .team-section-wrapper > * {
    width: 29%;
  }

  .about-team-title {
    font-size: 16px;
  }

  .about-team-job {
    font-size: 12px;
  }

  .team-section-title {
    font-size: 24px;
  }
}

.categoryPage-wrapper {
  gap: 0;
}

.category-item-page {
  width: 33.3333%;
}

@media screen and (max-width: 768px) {
  .category-item-page {
    width: 100%;
  }
}

.pagination-wrapper {
  margin: 0;
}

.sub-category-name {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00000020;
  color: white;
}

.prod-col-sort {
  width: 20% !important;
}

.prod-col-5 {
  width: 20% !important;
}

.prod-col-4 {
  width: 25% !important;
}

.prod-col-3 {
  width: 33.33% !important;
}

.prod-col-2 {
  width: 50% !important;
}

@media (max-width: 768px) {
  .categories-slider.sub-category-slider {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
  }

  .prod-col-sort,
  .prod-col-5,
  .prod-col-4,
  .prod-col-3,
  .prod-col-2 {
    width: 50% !important;
  }
}

.category-row-active svg > * {
  fill: #c12159;
  stroke: #c12159;
}

.top-filter-wrapper {
  border: 1px solid #efefef;
  border-right: 0;
  border-left: 0;
  padding: 10px 0;
  margin: 0 0 20px 0;
}

.disabled > .page-link,
.page-link.disabled {
  background-color: initial !important;
  filter: opacity(0.5);
}

.side-menu {
  height: 100vh;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 30px;
  z-index: 1000;
  opacity: 0;
  transition: 0.3s;
  box-shadow: -8px -1px 17px 3px #0000000f;
}

.side-menu a {
  padding: 8px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.side-menu a:hover {
  color: var(--primary-color);
}

.open-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 10px;
  border-left: 1px solid #efefef;
  padding-left: 10px;
}

.side-menu.desktop {
  width: 20%;
  padding: 20px;
  opacity: 1;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .side-menu {
    height: auto;
  }

  .side-menu.mobile {
    width: 100%;
    height: auto;
    padding: 15px;
    opacity: 1;
    transition: 0.3s;
  }
}

.has-color {
  border-radius: 50%;
  width: 35px !important;
  height: 35px;
  border: 2px solid #fff !important;
}

.has-color.active {
  outline: 1px solid var(--primary-color);
}

.has-color span {
  display: none !important;
}

.product-page-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}

.tamara-summary-widget__container .tamara-badge {
  position: absolute;
  top: -12px;
  right: 20px;
}

.tamara-summary-widget--inline-outlined {
  position: relative;
}

.product_payments_widget {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.product_payments_widget > * {
  margin: 0px !important;
}

.styles__tabbySnippet--c10e5 {
  height: 100%;
}

.styles__containerPortal--c9f84 {
  height: 100%;
}

.product-formatted-price-old {
  font-size: 18px;
  color: #9d9d9d;
}

.short-description {
  font-size: 14px;
  line-height: 1.8;
}

span.product-formatted-price-discount {
  font-weight: 700;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0%;
  background-color: #fde0e9;
  color: #f74b81;
  padding: 8px 8.5px;
  border-radius: 4px;
  gap: 2px;
  padding: 8px 8.5px;
}

@media (max-width: 767px) {
  span.product-formatted-price-discount {
    padding: 5px 8.5px;
  }
}

.size-box #product-variants-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}
.size-box #product-variants-options ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.size-box #product-variants-options ul li.more-than-two-char span {
  margin-top: 5px;
}

.custom-field-separator {
  display: none;
}

#product-custom-user-option-fields > label {
  width: 100%;
}

#product-custom-user-option-fields .form-group {
  margin-left: 10px;
}

#product-custom-user-option-fields .form-group label,
.size-box label {
  font-weight: 500;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: 0px;
  margin-bottom: 8px;
  color: #121212;
}

#product-custom-user-option-fields .text-color-primary {
  color: #000;
}

.form-control button {
  color: #fff;
  position: absolute;
  height: 44px;
  min-width: 50px;
  left: -7px;
  top: 3px;
  background-color: var(--primary-color);
  padding: 7px;
  border-radius: 3px;
}

.input-text:has(input[data-type="DATE"]):after {
  position: absolute !important;
  content: url(./Time.svg);
  top: 8px;
  padding: 0px 0px;
  left: 8px;
  z-index: 1;
}

input[data-type="TIME"]:after {
  position: absolute;
  content: url(./TimeCircle.svg);
  background-color: #fff;
  top: 8px;
  padding: 0 20px;
  left: -8px;
}

.input-text {
  position: relative;
  overflow: hidden;
}

.loyalty-products > * {
  border: 1px solid var(--primary-color) !important;
  border-radius: 4px !important;
  gap: 5px;
  padding: 18px 12px !important;
}

.loyalty-points-products-section.rtl .loyalty-points-rewards {
  margin-left: unset !important;
  margin-right: unset !important;
  order: 1;
  gap: 3px;
  flex-direction: row-reverse;
}

.loyalty-points-products-section p {
  order: 2;
}

.loyalty-points-products-section #noCustomerCalculatedValue {
  font-weight: normal !important;
  margin-inline-start: 4px;
  margin-inline-end: -4px;
  color: var(--primary-color);
}

.loyalty-points-products-section .loyalty-points-rewards {
  text-decoration: none !important;
}

.loyalty-points-rewards-logo {
  width: 32px;
  height: 37px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="37" viewBox="0 0 32 37" fill="none"><g clip-path="url(%23clip0_1260_20706)"><path d="M18.2857 1.53335C16.8713 0.716747 15.1286 0.716747 13.7142 1.53335L2.44978 8.03686C1.03538 8.85347 0.164062 10.3626 0.164062 11.9959V25.003C0.164062 26.6362 1.03538 28.1454 2.44978 28.962L13.7142 35.4654C15.1286 36.282 16.8713 36.282 18.2857 35.4654L29.5501 28.962C30.9645 28.1454 31.8358 26.6362 31.8358 25.003V11.9959C31.8358 10.3626 30.9645 8.85347 29.5501 8.03686L18.2857 1.53335Z" fill="%23C12159"/><path d="M17.5239 2.61826C16.581 2.07386 15.4192 2.07386 14.4763 2.61826L3.0077 9.23967C2.06476 9.78406 1.48389 10.7902 1.48389 11.879V25.1218C1.48389 26.2106 2.06476 27.2167 3.0077 27.7611L14.4763 34.3825C15.4192 34.9269 16.581 34.9269 17.5239 34.3825L28.9926 27.7611C29.9355 27.2167 30.5164 26.2106 30.5164 25.1218V11.879C30.5164 10.7902 29.9355 9.78406 28.9926 9.23967L17.5239 2.61826Z" fill="%23C12159"/><path opacity="0.5" d="M15.1112 9.6084H16.889C18.5654 9.6084 19.4027 9.6084 19.9237 10.1293C20.4446 10.6502 20.4446 11.4875 20.4446 13.164V16.7195H11.5557V13.164C11.5557 11.4875 11.5557 10.6502 12.0766 10.1293C12.5974 9.6084 13.4347 9.6084 15.1112 9.6084Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15.9998 27.3853C14.1138 27.3853 12.3051 26.6361 10.9715 25.3025C9.63785 23.969 8.88867 22.1602 8.88867 20.2742C8.88867 18.3882 9.63785 16.5795 10.9715 15.2459C12.3051 13.9123 14.1138 13.1631 15.9998 13.1631C17.8858 13.1631 19.6945 13.9123 21.0281 15.2459C22.3617 16.5795 23.1109 18.3882 23.1109 20.2742C23.1109 22.1602 22.3617 23.969 21.0281 25.3025C19.6945 26.6361 17.8858 27.3853 15.9998 27.3853ZM15.9998 17.6075C16.2523 17.6075 16.4211 17.9098 16.7589 18.5168L16.846 18.6733C16.942 18.8458 16.99 18.9311 17.0647 18.988C17.1403 19.0448 17.2336 19.0662 17.4203 19.108L17.5891 19.1471C18.2451 19.2955 18.5731 19.3693 18.6513 19.62C18.7296 19.8715 18.5056 20.1328 18.0584 20.6555L17.9429 20.7907C17.8158 20.9391 17.7518 21.0128 17.7233 21.1053C17.6949 21.1978 17.7047 21.2964 17.7233 21.4947L17.7411 21.6751C17.8087 22.3728 17.8424 22.7222 17.6389 22.8768C17.4344 23.0315 17.1269 22.8902 16.5127 22.6075L16.3544 22.5347C16.1793 22.4547 16.0923 22.4138 15.9998 22.4138C15.9073 22.4138 15.8203 22.4547 15.6451 22.5347L15.4869 22.6075C14.8727 22.8911 14.5651 23.0315 14.3607 22.8768C14.1563 22.7222 14.1909 22.3728 14.2584 21.6751L14.2763 21.4947C14.2949 21.2964 14.3047 21.1978 14.2763 21.1053C14.2478 21.0138 14.1838 20.9391 14.0567 20.7907L13.9411 20.6555C13.494 20.1328 13.27 19.8715 13.3483 19.62C13.4264 19.3693 13.7544 19.2955 14.4104 19.1471L14.5793 19.108C14.766 19.0662 14.8593 19.0458 14.9349 18.988C15.0096 18.9311 15.0576 18.8458 15.1536 18.6733L15.2407 18.5168C15.5784 17.9098 15.7473 17.6075 15.9998 17.6075Z" fill="white"/></g><defs><clipPath id="clip0_1260_20706"><rect width="32" height="36.5714" fill="white" transform="translate(0 0.213867)"/></clipPath></defs></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.offcanvas {
  z-index: 9999;
}

svg.loyalty-points-rewards-logo > * {
  display: none;
}

.quantity-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
}

.quantity-counter button {
  width: 20px;
  height: 20px;
  font-size: 23px;
  display: flex;
  align-items: center;
  padding-top: 5px;
  justify-content: center;
}

#minus-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-quantity {
  border: 1px solid var(--primary-color);
  width: 27px;
  height: 29px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  appearance: none;
  padding-top: 4px;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity:focus {
  outline: none;
}

.products-details-page .lg-thumbs img,
.carousel-img {
  border-radius: 4px;
}

.btnrating.active svg path {
  fill: #ffbb0e;
}

.review-name {
  font-size: 16px;
  font-weight: bold;
}

.dropdownContent {
  display: none;
}

.dropdownButton img {
  transition: transform 0.2s ease;
}

.dropdownButton img.rotated {
  transform: rotate(180deg);
}

.more-options-title {
  border-color: #eeeeee;
}

.show-dropdown-items {
  display: block;
}

.icon-star1:before {
  content: url("./star-active.svg");
  display: inline-block;
  width: 18px;
  height: 17px;
}

.icon-half-star:before {
  content: url("./star-half.svg");
  display: inline-block;
  width: 18px;
  height: 17px;
}

.product-card-rating .icon-star1.deactive:before {
  content: url("./star-disabled.svg");
  display: inline-block;
  width: 18px;
  height: 17px;
}

.product-options-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hide-dropdown-items {
  display: none !important;
}

.product-label span {
  background-color: #18223e !important;
  border-radius: 4px;
  color: white !important;
}

.product-label span svg {
  display: none;
}

.product-label {
  margin-inline-start: 8px;
}

.custom-label {
  background-color: var(--label-color, var(--primary-color)) !important;
  color: var(--label-text-color, #fff) !important;
  padding: 3px 8px;
  border-radius: 8px;
}

.custom-label.product-label span {
  background-color: var(--label-color, var(--primary-color)) !important;
  color: var(--label-text-color, #fff) !important;
}

#product-images {
  padding: 0 9px;
}

@media screen and (max-width: 768px) {
  .product-page-title {
    font-size: 24px;
  }

  .product-formatted-price-old {
    font-size: 12px;
    font-weight: 500;
  }

  .theme-text-primary {
    font-size: 16px;
  }

  .loyalty-points-products-section {
    font-size: 0.9rem !important;
  }

  .product_payments_widget {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .breadcrumb-item,
  .breadcrumb-item a {
    font-size: 12px;
    font-weight: 400;
    color: #0a0c10;
  }

  .product-options-wrapper {
    grid-template-columns: 1fr;
  }

  /* #related-products {
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 10px;
    margin: 0 10px;
    overflow-x: auto;
    white-space: nowrap;
  }

  #related-products > * {
    flex: 0 0 45%;
    max-width: 45%;
    box-sizing: border-box;
  } */
}

.attribute-group {
  border: none !important;
}

.product-attributes {
  min-width: 100%;
  padding-inline-end: 0 !important;
  width: 100%;
}

.product-attributes {
  min-width: 100% !important;
  padding-inline-end: 0 !important;
  width: 100% !important;
}

.btn-primary {
  color: #fff;
}

.cart-full-width-button {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}

.free-shipping-rule-progress {
  background: var(--primary-color);
  border-radius: 5px;
  height: 8px;
  width: 100%;
}

.discount-progress-linear:before {
  content: "";
  background-color: #ddd;
  width: 100%;
  position: absolute;
  height: 8px;
  z-index: -1;
  border-radius: 5px;
}

.discount-progress-linear {
  position: relative;
}

.free-shipping-rule-progress:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Crect x='1.26331' y='0.5' width='23' height='23' rx='11.5' fill='white'/%3E%3Crect x='1.26331' y='0.5' width='23' height='23' rx='11.5' stroke='%23C12159'/%3E%3Cpath d='M17.7008 15.4375C17.7008 15.8519 17.5362 16.2493 17.2432 16.5424C16.9501 16.8354 16.5527 17 16.1383 17C15.7239 17 15.3265 16.8354 15.0335 16.5424C14.7404 16.2493 14.5758 15.8519 14.5758 15.4375C14.5758 15.0231 14.7404 14.6257 15.0335 14.3326C15.3265 14.0396 15.7239 13.875 16.1383 13.875C16.5527 13.875 16.9501 14.0396 17.2432 14.3326C17.5362 14.6257 17.7008 15.0231 17.7008 15.4375ZM11.4508 15.4375C11.4508 15.8519 11.2862 16.2493 10.9932 16.5424C10.7001 16.8354 10.3027 17 9.88831 17C9.4739 17 9.07648 16.8354 8.78345 16.5424C8.49043 16.2493 8.32581 15.8519 8.32581 15.4375C8.32581 15.0231 8.49043 14.6257 8.78345 14.3326C9.07648 14.0396 9.4739 13.875 9.88831 13.875C10.3027 13.875 10.7001 14.0396 10.9932 14.3326C11.2862 14.6257 11.4508 15.0231 11.4508 15.4375Z' stroke='%23595959' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.5758 15.4375H11.4508M6.76331 7H13.0133C13.8971 7 14.3389 7 14.6133 7.275C14.8883 7.54875 14.8883 7.99063 14.8883 8.875V14.1875M15.2008 8.5625H16.3264C16.8452 8.5625 17.1046 8.5625 17.3196 8.68438C17.5346 8.80563 17.6677 9.02812 17.9346 9.47312L18.9964 11.2419C19.1289 11.4631 19.1952 11.5744 19.2296 11.6969C19.2633 11.82 19.2633 11.9488 19.2633 12.2069V13.875C19.2633 14.4594 19.2633 14.7513 19.1377 14.9688C19.0554 15.1113 18.9371 15.2296 18.7946 15.3119C18.5771 15.4375 18.2852 15.4375 17.7008 15.4375M6.76331 12.625V13.875C6.76331 14.4594 6.76331 14.7513 6.88893 14.9688C6.97121 15.1113 7.08955 15.2296 7.23206 15.3119C7.44956 15.4375 7.74143 15.4375 8.32581 15.4375M6.76331 8.875H10.5133M6.76331 10.75H9.26331' stroke='%23595959' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  position: absolute;
  height: 20px;
  width: 20px;
  left: -7px;
  z-index: 1;
  background-repeat: no-repeat;
}

.free-shipping-rule-progress {
  position: relative;
  overflow: visible;
}

.loyalty-points-section {
  border: 1px solid #eeeeeeee !important;
  margin-top: 3rem !important;
  border-radius: 4px !important;
  padding: 10px !important;
}

.loyalty-points__actions_section .flex-shrink-0 {
  width: fit-content !important;
  color: inherit !important;
}

#sideCartMenu.open {
  right: 0;
}

@media (max-width: 768px) {
  #sideCartMenu {
    width: 90%;
  }
}

#headingProductsCart {
  cursor: pointer;
}
.badge-name {
  margin: 0 !important;
  height: 25px !important;
}

/* Main slider image zoom animation */
[section-id]
  .main-slider
  .slider-item
  .slider-image-content
  img[class*="slider-image-"] {
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[section-id]
  .main-slider
  .slick-current
  .slider-image-content
  img[class*="slider-image-"] {
  transform: scale(1);
}

/* Main slider text hierarchy */
.slider-label {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slider-subtitle,
.slider-title {
  font-weight: 600;
}

@media (min-width: 769px) {
  .slider-subtitle,
  .slider-title {
    font-size: 48px;
    line-height: 1.1;
  }
}

/* Main slider text fade-up animation */
[section-id] .slider-text-wrapper > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[section-id] .main-slider .slick-current .slider-text-wrapper > * {
  opacity: 1;
  transform: translateY(0);
}

[section-id] .main-slider .slick-current .slider-text-wrapper > *:nth-child(2) {
  transition-delay: 0.05s;
}

[section-id] .main-slider .slick-current .slider-text-wrapper > *:nth-child(3) {
  transition-delay: 0.1s;
}

[section-id] .main-slider .slick-current .slider-text-wrapper > *:nth-child(4) {
  transition-delay: 0.15s;
}
