/* ----------------- محصولات تخفیف‌دار ----------------- */
.discounted-products {
    padding: 40px 20px;
}

.discounted-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #222;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    justify-items: center;
    padding: 0px 230px !important;
}

.product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 260px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card h4, .price {
    margin-bottom: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.price del {
    color: #999;
    margin-left: 8px;
    font-size: 14px;
}

.price span {
    color: #d32f2f;
    font-weight: bold;
    font-size: 17px;
}

.discount-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d32f2f;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
}
