/**
 * Mariya Dykalo — Product Details rows.
 * Matches the existing "Delivery" row: thin divider on top, a narrow grey
 * label column and a value column. Uses Elementor global typography/colors.
 */
.md-product-details {
	width: 100%;
}

.md-detail-row {
	display: flex;
    align-items: baseline;
    gap: 24px;
    padding-top: 8px;
    padding-bottom: 12px;
    border-top: 1px solid #B5B5B533;
}

.md-detail-label,
.md-detail-value {
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-size: var(--e-global-typography-text-font-size);
	line-height: var(--e-global-typography-text-line-height);
	letter-spacing: var(--e-global-typography-text-letter-spacing);
}

.md-detail-label {
	flex: 0 0 70px;
	font-family: var(--e-global-typography-10f7d7e-font-family), Sans-serif;
    font-size: var(--e-global-typography-10f7d7e-font-size);
    line-height: var(--e-global-typography-10f7d7e-line-height);
    color: var(--e-global-color-75487ad);
}

.md-detail-value {
	flex: 1 1 auto;
	color: var(--e-global-color-text, #333);
}

@media (max-width: 480px) {
	.md-detail-label {
		flex-basis: 70px;
	}
}