.mazaya-discount-box {
    background: linear-gradient(135deg, #6b1f31 0%, #b94d63 50%, #d4516f 100%);
    position: relative;
    overflow: hidden;
}

.mazaya-discount-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.05) 20px,
            rgba(255, 255, 255, 0.05) 40px);
    animation: discountStripes 20s linear infinite;
}

@keyframes discountStripes {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes discountEmoji {

    0%,
    100% {
        top: 10%;
        right: 10%;
        transform: rotate(0deg) scale(1);
    }

    50% {
        top: 15%;
        right: 5%;
        transform: rotate(20deg) scale(1.2);
    }
}

.mazaya-discount-number {
    position: relative;
    display: inline-block;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    text-shadow:
        4px 4px 0px rgba(0, 0, 0, 0.2),
        8px 8px 0px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(255, 255, 255, 0.3);
    animation: discountPulse 2s ease-in-out infinite;
}

@keyframes discountPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.mazaya-discount-number::before {
    content: attr(data-discount);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.mazaya-discount-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mazaya-discount-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.mazaya-discount-stars span {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.mazaya-discount-stars span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mazaya-discount-stars span:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
    font-size: 18px;
}

.mazaya-discount-stars span:nth-child(3) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    font-size: 20px;
}

.mazaya-discount-stars span:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

.mazaya-discount-stars span:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-delay: 0.8s;
    font-size: 16px;
}

.mazaya-discount-stars span:nth-child(6) {
    top: 50%;
    right: 5%;
    animation-delay: 1.2s;
    font-size: 22px;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

.mazaya-discount-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: discountShine 3s ease-in-out infinite;
}

@keyframes discountShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.perf-left {
    left: -16px;
}

.perf-circle {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #f9fafb;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.perf-right {
    right: -16px;
}

.perf-circle {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #f9fafb;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.single-mazaya .site-content {
    background-image: url(../images/mazaya-banner.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top 60px center;
}