.avatar-wrapper {
    position: relative;
    width: 80px;
}

.avatar-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.badge-fav {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #dc3545;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.seller-actions button {
    margin-right: 8px;
}

.stat span {
    color: #dc3545;
    font-weight: bold;
}

.info-item {
    margin-bottom: 8px;
    font-size: 16px;
}

.info-item i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

.business-card {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 400px;
    padding: 10px;
}

.business-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.business-card .info {
    flex: 1;
}

.business-card .info h3 {
    margin: 0;
    font-size: 16px;
}

.business-card .info .item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 4px;
}

.business-card .info .item i {
    margin-right: 6px;
    color: #666;
}

.business-card .info a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.business-card .info a:hover {
    text-decoration: underline;
}

.contact .icon-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 5px;
    border-top: 1px solid #ddd;
}

.contact .icon-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2196f3;
    /* Default blue */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.contact .icon-button.white {
    background-color: white;
    border: 1px solid #ccc;
    color: #007bff;
}

.contact .icon-button.orange {
    background-color: orange;
    color: white;
}

.contact .icon-button.zalo {
    background-color: white;
    border: 1px solid #ccc;
    padding: 0;
}

.contact .icon-button.zalo img {
    width: 22px;
    height: 22px;
}

.contact .icon-button:hover {
    opacity: 0.85;
}