.vv-sb-showcase {
  padding: 20px;
  border: 1px solid #d8e1ea;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.vv-sb-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.vv-sb-showcase-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2.1rem);
  line-height: 1.1;
  color: #0f172a;
}

.vv-sb-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.vv-sb-showcase-salons-shell {
  position: relative;
}

.vv-sb-showcase-grid--slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vv-sb-showcase-grid--slider::-webkit-scrollbar {
  display: none;
}

.vv-sb-showcase-grid--slider .vv-sb-showcase-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.vv-sb-showcase-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 225, 234, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.vv-sb-showcase-nav[hidden] {
  display: none;
}

.vv-sb-showcase-nav:hover,
.vv-sb-showcase-nav:focus-visible {
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.vv-sb-showcase-nav--prev {
  left: 12px;
}

.vv-sb-showcase-nav--next {
  right: 12px;
}

.vv-sb-showcase-card {
    border: 1px solid #dbe4ec;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    min-width: 0;
    /* box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08); */
}

.vv-sb-showcase-card-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.vv-sb-showcase-card:hover,
.vv-sb-showcase-card:focus-within {
  transform: translateY(-4px);
  border-color: #c7d6e4;
  /*box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);*/
}

.vv-sb-showcase-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 180px;
  background: linear-gradient(180deg, #edf3f8 0%, #dfeaf3 100%);
  overflow: hidden;
}

.vv-sb-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.vv-sb-showcase-image-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e6d80;
}

.vv-sb-showcase-card-btn:hover .vv-sb-showcase-image,
.vv-sb-showcase-card-btn:focus-visible .vv-sb-showcase-image {
  transform: scale(1.03);
}

.vv-sb-showcase-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
}

.vv-sb-showcase-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 1.15rem + 0.5vw, 2rem);
  line-height: 1.15;
  color: #111827;
  word-break: break-word;
}

.vv-sb-showcase-meta {
  margin: 0;
  color: #5e6d80;
  line-height: 1.45;
  word-break: break-word;
}

.vv-sb-showcase-meta--city {
  font-size: 1.05rem;
  font-weight: 500;
  color: #64748b;
}

.vv-sb-showcase-meta--address {
  margin-top: auto;
  padding-top: 4px;
  color: #334155;
}

.vv-sb-showcase-price {
  margin: 10px 0 0;
  font-weight: 700;
  color: #0f172a;
}

.vv-sb-showcase-price-old {
  text-decoration: line-through;
  color: #6b7280;
  margin-right: 8px;
}

@media (max-width: 1200px) {
  .vv-sb-showcase-grid--slider .vv-sb-showcase-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 992px) {
  .vv-sb-showcase {
    padding: 18px;
  }

  .vv-sb-showcase-card-body {
    padding: 16px 16px 18px;
  }
}

@media (max-width: 768px) {
  .vv-sb-showcase-grid--slider .vv-sb-showcase-card {
    flex-basis: 100%;
  }

  .vv-sb-showcase-nav {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 576px) {
  .vv-sb-showcase {
    padding: 12px;
  }

  .vv-sb-showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vv-sb-showcase-nav--prev {
    left: 8px;
  }

  .vv-sb-showcase-nav--next {
    right: 8px;
  }

  .vv-sb-showcase-image-wrap {
    min-height: 160px;
  }

  .vv-sb-showcase-card-body {
    padding: 14px 14px 16px;
  }
}
