.product-card__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.product-card__left {
    width: 55%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card__right {
    width: 45%;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.product-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 140%;
}


.product-card__price-blok {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.product-card__price-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-card__price-big {
    font-weight: 500;
    font-size: 24px;
}

.product-card__price-big {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card__price-big b{
    font-weight: 500;
    font-size: 48px;
}

.product-card__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.product-card__price {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
}


.thumb-swiper {
    max-width: 100%;
}

.thumb-swiper .swiper-wrapper__thumb .swiper-slide img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 125px;
    transition: all .3s ease;
}

.thumb-swiper .swiper-wrapper__thumb .swiper-slide-thumb-active img{
    border: 4px solid var(--primary-color);
    border-radius: 20px;
}

.thumb-swiper .swiper-wrapper__slide .swiper-slide img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 600px;
}

.thumb-swiper-2 {
    margin-bottom: 10px;
}

.product-card__table table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
	border-collapse: separate;
}
.product-card__table table thead th {
	text-align: left;
	font-weight:400;
	border: none;
	padding: 10px 15px;
	background: #f8f8f8;
	font-size: 14px;
	border-top: 1px solid #ddd;
}
.product-card__table table tr th:first-child, .table tr td:first-child {
	border-left: 1px solid #ddd;
}
.product-card__table table th:last-child, .table tr td:last-child {
	border-right: 1px solid #ddd;
}
.product-card__table table thead tr th:first-child {
	border-radius: 20px 0 0 0;
}
.product-card__table table thead tr th:last-child {
	border-radius: 0 20px 0 0;
}
.product-card__table table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.product-card__table table tbody tr:nth-child(even) {
	background: #F8F8F8;
}
.product-card__table table tbody tr:last-child td{
	border-bottom: 1px solid #ddd;
}
.product-card__table table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
.product-card__table table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}


@media (max-width:1100px) {
    .product-card__wrapper {
       flex-direction: column;
    }

    .product-card__left,
    .product-card__right {
        width: 100%;
    }

    .thumb-swiper .swiper-wrapper__slide .swiper-slide img {
        height: 500px;
    }

    .thumb-swiper .swiper-wrapper__thumb .swiper-slide img {
        height: 100px;
    }
    
    .product-card__price-big {
    font-weight: 500;
    font-size: 18px;
    line-height:140%;
}

}

@media (max-width:600px) {
    #book {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:500px) {
        .thumb-swiper .swiper-wrapper__slide .swiper-slide img {
        height: 300px;
    }

    .thumb-swiper .swiper-wrapper__thumb .swiper-slide img {
        height: 60px;
    }

    .product-card__price-blok {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .product-card__price-blok .button {
        width: 100%;
    }
}