.ready-made-details-carousel {
    position: relative;
    padding: 0 70px;
    padding-bottom: 50px;
}

.ready-made-details-carousel *{
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.ready-made-details-carousel .swiper-container {
    width: 100%;
    overflow: hidden;
}

.ready-made-details-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.ready-made-details-carousel .swiper-slide {
    border-radius: 40px;
    overflow: hidden;
    border: 3px solid #FABB1C;
    box-sizing: border-box;
}

.ready-made-details-carousel .ready-made-slide-link{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ready-made-details-carousel .ready-made-image-container {
    position: relative;
    flex: 0 1 60%;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.ready-made-details-carousel .ready-made-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	aspect-ratio: 4 / 3;
}

.ready-made-details-carousel .ready-made-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.ready-made-details-carousel .ready-made-highlight{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FABB1C;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    text-align: center;
}

.ready-made-details-carousel .ready-made-content-container {
    display: flex;
    justify-content: space-between;
    flex: 1 0 auto;
    min-height: 0;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background-color: #EFEFEF;
    box-sizing: border-box;
}

.ready-made-details-carousel .ready-made-content-container .wp-block-button__link{
    justify-content: center;
}

.ready-made-details-carousel .ready-made-title {
    margin: 0 0 8px 0;
    line-height: 26px;
}

.ready-made-details-carousel .ready-made-excerpt {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 26px;
}

.ready-made-details-carousel .ready-made-price-wrap{
    background-color: #FBBB1133;
    border-radius: 20px;
    padding: 16px 24px;
    margin: 24px 0;
}

.ready-made-details-carousel .ready-made-price-wrap .ready-made-price{
    margin: 0 0 8px 0;
}

.ready-made-details-carousel .ready-made-price-wrap .ready-made-price-netto{
    font-size: 14px;
    color: #656971;
    font-weight: 500;
}

.ready-made-details-carousel .ready-made-price-wrap .ready-made-odbior{
    font-size: 14px;
    display: flex;
    gap: 6px;
}

.ready-made-details-carousel .ready-made-equip{
    margin: 24px 0;
}

.ready-made-details-carousel .ready-made-equip ul{
    margin: 8px 0;
    padding: 0 0 0 24px;
}

.ready-made-details-carousel .ready-made-equip li{
    margin: 6px 0;
}

.ready-made-details-carousel .ready-made-ideal{
    margin-top: 24px;
}

.ready-made-details-carousel .ready-made-ideal-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.ready-made-details-carousel .ready-made-ideal-chip{
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 14px;
}

.ready-made-details-carousel .wp-block-buttons{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* pagination bullets */
.ready-made-details-carousel .swiper-pagination {
  text-align: center;
  margin-top: 1rem;
}

/* navigation buttons */
.ready-made-details-carousel .swiper-button-prev-ready-made-details,
.ready-made-details-carousel .swiper-button-next-ready-made-details {
  position: absolute;
  top: calc(50% - 25px);
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.ready-made-details-carousel .swiper-button-prev-ready-made-details.swiper-button-disabled,
.ready-made-details-carousel .swiper-button-next-ready-made-details.swiper-button-disabled{
    opacity: 0.3;
}

.ready-made-details-carousel .swiper-button-prev-ready-made-details {
  left: 0;
}

.ready-made-details-carousel .swiper-button-next-ready-made-details {
  right: 0;
}

/* GAP: remove margin on last slide */
.ready-made-details-carousel .swiper-slide:last-child {
  margin-right: 0;
}

/* Responsive: below 782px, show only 1 slide and hide nav */
@media (max-width: 781px) {
  .wp-block-group.has-global-padding .ready-made-details-carousel {
    padding-left: 0;
    padding-right: 0;
    margin-left: calc(var(--wp--style--root--padding-left) * -1) !important;
    margin-right: calc(var(--wp--style--root--padding-right) * -1) !important;
  }
  .ready-made-details-carousel .swiper-button-prev-ready-made-details,
  .ready-made-details-carousel .swiper-button-next-ready-made-details {
    display: none;
  }
}