/**
 * Styles pour Dokan
 */

/* Styles de base pour les pages de vendeur */
.dokan-store-page {
    margin: 20px 0;
}

.dokan-store-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.dokan-store-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.dokan-store-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.dokan-store-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.dokan-store-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Onglets de la boutique */
.dokan-store-tabs {
    margin-top: 20px;
}

.dokan-store-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #eee;
    display: flex;
    gap: 20px;
}

.dokan-store-tabs li {
    margin: 0;
}

.dokan-store-tabs a {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.dokan-store-tabs a:hover,
.dokan-store-tabs a.active {
    color: #49714b;
    border-bottom-color: #49714b;
}

/* Grille des produits */
.dokan-store-products {
    margin-top: 20px;
}

.dokan-store-products .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Responsive */
@media (max-width: 768px) {
    .dokan-store-tabs ul {
        flex-direction: column;
        gap: 0;
    }
    
    .dokan-store-products .products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}
