.product-image {
    width: 760px;
    height: 580px;
    margin: 0 0 60px;
    float: left;
}

.product-image .image-list {
    width: 100px;
    height: 580px;
    margin: 0 20px 0 0;
    float: left;
    overflow: hidden;
}


.product-image .image-list .list-item {
    width: 100px;
    height: 100px;
    margin: 0 0 20px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 1;
    transition: background 0.2s linear, opacity 0.2s linear;
}

.pc .product-image .image-list .list-item:hover {
    opacity: 0.7;
}

.product-image .image-list .list-item.active {
    background: #f4f2ee;
}

.pc .product-image .image-list .list-item.active:hover {
    opacity: 1;
}

.product-image .image-list .list-item:last-of-type {
    margin: 0;
}

.product-image .image-list .list-item img {
    display: block;
    width: 80px;
    height: 80px;
}

.product-image .image-preview {
    width: 580px;
    height: 580px;
    background: #f4f2ee;
    margin: 0 60px 0 0;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    float: left;
}

.product-image .image-preview img {
    display: block;
    width: 500px;
    height: 500px;
    position: absolute;
    top: 40px; left: 40px;
    transition: opacity 0.2s linear;
}

.product-image .image-preview img.current {
    opacity: 1;
}

.product-image .image-preview img.next {
    opacity: 0;
}



.product-info {
    margin: 0 0 60px;
    width: 620px;
    float: left;
}



.product-info .info-top {
    margin: 0 0 20px;
}

.product-info .info-top .top-id {
    float: left;
}

.product-info .info-top .top-id p {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 20px;
    color: #9e9e9e;
}

.product-info .info-top .top-availability {
    float: right;
}

.product-info .info-top .top-availability p {
    padding: 0 0 0 30px;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 20px;
    color: #663130;
    position: relative;
}

.product-info .info-top .top-availability p.out-of-stock {
    color: #9e9e9e;
}

.product-info .info-top .top-availability p:before {
    content: '';
    display: block;
    width: 30px;
    height: 20px;
    background: url('../img/product-available.png') center center no-repeat;
    position: absolute;
    bottom: 0; left: 0;
}

.product-info .info-top .top-availability p.out-of-stock:before {
    background: url('../img/product-unavailable.png') center center no-repeat;
}



.product-info .info-title {
    margin: 0 0 20px;
}

.product-info .info-title h1 {
    font-family: 'PTSans-Bold';
    font-size: 28px;
    line-height: 30px;
    color: #333;
}



.product-info .info-description {
    margin: 0 0 30px;
}

.product-info .info-description ul li {
    display: block;
    margin: 0 0 5px;
    padding: 0 0 0 16px;
    position: relative;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.product-info .info-description ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #663130;
    border-radius: 50%;
    position: absolute;
    top: 6px; left: 0;
}



.product-info .info-discount {
    margin: 0 0 30px;
}

.product-info .info-discount p {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #9e9e9e;
}

.product-info .info-discount p strong {
    font-family: 'PTSans-Bold';
}



.product-info .info-ctrl {
    margin: 0 0 30px;
}

.product-info .info-ctrl .ctrl-amount {
    margin: 0 20px 0 0;
    float: left;
}

.product-info .info-ctrl .ctrl-amount p {
    font-family: 'PTSans-Regular';
    font-size: 14px;
    line-height: 16px;
    color: #9e9e9e;
    text-align: center;
}

.product-info .info-ctrl .ctrl-amount input {
    display: block;
    width: 34px;
    height: 24px;
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    font-family: 'PTSans-Regular';
    font-size: 22px;
    line-height: 24px;
    color: #333;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    cursor: default;
    float: left;
}

.product-info .info-ctrl .ctrl-amount button {
    display: block;
    width: 20px;
    height: 20px;
    background: transparent;
    padding: 0;
    margin: 2px 0;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    float: left;
    -webkit-tap-highlight-color: transparent;
}

