.product-item-container {
    position: relative;
    margin-bottom: 20px;
}

.product-item-container.hover {
    z-index: 17;
}

.product-item {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .19);
}

.product-item-big-card .product-item,
.product-item-small-card .product-item {}

.product-item-line-card .product-item {
    border-bottom: 1px solid #dadada;
}

.bx-no-touch .product-item-container.hover .product-item {
    position: absolute;
    right: -15px;
    left: -15px;
    padding: 15px 15px 0;
    width: auto;
    border-color: transparent;
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
}

.bx-touch .product-item {
    padding: 15px 0 0;
    width: auto;
    background: #fff;
}

.bx-no-touch .product-item-container.hover .product-item {
    -webkit-animation: product-item-hover 300ms 1 ease;
    animation: product-item-hover 300ms 1 ease;
}

@-webkit-keyframes product-item-hover {
    0% {
        position: absolute;
        left: 0;
        right: 0;
        border: 1px solid transparent;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        padding-left: 0;
        padding-right: 0;
    }

    100% {
        border: 1px solid transparent;
        box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
        left: -15px;
        right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@keyframes product-item-hover {
    0% {
        position: absolute;
        left: 0;
        right: 0;
        border: 1px solid transparent;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        padding-left: 0;
        padding-right: 0;
    }

    100% {
        border: 1px solid transparent;
        box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .19);
        left: -15px;
        right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*Image*/
.product-item-image-wrapper {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-top: 116%;
    width: 100%;
    transition: all 300ms ease;
}

.product-item-image-wrapper:hover {}

.product-item-container.hover.product-item-scalable-card .product-item-image-wrapper {
    padding-top: 54%;
}

.product-item-image-original,
.product-item-image-alternative {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 300ms linear;
}

.product-item-image-original {
    z-index: 11;
}

.product-item-image-alternative {
    z-index: 13;
    opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-original {
    opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-alternative {
    opacity: 1;
}

.product-item-big-card .product-item-image-wrapper {
    margin-bottom: 25px;
}

/*Image Slider*/
.product-item-image-slider-slide-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: opacity 300ms ease;
}

.product-item-image-slide {
    position: relative;
    display: none;
    height: 100%;
    background-color: #fff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .6s ease-in-out left;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .product-item-image-slide {
        transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .product-item-image-slide.next,
    .product-item-image-slide.active.right {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    .product-item-image-slide.prev,
    .product-item-image-slide.active.left {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .product-item-image-slide.next.left,
    .product-item-image-slide.prev.right,
    .product-item-image-slide.active {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.product-item-image-slider-slide-container>.active,
.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
    display: block;
}

.product-item-image-slider-slide-container>.active {
    left: 0;
}

.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.product-item-image-slider-slide-container>.next {
    left: 100%;
}

.product-item-image-slider-slide-container>.prev {
    left: -100%;
}

.product-item-image-slider-slide-container>.next.left,
.product-item-image-slider-slide-container>.prev.right {
    left: 0;
}

.product-item-image-slider-progress-bar-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
}

.product-item-image-slider-progress-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background-color: var(--theme-color-primary);
    opacity: .8;
}

.product-item-image-slider-control-container {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: block;
    padding: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container {
    opacity: 1;
}

.product-item-image-slider-control,
.product-item-image-slider-control.active {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, .8);
    opacity: .6;
    cursor: pointer;
    transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover {
    cursor: pointer;
}

.product-item-image-slider-control.active,
.product-item-image-slider-control:hover {
    background-color: var(--primary);
}

/*Label*/
.product-item-label-text,
.product-item-label-ring {
    position: absolute;
    z-index: 15;
}

.product-item-label-text span,
.product-item-label-ring {
    display: inline-block;
    clear: both;
    margin-bottom: 2px;
    background: #f42c2c;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    transition: all 250ms ease;
}

.bx-red .product-item-label-text span,
.bx-red .product-item-label-ring {
    background-color: #fba90c;
}

.product-item-label-text>div,
.product-item-label-ring>div {
    line-height: 0;
}

/* TEXT */
.product-item-label-text span {
    padding: 2px 5px;
    vertical-align: middle;
    font-weight: bold;
}

/*SMALL*/
.product-item-label-text.product-item-label-small span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
    margin-bottom: 1px;
    padding: 2px 7px;
    font-weight: normal;
    font-size: 13px;
    line-height: 14px;
}

.product-item-big-card .product-item-label-text.product-item-label-small span {
    padding: 5px 12px;
    font-size: 16px;
    line-height: 21px;
}

/* BIG */
.product-item-label-text.product-item-label-big span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
    padding: 4px 10px;
    font-size: 13px;
    line-height: 17px;
}

.product-item-big-card .product-item-label-text.product-item-label-big span {
    padding: 5px 17px;
    font-size: 22px;
    line-height: 33px;
}

@media (max-width: 767px) {
    .product-item-label-text>div {
        line-height: 0;
    }

    .product-item-label-text.product-item-label-small span,
    .product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
        margin-bottom: 1px;
        padding: 2px 7px;
        font-size: 10px;
        line-height: 14px;
    }

    .product-item-big-card .product-item-label-text.product-item-label-small span,
    .product-item-label-text.product-item-label-big span,
    .product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
        margin-bottom: 1px;
        padding: 3px 12px;
        font-size: 14px;
        line-height: 16px;
    }

    .product-item-big-card .product-item-label-text.product-item-label-big span {
        padding: 3px 12px;
        font-size: 20px;
        line-height: 25px;
    }
}

/*RING*/
.product-item-label-ring {
    box-sizing: border-box;
    border-radius: 50%;
    font-weight: bold;
}

.product-item-label-ring.product-item-label-small,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    display: none;
}

.product-item-big-card .product-item-label-ring.product-item-label-small {
    width: 100px;
    height: 100px;
    font-size: 30px;
    line-height: 100px;
}

.product-item-label-ring.product-item-label-big,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
}

