/* Product page: meta block (SKU, categories, tags, brand) */

.ep-meta {
	font-size: 0.9rem;
	color: #555;
	margin-top: 1rem;
	border: var(--b);
}

.ep-meta__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	padding: 9px 12px;
	border-bottom: 1px solid #e8e8e8;
	font-size: 11px;
}

.ep-meta__row:last-child {
	border-bottom: none;
}

.ep-meta__label {
	color: #aaa;
	white-space: nowrap;
	flex-shrink: 0;
}

.ep-meta__value {
	text-align: right;
	text-transform: uppercase;
	color: var(--k);
	font-weight: 600;
}

.ep-meta a {
	color: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.2em;
}

.ep-meta__arrow {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	opacity: 0.5;
	transition: opacity 0.15s;
}

.ep-meta a:hover .ep-meta__arrow {
	opacity: 1;
}

/* Copy button (SKU) */
.ep-meta__copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0 0 0 0.3em;
	cursor: pointer;
	color: #3a3838;
	opacity: 0.45;
	transition: opacity 0.15s;
	vertical-align: middle;
	line-height: 1;
}

.ep-meta__copy-btn svg {
	width: 14px;
	height: 14px;
	color: #3a3838;
}

.ep-meta__copy-btn:hover {
	opacity: 1;
}

.ep-meta__copy-btn .ep-meta__copy-check {
	display: none;
}

.ep-meta__copy-btn--copied svg:first-of-type {
	display: none;
}

.ep-meta__copy-btn--copied .ep-meta__copy-check {
	display: inline-block;
	color: #2a9d5c;
}

.ep-brand a {
	color: inherit;
}
