.productdiv {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.noResult {
    background-image: url("/images/img/no-product copy.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 400px;
    padding: 100px 20px;
    text-align: center;
    font-size: 20px;
    color: #333;
}

.product-card,
.procard {
    width: 350px;
}

.product-card .cardChild,
.procard .cardChild {
    width: 90%;
}
.procard .discount {
    top: -102px !important;
}

.pgIndex {
    text-align: center;
    padding: 10px;
    direction: ltr;
}

.pgIndex > * {
    padding: 10px 2px;
    margin: 3px;
    display: inline-block;
}

.pgIndex > a,
.pgIndex > a:link,
.pgIndex > a:visited {
    background-color: var(--color6);
    color: white;
    border-radius: 4px;
    min-width: 40px;
}

.pgIndex > a:hover {
    background-color: var(--color3);
}

.pgIndex > a.active {
    background-color: var(--color1);
}
/* ============================================[BANNER]============================================ */
.discount-banner {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ffd700);
    padding: 40px;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.discount-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s linear infinite;
}

.banner-content {
    z-index: 2;
}

.banner-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.banner-offer {
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.banner-graphic {
    font-size: 80px;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .discount-banner {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-graphic {
        font-size: 60px;
    }
}
