.product-list {
	max-width: 1160px;
	margin: 0 auto;
}

.product-list .country-change {
	margin: 0px 16px 24px 16px;
	font-size: 16px;
	text-align: center;
}

.product-list .country-change strong {
	color: var(--primary-color);
}

.product-list .country-change button {
	background-color: #424242;
	border: none;
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	color: #ffffff;
	padding: 3px 6px;
	cursor: pointer;
	border-radius: 2px;
	vertical-align: middle;
}

.product-list .country-change button:hover {
	background-color: #767676;
}

.product-list .back-color {
	padding-bottom: 1px;
}

.product-list .banner {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

.product-list .banner {
	width: 100%;
}

.product-list .banner img {
	width: 100%;
	max-width: 100%;
}

.product-list .btn-more-products {
	text-align: center;
	margin-top: 70px;
	margin-bottom: 24px;
}

.product-list .btn-more-products a {
	display: inline-block;
}

.product-list .btn-all-products {
	max-width: 98%;
	margin: 0 auto 50px auto;
	background-color: color-mix(in srgb, var(--background-color) 90%, black);
	padding: 12px 0;
	font-size: 20px;
	display: block;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 2px;
}

.product-list .btn-all-products:hover {
	background-color: color-mix(in srgb, var(--background-color) 85%, black);
}

.product-list .products {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	max-width: 1400px;
	margin: 0 auto 32px auto;
	gap: 18px;
}

.product-list .products li {
	width: calc(25% - 20px);
	max-width: 100%;
	background-color: var(--card-color);
	padding-top: 6px;
}

.product-list .products li:hover .btn-buy a {
	background-color: var(--primary-color);
	color: var(--primary-color-foreground);
}

.product-list .products li .thumb {
	background-color: #fff;
	margin: 2px;
}

.product-list .products li .thumb a {
	position: relative;
	display: block;
	text-align: center;
	width: 100%;
	height: 230px;
}

.product-list .products li .thumb.only {
	height: calc(100% - 58px);
}

.product-list .products li .thumb.only a {
	height: 100%;
}

.product-list .products li .thumb img {
	max-width: 85%;
	max-height: 85%;
	display: inline;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.product-list .products .title {
	font-size: 15px;
	text-align: center;
	padding: 4px 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: var(--card-color-foreground);
}

.product-list .products .description {
	font-size: 12px;
	text-align: left;
	padding: 4px 10px;
	color: #b9b9b9;
}

.product-list .products li .price {
	text-align: center;
	padding: 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #ccc;
}

.product-list .products li .price .price-old,
.product-list .products li .price .price-current {
	display: inline;
	vertical-align: middle;
}

.product-list .products li .price .price-old {
	color: #d8d8d8;
	font-size: 13px;
	text-decoration: line-through;
	padding-right: 5px;
}

.product-list .products li .price .price-current {
	font-size: 19px;
	color: #a6f156;
}

.product-list .products li .price .price-current span {
	font-size: 12px;
}

.product-list .products li .btn-buy a {
	background-color: color-mix(in srgb, var(--card-color) 90%, black);
	padding: 12px 0;
	font-size: 20px;
	display: block;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 2px;
}

.product-list .pagination {
	margin-top: 20px;
	padding: 5px 15px;
	background-color: #21242b;
}

@media only screen and (max-width: 1000px) {
	.product-list .products li .thumb a {
		height: 240px;
	}

	.product-list .products li .price .price-current {
		font-size: 15px;
	}

	.product-list .products li .btn-buy a {
		font-size: 14px;
	}
}

@media only screen and (max-width: 800px) {
	.product-list .products li {
		width: 400px;
	}
}
