/* أنماط عامة */
body {
    font-family: 'Tahoma', Arial, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    border-radius: 10px;
}

.product-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.transition-all {
    transition: all 0.3s ease;
}
.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #28a745;
}
.card:hover .product-image {
    transform: scale(1.05);
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.auction-info {
    background-color: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.bid-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

/* أنماط للهواتف */
@media (max-width: 768px) {
    .product-image {
        height: 150px;
    }
    
    .hero-section .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* تنسيقات لوحة المستخدم */
.user-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.object-fit-cover {
    object-fit: cover;
}

/* كروت الإحصائيات */
.stat-card {
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-card.products {
    border-left-color: #6f42c1;
}

.stat-card.bids {
    border-left-color: #20c997;
}

.stat-card.sales {
    border-left-color: #fd7e14;
}

/* قوائم التنقل الجانبية */
.sidebar-nav .nav-link {
    border-radius: 5px;
    margin-bottom: 5px;
}

.sidebar-nav .nav-link.active {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 500;
}

.sidebar-nav .nav-link:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}
/* تنسيقات السلايدر */
.carousel-caption {
    bottom: 3rem;
    left: 10%;
    right: 10%;
}

.carousel-item img {
    object-fit: cover;
    height: 500px;
}

/* تأثيرات الفئات */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* تنسيقات الفئات */
.category-card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: #6e48aa;
}
/* أنماط القوائم */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* أنماط البطاقات */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.card-header {
    font-weight: bold;
}

/* أنماط الجداول */
.table th {
    background-color: #343a40;
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.02);
}

/* أنماط الأزرار */
.btn-primary {
    background-color: #6e48aa;
    border-color: #6e48aa;
}

.btn-primary:hover {
    background-color: #5d3d99;
    border-color: #5d3d99;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* أنماط التنبيهات */
.alert {
    border-radius: 5px;
}

/* تخصيص البوتستراب */
.progress {
    border-radius: 1rem;
}

.progress-bar {
    transition: width 0.3s ease;
}