
@font-face {
	font-family: Klarna Text;
	src: url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Regular.woff),
	url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Regular.woff2),
	url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: Klarna Text;
	src: url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Bold.woff),
	url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Bold.woff2),
	url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Bold.ttf);
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: Klarna Text;
	src: url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Medium.woff),
	url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Medium.woff2),
	url(https://x.klarnacdn.net/ui/fonts/v1.5/KlarnaText-Medium.ttf);
	font-weight: 500;
	font-style: normal;
}

.pricerunner.widget {
	background-color: #fff;
	border-radius: .5rem;
	overflow: hidden;
}

.pricerunner.widget .widget-footer {
	padding: 16px;
	text-align: center;
	font-size: 12px;
	color: #666;
	border-top: 1px solid #e5e5e5;
	position: relative;
}

.pricerunner.widget .products {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
}

.pricerunner.widget .product.card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricerunner.widget .product.card:hover {
	border-color: #00a89c;
	box-shadow: 0 2px 8px rgba(0, 168, 156, 0.1);
}

.pricerunner.widget .product.card * {
	cursor: pointer;
}

.pricerunner.widget .product-image {
	object-fit: contain;
	border-radius: 4px;
}

.pricerunner.widget .product-details {
	flex: 1;
	font-size: 13px;
	min-width: 0;
}

.pricerunner.widget .product-name {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
	line-height: 1.3;
	color: #000;
}

.pricerunner.widget .product-name,
.pricerunner.widget .product-merchant {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.pricerunner.widget .product-stock {
	color: #00a89c;
	text-decoration: none;
	font-weight: 500;
}

.pricerunner.widget .product-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.pricerunner.widget .product-price {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	white-space: nowrap;
}

.pricerunner.widget .buy-button {
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
}

@media only screen and (max-width: 300px) {
	.pricerunner.widget .products {
		zoom: 0.8;
		padding: 12px;
	}
	.pricerunner.widget .product.card {
		gap: 10px;
	}
}
