.single-product-page {
    .product-single-details {
        padding-left: 6%;
        @media screen and (max-width: 1200px){
             padding-left: 3%;
        }
        .price-box {
            margin-bottom: 24px;
            .product-price {
                font-family: $font-primary-bold;
                font-size: 24px;
                color: $color-primary;

            }
            .old-price {
                font-family: $font-primary-light;
                text-decoration: line-through;
                font-size: 18px;
                color: #787A80;
                margin-left: 12px;
            }
        }
        .add-to-cart-box {
            margin-bottom: 24px;
            .main-btn {
                min-height: 52px;
                max-width: 430px;
                width: 100%;
                @media screen and (max-width: 768px){
                    min-height: 42px;
                }
            }
        }
        .wishlist-btn {
            font-family: $font-primary;
            color: $color-primary;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid #000;
            background: #FFF;
            min-height: 52px;
            max-width: 430px;
            width: 100%;
            @media screen and (max-width: 768px){
                min-height: 42px;
            }

            .icon-hearth {
                margin-right: 24px;
            }
        }
    }
    .product-single-gallery {
        max-width: 600px;
        @media screen and (max-width: 1200px){
            max-width: 450px;
        }
    }
    .product-info-title {
        font-family: $font-primary-bold;
        color: #000;
        font-size: 14px;
        margin-bottom: 12px;
    }
    #colorPicker {
        margin-bottom: 24px;
        .select-color-label {
            cursor: pointer;
            margin-right: 8px;
            input {
                display: none;
                &:checked ~ .color-picker {
                    border-color: $color-primary;
                }
            }
        }
        .color-picker {
            position: relative;
            display: block;
            width: 24px;
            height: 24px;
            border: 1px solid #D7DADD;
            border-radius: 50%;
            background-color: #fff;
            &::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background-color: var(--color);
                transform: translate(-50%, -50%);
            }
        }
    }
    #sizePicker {
        margin-bottom: 24px;
        .select-size-label {
            margin-right: 18px;
            cursor: pointer;
            input {
                display: none;
                &:checked ~ .size-picker {
                    border-color: $color-secondary;
                    background-color: $color-secondary;
                    color: $color-primary;
                }
            }
        }
        .size-picker {
            color: #9A9CA5;
            font-size: 20px;
            text-align: center;
            position: relative;
            width: 48px;
            height: 48px;
            border: 1px solid #D7DADD;
            border-radius: 4px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
    .product-single-title-box {
        margin-bottom: 30px;
        .product-title {
            font-size: 36px;
            color: #1E212C;
            font-family: $font-primary;
            padding-bottom: 30px;
            border-bottom: 1px solid #E5E8ED;
            @media screen and (max-width: 1024px){
                font-size: 30px;
            }
            @media screen and (max-width: 768px){
                font-size: 24px;
                padding-bottom: 20px;
            }
        }
    }
    .product-desc-list {
        margin-top: 40px;
        .product-desc-item {
            border-bottom: 1px solid #E5E8ED;
            padding: 16px 0;
            &:first-child {
                border-top: 1px solid #E5E8ED;
            }
            .title {
                font-family: $font-primary-bold;
                font-size: 16px;
                color: #1E212C;
                margin-bottom: 12px;
            }
            .text-content {
                font-size: 14px;
                color: #424551;
            }
        }
    }
}

//oder count box
.order-count-box {
    border-radius: 4px;
    background-color: #FFF;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  /*  @include mq(md, max) {
        height: 32px;
    }*/
    .icon-btn {
        cursor: pointer;
        background: #CBE7EB;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        /*@include mq(md, max) {
           width: 40px;
        }*/
        .icon {
            width: 24px;
            height: 24px;
           /* @include mq(md, max) {
                width: 20px;
                height: 20px;
            }*/
        }
        &.minus {
            border-radius: 8px 0 0 8px;
        }
        &.plus {
            border-radius: 0 8px 8px 0;
        }
    }
    .quantity-input {
        font-family: $font-primary-bold;
        display: inline-block;
        border: 2px solid #CBE7EB;
        width: 68px;
        height: 100%;
        margin: 0 4px;
        text-align: center;
    }
}
.related-products-section {
    margin-bottom: 80px;
    @media screen and (max-width: 1024px){
        margin-bottom: 50px;
    }
    @media screen and (max-width: 1024px){
        margin-bottom: 50px;
    }
}