.product-item-big-card .product-item-label-ring.product-item-label-big {
    width: 120px;
    height: 120px;
    font-size: 42px;
    line-height: 120px;
}

@media (max-width: 767px) {

    .product-item-label-ring.product-item-label-small,
    .product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
        --product-item-label-ring-size: 40px;
        width: var(--product-item-label-ring-size);
        height: var(--product-item-label-ring-size);
        line-height: var(--product-item-label-ring-size);
        font-size: 14px;
    }

    .product-item-big-card .product-item-label-ring.product-item-label-small,
    .product-item-label-ring.product-item-label-big,
    .product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
        width: 35px;
        height: 35px;
        font-size: 12px;
        line-height: 35px;
    }

    .product-item-big-card .product-item-label-ring.product-item-label-big {
        width: 70px;
        height: 70px;
        font-size: 24px;
        line-height: 70px;
    }
}

.product-item-label-top {
    top: -5px;
}

.product-item-label-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.product-item-label-center>div {
    text-align: center;
}

.product-item-label-left {
    left: -5px;
}

.product-item-label-left>div {
    text-align: left;
}

.product-item-label-bottom {
    bottom: -5px;
}

.product-item-label-middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-item-label-right {
    right: -5px;
}

.product-item-label-right>div {
    text-align: right;
}

.product-item-label-center.product-item-label-middle {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*Title*/
.product-item-title {
    overflow: hidden;
    margin: 0;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
}

.product-item-title a {
    color: #3f3f3f;
    text-decoration: none;
    transition: 250ms linear all;
}

.product-item-line-card .product-item-title {
    white-space: normal;
    text-align: left;
}

.product-item-big-card .product-item-title a {
    font-size: 21px;
}

.product-item-line-card .product-item-title a {
    font-size: 20px;
}

@media (max-width: 1199px) {
    .product-item-big-card .product-item-title a {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .product-item-big-card .product-item-title a {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .product-item-big-card .product-item-title a {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .product-item-big-card .product-item-title a {
        font-size: 16px;
    }
}

/*Price*/
.product-item-price-container {
    text-align: center;
    line-height: 1;
}

.product-item-price-current {
    color: #3f3f3f;
    white-space: nowrap;
    font-weight: bold;
    font-size: 13px;
}

.product-item-price-old {
    color: #a5a5a5;
    text-decoration: line-through;
    white-space: nowrap;
    font-size: 12px;
}

.product-item-big-card .product-item-price-current,
.product-item-big-card .product-item-price-old {
    vertical-align: middle;
    line-height: 20px;
}

.product-item-big-card .product-item-price-container {
    margin: 0 0 10px;
}

.product-item-big-card .product-item-price-current {
    font-size: 18px;
}

.product-item-big-card .product-item-price-old {
    font-size: 15px;
}

/*Info*/
.product-item-info-container {
    clear: both;
    margin-bottom: 10px;
}

.product-item-info-container-title {
    font-size: 12px;
}

.bx-no-touch .product-item-container .product-item-info-container.product-item-hidden {
    display: none;
    opacity: 0;
    transition: opacity 300ms ease;
}

.bx-touch .product-item-info-container.product-item-touch-hidden {
    display: none !important
}

.bx-touch .product-item-info-container.product-item-hidden,
.bx-no-touch .product-item-container.hover .product-item-info-container.product-item-hidden,
.product-item-line-card .product-item-container .product-item-info-container.product-item-hidden {
    display: block;
    opacity: 1;
}

/*Amount*/
.product-item-amount {
    padding: 0 0 2px;
    text-align: center;
}

.product-item-amount-field-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    max-width: 150px;
    margin: 0 auto 15px;
}


.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
    position: relative;
    display: block;
    min-width: 22px;
    height: 22px;
    border-radius: 2px;
    background-color: #f2f2f2;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    transition: background 300ms ease, opacity 300ms ease;
}

.bx-retina .product-item-amount-field-btn-plus,
.bx-retina .product-item-amount-field-btn-minus {
    border-width: .5px;
}

.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-minus:hover {
    background: #d3d3d3;
}

.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-minus:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    opacity: .8;
    transition: opacity 300ms ease, background 300ms ease;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:after {
    opacity: .3 !important;
    cursor: default;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:hover {
    background-color: #f2f2f2;
}

.product-item-amount-field-btn-plus:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxwYXRoIGZpbGw9IiM1MjVDNjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE4LDEyIEwxOCwwIEwxMiwwIEwxMiwxMiBMMCwxMiBMMCwxOCBMMTIsMTggTDEyLDMwIEwxOCwzMCBMMTgsMTggTDMwLDE4IEwzMCwxMiBMMTgsMTIgWiIvPjwvc3ZnPg==) no-repeat center;
    background-size: 10px;
}

.product-item-amount-field-btn-minus:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSI2IiB5PSIxMiIgZmlsbD0iIzUyNUM2OCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) no-repeat center;
    background-size: 10px;
}

.product-item-amount-field-btn-plus:hover:after,
.product-item-amount-field-btn-minus:hover:after {
    opacity: 1;
}

.product-item-amount-field-block {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product-item-amount-field {
    display: block;
    padding: 0;
    width: 100%;
    height: 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent !important;
    color: #000;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    line-height: 22px;
    transition: border 300ms ease;
}

.bx-retina .product-item-amount-field {
    border-width: .5px;
}

.product-item-amount-field:focus {
    outline: none !important;
}

.bx-no-touch input.product-item-amount-field::-webkit-outer-spin-button,
.bx-no-touch input.product-item-amount-field::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
    appearance: none
}

.product-item-amount-description-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #a5a5a5;
    white-space: nowrap;
    font-size: 12px;
}

/*.product-item-big-card .product-item-amount-field-container { text-align: left; }*/

.product-item-amount-description-container strong {
    color: #333;
    white-space: nowrap;
}

