.dokan-vendor-info-widget {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: none;
    transition: all 0.3s ease;
}

.dokan-vendor-info-widget:hover {
    box-shadow: none;
}

.vendor-info-container {
    display: flex;
    align-items: center;
}

.vendor-info-image {
    margin-right: 20px;
    position: relative;
}

.vendor-info-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f7f7f7;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.vendor-info-image a:hover img {
    transform: scale(1.05);
    box-shadow: none;
}

.vendor-info-details {
    flex: 1;
}

.store-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.store-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.store-name a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.store-location {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.store-location:before {
    content: "📍";
    margin-right: 5px;
}

.store-products {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}

.store-products:before {
    content: "📦";
    margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 767px) {
    .vendor-info-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vendor-info-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .vendor-info-details {
        width: 100%;
    }
}

/* Styles for the simple vendor info shortcode */
.dokan-vendor-info-simple {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    background-color: #ffffff;
    border: none;
}

.store-name-rating {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    min-height: 24px;
}

.store-name {
    font-size: 15px;
    margin-right: 10px;
    flex: 1;
}

.store-name strong {
    margin-right: 5px;
    display: inline-block;
    vertical-align: baseline;
}

.store-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    vertical-align: baseline;
}

.store-name a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.store-rating {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    text-align: right;
    vertical-align: baseline;
}

@media (max-width: 500px) {
    .store-name-rating {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .store-rating {
        margin-top: 5px;
        text-align: left;
    }
} 