.shop-main {
  .shop-filters {
    background: #fff;
    border: 1px solid var(--el-border);
    border-radius: 0.5rem;
    padding: 0.5rem;
    align-self: flex-start;
  }
  .shop-content {
    .shop-header {
      padding: 0 0.5rem 0.5rem 0.5rem;
    }
    .shop-grid {
      display: grid;
      gap: 1rem;
      align-items: stretch;
    }
    .shop-grid.view-grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    .shop-grid.view-grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    .shop-grid.view-grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .shop-grid.view-list {
      grid-template-columns: 1fr;
    }
    .el-product {
      height: 100%;
    }
  }
  .shop-footer {
    margin-top: 1rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
}

@media (max-width: 1199.98px) {
  .shop-main .shop-content .shop-grid.view-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991.98px) {
  .shop-main .shop-content .shop-grid.view-grid-4,
  .shop-main .shop-content .shop-grid.view-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-main .shop-filters {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .shop-main .shop-content .shop-grid.view-grid-4,
  .shop-main .shop-content .shop-grid.view-grid-3,
  .shop-main .shop-content .shop-grid.view-grid-2 {
    grid-template-columns: 1fr;
  }
}

.text-line-through {
  text-decoration: line-through;
  font-weight: normal;
}

#product-gallery {
  width: 100%;

  .swiper {
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .swiper-slide {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border: 1px solid #006394;
      background-size: cover;
      background-position: center;
    }
  }

  .mySwiper2 {
    margin-bottom: 0.5rem;

    .swiper-slide img {
      display: block;
    }

    .swiper-pagination-bullet {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 0.25rem;
      transition: all 0.2s ease-in-out;
    }

    .swiper-pagination-bullet-active {
      width: 1.25rem;
    }
  }

  .mySwiper {
    height: auto;

    .swiper-wrapper {
      height: auto;

      .swiper-slide {
        opacity: 0.4;
        transition: all 0.2s ease-in-out;
        border: 1px solid transparent;
        height: auto;
      }
    }
  }

  .mySwiper .swiper-slide-thumb-active {
    opacity: 1 !important;
    border: 1px solid #006394 !important;
  }
}
