/* Style: Product Card */
.product-card-w23r
{
	width: 23rem;
	border: 1px solid #CCC;
	border-radius: 1px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-card-w23r .img-wrapper
{
	position: relative;
	width: 100%;
	height: 23rem;
	background-color: #F8F8F8;
	overflow: hidden;
}

.product-card-w23r .img-wrapper img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.1s;
	display: block;
}

.product-card-w23r .hover-menu
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.1s;
}

.product-card-w23r:hover .img-wrapper img
{
	opacity: 0.5;
}

.product-card-w23r:hover .hover-menu
{
	opacity: 1;
	pointer-events: auto;
}

/* Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within */
.product-card-w23r:focus-within .hover-menu
{
	opacity: 1;
	pointer-events: auto;
}

.product-card-w23r .hover-menu li
{
	margin: 1rem 0;
	width: 80%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.product-card-w23r .hover-menu li::before
{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: -10rem;
	background-color: #609CD4;
	transform: skew(-20deg);
}

.product-card-w23r .hover-menu li a
{
	position: relative;
	display: block;
	width: 100%;
	color: #FFFFFF;
	text-decoration: none;
	padding: 0.5rem 1rem;
	font-weight: bold;
	transition: color 0.1s;
}

.product-card-w23r .hover-menu li a:hover
{
	color: #000000;
}

.product-card-w23r .caption
{
	padding: 1rem 1rem;
	margin-top: 0;
	background-color: white;
}

.product-card-w23r .caption .title
{
	font-weight: bold;
	font-size: 1.3rem;
	margin-bottom: 0.2rem;
}

.product-card-w23r .caption .price
{
	color: #666666;
	font-size: 1rem;
	font-weight: bold;
}

/* Corner Tag */
.pciw_corner_tag
{
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #609CD4;
	padding: 0.3rem 1rem;
	font-size: 1rem;
	font-weight: bold;
	color: white;
}

.pciw_corner_tag::before
{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -1rem;
	width: 1rem;
	height: 105%;
	background-color: #609CD4;
	transform: skewX(25deg);
	transform-origin: bottom right;
}

.tag_dac_color, .tag_dac_color::before
{
	background-color: #FF3A3A;
}

.tag_amp_color, .tag_amp_color::before
{
	background-color: #E8E800;
	color: #000;
}

.tag_spk_color, .tag_spk_color::before
{
	background-color: #8FE877;
	color: #4F4F4F;
}

.discount_price
{
	color: #FF0000;
	margin-right: 0.5rem;
}

.original_price_del
{
	text-decoration: line-through;
}

.pc_buy_btn
{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 1rem;
}
