/**
 * Lucas Kledingkast - frontend.css
 * Versie: 1.2.0
 * © Lucas Computer Services — Alle rechten voorbehouden
 */

.lcs-shop {
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.lcs-shop * {
	box-sizing: border-box;
}

.lcs-shop-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.lcs-shop-select {
	padding: 8px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
}

.lcs-shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.lcs-shop-kaart {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lcs-shop-kaart:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.lcs-product-sterren,
.lcs-shop-sterren {
	color: #d4a017;
	font-size: 16px;
	letter-spacing: 2px;
	margin: 0 0 12px;
}

.lcs-shop-sterren {
	font-size: 13px;
	margin: 4px 0 0;
}

.lcs-product-draaginfo {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 20px 0;
	padding: 14px 16px;
	background: #f7f7f7;
	border-radius: 8px;
}

.lcs-product-draagtekst {
	font-size: 14px;
	color: #444;
}

.lcs-product-draagform {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.lcs-product-wasmandform {
	margin: 0;
}

.lcs-product-wasmandknop {
	white-space: nowrap;
}

.lcs-product-draaglabel {
	font-size: 13px;
	color: #666;
}

.lcs-product-draagknop {
	white-space: nowrap;
}

/* Willekeurige outfit-generator */
.lcs-random {
	text-align: center;
	padding: 20px 0;
}

.lcs-random-weergave {
	min-height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.lcs-random-rij {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	align-items: flex-start;
}

.lcs-random-onderdeel {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 220px;
}

.lcs-random-onderdeel-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
	margin-bottom: 6px;
}

.lcs-random-placeholder {
	color: #777;
}

.lcs-random-checkbox-label {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #555;
	margin-top: 6px;
	cursor: pointer;
}

.lcs-random-draagform {
	margin-top: 18px;
	text-align: center;
}

.lcs-random-draagknop {
	margin: 0 auto;
}

.lcs-random-melding {
	text-align: center;
	background: #eaf7ea;
	color: #2a6b2a;
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 16px;
	font-size: 14px;
}

.lcs-random-foto {
	max-width: 280px;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 12px;
}

.lcs-random-titel {
	margin: 0 0 8px;
	font-size: 18px;
}

.lcs-random-link {
	font-size: 13px;
	text-decoration: underline;
}

/* "Op deze dag"-terugblik */
.lcs-terugblik {
	margin-bottom: 28px;
}

.lcs-terugblik-titel {
	margin: 0 0 16px;
	font-size: 20px;
}

.lcs-shop-kaart-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

/* Categorie-navigatiemenu */
.lcs-categorie-menu {
	margin-bottom: 20px;
	border-bottom: 1px solid #ececec;
}

.lcs-categorie-menu-lijst {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lcs-categorie-menu-item {
	position: relative;
}

.lcs-categorie-menu-item > a {
	display: block;
	padding: 10px 14px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	border-radius: 6px 6px 0 0;
	white-space: nowrap;
}

.lcs-categorie-menu-item > a:hover,
.lcs-categorie-menu-item.lcs-actief > a {
	background: #f5f5f5;
	color: #000;
}

.lcs-submenu-pijl {
	font-size: 10px;
	margin-left: 2px;
	display: inline-block;
}

.lcs-categorie-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 0 6px 6px 6px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	list-style: none;
	margin: 0;
	padding: 6px 0;
	z-index: 20;
}

.lcs-categorie-menu-item.lcs-heeft-submenu:hover .lcs-categorie-submenu,
.lcs-categorie-menu-item.lcs-heeft-submenu.lcs-submenu-open .lcs-categorie-submenu {
	display: block;
}

.lcs-categorie-submenu li a {
	display: block;
	padding: 8px 16px;
	color: #333;
	text-decoration: none;
	font-size: 13px;
	white-space: nowrap;
}

.lcs-categorie-submenu li a:hover,
.lcs-categorie-submenu li.lcs-actief a {
	background: #f5f5f5;
	color: #000;
}

@media (max-width: 600px) {
	.lcs-categorie-menu-lijst {
		flex-direction: column;
	}

	.lcs-categorie-submenu {
		position: static;
		box-shadow: none;
		border: none;
		padding-left: 14px;
	}
}

.lcs-shop-afbeelding {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f5f5f5;
	overflow: hidden;
}

.lcs-shop-afbeelding img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lcs-shop-geen-foto {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 13px;
}

.lcs-shop-vorige,
.lcs-shop-volgende {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.85);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.lcs-shop-afbeelding:hover .lcs-shop-vorige,
.lcs-shop-afbeelding:hover .lcs-shop-volgende {
	opacity: 1;
}

.lcs-shop-vorige {
	left: 8px;
}

.lcs-shop-volgende {
	right: 8px;
}

.lcs-shop-telling {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 11px;
	padding: 2px 7px;
	border-radius: 10px;
}

.lcs-shop-info {
	padding: 12px 14px 16px;
}

.lcs-shop-titel {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 600;
}

.lcs-shop-merk,
.lcs-shop-categorie,
.lcs-shop-kleur {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.lcs-shop-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	text-decoration: underline;
}

.lcs-shop-paginering {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	justify-content: center;
}

.lcs-shop-paginering a {
	padding: 6px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	text-decoration: none;
}

.lcs-shop-paginering a.lcs-shop-pagina-actief {
	background: #222;
	color: #fff;
	border-color: #222;
}

.lcs-shop-leeg {
	text-align: center;
	color: #777;
	padding: 40px 0;
}

/* Wenslijst */
.lcs-wenslijst-acties {
	padding: 0 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lcs-wenslijst-link {
	font-size: 12px;
	text-decoration: underline;
	color: #777;
}

.lcs-wenslijst-gekocht-knop {
	width: 100%;
}

/* Statistieken-dashboard */
.lcs-stats-kaarten {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
}

.lcs-stats-kaart {
	flex: 1;
	min-width: 140px;
	background: #f7f7f7;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
}

.lcs-stats-getal {
	display: block;
	font-size: 32px;
	font-weight: 700;
}

.lcs-stats-label {
	display: block;
	font-size: 13px;
	color: #777;
	margin-top: 4px;
}

.lcs-stats-subtitel {
	margin: 32px 0 16px;
	font-size: 18px;
}

.lcs-stats-balken {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lcs-stats-balk-rij {
	display: grid;
	grid-template-columns: 120px 1fr 32px;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}

.lcs-stats-balk-label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lcs-stats-balk-buiten {
	background: #ececec;
	border-radius: 6px;
	height: 12px;
	overflow: hidden;
}

.lcs-stats-balk-binnen {
	background: #2271b1;
	height: 100%;
	border-radius: 6px;
}

.lcs-stats-balk-aantal {
	text-align: right;
	color: #777;
}

/* Losse productpagina (single lcs_kledingstuk) */
.lcs-product {
	max-width: 900px;
}

.lcs-product-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

.lcs-product-merk,
.lcs-product-categorie,
.lcs-product-kleur {
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 20px;
	background: #f0f0f0;
	color: #444;
}

.lcs-product-subtitel {
	margin: 32px 0 16px;
	font-size: 18px;
}

.lcs-product-fotos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.lcs-product-foto {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.lcs-product-bron {
	margin-top: 24px;
	font-size: 13px;
}

.lcs-product-bron a {
	color: #777;
	text-decoration: underline;
}

.lcs-koppel-weergave {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}

.lcs-koppel-weergave-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 110px;
	text-align: center;
	color: inherit;
	text-decoration: none;
	font-size: 12px;
}

.lcs-koppel-weergave-item img,
.lcs-koppel-weergave-geen-foto {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	color: #999;
	font-size: 11px;
}

.lcs-koppel-weergave-item:hover span:last-child {
	text-decoration: underline;
}

/* Specificaties */
.lcs-product-specs {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 6px 20px;
	margin: 0 0 28px;
	max-width: 480px;
}

.lcs-product-specs dt {
	font-weight: 600;
	color: #555;
}

.lcs-product-specs dd {
	margin: 0;
	color: #222;
}

/* Klikbare foto's + lightbox */
.lcs-product-foto-knop {
	background: none;
	border: none;
	padding: 0;
	cursor: zoom-in;
	display: block;
}

.lcs-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.lcs-lightbox.lcs-lightbox-open {
	display: flex;
}

.lcs-lightbox img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 6px;
}

.lcs-lightbox-sluiten {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}
