.product-single-price {
    font-size: 24px;
    font-weight: bold;
}

.product-single-price__unit {
    font-size: 14px;
    font-weight: 400;
}

.product-single-old-price {
    text-decoration: line-through;
}

.product-single-discount {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-weight: bold;
    margin-right: 12px;
    position: relative;
}

.product-single-discount::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(45deg);
    margin-left: 13px;
    position: absolute;
    left: 0px;
    bottom: -6px;
    background: #fff;
}

.product-single-price--sale {
    color: #c70000;
}

.product-single-images-big {
    width: calc(100% - 111px);
}

.product-single-images-mini {
    width: 111px;
}

.product-single-images-mini img {
    border: 2px solid #ffffff;
    width: 98px;
    border-radius: 4px;
    margin: 1px 0;
    cursor: pointer;
}

.product-single-images-mini li.is-active img {
    border-color: var(--border);
}

.product-rating-stars img {
    width: 18px;
    height: 19px;
    margin-right: 2px;
}

#product-images-mini .splide__arrows {
    top: calc(100% - 50px);
    left: 111px;
    z-index: 3;
}

.product-rating-count {
    position: relative;
    top: 2px;
    font-size: 13px;
}

.product-status-item {
    font-weight: bold;
}

.product-status-item img,
.product-status-item svg {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.product-header .add-button {
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 6px;
    background-color: #ffffff;
}

.product-header .add-to-wishlist::after {
    top: 6px;
    left: 6px;
}

.comment-added svg,
.comment-added img,
.no-comment svg,
.no-comment img {
    width: 65px;
    height: 52px;
    margin-bottom: 35px;
}

.comment-image {
    margin-top: 16px;
}

.comment-verified {
    font-weight: 500;
    color: green;
}

.rated-item svg {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.rated-item svg path {
    fill: #ddd;
}

.rated-item.active svg path {
    fill: #e9bd48;
}

.upload-input {
    border: 2px dashed var(--border);
    position: relative;
    border-radius: 4px;
}

.upload-input input {
    opacity: 0;
    cursor: pointer;
}

.upload-input-text {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.card-product {
    position: sticky;
    top: 129px;
}

.tabs {
    position: sticky;
    top: 63px;
    z-index: 7;
    background: #fff;
    border-bottom: 1px solid var(--border);
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab {
    display: block;
    font-size: 16px;
    line-height: 53px;
    margin-right: 30px;
    font-weight: 600;
    border-bottom: 2px solid #FFF;
    cursor: pointer;
}

.tabs li {
    margin: 0;
}

.tabs li:last-child a {
    margin-right: 0;
}

.active .tab {
    border-bottom: 2px solid var(--main);
}

.tab:hover {
    border-bottom: 2px solid var(--border);
}

.splide__arrows button:disabled {
    display: none;
}

.samples {
    gap: 12px;
    transition: color .2s;
    font-size: 12px;
}

.samples:hover {
    color: var(--blue);
}

.samples__title {
    font-weight: 700;
}

.product-description a {
    overflow: hidden;
    border-radius: 12px;
}

.product-description a img {
    transition: transform .2s;
}

.product-description a img:hover {
    transform: scale(1.05);
}

.product-description p+p,
.product-description p+img,
.product-description p+h2 {
    margin: 24px 0 0;
}

.product-description video {
    width: 100%;
    height: auto;
}

.product-description ul {
    margin: 24px 0;
}

.product-description h2+p {
    margin: 16px 0 0;
}

.product-description h2+ul {
    margin: 16px 0 24px;
}

.product-description h2 {
    font-size: 16px;
}

.products-codes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 1200px) {
    .tabs {
        top: 119px;
    }
}

@media (min-width: 991px) {
    .tab {
        margin-right: 48px;
    }
}

@media (max-width: 767px) {
    .product-description .col-md-6+.col-md-6 {
        margin: 16px 0 0;
    }
}

.product-attr-big .product-attr-line:nth-child(even) {
    background: var(--lightblue);
}

.product-attr-big .product-attr-line-name,
.product-attr-big .product-attr-line-value {
    width: 50%;
    padding: 10px;
    font-size: 16px;
}

.product-attr-big .product-attr-line-name {
    text-align: right;
}

.sticky-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    padding: 10px;
    z-index: 15;
    border-top: 1px solid var(--border);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition: transform .2s ease;
}

.sticky-mobile.show {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.sticky-mobile .product-single-price {
    line-height: 1;
}

@media (max-width: 767px) {

    .product-description .row img,
    .product-description .row video {
        margin: 0 0 16px;
    }
}

@media (max-width: 575px) {
    .related-products .qty__wrapper {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .related-products .prod-list-item button {
        font-size: 12px;
        padding: 12px;
        line-height: 1;
    }
}

@media (max-width: 460px) {
    .sticky-mobile .add-to-cart {
        padding: 0 15px;
    }
}

.product-combinations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.product-combination {
    border-radius: 2px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--border);
    color: #828282;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
}

.product-combination--active {
    background-color: #3688EF;
    color: white;
}

.product-combination-size {
    color:  #0A0A0A;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 8px;
}