.product-item-amount-label-container {
    margin: 5px 0;
    color: #a5a5a5;
    font-weight: bold;
    font-size: 12px;
}

/**/
.product-item-quantity {
    font-size: 12px;
}

/*region Properties */
.product-item-properties {
    display: block;
    margin: 0;
}

.product-item-properties dl {
    clear: both;
}

.product-item-properties dt {
    float: left;
    clear: both;
    font-weight: normal;
    font-size: 12px;
}

.product-item-properties dd {
    float: right;
    margin-bottom: 3px;
    margin-left: 5px;
    font-size: 12px;
}

/*endregion*/

/*Compare*/
.product-item-compare-container {
    position: relative;
    display: none;
    margin: 0 -15px;
    padding: 4px 15px;
    min-height: 30px;
    border-top: 1px solid #e6e6e6;
    background: #f3f3f3;
    box-shadow: inset 0 1px 1px 0 #eee;
    vertical-align: middle;
    font-size: 12px;
    line-height: 20px;
}

.product-item-line-card .product-item-compare-container {
    margin: 0;
    border: none;
    background-color: transparent;
    box-shadow: none;
    text-align: center;
}

.bx-touch .product-item-compare-container {
    display: none;
}

.product-item-line-card .product-item-compare-container,
.product-item-container.hover .product-item-compare-container {
    display: block;
}

.product-item-compare .checkbox {
    margin: 0;
    padding: 0;
}

/* SCU */
.product-item-line-card .product-item-scu-container {
    text-align: left;
}

.product-item-scu-container-title {
    color: #333;
    font-size: 12px;
}

.product-item-scu-block {}

.product-item-scu-block-title {
    font-size: 12px;
}

.product-item-scu-list {
    margin: 0;
}

.product-item-scu-item-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-item-scu-item-color-container,
.product-item-scu-item-text-container {
    display: inline-block;
    box-sizing: border-box;
    padding: 5px 3px;
    max-width: 100%;
}

.product-item-scu-item-text-container {}

.product-item-scu-item-color-container {
    border-color: #CC9453;
}

.product-item-scu-item-color-block {
    position: relative;
    padding-top: 100%;
    outline: 1px solid #c0cfda;
    cursor: pointer;
}

.bx-no-touch .product-item-scu-item-color-block {
    transition: outline 200ms ease;
}

.bx-retina .product-item-scu-item-color-block {
    outline-width: .5px;
}

.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
    outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-color-block {
    outline-width: 1px;
}