.product-info .info-ctrl .ctrl-amount button.amount-less:before {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-info .info-ctrl .ctrl-amount button.amount-more:before {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-info .info-ctrl .ctrl-amount button.amount-more:after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.product-info .info-ctrl .ctrl-buy {
    margin: 0 20px 0 0;
    float: left;
}

.product-info .info-ctrl .ctrl-buy button {
    display: block;
    width: 220px;
    height: 40px;
    background-color: #663130;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 20px;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 40px;
    color: #f0dcbe;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background linear 0.2s, color linear 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.pc .product-info .info-ctrl .ctrl-buy button:hover,
.product-info .info-ctrl .ctrl-buy button.hovered {
    background-color: #333;
    color: #fff;
}

.product-info .info-ctrl .ctrl-buy button.hovered:disabled {
    background-image: url('../img/buy-btn-loading.gif');
}

.product-info .info-ctrl .ctrl-favorite {
    margin: 0 20px 0 0;
    float: left;
}

.product-info .info-ctrl .ctrl-favorite button {
    display: block;
    width: 40px;
    height: 40px;
    background: #663130 url('../img/favorite-normal.png') center center no-repeat;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background linear 0.2s, color linear 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.pc .product-info .info-ctrl .ctrl-favorite button:hover {
    background: #333 url('../img/favorite-hover.png') center center no-repeat;
}

.product-info .info-ctrl .ctrl-favorite button.hovered:disabled {
    background-image: url('../img/buy-btn-loading.gif');
}

.product-info .info-ctrl .ctrl-favorite button.active {
    background: #663130 url('../img/favorite-active.png') center center no-repeat;
}

.pc .product-info .info-ctrl .ctrl-favorite button.active:hover {
    background: #663130 url('../img/favorite-active.png') center center no-repeat;
}

.pc .product-info .info-ctrl .ctrl-favorite button.active:disabled:hover {
    background-image: url('../img/buy-btn-loading.gif');
}

.product-info .info-ctrl .ctrl-unavailable {
    margin: 0 10px 0 0;
    padding: 10px 0;
    float: left;
}

.product-info .info-ctrl .ctrl-unavailable p {
    font-family: 'PTSans-Regular';
    font-size: 18px;
    line-height: 20px;
    color: #333;
}

.product-info .info-ctrl .ctrl-price {
    float: right;
}

.product-info .info-ctrl .ctrl-price p:nth-of-type(1) {
    display: block;
    height: 40px;
    float: right;
    overflow: hidden;
    font-family: 'PTSans-Bold';
    font-size: 26px;
    line-height: 38px;
    color: #663130;
}

.product-info .info-ctrl .ctrl-price p:nth-of-type(2) {
    display: block;
    height: 40px;
    margin: 0 10px;
    padding: 0 2px;
    float: right;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 38px;
    color: #9e9e9e;
    position: relative;
}

.product-info .info-ctrl .ctrl-price p:nth-of-type(2):after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #9e9e9e;
    position: absolute;
    top: 20px; left: 0;
}



.product-info .info-delivery {
    margin: 0 0 20px;
    padding: 20px 20px 20px 74px;
    border: 1px solid #d7ccc8;
    border-radius: 40px;
    position: relative;
}

.product-info .info-delivery:before {
    content: '';
    display: block;
    width: 54px;
    height: 54px;
    background: #d7ccc8 url('../img/nova-poshta.png') center center no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 2px; left: 2px;
}

.product-info .info-delivery p {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.product-info .info-delivery p a {
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 18px;
    color: #eb3323;
    text-decoration: none;
}

.product-info .info-delivery p br {
    display: none;
}



.product-details .details-tabs {
    margin: 0 0 10px;
}

.product-details .details-tabs .wrapper {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 10px;
}

.product-details .details-tabs .tabs-item {
    margin: 0 0 0 20px;
    font-family: 'PTSans-Regular';
    font-size: 18px;
    line-height: 20px;
    color: #9e9e9e;
    float: left;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s linear;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.product-details .details-tabs .tabs-item:first-of-type {
    margin: 0;
}

.pc .product-details .details-tabs .tabs-item:hover {
    color: #333;
}

.product-details .details-tabs .tabs-item.active {
    color: #663130;
    cursor: default;
}

.pc .product-details .details-tabs .tabs-item.active:hover {
    color: #663130;
}

.product-details .details-tabs .tabs-item:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: transparent;
    border-radius: 6px;
    position: absolute;
    bottom: -10px; left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: width 0.2s linear, background 0.2s linear;
}

.product-details .details-tabs .tabs-item.active:after {
    width: 100%;
    background: #663130;
}



.product-details .details-content {
    background: #f4f2ee;
    padding: 30px 0;
}

.product-details .details-content .wrapper {
    padding: 0 130px;
}

.product-details .details-content h2 {
    margin: 0 0 20px;
    font-family: 'PTSans-Bold';
    font-size: 24px;
    line-height: 26px;
    color: #333;
}

.product-details .details-content h3 {
    font-family: 'PTSans-Bold';
    font-size: 20px;
    line-height: 22px;
    color: #333;
}

.product-details .details-content p {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.product-details .details-content ul li {
    display: block;
    margin: 0 0 5px;
    padding: 0 0 0 16px;
    position: relative;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.product-details .details-content ul li:last-of-type {
    margin: 0;
}

.product-details .details-content ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #663130;
    border-radius: 50%;
    position: absolute;
    top: 6px; left: 0;
}

.product-details .details-content ol li {
    margin: 0 0 5px;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
    list-style-type: decimal;
    list-style-position: inside;
}

.product-details .details-content ol li:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
}

.product-details .details-content strong {
    font-family: 'PTSans-Bold';
}

.product-details .details-content em {
    font-family: 'PTSans-Italic';
}

.product-details .details-content a {
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 18px;
    color: #663130;
    text-decoration: none;
}

.product-details .details-content .item-description {
    margin: 0 0 20px;
}

.product-details .details-content .item-description p {
    color: #9e9e9e;
}

.product-details .details-content .item-line {
    width: 580px;
    padding: 10px 0;
    border-top: 1px solid #d7ccc8;
}

.product-details .details-content .item-line:first-of-type {
    border-top: none;
}

.product-details .details-content .item-line p.line-item {
    float: left;
}

.product-details .details-content .item-line p.line-quantity {
    float: right;
}



.product-details .details-content .item-reviews {
    width: 580px;
}

.product-details .details-content .item-reviews .reviews-list {
    margin: 30px 0 20px;
}

.product-details .details-content .item-reviews .reviews-list .list-item {
    margin: 0 0 30px;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-title {
    display: flex;
    column-gap: 10px;
    margin: 0 0 10px;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-title p:nth-of-type(1) {
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-title p:nth-of-type(2) {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #9e9e9e;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-content {
    padding: 0 0 10px 10px;
    position: relative;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-content::before {
    content: '';
    display: block;
    width: 16px;
    height: 100%;
    border-left: 2px solid #9e9e9e;
    border-bottom: 2px solid #9e9e9e;
    border-bottom-left-radius: 6px;
    opacity: 0.3;
    position: absolute;
    top: 0; left: 0;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-answer {
    padding: 0 0 0 60px;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-answer .answer-name {
    margin: 10px 0;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 18px;
    color: #663130;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-answer .answer-text {
    padding: 0 0 10px 10px;
    position: relative;
}

.product-details .details-content .item-reviews .reviews-list .list-item .item-answer .answer-text::before {
    content: '';
    display: block;
    width: 16px;
    height: 100%;
    border-left: 2px solid #663130;
    border-bottom: 2px solid #663130;
    border-bottom-left-radius: 6px;
    opacity: 0.3;
    position: absolute;
    top: 0; left: 0;
}

.product-details .details-content .item-reviews .reviews-list .list-prev button {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 6px;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 30px;
    color: #663130;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.product-details .details-content .item-reviews .reviews-add form textarea {
    display: block;
    width: 100%;
    height: 112px;
    margin: 0 0 10px;
    padding: 10px;
    border: 1px solid #663130;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    resize: none;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.product-details .details-content .item-reviews .reviews-add form button {
    display: block;
    width: 100px;
    height: 30px;
    background-color: #663130;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 6px;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 30px;
    color: #f0dcbe;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background linear 0.2s, color linear 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.pc .product-details .details-content .item-reviews .reviews-add form button:hover {
    background-color: #333;
    color: #fff;
}

.product-details .details-content .item-reviews .reviews-add form button:disabled {
    background-color: #333;
    background-image: url('../img/buy-btn-loading.gif');
}
