/* استایل پیش‌فرض برای محصولات پر فروش */
.wc-best-sellers-wrapper {
    margin: 20px 0;
    padding: 0;
}

.wc-best-sellers-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.wc-best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.wc-best-seller-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wc-best-seller-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.wc-best-seller-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wc-best-seller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-best-seller-content {
    padding: 15px;
}

.wc-best-seller-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.wc-best-seller-title a {
    color: #333;
    text-decoration: none;
}

.wc-best-seller-title a:hover {
    color: #007cba;
}

.wc-best-seller-price {
    font-size: 20px;
    font-weight: bold;
    color: #77a464;
    margin-bottom: 15px;
}

.wc-best-seller-sales {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.wc-best-seller-sales i {
    margin-left: 5px;
    color: #ffb900;
}

.wc-best-seller-button {
    display: inline-block;
    padding: 10px 20px;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.wc-best-seller-button:hover {
    background: #005a87;
    color: #fff;
}

/* لیستی */
.wc-best-sellers-list .wc-best-seller-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wc-best-sellers-list .wc-best-seller-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.wc-best-sellers-list .wc-best-seller-content {
    flex: 1;
    padding: 15px;
}

/* حالت اسلایدر */
.wc-best-sellers-slider {
    position: relative;
}

.wc-best-sellers-slider .swiper-button-next,
.wc-best-sellers-slider .swiper-button-prev {
    color: #333;
}

.wc-best-sellers-slider .swiper-pagination-bullet {
    background: #333;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .wc-best-sellers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .wc-best-sellers-list .wc-best-seller-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wc-best-sellers-list .wc-best-seller-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .wc-best-sellers-grid {
        grid-template-columns: 1fr;
    }
}