.product-page-container {
    display: flex;
    width: 100%;
    padding: 0 10px 120px;
    flex-direction: column;
}

.product-page-heading {
    color: #C41F7B;
    font-family: Helvetica;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    text-transform: uppercase;
    margin: 120px 0;
    text-align: center;
}

.product-page-block {
    display: flex;
    margin: auto;
    max-width: 1460px;
    width: 100%;
    border-radius: 45px;
    background: #FFF;
    box-shadow: 0px 4px 14.5px 0px rgba(0, 0, 0, 0.25);
    min-height: 558px;
    align-items: center;
    /* gap: 120px; */
    flex-direction: column;

}

.product-page-name {
    color: #000;
    font-family: Helvetica;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 5px;
    /* margin-top: 25px; */

}

.product-page-amount {
    color: #000;
    font-family: Helvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 16px;
}

.product-page-description {
    color: #000;
    font-family: Helvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.product-page-price {
    color: #000;
    font-family: Helvetica;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 30px 0px;
}

.swiper {
    /* width: 300px; */

    width: 500px;
    height: 445px;
}

.swiper-slide {
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    width: 330px;
    height: 445px;
    border-radius: 35px;
}

.swiper-slide img {
    /* width: 100%;
    height: 100%; */
    width: 500px;
    height: 445px;
    /* object-fit: fill; */
    object-fit: cover;
    border-radius: 35px;
}

.product-right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.product-left-section {
    width: 100%;
    max-width: 600px;
    position: relative;
    height: 100%;
    margin: auto 0;
}


.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-control button {
    background-color: unset;
    border: none;
    display: flex;
    padding: 20px 0;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-control button {
    cursor: pointer;
}


.quantity-display {
    display: flex;
    width: 59px;
    height: 39px;
    padding: 4px 21px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    color: #000;
    font-family: Helvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.swiper-button-next,
.swiper-button-prev {
    width: 67px;
    height: 67px;
    background-color: #C41F7B;
    border-radius: 50px;
    color: white;
}

.product-page-bottom-nav {
    display: flex;
    gap: 48px;
}

.product-page-bottom-nav a {
    display: flex;
    padding: 18px 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background: #C41F7B;
    text-decoration: none;
    color: var(--Typography-White, #FFF);
    font-family: Helvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    transition: 0.3s;

    &:active {
        background-color: #a3174a !important;
        transform: scale(1) !important;
    }

    &:hover {
        background-color: #E147A3;
        transform: scale(1.05);
    }
}

.product-right-bottom {
    border-top: 1px solid black;
}

.product-page-content {
    display: flex;
    /* gap: 120px; */
    gap: 70px;
    padding: 40px 88px 40px 88px;
    width: 100%;

}

.product-page-top {
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    background-color: #C41F7B;
    height: 40px;
    width: 100%;
    /* position: absolute; */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    color: white !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 67px !important;
    height: 67px !important;
}

@media(max-width:768px) {
    .product-page-container {
        padding: 0px 20px 80px;
    }

    .product-page-block {
        box-shadow: unset;
    }

    .product-page-heading {
        font-size: 48px;
        line-height: 100%;
        margin: 80px 0px;
    }

    .product-page-content {
        flex-direction: column;
        padding: 0;
        gap: 16px;

    }

    .product-page-top {
        height: 10px;
        margin-bottom: 12px;
    }

    .product-page-name {
        margin-top: 0px;
        font-size: 24px;
    }

    .product-page-amount {
        font-size: 18px;
    }

    .product-page-description {
        font-size: 14px;
    }

    .product-page-price {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .product-right-section {
        gap: 12px;
    }

    .quantity-control svg {
        width: 22px;
        height: 22px;
    }

    .quantity-display {
        width: 46px;
        padding: 10px 17px;
        font-size: 24px;
    }

    .product-page-bottom-nav {
        flex-direction: column;
        gap: 24px;
    }

    .product-page-bottom-nav a {
        height: 56px;
        padding: 18px 45px;
        width: 100%;
        font-size: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .product-left-section {
        max-width: 100%;
    }

    .swiper {
        width: 310px;
        height: 310px;
    }

    .swiper-slide img {
        width: 310px;
        height: 310px;
    }
}