/**
 * Codersly SEO - Frontend helpers
 *
 * Keep this file minimal and non-intrusive:
 * - Breadcrumb styling
 * - SEO notices / badges
 * - Local business blocks (optional)
 */

/* Breadcrumbs
   ------------------------------------------------------------------ */

.cseo-breadcrumbs {
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 1em;
	color: #6b6b6b;
}

.cseo-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.cseo-breadcrumbs a:hover {
	text-decoration: underline;
}

.cseo-breadcrumbs-separator {
	margin: 0 4px;
	opacity: 0.7;
}

/* Optional: compact breadcrumb style for tight layouts */
.cseo-breadcrumbs--compact {
	font-size: 12px;
	opacity: 0.9;
}

/* SEO notice / badge (can be used by shortcodes or widgets)
   ------------------------------------------------------------------ */

.cseo-seo-note {
	font-size: 13px;
	line-height: 1.6;
	padding: 10px 12px;
	border-radius: 4px;
	background: #f5f7fa;
	border: 1px solid #d9e2ec;
	color: #243b53;
	margin: 0 0 1em;
}

.cseo-seo-note--success {
	background: #e3f8e0;
	border-color: #b4e2ac;
	color: #1b512d;
}

.cseo-seo-note--warning {
	background: #fff4e5;
	border-color: #ffddaf;
	color: #8a4b08;
}

.cseo-seo-note--info {
	background: #edf2ff;
	border-color: #c3d3ff;
	color: #243b53;
}

/* Local business / location block
   (for optional Local SEO widgets)
   ------------------------------------------------------------------ */

.cseo-location-card {
	border: 1px solid #e1e4e8;
	border-radius: 4px;
	padding: 12px 14px;
	margin: 0 0 1em;
	background: #ffffff;
	font-size: 14px;
	line-height: 1.6;
}

.cseo-location-card__title {
	font-weight: 600;
	margin: 0 0 4px;
}

.cseo-location-card__meta {
	font-size: 13px;
	color: #6b6b6b;
	margin: 0 0 4px;
}

.cseo-location-card__address {
	margin: 0 0 4px;
}

.cseo-location-card__hours {
	margin: 0;
	list-style: none;
	padding: 0;
	font-size: 13px;
	color: #4b4b4b;
}

.cseo-location-card__hours li {
	margin: 0 0 2px;
}

/* Image SEO helpers (if you ever output any hints)
   ------------------------------------------------------------------ */

.cseo-image-credit {
	font-size: 12px;
	color: #7a7a7a;
	margin-top: 4px;
}

/* Micro spacing tweaks when plugin output is inside post content
   ------------------------------------------------------------------ */

.entry-content .cseo-breadcrumbs:first-child,
.post-content .cseo-breadcrumbs:first-child {
	margin-top: 0;
}

/* Share block
   ------------------------------------------------------------------ */




.single-product div.product .summary .cseo-product-share {
	margin-top: 18px;
	margin-bottom: 40px;
	padding-left: 0;
	justify-content: flex-start;
	text-align: left;
}

.single-post .cseo-product-share,
.page .cseo-product-share {
	padding-left: 0 !important;
	justify-content: center !important;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.single-post .cseo-share-icons,
.page .cseo-share-icons {
	justify-content: center !important;
}








/* Responsive tweaks
   ------------------------------------------------------------------ */

@media (max-width: 600px) {
	.cseo-location-card {
		padding: 10px 12px;
	}

	.cseo-breadcrumbs {
		font-size: 12px;
	}

	.cseo-product-share {
		margin-top: 20px;
		margin-bottom: 28px;
		padding-left: 0;
		justify-content: center;
		text-align: center;
	}

	.cseo-share-icons {
		justify-content: center;
	}

	.cseo-share-btn {
		width: 42px;
		height: 42px;
		min-width: 42px;
		min-height: 42px;
		border-radius: 999px !important;
	}

	.cseo-share-btn__icon,
	.cseo-share-btn__icon svg,
	.cseo-share-whatsapp .cseo-share-btn__icon svg {
		border-radius: 999px;
		width: 20px;
		height: 20px;
		max-width: 20px;
		max-height: 20px;
	}
}






