.pc-pro-wrapper {
	position: relative;
	width: 100%;
}
.pc-pro-swiper {
	width: 100%;
	padding-bottom: 40px;
}
.pc-pro-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #111;
	border-radius: 8px;
	overflow: hidden;
}
.pc-pro-img-wrap {
	display: block;
	overflow: hidden;
}
.pc-pro-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}
.pc-pro-card:hover .pc-pro-img-wrap img {
	transform: scale(1.05);
}
.pc-pro-card-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px;
}
.pc-pro-title {
	margin: 0 0 10px;
	font-size: 1.2rem;
	color: #fff;
	text-decoration: none;
}
.pc-pro-card-content > a {
	text-decoration: none;
}
.pc-pro-price {
	margin-bottom: 15px;
	color: #eee;
}
.pc-pro-action {
	margin-top: auto;
}
.pc-pro-card .button {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 10px 15px;
	background: #333;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	transition: opacity 0.3s;
}
.pc-pro-card .button:hover {
	opacity: 0.8;
}

/* Swiper Nav */
.pc-pro-wrapper .swiper-button-next,
.pc-pro-wrapper .swiper-button-prev {
	background: rgba(0,0,0,0.5);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.pc-pro-wrapper .swiper-button-next:after,
.pc-pro-wrapper .swiper-button-prev:after {
	font-size: 16px;
}
.pc-pro-wrapper .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.5;
}
.pc-pro-wrapper .swiper-pagination-bullet-active {
	opacity: 1;
}
