/* The Color Corner - Coloring Pages plugin styles */

.lcc-breadcrumb { font-size: 14px; color: #888; margin-bottom: 12px; }
.lcc-breadcrumb a { color: #888; text-decoration: underline; }

.lcc-single-title { font-size: 2rem; margin-bottom: 1rem; }

.lcc-single-image {
	background: #f6f6f6;
	border-radius: 12px;
	padding: 16px;
	text-align: center;
	margin-bottom: 20px;
}
.lcc-single-image img { max-width: 100%; height: auto; border-radius: 6px; }

.lcc-single-actions {
	display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.lcc-btn {
	display: inline-block; padding: 12px 20px; border-radius: 8px;
	background: #f0f0f0; color: #333; text-decoration: none; font-weight: 600;
}
.lcc-btn-primary { background: #ff6b6b; color: #fff; }
.lcc-btn:hover { opacity: 0.9; }

.lcc-single-help {
	background: #fff8e6; border: 1px solid #f2e3b3; border-radius: 10px;
	padding: 16px 20px; margin-bottom: 28px;
}
.lcc-single-help ol { margin: 8px 0 0 20px; padding: 0; }

.lcc-topic-grid, .lcc-page-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
	margin: 24px 0;
}
.lcc-topic-card, .lcc-page-card {
	display: block; text-decoration: none; color: inherit;
	background: #fff; border-radius: 12px; overflow: hidden;
	border: 1px solid #eee; transition: transform .15s ease, box-shadow .15s ease;
}
.lcc-topic-card:hover, .lcc-page-card:hover {
	transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.lcc-topic-card img, .lcc-page-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #f9f9f9; }
.lcc-topic-card-label, .lcc-page-card-label {
	padding: 10px 12px; font-weight: 600; font-size: 15px;
}
.lcc-topic-card-label span { display: block; font-weight: 400; font-size: 13px; color: #999; margin-top: 2px; }

.lcc-topic-description { color: #666; max-width: 700px; }

.lcc-product-card {
	position: relative;
	display: inline-flex; flex-direction: column;
	width: 240px; margin: 10px; padding: 16px;
	background: #fff; border: 1px solid #eee; border-radius: 14px;
	text-decoration: none; color: inherit; vertical-align: top;
	transition: transform .15s ease, box-shadow .15s ease;
}
.lcc-product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.lcc-product-badge {
	position: absolute; top: 10px; right: 10px;
	background: #333; color: #fff; font-size: 11px; font-weight: 600;
	padding: 3px 8px; border-radius: 6px;
}
.lcc-product-card img { width: 100%; aspect-ratio: 3/4; object-fit: contain; background: #f9f9f9; border-radius: 8px; margin-bottom: 10px; }
.lcc-product-title { font-weight: 700; margin-bottom: 4px; }
.lcc-product-price { color: #666; margin-bottom: 10px; }
.lcc-product-card .lcc-btn { text-align: center; width: 100%; }
