.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%;
}

.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(--accent-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(--accent-color);
    border-radius: 12px;
}

.thumb-swiper .swiper-wrapper__slide .swiper-slide img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 600px;
}

.thumb-swiper-2 {
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.modern-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
    margin-bottom:30px
}

.modern-minimal-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Montserrat";
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1a;
}

.modern-minimal-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.modern-minimal-table tr:last-child {
    border-bottom: none;
}

.modern-minimal-table td {
    padding: 16px 20px;
    vertical-align: top;
}

.modern-minimal-table .label {
    width: 40%;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: -0.01em;
    background-color: #fafafa;
    border-radius: 12px 0 0 12px;
}

.modern-minimal-table .value {
    width: 60%;
    color: #111827;
    font-weight: 450;
    background-color: #ffffff;
    border-radius: 0 12px 12px 0;
}

/* Адаптив для мобильных */
@media (max-width: 640px) {
    .modern-minimal-table td {
        padding: 12px 16px;
    }
    
    .modern-minimal-table .label {
        width: 45%;
        font-size: 13px;
    }
    
    .modern-minimal-table .value {
        width: 55%;
        font-size: 13px;
    }
}

/* Эффект при наведении */
.modern-minimal-table tr:hover td.label {
    background-color: #f5f5f7;
    transition: background 0.2s ease;
}

.modern-minimal-table tr:hover td.value {
    background-color: #fefefe;
    transition: background 0.2s ease;
}

@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;
    }
}

@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%;
    }
}