/* فالو فروشگاه — صفحه فروشگاه و داشبورد */

.store-follow-hero {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.25rem;
	width: 100%;
	max-width: 32rem;
	margin-inline: auto;
}

.store-follow-hero__actions {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.store-follow-hero--count-only {
	justify-content: space-between;
}

.store-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.75rem;
	padding: 0.625rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(255, 255, 255, 0.92);
	color: #334155;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.store-share-btn:hover:not(:disabled) {
	transform: translateY(-1px);
	border-color: rgba(37, 99, 235, 0.4);
	color: #1d4ed8;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.store-share-btn:disabled {
	opacity: 0.65;
	cursor: wait;
}

.store-share-btn__icon {
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
}

.store-share-btn__label {
	line-height: 1;
}

.store-follow-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.75rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	border: 1px solid rgba(37, 99, 235, 0.35);
	background: var(--store-btn-bg, linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%));
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.store-follow-btn:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}

.store-follow-btn:disabled {
	opacity: 0.7;
	cursor: wait;
}

.store-follow-btn.is-following {
	background: #fff;
	color: #1d4ed8;
	border-color: #bfdbfe;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.store-follow-btn__icon {
	width: 1.125rem;
	height: 1.125rem;
}

.store-follow-btn__icon--following {
	display: none;
}

.store-follow-btn.is-following .store-follow-btn__icon--follow {
	display: none;
}

.store-follow-btn.is-following .store-follow-btn__icon--following {
	display: block;
}

.store-follow-count {
	margin: 0;
	font-size: 0.8125rem;
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
}

.dash-unfollow-btn {
	padding: 0.5rem 0.875rem;
	border-radius: 0.75rem;
	border: none;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
}
