/* پیشنهاد محصولات پرستاشاپ - استایل فرانت‌اند */

.pps-products-container {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pps-products-header {
    text-align: center;
    margin-bottom: 25px;
}

.pps-products-header h3 {
    font-size: 1.6em;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.pps-products-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.pps-products-grid {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Grid برای دسکتاپ */
@media (min-width: 769px) {
    .pps-products-container[data-desktop-cols="2"] .pps-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pps-products-container[data-desktop-cols="3"] .pps-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pps-products-container[data-desktop-cols="4"] .pps-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pps-products-container[data-desktop-cols="5"] .pps-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Grid برای موبایل */
@media (max-width: 768px) {
    .pps-products-container {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .pps-products-header h3 {
        font-size: 1.3em;
    }
    
    .pps-products-container[data-mobile-cols="1"] .pps-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pps-products-container[data-mobile-cols="2"] .pps-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* کارت محصول */
.pps-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pps-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pps-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* تصویر محصول */
.pps-product-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

.pps-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pps-product-card:hover .pps-product-image img {
    transform: scale(1.05);
}

.pps-product-image.pps-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.pps-product-image.pps-no-image span {
    font-size: 3em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* اطلاعات محصول */
.pps-product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pps-product-name {
    margin: 0 0 10px 0;
    font-size: 1em;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    
    /* محدود کردن به دو خط */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
}

.pps-product-price {
    margin: 0 0 12px 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #27ae60;
    direction: ltr;
    text-align: right;
}

.pps-product-button {
    display: inline-block;
    margin-top: auto;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.pps-product-card:hover .pps-product-button {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.02);
}

/* موبایل - تنظیمات خاص */
@media (max-width: 768px) {
    .pps-product-info {
        padding: 12px;
    }
    
    .pps-product-name {
        font-size: 0.9em;
        min-height: 2.6em;
    }
    
    .pps-product-price {
        font-size: 1em;
        margin-bottom: 10px;
    }
    
    .pps-product-button {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}

/* تبلت */
@media (min-width: 769px) and (max-width: 1024px) {
    .pps-products-container[data-desktop-cols="4"] .pps-products-grid,
    .pps-products-container[data-desktop-cols="5"] .pps-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* موبایل کوچک */
@media (max-width: 480px) {
    .pps-products-container {
        padding: 15px 10px;
        border-radius: 10px;
    }
    
    .pps-products-header h3 {
        font-size: 1.2em;
    }
    
    .pps-products-container[data-mobile-cols="2"] .pps-products-grid {
        gap: 10px;
    }
    
    .pps-product-name {
        font-size: 0.85em;
    }
}

/* انیمیشن لود */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pps-product-card {
    animation: fadeInUp 0.5s ease forwards;
}

.pps-product-card:nth-child(1) { animation-delay: 0.1s; }
.pps-product-card:nth-child(2) { animation-delay: 0.2s; }
.pps-product-card:nth-child(3) { animation-delay: 0.3s; }
.pps-product-card:nth-child(4) { animation-delay: 0.4s; }
.pps-product-card:nth-child(5) { animation-delay: 0.5s; }
.pps-product-card:nth-child(6) { animation-delay: 0.6s; }

/* سازگاری با تم‌های مختلف */
.pps-products-container * {
    box-sizing: border-box;
}

/* RTL Support */
.rtl .pps-product-price {
    text-align: left;
}
