/* Магазин - начало */
.shop-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}

.shop-url {
  text-decoration: none;
  width: 320px;
  margin: 5px;
}

.shop-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: var(--shop-block-height);
  width: 100%;
  border: 1px solid #cccccc;
  overflow: hidden;
  background-color: #ffffff;
  padding: 10px;
  transition: transform 0.3s ease;
}

.shop-block:hover {
  transform: scale(1.05);
}

.img-container {
  height: var(--image-slot-height);
  width: 100%;
  margin-bottom: 10px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.shop-block span:first-of-type {
  color: #333333;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: var(--title-line-height);
  height: calc(var(--title-line-clamp) * var(--title-line-height) * 1em);
  display: -webkit-box;
  -webkit-line-clamp: var(--title-line-clamp);
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  /* text-align: center; */
  width: 100%;
}

.shop-block span:first-of-type:hover {
  text-decoration: underline;
}

.shop-price {
  font-size: 1.3em;
  font-weight: bold;
  color: #d93b3f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
}

.shop-block span:nth-of-type(2) {
  flex: 1;
  font-size: 1.2em;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Слайдер для товара магазина - конец */
.slideshow-products {
  position: relative;
  width: 95%;
  height: 500px;
  max-height: 80vh;
  margin: 20px auto;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.products-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product {
  flex: 0 0 100%;
  height: 100%;
  width: 100%;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.product-prev,
.product-next {
  width: 60px !important;
  height: 60px !important;
  background: rgba(255, 239, 0, 0.5) !important;
}

.product-prev:hover,
.product-next:hover {
  background: rgba(217, 59, 63, 0.2) !important;
  transform: translateY(-50%) scale(1.1);
}

.product-prev::before,
.product-next::before {
  border-color: white !important;
}

@media (max-width: 768px) {
  .slideshow-products {
    height: 320px;
    width: 100%;
    margin-top: 10px;
  }

  .product-prev,
  .product-next {
    display: none !important;
  }
}
/* Магазин - конец */