.product-item-scu-item-color {
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.product-item-scu-item-text-block {
    position: relative;
    padding: 0 5px;
    outline: 1px solid #c0cfda;
    cursor: pointer;
}

.bx-no-touch .product-item-scu-item-text-block {
    transition: outline 300ms ease;
}

.bx-retina .product-item-scu-item-text-block {
    outline-width: .5px;
}

.product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
    outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-text-block {
    outline-width: 1px;
}

.product-item-scu-item-text {
    overflow: hidden;
    max-width: 100%;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    line-height: 18px;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block {
    position: relative;
    outline-color: #a9adb4 !important;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block:after,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: rgba(255, 255, 255, 0.75) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
    background-size: 80% 80%;
    content: "";
}


.product-item-scu-item-text-block:hover,
.product-item-scu-item-color-block:hover,
.product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
    outline-color: #000;
}

/*Description*/
.product-item-description-container {}

.product-item-description-container p {
    color: #575757;
    font-size: 13px;
}

/*Buttons*/
.product-item-button-container {
    text-align: center;
}

.product-item-button-container .btn {
    margin-bottom: 2px;
}

/*Stickers*/
.product-item-sticker,
.product-item-sticker-round {
    display: none;
}

/*More*/
.product-item-more-container {
    position: relative;
    display: block;
    box-sizing: border-box;
    padding: 15px 15px 5px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 300ms ease;
}

.product-item-more-wrapper {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-top: 116%;
    width: 100%;
}

.product-item-more {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #f3f3f3 url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjk3LjYxMyAyOTcuNjEzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjxjaXJjbGUgY3g9IjE1LjI3OSIgY3k9IjE0LjgzIiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjU5LjMyIiBjeT0iNTkuNzY5IiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjU5LjMyIiBjeT0iMTQuODMiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTA0LjI2MSIgY3k9IjU5Ljc2OSIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMDQuMjYxIiBjeT0iMTAzLjgxIiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjEwNC4yNjEiIGN5PSIxNC44MyIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iNTkuNzY5IiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE0OC4zMDIiIGN5PSIxMDMuODEiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTQ4LjMwMiIgY3k9IjE0LjgzIiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5Mi4zNDMiIGN5PSI1OS43NjkiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTkyLjM0MyIgY3k9IjEwMy44MSIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iMTQ3Ljg1MiIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxOTIuMzQzIiBjeT0iMTQ3Ljg1MiIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMDQuMjYxIiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxOTIuMzQzIiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSI1OS4zMiIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTA0LjI2MSIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTQ4LjMwMiIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTkyLjM0MyIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjM4LjIzOCIgY3k9IjEwMy44MSIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMzguMjM4IiBjeT0iMTQ3Ljg1MiIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMzguMjM4IiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNS4yNzkiIGN5PSIyODIuNzgyIiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSI1OS4zMiIgY3k9IjI4Mi43ODIiIHI9IjE0LjgzMSIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjEwNC4yNjEiIGN5PSIyODIuNzgyIiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iMjgyLjc4MiIgcj0iMTQuODMxIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjgyLjMzNCIgY3k9IjE0Ny44NTIiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjwvc3ZnPg==) no-repeat center;
    background-size: 50%;
    opacity: .7;
    transition: opacity 300ms ease;
}

.bx-touch .product-item-more,
.product-item-container.hover .product-item-more {
    opacity: 1;
}

.product-item-more-title {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Стили для быстрого просмотра */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.quick-view-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 5px;
    z-index: 1001;
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.quick-view-container {
    display: flex;
    gap: 30px;
}

.quick-view-left {
    flex: 1;
}

.quick-view-right {
    flex: 1;
}

.quick-view-main-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.quick-view-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-view-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.quick-view-thumbnails img.active {
    border-color: #CC9453;
}

.quick-view-prices {
    margin: 15px 0;
}

.quick-view-price {
    font-size: 24px;
    font-weight: bold;
    color: #CC9453;
}

.quick-view-old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.quick-view-discount {
    color: #f00;
    margin-bottom: 15px;
}

.quick-view-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-add-to-cart,
.btn-fast-order,
.btn-view-details {
    padding: 12px 20px;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-add-to-cart {
    background: #CC9453;
    color: white;
}

.btn-fast-order {
    background: #333;
    color: white;
}

.btn-view-details {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

/* Стили для формы быстрого заказа */
.fast-order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fast-order-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.fast-order-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 5px;
    z-index: 1001;
}

.fast-order-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

.btn-submit-order {
    background: #CC9453;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Уведомления */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1002;
}

.notification.show {
    opacity: 1;
}

.notification.error {
    background: #f44336;
}

@media (max-width: 768px) {
    .quick-view-container {
        flex-direction: column;
    }
}

/* Кнопка быстрого просмотра на карточке товара */
.product-quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(204, 148, 83, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
    text-decoration: none;
}

.product-image:hover .product-quick-view {
    opacity: 1;
}

/* Стили для навигации между товарами */
.quick-view-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
}

.quick-view-nav svg {
    width: 24px;
    height: 24px;
}

.quick-view-nav:hover {
    background: #CC9453;
    color: white;
}

.quick-view-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quick-view-prev {
    left: 15px;
}

.quick-view-next {
    right: 15px;
}

/* Стили для слайдера */
.quick-view-slider-main {
    position: relative;
    margin-bottom: 15px;
}

.quick-view-slide {
    display: none;
}

.quick-view-slide.active {
    display: block;
}

.quick-view-slide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Стили для миниатюр */
.quick-view-thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-view-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-thumbnail.active {
    border-color: #CC9453;
}

/* Стили для информации о товаре */
.quick-view-sku-row {
    display: flex;
    margin: 10px 0;
    font-size: 14px;
}

.quick-view-param-name {
    font-weight: bold;
    margin-right: 5px;
}

.quick-view-availability {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
}

.quick-view-availability.available {
    color: #00A200;
}

.quick-view-availability.not-available {
    color: #F42C2C;
}

.quick-view-availability svg {
    margin-right: 5px;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .quick-view-container {
        flex-direction: column;
    }

    .quick-view-left,
    .quick-view-right {
        flex: none;
        width: 100%;
    }

    .quick-view-nav {
        width: 30px;
        height: 30px;
    }

    .quick-view-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* Стили для быстрого просмотра */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    /* Скрыто по умолчанию */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.quick-view-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 5px;
    z-index: 1002;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Центрирование контейнера с контентом */
.quick-view-container {
    display: flex;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .quick-view-content {
        padding: 20px;
        max-height: 85vh;
    }

    .quick-view-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Кнопка закрытия */
.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1003;
    color: #333;
}

.quick-view-close:hover {
    color: #CC9453;
}

/* Кнопки навигации между товарами */
.quick-view-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.quick-view-nav:hover {
    background: #CC9453;
    color: white;
}

.quick-view-prev {
    left: 15px;
}

.quick-view-next {
    right: 15px;
}

@media (max-width: 576px) {
    .quick-view-nav {
        width: 30px;
        height: 30px;
    }

    .quick-view-prev {
        left: 5px;
    }

    .quick-view-next {
        right: 5px;
    }
}


.after-add-product .header {
    display: flex;
    align-items: center
}

.after-add-product .header .text {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000
}

.after-add-product .header .close-icon {
    font-size: 37px;
    position: absolute;
    right: 15px;
    top: -10px;
    color: #808080;
    cursor: pointer
}

.after-add-product .body {
    display: flex
}

.after-add-product .body .block-name {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.after-add-product .body .block-name .buttons-next-step {
    display: flex;
    justify-content: space-between;
    margin-top: 50px
}

.after-add-product .body .block-name .buttons-next-step div,
.after-add-product .body .block-name .buttons-next-step a {
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #c88c59;
    padding: 8px 20px;
    cursor: pointer;
    background: #c88c59;
    font-weight: 600;
    color: #fff
}

.after-add-product .body .block-name .buttons-next-step div.btn-stay-here,
.after-add-product .body .block-name .buttons-next-step a.btn-stay-here {
    background: #ededed;
    color: #7b7b7b;
    border-color: #ededed;
    margin-right: 20px
}

.after-add-product .body .block-name .product-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 2rem;
    height: 4rem
}

.after-add-product .body .product-photo {
    margin-right: 2rem;
    height: 150px
}

div#afterAddProductOnCart .modal-content {
    padding: 30px 23px
}

@charset "UTF-8";

.products-view-variants-item {
    padding: 6px
}

.products-view-tile .products-view-item,
.products-view-tile.products-view-item,
.products-view-tile .products-view-footer-additional,
.products-view-list .products-view-block {
    border: 0
}

.products-view-tile .products-view-block {
    position: relative;
    padding: 10px 15px
}

.products-view-tile .products-view-block:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-right: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    box-sizing: border-box;
    opacity: 0
}

.products-view-tile .products-view-block:hover:before {
    opacity: 1
}

.products-view-tile .products-view-block .products-view-item {
    padding-bottom: 0
}

.products-view-tile .products-view-block .products-view-item:hover {
    box-shadow: none
}

.after-add-product .header {
    display: flex;
    align-items: center;
}

.after-add-product .header .text {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.after-add-product .header .close-icon {
    font-size: 37px;
    position: absolute;
    right: 15px;
    top: 0px;
    color: #808080;
    cursor: pointer;
}

.after-add-product .body {
    display: flex;
    margin-top: 20px;
}

.after-add-product .body .block-name {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
}

.after-add-product .body .block-name .buttons-next-step {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.after-add-product .body .block-name .buttons-next-step div,
.after-add-product .body .block-name .buttons-next-step a {
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #c88c59;
    padding: 8px 20px;
    cursor: pointer;
    background: #c88c59;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.after-add-product .body .block-name .buttons-next-step div.btn-stay-here {
    background: #ededed;
    color: #7b7b7b;
    border-color: #ededed;
    margin-right: 20px;
}

.after-add-product .body .block-name .product-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.after-add-product .body .product-photo {
    height: 150px;
    object-fit: contain;
}

div#afterAddProductOnCart .modal-content {
    padding: 30px 23px;
    min-width: 400px;
}

.popup-window-close-icon.popup-window-titlebar-close-icon.--large,
.popup-window-titlebar-close-icon {
    top: 10px;
    right: 7px;
    display: none !important;
}

.popup-window-with-titlebar .popup-window-content {
    margin-top: -40px;
}

/* Адаптивные стили для попапа добавления в корзину */
@media (max-width: 767px) {
    .after-add-product .body {
        flex-direction: column;
        align-items: center;
    }

    .after-add-product .body .product-photo {
        margin-right: 0;
        margin-bottom: 15px;
        height: 120px;
    }

    .after-add-product .body .block-name {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .after-add-product .body .block-name .buttons-next-step {
        flex-direction: column;
        gap: 10px;
    }

    .after-add-product .body .block-name .buttons-next-step div.btn-stay-here {
        margin-right: 0;
        margin-bottom: 10px;
    }

    div#afterAddProductOnCart .modal-content {
        padding: 20px 15px;
        min-width: auto;
        width: 90%;
    }

    .after-add-product .header .close-icon {
        top: -5px;
        right: 5px;
        font-size: 30px;
    }
}

.after-add-product {
    max-width: 600px;
    margin: 0 auto;
}

.after-add-product .body .product-photo {
    max-width: 150px;
    object-fit: contain;
}

.after-add-product .body .block-name {
    flex: 1;
    min-width: 0;
}

.after-add-product .body .block-name .product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: auto;
    max-height: 4.2rem;
}

/* Стили для выбора торговых предложений */
.product-sku-value {
    cursor: pointer;
    margin: 5px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-sku-value:hover {
    border-color: #CC9453;
}

.product-sku-value.selected {
    border-color: #CC9453;
    background-color: rgba(204, 148, 83, 0.1);
}

.product-sku-value.notallowed {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-sku-value-color-block {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    overflow: hidden;
}

.product-sku-value-color-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.product-sku-value-text-block {
    padding: 5px 10px;
    text-align: center;
}

.product-sku-property {
    margin-bottom: 15px;
}

.product-sku-property-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.product-sku-property-values {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


/* Общие стили каталога */
.product-item-container {
    position: relative;
    margin-bottom: 30px;
}

.product-item {
    display: block;
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.product-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Изображение товара */
.product-item-image-wrapper {
    position: relative;
    display: block;
    margin-bottom: 0px;
    padding-top: 100%;
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
}

.product-item-image-original {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.product-item:hover .product-item-image-original {
    transform: scale(1.03);
}

/* Заголовок товара */
.product-item-title {
    margin: 0 0 8px;
    padding: 0 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    text-align: center;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-item-title a:hover {
    color: #000;
}

/* Цена */
.product-item-price-container {
    text-align: center;
    padding: 0 15px 15px;
}

.product-item-price-current {
    color: #000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.product-item-price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 8px;
}

/* Кнопки */
.product-item-button-container {
    padding: 0 0px 0px;
    text-align: center;
}

.product-item-button-container .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-item-button-container .btn:hover {
    background: #333;
}

/* Стикеры/метки */
.product-item-label-ring {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-item-title {
        font-size: 13px;
        height: 36px;
    }

    .product-item-price-current {
        font-size: 15px;
    }

    .product-item-button-container .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Быстрый просмотр */
.product-quick-view {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-item:hover .product-quick-view {
    opacity: 1;
}


/* Стили для выбора торговых предложений  */
.product-sku-property {
    margin-bottom: 20px;
    padding: 0 15px;
}

.product-sku-property-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-sku-property-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-sku-value {
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-sku-value:hover {
    border-color: #CC9453;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 148, 83, 0.15);
}

.product-sku-value.selected {
    border-color: #CC9453;
    background: linear-gradient(135deg, rgba(204, 148, 83, 0.1) 0%, rgba(204, 148, 83, 0.05) 100%);
    position: relative;
}

.product-sku-value.selected::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #CC9453 url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 6.5L1 4L0 5L3.5 8.5L10 2L9 1L3.5 6.5Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: 10px;
    border-radius: 0 6px 0 8px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
}

.product-sku-value.notallowed {
    opacity: 0.4;
    cursor: not-allowed;
    position: relative;
}

.product-sku-value.notallowed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.product-sku-value.notallowed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

/* Цветовые варианты */
.product-sku-value-color-block {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-sku-value:hover .product-sku-value-color-block {
    border-color: #CC9453;
}

.product-sku-value.selected .product-sku-value-color-block {
    border-color: #CC9453;
    box-shadow: 0 0 0 2px rgba(204, 148, 83, 0.3);
}

.product-sku-value-color-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

/* Текстовые варианты */
.product-sku-value-text-block {
    min-width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 6px;
    background: #f8f8f8;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.product-sku-value:hover .product-sku-value-text-block {
    background: #f0f0f0;
    transform: scale(1.05);
}

.product-sku-value.selected .product-sku-value-text-block {
    background: #CC9453;
    color: #fff;
    box-shadow: 0 4px 12px rgba(204, 148, 83, 0.3);
}

/* Анимация при выборе */
@keyframes skuSelectPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-sku-value.selected {
    animation: skuSelectPulse 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-sku-property {
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .product-sku-property-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .product-sku-value {
        padding: 6px 10px;
    }

    .product-sku-value-color-block {
        width: 32px;
        height: 32px;
    }

    .product-sku-value-text-block {
        min-width: 40px;
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }

    .product-sku-value.selected::after {
        width: 14px;
        height: 14px;
        background-size: 8px;
    }
}

/* Индикатор загрузки при смене варианта */
.product-sku-loading {
    position: relative;
    pointer-events: none;
}

.product-sku-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    z-index: 2;
}

.product-sku-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #CC9453;
    border-radius: 50%;
    animation: skuSpin 1s linear infinite;
    z-index: 3;
}

@keyframes skuSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Подсказка при наведении */
.product-sku-value-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.product-sku-value-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #333;
}

.product-sku-value:hover .product-sku-value-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}



/* Улучшенные стили для торговых предложений */
.product-sku-property {
    margin-bottom: 20px;
    padding: 0 15px;
}

.product-sku-property-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-sku-property-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-sku-value {
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-sku-value:hover {
    border-color: #CC9453;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 148, 83, 0.15);
}

.product-sku-value.selected {
    border-color: #CC9453;
    background: linear-gradient(135deg, rgba(204, 148, 83, 0.1) 0%, rgba(204, 148, 83, 0.05) 100%);
    position: relative;
}

.product-sku-value.selected::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #CC9453 url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 6.5L1 4L0 5L3.5 8.5L10 2L9 1L3.5 6.5Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: 10px;
    border-radius: 0 6px 0 8px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
}

.product-sku-value.notallowed {
    opacity: 0.4;
    cursor: not-allowed;
    position: relative;
}

.product-sku-value.notallowed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.product-sku-value.notallowed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

/* Цветовые варианты */
.product-sku-value-color-block {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-sku-value:hover .product-sku-value-color-block {
    border-color: #CC9453;
}

.product-sku-value.selected .product-sku-value-color-block {
    border-color: #CC9453;
    box-shadow: 0 0 0 2px rgba(204, 148, 83, 0.3);
}

.product-sku-value-color-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

/* Текстовые варианты */
.product-sku-value-text-block {
    min-width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 6px;
    background: #f8f8f8;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.product-sku-value:hover .product-sku-value-text-block {
    background: #f0f0f0;
    transform: scale(1.05);
}

.product-sku-value.selected .product-sku-value-text-block {
    background: #CC9453;
    color: #fff;
    box-shadow: 0 4px 12px rgba(204, 148, 83, 0.3);
}

/* Анимация при выборе */
@keyframes skuSelectPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-sku-value.selected {
    animation: skuSelectPulse 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-sku-property {
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .product-sku-property-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .product-sku-value {
        padding: 6px 10px;
    }

    .product-sku-value-color-block {
        width: 32px;
        height: 32px;
    }

    .product-sku-value-text-block {
        min-width: 40px;
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }

    .product-sku-value.selected::after {
        width: 14px;
        height: 14px;
        background-size: 8px;
    }
}


/* Стили для выбора торговых предложений - Модернизированная версия */
.product-sku-property {
    margin-bottom: 20px;
    padding: 0 15px;
}

.product-sku-property-title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-sku-property-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-sku-value {
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-sku-value:hover {
    border-color: #CC9453;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 148, 83, 0.15);
}

.product-sku-value.selected {
    border-color: #CC9453;
    background: linear-gradient(135deg, rgba(204, 148, 83, 0.1) 0%, rgba(204, 148, 83, 0.05) 100%);
    position: relative;
}

.product-sku-value.selected::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #CC9453 url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 6.5L1 4L0 5L3.5 8.5L10 2L9 1L3.5 6.5Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: 10px;
    border-radius: 0 6px 0 8px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
}

.product-sku-value.notallowed {
    opacity: 0.4;
    cursor: not-allowed;
    position: relative;
}

.product-sku-value.notallowed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.product-sku-value.notallowed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

/* Цветовые варианты */
.product-sku-value-color-block {
    width: 25px;
    height: 25px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-color: #CC9453;
}

.product-sku-value:hover .product-sku-value-color-block {
    border-color: #CC9453;
}

.product-sku-value.selected .product-sku-value-color-block {
    border-color: #CC9453;
    box-shadow: 0 0 0 2px rgba(204, 148, 83, 0.3);
}

.product-sku-value-color-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

/* Текстовые варианты */
.product-sku-value-text-block {
    min-width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 6px;
    background: #f8f8f8;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.product-sku-value:hover .product-sku-value-text-block {
    background: #f0f0f0;
    transform: scale(1.05);
}

.product-sku-value.selected .product-sku-value-text-block {
    background: #CC9453;
    color: #fff;
    box-shadow: 0 4px 12px rgba(204, 148, 83, 0.3);
}

/* Анимация при выборе */
@keyframes skuSelectPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-sku-value.selected {
    animation: skuSelectPulse 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-sku-property {
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .product-sku-property-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .product-sku-value {
        padding: 6px 10px;
    }

    .product-sku-value-color-block {
        width: 32px;
        height: 32px;
    }

    .product-sku-value-text-block {
        min-width: 40px;
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }

    .product-sku-value.selected::after {
        width: 14px;
        height: 14px;
        background-size: 8px;
    }
}

/* Индикатор загрузки при смене варианта */
.product-sku-loading {
    position: relative;
    pointer-events: none;
}

.product-sku-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    z-index: 2;
}

.product-sku-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #CC9453;
    border-radius: 50%;
    animation: skuSpin 1s linear infinite;
    z-index: 3;
}

@keyframes skuSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Подсказка при наведении */
.product-sku-value-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.product-sku-value-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #333;
}

.product-sku-value:hover .product-sku-value-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

/* Контейнер для торговых предложений */
.product-sku-container {
    margin: 15px 0;
    padding: 0 15px;
}

.product-sku-property+.product-sku-property {
    margin-top: 15px;
}

/* Стили для мобильных устройств */
@media (max-width: 480px) {
    .product-sku-property-values {
        justify-content: center;
    }

    .product-sku-property-title {
        text-align: center;
    }
}



/* Стили для контейнера маркеров */
.product-markers-container {
    position: absolute;
    top: 10px;
    right: 6px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Стили для отдельных маркеров */
.product-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.product-marker:hover {
    transform: scale(1.1);
}


/* Стили для SVG внутри маркеров */
.product-marker svg {
    width: 50px;
    height: 50px;
    fill: white;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .product-markers-container {
        top: 5px;
        left: 5px;
        gap: 3px;
    }

    .product-marker {
        width: 40px;
        height: 40px;
    }

    .product-marker svg {
        width: 64px;
        height: 49px;
    }
}

/* Анимация появления маркеров */
@keyframes markerAppear {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-marker {
    animation: markerAppear 0.3s ease forwards;
}

.product-marker:nth-child(1) {
    animation-delay: 0.1s;
}

.product-marker:nth-child(2) {
    animation-delay: 0.2s;
}

.product-marker:nth-child(3) {
    animation-delay: 0.3s;
}

.product-item-image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

/* Убедитесь, что эти стили присутствуют в вашем CSS */
.product-quick-view {
    position: absolute;
    bottom: 15px;
    left: 50%;
    top: 27%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 200px;
    height: 33px;
    padding: 8px 15px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 20;
}

.product-item:hover .product-quick-view {
    opacity: 1;
}

.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.quick-view-description {
    margin: 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    max-height: 100px;
    overflow: hidden;
}

.quick-view-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.btn-add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Стили для навигационных стрелок товаров */
.quick-view-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 0;
}

.quick-view-nav:hover:not(.disabled) {
    background: #CC9453;
    transform: translateY(-50%) scale(1.1);
}

.quick-view-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quick-view-prev {
    left: 20px;
}

.quick-view-next {
    right: 20px;
}

/* Стрелки слайдера изображений */
.image-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.image-slider-nav:hover {
    background: #CC9453;
    color: white;
}

.image-slider-prev {
    left: 15px;
}

.image-slider-next {
    right: 15px;
}

/* Контейнер для торговых предложений в попапе */
.quick-view-sku-container {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.quick-view-sku-container .product-sku-property {
    margin-bottom: 15px;
    padding: 0;
}

.quick-view-sku-container .product-sku-property-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.quick-view-sku-container .product-sku-property-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.quick-view-sku-container .product-sku-value {
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 0px 0px;
    transition: all 0.3s ease;
    background: white;
}

.quick-view-sku-container .product-sku-value:hover {
    border-color: #CC9453;
    transform: translateY(-1px);
}

.quick-view-sku-container .product-sku-value.selected {
    border-color: #CC9453;
    background: #CC9453;
    color: white;
}

.quick-view-sku-container .product-sku-value-text-block {
    font-size: 13px;
    font-weight: 500;
}

/* Улучшенный слайдер изображений */
.quick-view-slider-main {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

.quick-view-slide {
    display: none;
    text-align: center;
    padding: 20px;
}

.quick-view-slide.active {
    display: block;
}

.quick-view-slide img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
}

.quick-view-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-view-thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.quick-view-thumbnail.active,
.quick-view-thumbnail:hover {
    opacity: 1;
    border-color: #CC9453;
}

.quick-view-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Статус наличия */
.quick-view-availability.available {
    color: #00A200;
    font-weight: 600;
    padding: 8px 15px;
    background: #f0fff0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

/* Кнопки действий */
.quick-view-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-add-to-cart {
    flex: 1;
    min-width: 140px;
    background: #CC9453;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #b87d3a;
    transform: translateY(-2px);
}

.btn-view-details {
    flex: 1;
    min-width: 140px;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .quick-view-nav {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .quick-view-prev {
        left: 20px;
    }

    .quick-view-next {
        right: 20px;
    }

    .image-slider-nav {
        width: 35px;
        height: 35px;
    }

    .quick-view-actions {
        flex-direction: column;
    }

    .btn-add-to-cart,
    .btn-view-details {
        min-width: auto;
    }

    .quick-view-sku-container .product-sku-property-values {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quick-view-content {
        padding: 15px;
    }

    .quick-view-nav {
        width: 35px;
        height: 35px;
        bottom: 15px;
    }

    .quick-view-slide img {
        max-height: 300px;
    }

    .quick-view-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Анимации */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-view-content {
    animation: slideIn 0.3s ease;
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #f44336;
}


/* Анимации для модального окна */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-modal.show {
    display: flex;
    opacity: 1;
}

.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.quick-view-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 12px;
    z-index: 1002;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.1s;
}

.animated-modal .quick-view-content {
    animation: modalSlideInEnhanced 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideInEnhanced {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px) rotateX(-10deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02) translateY(-5px) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0);
    }
}

/* Анимации для слайдера изображений */
.quick-view-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-slide.active {
    display: block;
    opacity: 1;
}

.quick-view-slide.fade-out {
    animation: slideOut 0.3s ease forwards;
}

.quick-view-slide.fade-in {
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Для обратного направления */
.quick-view-slide.fade-out.reverse {
    animation: slideOutReverse 0.3s ease forwards;
}

.quick-view-slide.fade-in.reverse {
    animation: slideInReverse 0.3s ease forwards;
}

@keyframes slideInReverse {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutReverse {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* Анимация для миниатюр */
.quick-view-thumbnail {
    transition: all 0.3s ease;
    transform: scale(0.95);
}

.quick-view-thumbnail.active {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(204, 148, 83, 0.3);
}

.quick-view-thumbnail:hover {
    transform: scale(1.05);
}

/* Анимация для кнопок навигации */
.quick-view-nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.quick-view-nav:hover:not(.disabled) {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: none;
}

/* Анимация для торговых предложений */
.product-sku-value {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-sku-value.selected {
    animation: skuBounce 0.4s ease;
}

@keyframes skuBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Анимация появления контента */
.quick-view-right > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.quick-view-title {
    animation-delay: 0.1s;
}

.quick-view-artnumber {
    animation-delay: 0.15s;
}

.quick-view-description {
    animation-delay: 0.2s;
}

.quick-view-prices {
    animation-delay: 0.25s;
}

.quick-view-availability {
    animation-delay: 0.3s;
}

.quick-view-sku-container {
    animation-delay: 0.35s;
}

.quick-view-actions {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для артикула */
.quick-view-artnumber {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.artnumber-value {
    font-weight: 600;
    color: #333;
}

/* Улучшенные стили для цен */
.quick-view-prices {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #CC9453;
}

.quick-view-price {
    font-size: 28px;
    font-weight: 700;
    color: #CC9453;
    line-height: 1.2;
}

.quick-view-old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
}

/* Адаптивные улучшения */
@media (max-width: 768px) {
    .quick-view-content {
        padding: 20px;
        margin: 10px;
        max-height: 85vh;
    }

    @keyframes modalSlideInEnhanced {
        0% {
            opacity: 0;
            transform: scale(0.95) translateY(20px);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
}

/* Пульсирующая анимация для привлечения внимания */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 148, 83, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(204, 148, 83, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(204, 148, 83, 0);
    }
}

.btn-add-to-cart {
    animation: pulse 2s infinite;
}

.btn-add-to-cart:hover {
    animation: none;
}


/* Исправления для модального окна */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-modal.show {
    opacity: 1;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10001;
}

.quick-view-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 12px;
    z-index: 10002;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-view-modal.show .quick-view-content {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-container {
    display: flex;
    gap: 30px;
    width: 100%;
}

.quick-view-left {
    flex: 1;
    min-width: 0;
}

.quick-view-right {
    flex: 1;
    min-width: 0;
}

/* Стили для изображений */
.quick-view-slider-main {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-slide {
    display: none;
    text-align: center;
    padding: 20px;
}

.quick-view-slide.active {
    display: block;
}

.quick-view-slide img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
}

.quick-view-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-view-thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.quick-view-thumbnail.active,
.quick-view-thumbnail:hover {
    opacity: 1;
    border-color: #CC9453;
}

.quick-view-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Стили для контента */
.quick-view-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.3;
}

.quick-view-artnumber {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.artnumber-value {
    font-weight: 600;
    color: #333;
}

.quick-view-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.quick-view-prices {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #CC9453;
}

.quick-view-price {
    font-size: 28px;
    font-weight: 700;
    color: #CC9453;
    line-height: 1.2;
}

.quick-view-old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-top: 5px;
}

.quick-view-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    margin: 10px 0;
}

.quick-view-availability.available {
    background: #f0fff0;
    color: #00A200;
    border: 1px solid #00A200;
}

.quick-view-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-add-to-cart {
    flex: 1;
    background: #CC9453;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #b87d3a;
    transform: translateY(-2px);
}

.btn-view-details {
    flex: 1;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px 25px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .quick-view-container {
        flex-direction: column;
    }

    .quick-view-content {
        padding: 20px;
        max-height: 90vh;
    }

    .quick-view-prices {
        padding: 15px;
    }

    .quick-view-price {
        font-size: 24px;
    }

    .quick-view-actions {
        flex-direction: column;
    }
}


/* style.css - добавьте эти стили */

.quick-view-external-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10010;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 0;
}

.quick-view-external-nav:hover:not(.disabled) {
    background: #CC9453;
    transform: translateY(-50%) scale(1.1);
}

.quick-view-external-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quick-view-external-prev {
    left: 25%;
}

.quick-view-external-next {
    right: 25%;
}

.quick-view-external-nav svg {
    width: 24px;
    height: 24px;
}

/* Адаптивность для внешней навигации */
@media (max-width: 768px) {
    .quick-view-external-nav {
        width: 50px;
        height: 50px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .quick-view-external-prev {
        left: 20px;
    }

    .quick-view-external-next {
        right: 20px;
    }
    .product-quick-view{display:none;}
}

.product-sku-value-color {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 3px;
    transition: all 0.3s ease;
}

.product-sku-value-color:hover {
    border-color: #CC9453;
}

.product-sku-value-color.selected {
    border-color: #CC9453;
    background-color: rgba(204, 148, 83, 0.1);
}

.product-sku-value-color-block {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.product-sku-value-color-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-sku-value-text {
    display: inline-block;
    margin: 2px;
    cursor: pointer;
}

.product-sku-value-text-block {
    padding: 8px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.product-sku-value-text:hover .product-sku-value-text-block {
    border-color: #CC9453;
}

.product-sku-value-text.selected .product-sku-value-text-block {
    border-color: #CC9453;
    background: #CC9453;
    color: white;
}


.product-sku-value.notallowed {
    opacity: 0.4;
    cursor: not-allowed;
    position: relative;
}

.product-sku-value.notallowed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.product-sku-value.notallowed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #999;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}


.price-change-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Стиль для случая, когда только одно торговое предложение */
.single-offer .product-sku-value {
    opacity: 0.8;
    cursor: default;
}

.single-offer .product-sku-value.selected {
    opacity: 1;
    cursor: default;
}

.quick-view-price {
    transition: all 0.3s ease;
}

.price-update-animation {
    animation: pricePulse 0.6s ease;
}

@keyframes pricePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #CC9453; }
    100% { transform: scale(1); color: inherit; }
}

#afterAddProductOnCart{padding:20px;}