.seller-name {
	font-size: 1.42rem;
	font-weight: 600;
}
.seller-title {
	display: flex;
	align-items: center;
	gap:0.5rem;
}
.seller-info-btn {
	width: 20px;
	height: 20px;
	line-height: 20px;
	background: var(--bg2-darken10);
	border-radius: 50%;
	text-align: center;
	font-family: "Times New Roman", sans-serif;
	font-style: italic;
	font-weight: bold;
	color:var(--text-color3);
}
.seller-info-btn:hover {
	background: var(--text-color);
	color:white;
}
.seller-logo {
	max-width: 60px;
	max-height: 60px;
	width: auto;
	height: auto;
	border-radius: var(--border-radius-s);
}

.seller-header-boxes {
	display: flex;
	gap:12px;
}
.seller-header-box {
	border-radius: var(--border-radius-s);
	display: flex;
	align-items: center;
}
.seller-header-contact:hover {
	background: var(--theme-orange);
	color:white;
	fill: var(--theme-yellow);
}
.seller-header-contact {
	padding: 14px 15px 14px 40px;
}
.seller-header-box__icon {
	width: 20px;
}
.seller-header-contact .seller-header-box__icon {
	position: absolute;
	left: 12px;
}
.seller-header-messenger {
	justify-content: center;
	padding: 10px 16px;
}


@media all and (max-width: 1023px) {
	.seller-header-boxes {
		margin-top: 15px;
		flex-wrap: wrap;
	}
	.seller-header-box:not(:hover) {
		background: var(--bg2);
		fill: var(--text-color2);
	}
	.seller-header-contact {
		flex-grow: 1;
	}
}

@media all and (min-width: 1024px) {
	.seller-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 16px;
		background: var(--bg2);
		border-radius: var(--border-radius);
	}
	.seller-header-box:not(:hover) {
		background: white;
		fill: var(--text-color3);
	}
	.seller-name:first-child {
		margin-left: 12px;
	}
}