.pls-card {
	--pls-border: #e5e7eb;
	--pls-text: #1f2937;
	--pls-muted: #6b7280;
	--pls-card-background: #fff;
	position: relative;
	display: grid;
	grid-template-columns: minmax(140px, 28%) 1fr;
	gap: 24px;
	max-width: 880px;
	margin: 1.5em auto;
	padding: 22px;
	border: 1px solid var(--pls-border);
	border-radius: 16px;
	background: var(--pls-card-background);
	box-shadow: 0 7px 24px rgba(15, 23, 42, .07);
	color: var(--pls-text);
	font-family: inherit;
	line-height: 1.6;
	box-sizing: border-box;
}
.pls-card.pls-background-transparent { --pls-card-background: transparent; --pls-text: inherit; --pls-muted: inherit; }
.pls-card * { box-sizing: border-box; }
.pls-image { display: flex; align-items: center; justify-content: center; min-height: 160px; }
.pls-image img { display: block; max-width: 100%; max-height: 260px; width: auto; height: auto; object-fit: contain; border: 0; border-radius: 8px; }
.pls-title { font-size: 1.12em; font-weight: 700; line-height: 1.55; }
.pls-description,
.pls-price { margin: .5em 0; }
.pls-description { color: var(--pls-muted); }
.pls-price { font-weight: 700; }
.pls-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; margin-top: 22px; }
.pls-buttons-count-1 { grid-template-columns: minmax(220px, 420px); justify-content: center; }
.pls-buttons-count-3 .pls-button-wrap:last-child { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
.pls-button-wrap { position: relative; padding-top: 10px; }
.pls-button-wrap a,
.pls-preview-button { display: flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 12px; border: 0; border-radius: 9px; color: #fff !important; text-decoration: none !important; font-weight: 700; font-size: .95em; box-shadow: 0 2px 5px rgba(0, 0, 0, .12); transition: transform .15s ease, filter .15s ease; }
.pls-button-wrap a:hover,
.pls-button-wrap a:focus { filter: brightness(.94); transform: translateY(-1px); }
.pls-amazon a,
.pls-amazon .pls-preview-button { background: #ff9900; color: #201600 !important; }
.pls-rakuten a,
.pls-rakuten .pls-preview-button { background: #bf0000; }
.pls-yahoo a,
.pls-yahoo .pls-preview-button { background: #7b2cbf; }
.pls-mercari a,
.pls-mercari .pls-preview-button { background: #e53935; }
.pls-copy { position: absolute; z-index: 1; left: 50%; top: -9px; transform: translateX(-50%); display: block; max-width: 95%; padding: 1px 8px; border-radius: 999px; background: #fff; color: #b42318; font-size: .72em; font-weight: 700; line-height: 1.45; white-space: nowrap; box-shadow: 0 1px 6px rgba(0, 0, 0, .13); }
.pls-copy.is-pulsing { animation: pls-pulse 2.4s ease-in-out infinite; }
.pls-style-minimal { gap: 20px; padding: 18px; border-radius: 6px; box-shadow: none; }
.pls-style-minimal .pls-title { padding-left: 12px; border-left: 4px solid #334155; }
.pls-style-minimal .pls-button-wrap a,
.pls-style-minimal .pls-preview-button { border-radius: 4px; box-shadow: none; }
.pls-style-elegant { overflow: hidden; padding: 26px; border-color: #ded5c5; border-radius: 2px; box-shadow: 0 12px 34px rgba(80, 65, 45, .11); }
.pls-style-elegant::before { content: ""; position: absolute; z-index: 0; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #9b7a46, #e7d5b2, #9b7a46); }
.pls-style-elegant > * { position: relative; z-index: 1; }
.pls-style-elegant .pls-title { padding-bottom: 7px; border-bottom: 1px solid #ded5c5; letter-spacing: .03em; }
.pls-style-elegant .pls-button-wrap a,
.pls-style-elegant .pls-preview-button { border-radius: 2px; box-shadow: none; }
.pls-style-pop { overflow: hidden; padding: 24px; border: 0; border-radius: 24px; box-shadow: 0 13px 34px rgba(79, 70, 229, .17); }
.pls-style-pop::before { content: ""; position: absolute; z-index: 0; top: 0; left: 0; width: 100%; height: 7px; background: linear-gradient(90deg, #ff9900 0 25%, #bf0000 25% 50%, #7b2cbf 50% 75%, #e53935 75%); }
.pls-style-pop > * { position: relative; z-index: 1; }
.pls-style-pop .pls-image { border-radius: 18px; background: rgba(124, 58, 237, .06); }
.pls-style-pop .pls-button-wrap a,
.pls-style-pop .pls-preview-button { border-radius: 999px; }
.pls-preview-image { display: flex; align-items: center; justify-content: center; width: 130px; height: 150px; border-radius: 12px; background: linear-gradient(145deg, #eef2ff, #fdf2f8); font-size: 54px; }
.pls-preview-card .pls-preview-button { cursor: default; }
@keyframes pls-pulse {
	0%, 100% { transform: translateX(-50%) scale(1); opacity: .9; }
	50% { transform: translateX(-50%) scale(1.045); opacity: 1; }
}
@media (max-width: 600px) {
	.pls-card { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
	.pls-image { min-height: 0; }
	.pls-image img { max-height: 210px; }
	.pls-buttons { grid-template-columns: 1fr; gap: 17px; }
	.pls-buttons-count-3 .pls-button-wrap:last-child { grid-column: auto; width: auto; justify-self: stretch; }
	.pls-preview-image { height: 120px; }
}
@media (prefers-reduced-motion: reduce) {
	.pls-copy.is-pulsing { animation: none; }
	.pls-button-wrap a { transition: none; }
}
