/* VP inventory — card layout for slabs & free-length */
.vpg-inventory {
	margin: 12px 0 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.vpg-inventory__title {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
}

.vpg-inventory__match,
.vpg-inventory__width {
	margin: 0 0 10px;
	font-size: 13px;
	color: #555;
}

.vpg-inventory__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.vpg-inv-card {
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	background: #fff;
	padding: 10px 12px;
	box-sizing: border-box;
}

.vpg-inv-card__head {
	margin-bottom: 8px;
}

.vpg-inv-card__num {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #666;
	background: #f3f3f3;
	border-radius: 4px;
	padding: 2px 8px;
}

.vpg-inv-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px 10px;
	margin: 0 0 10px;
}

.vpg-inv-card__specs > div {
	margin: 0;
	min-width: 0;
}

.vpg-inv-card__specs dt {
	margin: 0;
	font-size: 10px;
	color: #777;
	font-weight: 600;
	line-height: 1.2;
}

.vpg-inv-card__specs dd {
	margin: 2px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: #222;
	line-height: 1.25;
	word-break: break-word;
}

.vpg-inv-card__mode {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.vpg-inv-card__mode-opt {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	cursor: pointer;
	margin: 0;
	padding: 4px 8px;
	border: 1px solid #ddd;
	border-radius: 999px;
	background: #fafafa;
}

.vpg-inv-card__mode-opt input {
	margin: 0;
}

.vpg-inv-card__mode-opt:has(input:checked) {
	border-color: #333;
	background: #fff;
}

.vpg-inv-card__order-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	align-items: center;
}

.vpg-inventory__qty {
	width: 100%;
	margin: 0;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
	height: 38px;
	box-sizing: border-box;
}

.vpg-inventory__submit {
	margin: 0 !important;
	padding: 8px 12px !important;
	font-size: 12px !important;
	line-height: 1.2 !important;
	height: 38px;
	white-space: nowrap;
}

.vpg-inv-card__line-total {
	margin-top: 6px;
	font-size: 12px;
	color: #333;
	min-height: 1.1em;
}

.woocommerce-product-attributes + .vpg-inventory,
.woocommerce-Tabs-panel--additional_information .vpg-inventory {
	margin-top: 16px;
}

.vpg-inventory ~ .vp-slab-table-display,
.vp-slab-table-display {
	display: none !important;
}

@media (min-width: 640px) {
	.vpg-inventory__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.vpg-inv-card__specs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
