/* Oneset Product Card v1.0.0 */

.oneset-pc {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* ── Media ─────────────────────────────────────── */

.oneset-pc__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.oneset-pc__media iframe,
.oneset-pc__media video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.oneset-pc__media img.oneset-pc__media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Aspect Ratios */
.oneset-pc__media--9-16 {
	padding-bottom: 177.78%; /* 16/9 * 100 */
}

.oneset-pc__media--16-9 {
	padding-bottom: 56.25%;
}

.oneset-pc__media--4-3 {
	padding-bottom: 75%;
}

.oneset-pc__media--1-1 {
	padding-bottom: 100%;
}

/* For images — no aspect ratio padding needed, use natural height */
.oneset-pc__media img.oneset-pc__media-img {
	position: relative;
}

/* If image is inside aspect ratio container, make it absolute */
.oneset-pc__media--9-16 img.oneset-pc__media-img,
.oneset-pc__media--16-9 img.oneset-pc__media-img,
.oneset-pc__media--4-3 img.oneset-pc__media-img,
.oneset-pc__media--1-1 img.oneset-pc__media-img {
	position: absolute;
	top: 0;
	left: 0;
}

.oneset-pc__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	color: #999;
	font-size: 14px;
	background: #f0f0f0;
}

/* ── Product Card ──────────────────────────────── */

.oneset-pc__card {
	display: flex;
	align-items: center;
	margin-top: 8px;
	transition: box-shadow 0.2s ease;
}

.oneset-pc__card--empty {
	justify-content: center;
	min-height: 60px;
}

/* ── Thumbnail ─────────────────────────────────── */

.oneset-pc__thumb {
	flex-shrink: 0;
}

.oneset-pc__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

/* ── Info ──────────────────────────────────────── */

.oneset-pc__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.oneset-pc__title {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.oneset-pc__title:hover {
	color: #000;
}

.oneset-pc__price {
	font-size: 13px;
	font-weight: 600;
}

.oneset-pc__price del {
	opacity: 0.5;
	font-weight: 400;
}

.oneset-pc__price ins {
	text-decoration: none;
}

/* ── Action Button ─────────────────────────────── */

.oneset-pc__btn {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.oneset-pc__btn:hover {
	transform: scale(1.05);
}

.oneset-pc__btn svg {
	display: block;
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 767px) {
	.oneset-pc__title {
		font-size: 12px;
	}

	.oneset-pc__price {
		font-size: 11px;
	}
}
