.product-details {
    width: 100%;
}

.breadcrumbs {
    height: 68px;
    width: 100%;
    background: #F7FAFC;
    display: flex;
    align-items: center;
}

.bc-items {
    width: 75%;
    display: flex;
    gap: 20px;
    margin: 0 13%;
    align-items: center;
}

.bc-items>span, .bc-items>span>a {
    font-weight: 400;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: -0.408px;
    color: #2D3748;
    text-transform: none;
    margin: 0;
}

.bc-items>span.arrow {
    content: '';
    display: inline-block;
    left: 15px;
    top: 55px;
    height: 20px;
    width: 20px;
    background: url(../images/black_arrow_right.svg) no-repeat center center;
}

.product-wrapper {
    margin: 20px 13%;
    display: flex;
    gap: 53px;
}

.product-header {
    margin: 22px 0;
    display: flex;
    justify-content: space-between;
}

.product-title>.title {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.408px;
    color: #2D3748;

}
.product-title>.article {
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: -0.408px;
    color: #718096;
}

.product-price {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.408px;
    color: #2D3748;
}

.img-wrapper {
    width: 500px;
    height: 476px;
    /* left: calc(50% - 500px/2 - 290px);
    top: calc(50% - 476px/2 - 2px); */
    
    background: #FFFFFF;
    border: 1px solid rgba(113, 128, 150, 0.17);
    border-radius: 5px;
    display: flex;
}

.img-wrapper > img {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
} 
.zoom-btn {
    cursor: pointer;
    position: absolute;
    height: 20px;
    width: 20px;
    bottom: 24%;
    left: 50.5%;
    background: url(../images/zoom.svg) no-repeat center center;
    display: none;
}

.controls {
    margin: 24px 0;
    display: flex;
    justify-content: space-between;
}

.controls>.quantity-picker {
    width: 160px;
}

.controls>.add-to-cart-btn {
    position: relative;
    height: 40px;
    width: 64%;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #2D3748;
}
.quantity-picker>span {
    flex: 1;
}

.quantity-value {
    color: #4A5568;
    border: 0;
}

.qty-value{
    width: 100%;
    border: none;
    text-align: center;
}

.qty-value:focus{
    outline: none;
}

.quantity-increase{
    background: url(../images/plus.svg) center no-repeat;
    background-size: 12px;
}

.quantity-reduce{
    background: url(../images/minus.svg) center no-repeat;
    background-size: 12px;
}

.product-spec {
    width: 100%;
    padding-top: 107px;
}

.product-spec span {
    font-weight: 400;
    font-size: 14px;
    /* line-height: 34px; */
    letter-spacing: -0.408px;
    color: #2D3748;
}

.spec-row {
    display: flex;
    height: 34px;
    border-top: 1px solid #EDF2F7;
}

.spec-header>span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.408px;
    color: #718096;
    background: #EDF2F7;
    border-radius: 5px 5px 0px 0px;
}

.spec-row>span {
    padding: 8px 16px;
}

.spec-row>span.spec-title {
    flex: 2;
}

.spec-row>span.spec-value {
    flex: 1;
}