.dokan-store-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.store-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-section {
    flex: 1;
}

.vendor-search {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.vendor-search:focus {
    outline: none;
    border-color: #cea250;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.sort-label {
    color: #666;
    font-size: 14px;
}

.sort-dropdown {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-size: 14px;
    min-width: 120px;
    color: #333;
    transition: border-color 0.3s ease;
}

.sort-dropdown:focus {
    outline: none;
    border-color: #cea250;
}

/* Store Grid */
.dokan-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.store-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    text-align: center;
    height: 100%;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-name {
    font-size: 1.5em;
    margin: 15px 15px 10px;
    color: #333;
}

.store-description {
    padding: 0 15px;
    margin: 10px 0;
    color: #666;
    font-size: 0.9em;
    flex-grow: 1;
}

.store-rating {
    padding: 0 15px;
    color: #cea250;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.rating-count {
    color: #666;
    font-size: 0.8em;
}

.visit-store-button {
    display: inline-block;
    text-align: center;
    margin: 15px;
    padding: 10px 30px;
    background-color: #cea250;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.visit-store-button:hover {
    background-color: #b88f45;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-grid-header {
        flex-direction: column;
        padding: 12px;
    }
    
    .search-section, .sort-section {
        width: 100%;
    }
    
    .sort-section {
        justify-content: space-between;
    }
    
    .dokan-store-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .store-logo {
        width: 100px;
        height: 100px;
    }
} 