@charset "UTF-8";

.menu {
  position: unset !important;
}

.menu .change-color {
  filter: brightness(0.2) !important;
}

.menu a {
  color: var(--color-dark) !important;
}

.menu .light {
  color: var(--color-dark) !important;
}

.menu .drop-box-mega a {
  color: rgba(var(--color-light), 1) !important;
}

.menu li {
  color: var(--color-dark) !important;
}

.menu .top {
  border-bottom-color: #ccc !important;
}

.menu .drop-box {
  background-color: rgba(var(--color-light), 1) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.menu .drop-box-in {
  background-color: rgba(var(--color-light), 1) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.menu .drop-box-inn {
  background-color: rgba(var(--color-light), 1) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.hero {
  background-color: var(--color-body);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero .modal-video {
  background: rgba(0, 0, 0, 0.6);
}

.hero .carousel-item img {
  height: 350px;
  object-fit: cover;
}

.hero .over-hero {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.48) 100%);
  z-index: 1;
  padding-bottom: 1rem;
}

.hero .over-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(var(--color-light), 1);
}

.hero .over-hero .breadcrumb-item {
  font-size: 12px;
}

.hero .over-hero .img-header-inner img {
  border-radius: var(--service-img-radius);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.hero .over-hero .hero-content h1 {
  font-size: 50px;
}

.hero .over-hero .hero-content p {
  font-size: 18px;
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.banner-scrollable {
  background-color: #e84325;
}

.banner-scrollable .scroll-text {
  width: max-content;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-animation: my-animation 50s linear infinite;
  -webkit-animation: my-animation 50s linear infinite;
  animation: my-animation 50s linear infinite;
}

.banner-scrollable .scroll-text li {
  font-family: sans-serif !important;
  list-style: inherit !important;
  margin-left: 50px;
  text-transform: uppercase;
  font-size: 42px;
  color: var(--color-dark);
}

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
  }

  to {
    -moz-transform: translateX(-100%);
  }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(-20%);
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }

  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes my-animation2 {
  from {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes my-animation3 {
  from {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -moz-transform: translateX(70%);
    -webkit-transform: translateX(70%);
    transform: translateX(70%);
  }
}

.list-product {
  position: relative;
  /* clears the ‘X’ from Internet Explorer */
  /* clears the ‘X’ from Chrome */
}

.list-product .swiper {
  height: unset;
}

.list-product .swiper-slide {
  background: transparent;
}

.list-product .cat-card {
  width: 100%;
  position: relative;
  border: 1px solid rgb(206 208 208);
  background-color: rgba(var(--color-light), 1);
  /* box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1); */
  border-radius: var(--theme-radius-button);
  padding: 9px 4px;
}

.list-product .cat-card .name-cat {
  /* height: 3.75rem; */
  display: flex;
  flex-direction: column;
}

.list-product .cat-card .font-md {
  min-height: 33px;
  align-content: center;
  color: rgb(168, 168, 168);
  display: block;

  font-size: 12px;
}

.list-product .cat-card .font-num-r {
  font-size: 12px;
}

.list-product .cat-card .img-cat {
  border-radius: 50%;
  margin: auto;
  overflow: hidden;
  background: #e84325;
  width: 120px;
  height: 120px;
  max-width: 100%;
}

.list-product .cat-card .img-cat img {
  width: 100%;
}

.list-product .cat-card .arrow-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e84325;
  filter: contrast(0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-product .cat-card .arrow-box img {
  width: 20px;
  height: 20px;
}

.list-product::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 500px;
  width: 300px;
  height: 300px;
  background: var(--color-two);
  filter: blur(120px) opacity(0.4);
  z-index: -2;
}

.list-product::after {
  content: "";
  position: absolute;
  right: 500px;
  margin: auto;
  top: 200px;
  width: 500px;
  height: 500px;
  background: #e84325;
  filter: blur(120px) opacity(0.4);
  z-index: -2;
}

.list-product .sidebar {
  position: sticky;
  top: 1rem;
}

.list-product .btn-submit-filter:hover {
  /* border-color: #e84325; */
  border-color: #b5cad0;
}

.list-product .categories li {
  transition: 0.5s;
}

.list-product .categories li:hover {
  margin-right: 5px;
}

.list-product .color-filter {
  position: relative;
  width: max-content;
  text-align: center;
  padding-right: 0;
}

.list-product .color-filter p {
  margin-top: -4px !important;
}

.list-product .color-filter input {
  position: absolute;
  inset: 0;
  margin-right: 0;
  width: 22px;
  height: 24px;
  background-position: top;
  margin: 0;
  z-index: 1;
  background-color: transparent !important;
  filter: brightness(0);
  border: 0;
  cursor: pointer;
  margin: auto;
  top: -20px;
}

.list-product .color-filter input.black-filter {
  filter: unset;
}

.list-product .color-filter label {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  position: relative;
  border: 1px solid #ddd;
}

.list-product .sort li {
  margin-bottom: 0 !important;
}

.list-product .sort .form-check {
  position: relative;
  padding-right: 0;
}

.list-product .sort .form-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  margin-right: 0;
  cursor: pointer;
}

.list-product .sort .form-check input:checked+label {
  background-color: none;
  color: black;
  font-weight: bolder;
  /* background: var(--color-dark); */
  /* border-color: var(--color-dark); */
  /* color: rgba(var(--color-light), 1); */
}

.list-product .sort .form-check label {
  border-radius: 8px;
  /* border: 1px solid rgba(37, 37, 37, 0.2); */
  background: transparent;
  color: #444;
  padding: 2px 10px;
  cursor: pointer;
  font-size: 12px;
}

.list-product input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.list-product input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.list-product input[type=search]::-webkit-search-decoration,
.list-product input[type=search]::-webkit-search-cancel-button,
.list-product input[type=search]::-webkit-search-results-button,
.list-product input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.list-product .search input {
  border-radius: 10px;
  box-shadow: none;
  padding-left: 3.25rem;
  font-size: 14px;
}

.list-product .search input:focus {
  border-color: #dee2e6;
}

.list-product .search input::placeholder {
  color: #aaa !important;
}

.list-product .search .spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.1em;
  border-style: solid;
  border-color: currentcolor currentcolor currentcolor transparent;
  border-image: none;
  position: absolute;
  z-index: 1;
  left: 33px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.list-product .filtered li {
  /* background: color-mix(in srgb, var(--color-two) 30%, transparent); */
  background: #b5cad0;
  padding: 4px 6px;
  border-radius: 6px;
}

.list-product .sort-form li {
  background-color: rgba(var(--color-light), 1);
  padding: 6px;
  border-radius: var(--theme-radius-button);
  margin-bottom: 0.5rem;
  /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1); */
}

.list-product .sort-form li:last-child {
  margin-bottom: 0;
}

.list-product .sort-form li input {
  border: 1px solid black !important;
  background-color: white !important;
  box-shadow: none;
  outline: 0;
}

.list-product .sort-form li input:checked {
  background-color: #7f9398;
  /* background-color: var(--color-dark); */
  border-color: var(--color-dark);
}

/* .list-product li {
  margin-bottom: 0.5rem;
} */

.list-product li:last-child {
  margin-bottom: 0;
}

.list-product li input {
  box-shadow: none !important;
  outline: 0;
  /* border: none !important; */
  /* border-color: #aaa !important; */
}

.list-product li input:checked {
  color: black;
  font-weight: 900;
  /* background-color: var(--color-dark);
  border-color: var(--color-dark); */
}

.list-product .filter .accordion-item {
  margin-bottom: 0.75rem;
  border-bottom: 0;
  border-radius: var(--theme-radius-button);
  overflow: hidden;
}

.list-product .filter .accordion-item:last-child {
  margin-bottom: 0;
}

.list-product .filter .accordion-item .accordion-button:not(.collapsed) {
  color: #333;
  /* color: var(--text-primery); */
  /* background: #e84325; */
  background: white;
}

.list-product .filter .accordion-item .accordion-button {
  box-shadow: none;
}

.list-product .filter .accordion-item .accordion-button.collapsed {
  color: var(--text-secondary) !important;
}

.list-product .filter .accordion-item .accordion-button::after {
  filter: brightness(0);
}

.list-product .filter .ui-slider-handle {
  border-radius: 50%;
  border: 0;
  /* background: #e84325; */
  background: #7f9398;
}

.list-product .filter .ui-slider-handle:focus-visible {
  border: 0;
  outline: 0;
}

.list-product .lists {
  background-color: rgba(var(--color-light), 1);
  border-radius: 20px;
  overflow: hidden;
}

.list-product .product-card {
  border: 1px solid #e5e5e5;
  position: relative;
  border-radius: var(--product-radius);
  overflow: hidden;
}

.list-product .product-card .off {
  position: absolute;
  background-image: unset !important;
  top: 0px;
  right: 20px;
  color: var(--text-primery);
  width: max-content;
  font-size: 13px;
  text-align: center;
}

.list-product .product-card .off svg {
  scale: 1.2;
}

.list-product .product-card .off path {
  fill: #e84325;
}

.list-product .product-card .off span {
  position: absolute;
  inset: 0;
  color: var(--text-primery);
  top: 6px;
  font-family: pelak-num;
}

.list-product .product-card .name {
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-product .product-card .name p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.list-product .product-card .price {
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.list-product .product-card .price p {
  color: #67D1A4;
}

.list-product .product-card .price .old-price p {
  color: #555;
  opacity: 0.4;
  width: max-content;
  position: relative;
  font-weight: bold;
}

.list-product .product-card .price .old-price p::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #555;
}

.list-product .product-card .colors {
  height: 1rem;
  overflow: hidden;
}

.list-product .product-card .colors li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tag-item {
  background-color: rgba(var(--color-light), 1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: var(--product-radius);
  padding: 10px 30px;
  border: 1px solid rgba(var(--color-light), 1);
  color: var(--color-dark);
  transition: 0.5s;
  white-space: nowrap;
}

.tag-item:hover {
  background-color: transparent;
  border: 1px solid var(--color-dark);
}

.offer-card .product-card {
  background: rgba(var(--color-light), 1);
  border-radius: 20px;
  overflow: hidden;
  padding: 35px 15px 20px 15px;
  position: relative;
}

.offer-card .product-card img {
  width: 85%;
  display: flex;
  margin: auto;
}

.offer-card .product-card .off {
  position: absolute;
  background-image: unset !important;
  top: 0px;
  right: 20px;
  color: var(--text-primery);
  width: max-content;
  font-size: 13px;
  text-align: center;
}

.offer-card .product-card .off svg {
  scale: 1.2;
}

.offer-card .product-card .off path {
  fill: #e84325;
}

.offer-card .product-card .off span {
  position: absolute;
  inset: 0;
  color: var(--text-primery);
  top: 6px;
  font-family: pelak-num;
}

.offer-card .product-card .name p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.offer-card .product-card .price {
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.offer-card .product-card .price p {
  color: #67D1A4;
  font-size: 16px;
}

.offer-card .product-card .price .old-price p {
  color: #555;
  opacity: 0.4;
  width: max-content;
  position: relative;
  font-weight: bold;
}

.offer-card .product-card .price .old-price p::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #555;
}

.offer-card .product-card .countdown {
  gap: 4px;
}

.offer-card .product-card .countdown li {
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(var(--color-light), 1);
  border-bottom: 2px solid var(--color-two);
  width: 3rem;
  border-radius: 6px;
  font-size: 8px;
  font-family: pelak-num;
  height: 2rem;
  align-content: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.offer-card .product-card .countdown li span {
  font-size: 14px;
}

.seo-box {
  background: linear-gradient(180deg, rgba(var(--color-light), 1) 34.81%, rgba(255, 255, 255, 0) 85.84%);
  border-radius: var(--about-back-radius);
  margin-top: 50px !important;
  margin: 0 50px;
  padding: 50px 0;
  position: relative;
}

.seo-box .box .button {
  transition: unset !important;
  margin: auto;
  width: max-content;
  display: flex;
}

.seo-box .box input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.seo-box .box .content {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}

.seo-box .box .content img {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  margin: auto;
  display: block;
}

.seo-box .box .content .table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-bg-type: var(--bg-table);
}

.seo-box .box .content table {
  width: 100% !important;
  text-align: center;
}

.seo-box .box .content table * {
  align-content: center;
}

.seo-box .box .content table p {
  margin-bottom: 0 !important;
}

.seo-box .box .content p {
  font-family: pelak-rgular;
  margin-bottom: 8px;
}

.seo-box .box .content li {
  font-family: pelak-rgular;
  list-style: inherit;
}

.seo-box .box .p {
  display: block;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: inherit;
  word-wrap: break-word;
  transition: max-height 0.5s ease;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-height: 25rem;
  -webkit-box-orient: vertical;
  line-height: 1.75rem;
  font-size: 0.9rem;
  position: relative;
}

.seo-box .box .p.after::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 250px;
  background: linear-gradient(0deg, var(--color-body) 12%, rgba(255, 255, 255, 0) 100%);
}

.seo-box .box input:checked+.p {
  -webkit-line-clamp: unset;
  max-height: max-content !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: auto;
  -webkit-box-orient: vertical;
}

.seo-box .box input:checked+.p::after {
  content: unset !important;
}

.seo-box .box input:checked~.button {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}

@media (min-width: 1600px) {
  .seo-box .content img {
    max-width: 70% !important;
    max-height: max-content !important;
    margin: auto !important;
    display: block;
  }
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .hero .over-hero {
    padding-top: 10rem;
  }

  .hero .over-hero .img-header-inner img {
    border-radius: var(--about-img-one);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }

  .hero .over-hero .hero-content p {
    font-size: 16px;
  }

  .seo-box .content img {
    max-width: 80% !important;
    max-height: max-content !important;
    margin: auto !important;
    display: block;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .hero .img-header-inner img {
    border-radius: var(--about-img-one) !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }

  .hero .hero-content p {
    font-size: 16px !important;
  }

  .seo-box .content img {
    max-width: 80% !important;
    max-height: max-content !important;
    margin: auto !important;
    display: block;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .hero .img-header-inner img {
    border-radius: var(--about-img-one) !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }

  .hero .hero-content p {
    font-size: 16px !important;
  }

  .hero .hero-content .anchors a {
    font-size: 14px;
  }

  .seo-box .content img {
    width: 70% !important;
    height: auto !important;
    margin: auto !important;
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .sort {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .sort p {
    display: none !important;
  }

  .sort ul {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100%;
  }

  .sort ul li {
    width: 100%;
  }

  .sort ul li .form-check label {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .filter .accordion-item {
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1) !important; */
  }

  .hero .carousel-item img {
    height: 330px;
    object-fit: cover;
    object-position: center;
  }

  .hero .img-header-inner {
    margin-top: 2rem;
  }

  .hero .over-hero {
    padding-bottom: 1rem;
  }

  .hero .over-hero .hero-content h1 {
    font-size: 40px;
  }

  .hero .over-hero .hero-content p {
    font-size: 16px;
  }

  .seo-box {
    margin: 0 20px;
    padding: 30px;
    border-radius: var(--about-img-one);
  }

  .seo-box .content img {
    width: 80% !important;
    height: auto !important;
    margin: auto !important;
    display: block;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .sort {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .sort p {
    display: none !important;
  }

  .sort ul {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100%;
  }

  .sort ul li {
    width: 100%;
  }

  .sort ul li .form-check label {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .filter .accordion-item {
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1) !important; */
  }

  .hero .carousel-item img {
    height: 280px;
    object-fit: cover;
    object-position: center;
  }

  .hero .img-header-inner {
    margin-top: 2rem;
  }

  .hero .over-hero {
    padding-bottom: 1rem;
  }

  .hero .over-hero .hero-content h1 {
    font-size: 40px;
  }

  .hero .over-hero .hero-content p {
    font-size: 16px;
  }

  .hero .over-hero .video {
    width: 100%;
    margin-right: auto;
    height: auto;
  }

  .seo-box {
    margin: 0 0;
    padding: 30px;
    border-radius: var(--about-img-one);
  }

  .seo-box .content img {
    width: 90% !important;
    height: auto !important;
    margin: auto !important;
    display: block;
  }
}

@media (max-width: 576px) {
  .list-product .product-card .name {
    height: unset !important;
    display: block !important;
  }

  .list-product::after {
    width: 300px !important;
    right: 0 !important;
  }

  .list-product::before {
    left: 0 !important;
  }

  .product-card img {
    height: 100%;
  }

  .product-card .off {
    right: unset !important;
    left: 10px;
    padding: 4px 4px 12px 4px !important;
  }

  .product-card .name {
    padding-left: 1rem;
  }

  .product-card .name p {
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
  }

  .tags ul {
    gap: 4% !important;
  }

  .tags li {
    width: 46%;
  }

  .tags li a {
    width: 100%;
    display: block;
    padding: 10px 10px !important;
  }

  .sort {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .sort p {
    display: none !important;
  }

  .sort ul {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100%;
  }

  .sort ul li {
    width: 100%;
  }

  .sort ul li .form-check label {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }

  .filter .accordion-item {
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1) !important; */
  }

  .cat-card .name-cat {
    /* height: 3rem !important; */
  }

  .cat-card .name-cat p {
    font-size: 13px !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .hero .carousel-item img {
    height: 250px;
    object-fit: cover;
    object-position: center;
  }

  .hero .over-hero {
    padding-bottom: 1rem;
  }

  .hero .over-hero .img-header-inner {
    margin-top: 0.5rem;
  }

  .hero .over-hero .img-header-inner img {
    border-radius: var(--about-img-one) !important;
  }

  .hero .over-hero .hero-content h1 {
    font-size: 25px;
    line-height: 1.5;
  }

  .hero .over-hero .hero-content p {
    font-size: 14px;
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .hero .over-hero .video {
    width: 100%;
    margin-right: auto;
    height: auto;
  }

  .hero .over-hero .video .btn-video {
    position: unset;
    width: 100%;
  }

  .hero .anchors {
    flex-wrap: wrap;
  }

  .hero .anchors a {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: 0 !important;
    margin-bottom: 10px !important;
  }

  .seo-box {
    margin: 0 0;
    padding: 30px 10px;
    border-radius: var(--about-img-one);
  }

  .seo-box .content img {
    width: 100% !important;
    height: auto !important;
  }
}

.product-card img {
  height: auto !important;
}

.list-product .modal {
  z-index: 2000000003;
}

.offcanvas {
  z-index: 2000000003 !important;
}

.logo-menu-mobile {
  height: auto !important;
}

.search-products {
  z-index: unset !important;
  position: relative;
}

.swiper-categories {
  position: unset;
}

.swiper-categories .swiper-button-next {
  top: 59%;
  height: 27px;
  left: -32px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 0.1);
}

.swiper-categories .swiper-button-prev {
  top: 59%;
  height: 27px;
  right: -32px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.swiper-categories .swiper-button-prev::after,
.swiper-categories .swiper-button-next::after {
  font-size: 11px;
  font-weight: bolder;
  color: #333;

}

.sidebar .filter-title {
  border-bottom: 1px solid #333;
}

.sidebar-container {
  border-radius: 10px;
}

.list-product .filter .accordion-item .accordion-button::after {
  background-size: 13px;
}

.sort-form .form-switch .form-check-input {
  background-image: url("/assets/site/images/shop/circle.svg");
}
.sort-form .form-switch .form-check-input:checked {
  background-image: url("/assets/site/images/shop/circle.svg");
}

/* پنهان کردن چک‌باکس اصلی */
/* .form-check-input-test {
    display: none;
} */
.form-check-input:focus {
  border-color: #fcbcb2;
  border: 2 px solid #fcbcb2;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #414A5B;
  border-color: #ffffff;
}

.form-check-input{
  border: 1px solid #b5cad0;
}

 .filter-btn {
        cursor: pointer;
        user-select: none;
    }

    .filter-indicator {
        width: 36px;
        height: 20px;
        border-radius: 20px;
        background: #dee2e6;
        position: relative;
        transition: all 0.2s ease;
    }

    .filter-indicator::after {
        content: "";
        width: 16px;
        height: 16px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: all 0.2s ease;
    }

    .filter-btn.active .filter-indicator {
        background: #212529;
    }

    .filter-btn.active .filter-indicator::after {
        left: 18px;
    } 
    .filter-btn-2{
        cursor: pointer;
        user-select: none;
    }

    .filter-indicator-2 {
        width: 36px;
        height: 20px;
        border-radius: 20px;
        background: #dee2e6;
        position: relative;
        transition: all 0.2s ease;
    }

    .filter-indicator-2::after {
        content: "";
        width: 16px;
        height: 16px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: all 0.2s ease;
    }

    .filter-btn-2.active .filter-indicator-2{
        background: #212529;
    }

    .filter-btn-2.active .filter-indicator-2::after {
        left: 18px;
    }
/*# sourceMappingURL=list.css.map */