.enhanced-features .grid>.items-center {
    border-width: 1px;
}


#app.product-card-cover:not(.product-ratio-unset) .product-block__thumb img {
    border-width: 1px;
    border-radius: 20px;
    border-color: #18247b;
}
/* ===============================
   Global Professional Product Sliders
================================ */

/* Section */
.s-products-slider-wrapper,
.s-products-slider-slider,
.s-block:has(.s-products-slider-wrapper) {
  position: relative;
}

.s-block:has(.s-products-slider-wrapper) {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Title */
.s-products-slider-slider .s-slider-block__title {
  margin-bottom: 22px;
  align-items: center;
}

.s-products-slider-slider .s-slider-block__title h2 {
  position: relative;
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
}

.s-products-slider-slider .s-slider-block__title h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary, #0f766e), transparent);
}

/* Slider spacing */
.s-products-slider-slider .swiper {
  overflow: visible;
}

.s-products-slider-slider .swiper-wrapper {
  align-items: stretch;
}

.s-products-slider-card {
  height: auto;
  padding-bottom: 10px;
}

/* Card */
.s-products-slider-card custom-salla-product-card,
custom-salla-product-card.enhanced-product-card,
.enhanced-product-card.product-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f8fafc 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.s-products-slider-card custom-salla-product-card:hover,
custom-salla-product-card.enhanced-product-card:hover,
.enhanced-product-card.product-block:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--color-primary, #0f766e) 35%, transparent);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

/* Image area */
.enhanced-product-card .product-block__thumb {
  min-height: 235px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.1), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.enhanced-product-card .thumb-wrapper {
  height: 215px;
  align-items: center;
  justify-content: center;
}

.enhanced-product-card .thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.enhanced-product-card:hover .thumb-wrapper img {
  transform: scale(1.07);
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.12));
}

/* Quick preview */
.enhanced-product-card .showPreviewBtn {
  top: 14px;
  inset-inline-end: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  cursor: pointer;
  z-index: 8;
}

.enhanced-product-card:hover .showPreviewBtn {
  opacity: 1;
  transform: translateY(0);
}

.enhanced-product-card .showPreviewBtn:hover {
  color: #fff;
  background: var(--color-primary, #0f766e);
}

/* Content */
.enhanced-product-card .product-block-outer {
  flex: 1;
  display: flex;
}

.enhanced-product-card .product-block__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 16px;
}

.enhanced-product-card .product-title {
  display: block;
  min-height: 62px;
  padding-inline: 0 !important;
}

.enhanced-product-card .title,
.enhanced-product-card .title--primary {
  margin: 0 !important;
  color: #111827;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price */
.enhanced-product-card .price-wrapper {
  position: relative;
  min-height: 58px;
  margin: 12px 0 14px !important;
  padding-inline: 0 !important;
}

.enhanced-product-card .price-wrapper > span {
  color: var(--color-primary, #0f766e) !important;
  font-size: 19px !important;
  font-weight: 900 !important;
}

.enhanced-product-card .before-price {
  display: inline-block;
  margin-top: 4px;
  color: #9ca3af !important;
  font-size: 13px !important;
}

/* Discount badge */
.enhanced-product-card .sale-ratio-wrapper {
  position: absolute;

  inset-inline-start: 0;
  z-index: 7;
}

.enhanced-product-card .sale-ratio {
  min-width: 58px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.28);
  font-size: 13px;
  font-weight: 800;
}

.enhanced-product-card .price-ratio-word {
  font-size: 11px;
}

/* Add to cart */
.enhanced-product-card .btn--add-to-cart {
  margin-top: auto;
  width: 100%;
}

.enhanced-product-card .s-button-wrap,
.enhanced-product-card .s-button-element {
  width: 100%;
}

.enhanced-product-card .s-button-element {
  min-height: 46px;
  border-radius: 14px !important;
  border: 0 !important;
  background: linear-gradient(
    135deg,
    var(--color-primary, #0f766e),
    color-mix(in srgb, var(--color-primary, #0f766e) 72%, #000)
  ) !important;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--color-primary, #0f766e) 26%, transparent);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.enhanced-product-card .s-button-element:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--color-primary, #0f766e) 34%, transparent);
}

.enhanced-product-card .s-button-text {
  font-size: 15px;
  font-weight: 800;
}

/* Navigation arrows */
.s-products-slider-slider .s-slider-block__title-nav {
  gap: 10px;
}

.s-products-slider-slider .s-slider-nav-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  color: #111827;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.s-products-slider-slider .s-slider-nav-arrow:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--color-primary, #0f766e);
}

.s-products-slider-slider .s-slider-nav-arrow svg {
  width: 24px;
  height: 24px;
}

.s-products-slider-slider .s-slider-nav-arrow svg path {
  fill: currentColor;
}

/* Product image loaded effect */
.enhanced-product-card img {
  opacity: 1;
}

.enhanced-product-card img[src*="form-builder"] {
  opacity: 0.45;
}

/* Mobile */
@media (max-width: 768px) {
  .s-block:has(.s-products-slider-wrapper) {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .s-products-slider-slider .s-slider-block__title {
    margin-bottom: 16px;
  }

  .s-products-slider-slider .s-slider-block__title h2 {
    font-size: 22px;
  }

  .s-products-slider-slider .s-slider-nav-arrow {
    width: 38px;
    height: 38px;
  }

  .enhanced-product-card .product-block__thumb {
    min-height: 190px;
    padding: 14px;
  }

  .enhanced-product-card .thumb-wrapper {
    height: 172px;
  }

  .enhanced-product-card .showPreviewBtn {
    opacity: 1;
    transform: none;
    width: 36px;
    height: 36px;
  }

  .enhanced-product-card .title,
  .enhanced-product-card .title--primary {
    font-size: 14px;
  }

  .enhanced-product-card .price-wrapper > span {
    font-size: 17px !important;
  }


  .enhanced-product-card .s-button-element {
    min-height: 42px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .enhanced-product-card .product-block__info {
    padding: 12px;
  }

  .enhanced-product-card .product-title {
    min-height: 58px;
  }

  .enhanced-product-card .sale-ratio {
    height: 28px;
    font-size: 12px;
  }
}
 salla-contacts[icons-only="false"] span.s-contacts-icon + span {
    display: block !important;
  }