.product-card-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;

    @media screen and (max-width: 1000px){
        flex-direction: column;
    }

    .product-card-main {
        width: 55%;
        height: 100%;
        position: relative;

        @media screen and (max-width: 1000px){
            width: 100%;
        }
    
    }

    .product-card-title {
        font-size: 2rem;
        font-weight: 700;
        width: 85%;
        margin-bottom: 20px;

        @media screen and (max-width: 560px){
            font-size: 20px;
        }
    }

    .product-card-info-btns {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 60px;

        @media screen and (max-width: 560px) {
            justify-content: space-between;
        }

        button {
            background-color: #fff;
            border: 0;
            box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20);
            border-radius: 10px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            font-weight: 600;
            color: #1D2D53;
            height: 36px;
        }

        .product-card-info-btn.stock {
            .stock-status {
                width: 11px;
                height: 11px;
                border-radius: 100%;
                background-color: #0EAA9E;
            }

            @media screen and (max-width: 560px){
                button{
                    box-shadow: unset;
                    padding: 0;
                    text-wrap: nowrap;
                    gap: 10px;
                }
            }
        }

        .product-card-info-btn.reviews{
            .reviews-mobile{
                display: none;
            }

            @media screen and (max-width: 560px){
                .reviews-large{
                    display: none;
                }

                .reviews-mobile{
                    display: flex;
                    padding: 11px 6px;

                    .reviews-title{
                        color: #8E96A9;
                        font-size: 12px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: normal;
                    }
                }
            }
        }

        .product-card-info-btn.comp{
            .comp-img-black{
                display: none;
            }
        }

        .buy-favorite{
            display: none;
        }

        @media screen and (max-width: 560px) {

            .buy-favorite{
                display: block;

                img{
                    width: 23px;
                    height: 23px;
                }
            }

            .product-card-info-btn.comp{

                display: flex;
                flex-direction: column-reverse;
                gap: 10px;

                .comp-img-gray{
                    display: none;
                }

                .comp-img-black{
                    display: block;
                }

                position: absolute;
                top: 14%;
                z-index: 10;
                right: 0;
                button{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 0;
                    width: 43px;
                    height: 43px;
                    span{
                        display: none;
                    }
                }
            }
        }
       
    }

    .product-card-img-swiper{
        overflow: hidden;
    }

    .product-card-img-swiper {
        position: relative;
        width: 100%;
        height: 85%;

        .product-card-img-swiper-sticker{
            position: absolute;
            left: 0;
            top: 0;
            border-radius: 0px 10px 10px 0px;
            background: #EA5176;
            font-weight: 600;
            padding: 7px;
            padding-left: 22px;
            padding-right: 15px;
            color: #fff;
            z-index: 10;
        }

        @media screen and (max-width: 560px){
            .swiper-button-next,
            .swiper-button-prev{
                display: none !important;
            }
        }

    }

    .swiper-slide{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 90%;
        height: 90%;
        object-fit: contain;
    }
    .product-details{
        display: flex;
        gap: 10px;

        @media screen and (max-width: 580px){
            flex-direction: column;
            width: 100%;

            button{
                width: 100%;
            }
        }

        .product-detail{
            height: 36px;
            button{
                height: 36px;
                border-radius: 6px;
                background: #CACDD5;
                padding: 10px 20px;
                border: 0;
                align-items: center;
                display: flex;
                gap: 25px;
                color: #fff;
                font-weight: 600;
                padding-right: 30px;
                cursor: pointer;
            }
            &.active{
                button{
                    background-color: #1D2D53;
                }
            }
        }
    }

    .product-details-content {
        color: #8E96A9;
        font-size: 1.25rem;
        margin-top: 50px;
    }

    .details-table{
        font-family: Georgia, sans-serif;
    }
    
    .details-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }
    
    .details-table td {
        padding: 8px 0;
        border-bottom: 1px dotted #ccc;
    }
    
    .details-table td:first-child {
        color: #777;
    }
    
    h3 {
        margin-top: 25px;
        font-weight: bold;
        color: #2c3e50;
    }

    tr{
        td:last-child{
            text-align: end;
            color: #1D2D53;
        }
    }

    .product-card-right{
        width: 40%;

        @media screen and (max-width: 1000px){
            width: 100%;
        }

        .product-card-right-block {
            position: sticky;
            top: 0;
            width: 100%;
            background: #fff;
        }
        
        .price-block {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: bold;
            box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20);
            padding: 25px 15px;
            border-radius: 15px;

            @media screen and (max-width: 560px){
                box-shadow: unset;
                padding: 0;
            }
        }


        .price-block-bottom{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 13px;
            width: 100%;
        }

        .price-block-up{
            padding-left: 10px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .current-price {
            color: #EA5176;
            font-size: 2rem;
            margin-right: 30px;

            @media screen and (max-width: 560px){
                font-size: 18px;
                margin-right: 0;
            }
        }
        
        .old-price {
            margin-right: 20px;
            text-decoration: line-through;
            color: #999;
            height: 36px;
            border-radius: 10px;
            border: 2px solid #E0E1E5;
            width: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-right: 20px;
            font-weight: 500;
        }
        
        .discount {
            position: absolute;
            right: -20px;
            height: 36px;
            background: #EA5176;
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .buy-button {
            background: #1D2D53;
            color: white;
            border: none;
            height: 48px;
            border-radius: 10px;
            display: flex;
            font-size: 1.25rem;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            cursor: pointer;
            width: 85%;
            position: relative;

            @media screen and (max-width:560px){
                width: 100%;
            }

            .buy-button-basket{
                width: 28px;
                height: 28px;
                position: absolute;
                left: 18px;
            }

            .buy-button-arrow{
                position: absolute;
                right: 24px;
            }
        }

        .buy-favorite{
            border-radius: 10px;
            border: 2px solid #E0E1E5;
            width: 48px;
            height: 48px;
            background-color: #fff;
            border-radius: 10px;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;

            @media screen and (max-width:560px){
                display: none;
            }
        }
        
        .product-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 12px 0;

            @media screen and (max-width: 560px){
                flex-direction: column;
                gap: 15px;

                .article{
                    width: 100%;
                }

                .share-button{
                    width: 100%;
                }
            }
        }

        .article{
            padding: 7px 10px;
            padding-right: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20);
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
        }
        
        .share-button {
            background: #fff;
            border: none;
            padding: 7px 10px;
            padding-right: 25px;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20);
            display: flex;
            align-items: center;
            font-weight: 600;
            gap: 15px;
            color: #1D2D53;
        }
        
        .delivery-info {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin: 10px 0;
            box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20);
        }

        .delivery-item-title{
            display: flex;
        }
        
        .delivery-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 10px;
            position: relative;

            p{
                color: #8E96A9;
                font-family: Georgia, sans-serif;
                line-height: normal;
                font-weight: 400;
            }
        }
        
        .dot {
            display: block;
            width: 11px;
            height: 11px;
            background: #0EAA9E;
            border-radius: 50%;
            margin-top: 3px;
            margin-right: 20px;
        }
        
        .gray-button {
            position: relative;
            width: 100%;
            background: #CACDD5;
            color: white;
            font-weight: 600;
            border: none;
            padding-left: 15px;
            border-radius: 10px;
            cursor: pointer;
            height: 48px;
            display: flex;
            align-items: center;
            span{
                margin-left: 25px;
            }
            .arrow{
                position: absolute;
                right: 25px;
            }

            @media screen and (max-width: 560px) {
                padding-left: 10px;
                span{
                    margin-left: 10px;
                }
                .arrow{
                    position: absolute;
                    right: 15px;
                }
            }
        }
        
        .blue-button {
            margin-top: 10px;
            position: relative;
            width: 100%;
            background: #fff;
            color: #1D2D53;
            font-weight: 600;
            border: none;
            padding-left: 15px;
            border-radius: 10px;
            cursor: pointer;
            height: 48px;
            display: flex;
            align-items: center;
            box-shadow: 0px 1px 5px 0px rgba(29, 45, 83, 0.20);
            span{
                margin-left: 25px;
            }
            .arrow{
                position: absolute;
                right: 25px;
            }

            @media screen and (max-width: 560px) {
                text-align: start;
                padding-left: 10px;
                span{
                    margin-left: 10px;
                }
                .arrow{
                    position: absolute;
                    right: 15px;
                }
            }
        }
        
    }
    
}