.banner {
    height: 468px;
    background: #fdfdfd;
    display: flex;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-400);
    border-radius: 20px;
    background: linear-gradient(270.64deg, #FFFFFF 0.39%, #E6E6E6 95.76%);
}

/* Ձախ կողմ - Տեքստ */
.left-content {
    flex: 0.8;
    padding: 52px 0 38px 98px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    max-width: 33%;
}

.badge {
    color: var(--accent-red);
    margin: 0;
    font-weight: 500;
    font-size: 46.41px;
    line-height: 150%;
    letter-spacing: -1.1px;
}

.product-title {
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 40.16px;
    line-height: 150%;
    letter-spacing: -1.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-info {
    font-weight: 400;
    font-size: 29.08px;
    line-height: 150%;
    letter-spacing: -1.1px;
    color: var(--text-main);
}

.discount-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 14px;
    font-weight: 400;
    font-size: 31.32px;
    line-height: 150%;
    letter-spacing: -1.1px;

}

.old-price {
    position: relative;
}

.old-price::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 45%;
    width: 108%;
    height: 1.8px;
    background-color: #F40000;
    transform: rotate(-6deg);
}

.discount-val {
    color: #F40000;
}

/* Պատվիրել Button Styles */
.buy-btn {
    margin-top: 20px;
    position: relative;
    padding: 16px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--accent-red);
    transition: all var(--transition-base);
    font-weight: 500;
    max-width: 182px;
}

.nc-btn-text {
    position: relative;
    z-index: 2;
}

.nc-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--accent-red);
    stroke-width: 2;
}

.right-visuals {
    flex: 1;
    position: relative;
}

.red-element-wrapper {
    position: absolute;
    right: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 168px;
    perspective: 1000px;
}

.red-box {
    width: 320px;
    height: 420px;
    background: var(--accent-red);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(227, 30, 36, 0.2);
    animation: rotate360 120s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vertical-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 65%),
    repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0px,
            rgba(255, 255, 255, 1) 1px,
            rgba(240, 240, 240, 0.6) 2px,
            transparent 24px);
    z-index: 2;
    pointer-events: none;
    /*transform: rotate(180deg);*/
}

.red-box::before, .red-box::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
    z-index: 3;
    opacity: 0.15;
    filter: blur(8px);
}

.red-box::after {
    bottom: 0;
    background: linear-gradient(to top, white, transparent);
}

.phones-layer {
    position: absolute;
    display: flex;
    align-items: center;
    transform: rotate(-35.65deg);
    z-index: 2;
    width: 385px;
    height: 770px;
    top: 0;
    left: 30%;
}

.phones-layer img {
    width: 100%;
    height: auto;
    filter: drop-shadow(-20px 30px 40px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1600px) {
    .banner {
        height: 415px;
    }

    .left-content {
        padding: 52px 0 62px 86px;
        max-width: 35%;
    }

    .badge {
        font-size: 32px;
    }

    .product-title {
        color: var(--text-main);
        margin-bottom: 4px;
        font-size: 28px;
    }

    .price-info {
        font-size: 28px;
    }

    .discount-row {
        gap: 12px;
        margin-top: 7px;
        font-size: 28px;
    }

    .buy-btn {
        margin-top: 30px;
    }

    .red-element-wrapper {
        top: 40px;
        padding-right: 40px;
    }

    .vertical-lines {
        background-image: linear-gradient(105deg, rgba(255, 255, 255, 0) 100%, #FFFFFF 65%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 1) 0px,
                rgba(255, 255, 255, 1) 1px,
                rgba(240, 240, 240, 0.6) 0px, transparent 26px);
    }
}

@media (max-width: 1279px) {
    .banner {
        height: auto;
    }

    .left-content {
        padding: 32px 0 28px 84px;
        max-width: 39%;
    }

    .badge {
        font-size: 24px;
    }

    .product-title {
        margin-bottom: 10px;
        margin-top: 8px;
        font-size: 24px;
    }

    .price-info {
        font-size: 20px;
    }

    .discount-row {
        margin-top: 11px;
        font-size: 24px;
    }

    .buy-btn {
        margin-top: 8px;
    }

    .phones-layer {
        width: 186px;
        height: 555px;
        left: 20%;
    }

    .vertical-lines {
        width: 280px;
    }

    .red-box {
        width: 280px;
        height: 360px;
    }
}

@media (max-width: 1023px) {
    .left-content {
        padding: 19px 0 14px 38px;
        max-width: 39%;
    }

    .badge {
        font-size: 20px;
    }

    .product-title {
        margin-bottom: 12px;
        margin-top: 11px;
        font-size: 20px;
    }

    .price-info {
        font-size: 18px;
    }

    .discount-row {
        margin-top: 12px;
        font-size: 18px;
    }

    .red-element-wrapper {
        top: 24px;
        padding-right: 0;
    }

    .vertical-lines {
        width: 135px;
    }

    .red-box {
        width: 200px;
        height: 280px;
    }

    .phones-layer {
        width: 186px;
        height: 470px
    }
}


@media (max-width: 767px) {
    .left-content {
        padding: 19px 0 14px 20px;
        max-width: 50%;
    }

    .badge {
        font-size: 17px;
    }

    .product-title {
        margin-bottom: 8px;
        margin-top: 8px;
        font-size: 15px;
    }

    .price-info {
        font-size: 14px;
    }

    .discount-row {
        margin-top: 8px;
        font-size: 16px;
    }

    .red-element-wrapper {
        top: 60px;
    }

    .red-box {
        width: 185px;
        height: 280px;
    }

    .left-content .nc-btn-text {
        overflow: unset;
    }

    .left-content .buy-btn.nc-btn-oval {
        background: var(--red-color);
        color: var(--white);
        font-size: 14px;
    }

    .phones-layer {
        width: 186px;
        height: 340px;
    }
}