/* استایل‌های عمومی */
.cursor-pointer {
    cursor: pointer;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* استایل‌های محصولات */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* استایل‌های مودال */
.seller-profile-modal .modal-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-bottom: none;
}

.seller-profile-modal .modal-header .btn-close {
    filter: invert(1);
}

/* استایل‌های لودینگ */
.loading-spinner {
    background: rgba(255,255,255,0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* استایل‌های ریسپانسیو */
@media (max-width: 768px) {
    .product-image {
        height: 150px;
    }
    
    .hero-section .display-5 {
        font-size: 2rem;
    }
    
    .seller-profile-modal .modal-dialog {
        margin: 10px;
    }
}

/* استایل‌های دکمه‌ها */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* استایل‌های جدول */
.table-hover tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

/* استایل‌های بدنه */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* استایل‌های هیرو section */
.hero-section {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}