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

.psp-products-wrapper {
    margin: 3rem auto;
    padding: 0;
    max-width: 100%;
    font-family: inherit;
    direction: rtl;
}

.psp-products-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.psp-products-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    font-family: inherit;
}

.psp-icon {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.psp-products-subtitle {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 400;
    font-family: inherit;
}

.psp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.psp-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.psp-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #3b82f6;
}

.psp-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.psp-product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f8fafc;
    overflow: hidden;
}

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

.psp-product-card:hover .psp-product-image {
    transform: scale(1.08);
}

.psp-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.psp-product-card:hover .psp-product-overlay {
    opacity: 1;
}

.psp-view-product {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 2px solid #ffffff;
    font-family: inherit;
}

.psp-product-info {
    padding: 1.25rem;
}

.psp-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: inherit;
}

.psp-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.psp-product-price {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.psp-price-amount {
    font-size: 1.375rem;
    font-weight: 700;
    color: #059669;
    font-family: inherit;
}

.psp-price-currency {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    font-family: inherit;
}

.psp-product-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
}

/* تبلت */
@media (max-width: 768px) {
    .psp-products-wrapper {
        margin: 2.5rem auto;
    }
    
    .psp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .psp-products-title {
        font-size: 1.5rem;
    }
    
    .psp-icon {
        width: 24px;
        height: 24px;
    }
    
    .psp-product-info {
        padding: 1rem;
    }
    
    .psp-product-name {
        font-size: 0.9rem;
        min-height: 2.7rem;
    }
    
    .psp-price-amount {
        font-size: 1.2rem;
    }
}

/* موبایل */
@media (max-width: 480px) {
    .psp-products-wrapper {
        margin: 2rem auto;
    }
    
    .psp-products-header {
        margin-bottom: 1.5rem;
    }
    
    .psp-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .psp-products-title {
        font-size: 1.375rem;
    }
    
    .psp-products-subtitle {
        font-size: 0.875rem;
    }
    
    .psp-product-card {
        border-radius: 10px;
    }
    
    .psp-product-info {
        padding: 0.875rem;
    }
    
    .psp-product-name {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .psp-price-amount {
        font-size: 1.125rem;
    }
    
    .psp-price-currency {
        font-size: 0.8rem;
    }
    
    .psp-product-badge {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .psp-view-product {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

/* موبایل خیلی کوچک */
@media (max-width: 360px) {
    .psp-products-title {
        font-size: 1.25rem;
    }
    
    .psp-product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* دارک مود - اختیاری */
@media (prefers-color-scheme: dark) {
    .psp-products-wrapper {
        color: #f1f5f9;
    }
    
    .psp-products-title {
        color: #f1f5f9;
    }
    
    .psp-product-card {
        background: #1e293b;
        border-color: #334155;
    }
    
    .psp-product-card:hover {
        border-color: #3b82f6;
    }
    
    .psp-product-image-wrapper {
        background: #0f172a;
    }
    
    .psp-product-name {
        color: #f1f5f9;
    }
}
