/**
 * Product Specs Elementor Widget Styles
 *
 * @package Product_Specs_Elementor
 * @since 1.0.0
 */

.product-specs-elementor {
	width: 100%;
}

.product-specs-elementor .product-specs-title {
	margin: 0 0 20px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.product-specs-elementor .product-information {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.product-specs-elementor .product-information > div {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}

.product-specs-elementor .product-information > div:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.product-specs-elementor .product-information dt {
	font-weight: 500;
	margin: 0;
	padding: 0;
	margin-right: 15px;
	min-width: 200px;
	flex-shrink: 0;
	color: #333;
	font-size: 14px;
	line-height: 1.5;
}

.product-specs-elementor .product-information dd {
	margin: 0;
	padding: 0;
	flex: 1;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

.product-specs-elementor .product-information dd a {
	color: inherit;
	text-decoration: none;
}

.product-specs-elementor .product-information dd a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.product-specs-elementor .product-information > div {
		flex-direction: column;
	}
	
	.product-specs-elementor .product-information dt {
		min-width: auto;
		margin-right: 0;
		margin-bottom: 5px;
	}
}

