/* Main slider styles */
.pas-container {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.pas-products-slider {
  display: block;
  position: relative;
  width: 100%;
}

.pas-slider-wrapper {
  --pas-slides-per-view: 3;
  --pas-slide-width: calc(100% / var(--pas-slides-per-view));
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.pas-slider-wrapper.pas-is-dragging {
  cursor: grabbing;
}

.pas-slider-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  direction: ltr;
  will-change: transform;
  gap: 8px;
  padding-bottom: 8px;
}

.pas-product {
  flex: 0 0 var(--pas-slide-width);
  width: var(--pas-slide-width);
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #e9e9eb;
  border-radius: 8px;
}

.pas-product-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.pas-product-image {
  border-radius: 4px;
}

.pas-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  color: #2b8c51;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow:
    inset 0 -1em 3em rgb(82 82 82 / 0%), 0 0 0 2px white, 0.3em 0.3em 1em rgba(82, 82, 82, 0.6);
}

.pas-skeleton-loading-container {
  overflow: hidden;
}

.pas-product-price {
  text-align: left;
  font-size: small;
  border: none;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  direction: rtl;
  color: #000;
}

.pas-product-button {
  border-radius: 8px;
  padding: 8px;
  color: #fff;
  font-weight: 600;
  background-image: linear-gradient(268deg, #19b16a, #2b8c51);
  display: block;
  text-align: center !important;
  margin-top: 16px;
}

.pas-slider-control.pas-prev {
  right: auto;
  left: -16px;
}

.pas-slider-control.pas-next {
  left: auto;
  right: -16px;
}

.pas-product-title {
  font-size: small;
  line-height: 1.25rem;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  direction: rtl;
  color: #98989f;
  font-weight: 600;
  text-align: center;
}

.pas-product-title ::after,
.pas-product-title ::before {
  content: none;
  display: none;
}

.pas-product a {
  text-decoration: none !important;
  text-align: right;
  user-select: none;
  -webkit-user-drag: none;
}

.pas-product img {
  user-select: none;
  -webkit-user-drag: none;
}

/* Mobile styles */
@media (max-width: 767px) {
  .pas-slider-wrapper {
    --pas-slides-per-view: 1;
    --pas-slide-width: 260px;
  }

  .pas-slider-track {
    gap: 10px;
  }

  .pas-product {
    flex: 0 0 260px;
    width: 260px;
  }

  .pas-slider-control {
    display: none !important;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .pas-slider-wrapper {
    --pas-slides-per-view: 2;
  }
}

.mce-window .mce-container-body {
  padding: 10px;
}

.mce-window .mce-textbox {
  width: 100%;
  margin-bottom: 10px;
}