/**
 * Kafanek Obchodnik – Social Sharing Buttons
 *
 * @package Kafanek_Obchodnik
 */

/* Container */
.ko-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.ko-share-heading {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 8px;
	color: #333;
}

/* Button base */
.ko-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.15s;
	color: #fff;
	line-height: 1;
}

.ko-share-btn:hover {
	opacity: 0.85;
	transform: scale(1.05);
}

.ko-share-btn:active {
	transform: scale(0.97);
}

.ko-share-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* Button with text */
.ko-share-btn span {
	margin-left: 6px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

/* Brand colours */
.ko-share-btn--facebook  { background-color: #1877F2; }
.ko-share-btn--twitter   { background-color: #000000; }
.ko-share-btn--whatsapp  { background-color: #25D366; }
.ko-share-btn--pinterest { background-color: #BD081C; }
.ko-share-btn--instagram { background-color: #E4405F; }
.ko-share-btn--copy      { background-color: #8B4513; }

/* Minimal style */
.ko-share-buttons--minimal .ko-share-btn {
	background: transparent;
	padding: 4px;
}

.ko-share-buttons--minimal .ko-share-btn--facebook  { color: #1877F2; }
.ko-share-buttons--minimal .ko-share-btn--twitter   { color: #000000; }
.ko-share-buttons--minimal .ko-share-btn--whatsapp  { color: #25D366; }
.ko-share-buttons--minimal .ko-share-btn--pinterest { color: #BD081C; }
.ko-share-buttons--minimal .ko-share-btn--instagram { color: #E4405F; }
.ko-share-buttons--minimal .ko-share-btn--copy      { color: #8B4513; }

/* Copied state */
.ko-share-btn--copied {
	opacity: 0.6;
}

/* Responsive */
@media (max-width: 480px) {
	.ko-share-btn svg {
		width: 18px;
		height: 18px;
	}

	.ko-share-btn {
		padding: 6px;
	}

	.ko-share-btn span {
		display: none;
	}
}
