/*!
 * NY Afterpill Cart - 旧LP (med-manage.net/rulclinic/old_120_newpayment.html) の
 * スタイルを完全に踏襲。WPテーマと干渉しないよう .nyap-cart スコープに閉じ込める。
 */

.nyap-cart, .nyap-cart * { box-sizing: border-box; }

.nyap-cart {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	max-width: 680px;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 28px 24px;
	box-shadow: 0 10px 40px rgba(255, 182, 193, 0.2);
	color: #2d3748;
	line-height: 1.5;
	margin: 0 auto;
	animation: nyap-fadeIn 0.5s ease-out;
}

/* WPテーマの "main" などピンク背景を期待する場合に役立つラッパ。
   .nyap-cart-wrap はテンプレ側で囲むのに使える（任意）。 */
.nyap-cart__wrap {
	background: linear-gradient(135deg, #fff5f7 0%, #ffe4e9 100%);
	min-height: 100vh;
	padding: 16px;
	display: flex; align-items: flex-start; justify-content: center;
}

@keyframes nyap-fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ====== logo / hero ====== */
.nyap-cart .nyap-logo {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex; align-items: center; justify-content: center;
	font-size: 32px;
	box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}
.nyap-cart .nyap-h1 {
	text-align: center;
	font-size: 26px;
	margin: 0 0 8px;
	color: #2d3748;
	font-weight: 700;
}
.nyap-cart .nyap-subtitle {
	text-align: center;
	color: #718096;
	font-size: 14px;
	margin: 0 0 36px;
}

/* ====== Step containers ====== */
.nyap-cart .nyap-step1 { display: block; }
.nyap-cart .nyap-step2 { display: none; }
.nyap-cart .nyap-step1[hidden], .nyap-cart .nyap-step2[hidden] { display: none !important; }
.nyap-cart .nyap-step2.is-active { display: block; }

/* ====== FVバー（料金へジャンプ） ====== */
.nyap-cart .nyap-fv-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
	border: 2px solid #ffb6c1;
	border-radius: 14px;
	padding: 12px 16px;
	margin-bottom: 14px;
	animation: nyap-fadeIn 0.5s ease-out;
}
.nyap-cart .nyap-fv-bar__left {
	display: flex; flex-direction: column; align-items: flex-start;
	flex-shrink: 0;
}
.nyap-cart .nyap-fv-bar__label {
	font-size: 11px; color: #c0306a; font-weight: 700; letter-spacing: 0.04em;
}
.nyap-cart .nyap-fv-bar__price {
	font-size: 22px; font-weight: 900; color: #ff1493; line-height: 1.1;
}
.nyap-cart .nyap-fv-bar__btn {
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
	transition: all 0.2s;
	white-space: nowrap;
}
.nyap-cart .nyap-fv-bar__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 20, 147, 0.5); }
.nyap-cart .nyap-fv-bar__btn:active { transform: translateY(0); }

@media (max-width: 600px) {
	.nyap-cart .nyap-fv-bar { padding: 10px 12px; gap: 8px; }
	.nyap-cart .nyap-fv-bar__price { font-size: 18px; }
	.nyap-cart .nyap-fv-bar__btn { padding: 10px 14px; font-size: 13px; }
}

/* ====== Sticky bottom CTA (主にモバイル) ====== */
.nyap-sticky-cta {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 9000;
	display: flex; align-items: center; gap: 12px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: saturate(180%) blur(8px);
	-webkit-backdrop-filter: saturate(180%) blur(8px);
	border-top: 1px solid #ffd6e0;
	box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
	animation: nyap-fadeIn 0.25s ease-out;
}
.nyap-sticky-cta[hidden] { display: none; }
.nyap-sticky-cta__info {
	display: flex; flex-direction: column; flex-shrink: 1;
	min-width: 0;
}
.nyap-sticky-cta__label {
	display: inline-block;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	font-size: 11px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 999px;
	letter-spacing: 0.02em;
	margin-bottom: 4px;
	align-self: flex-start;
	white-space: nowrap;
	border: 1px solid rgba(245,158,11,0.4);
}
.nyap-sticky-cta__label.is-best {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
	color: #fff;
	border-color: transparent;
}
.nyap-sticky-cta__prices {
	display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.nyap-sticky-cta__base {
	font-size: 12px;
	color: #9ca3af;
	text-decoration: line-through;
}
.nyap-sticky-cta__price {
	font-size: 22px; font-weight: 900; color: #ff1493; line-height: 1.1;
}
.nyap-sticky-cta__off {
	background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 4px;
	letter-spacing: 0.02em;
}
.nyap-sticky-cta__btn {
	flex: 1;
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	color: #fff;
	border: none;
	padding: 12px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}
@media (min-width: 768px) {
	.nyap-sticky-cta {
		left: auto; right: 24px; bottom: 24px;
		max-width: 360px;
		border-radius: 16px;
		border: 1px solid #ffd6e0;
		box-shadow: 0 12px 32px rgba(0,0,0,0.12);
	}
}

/* ====== 購入数アニメ ====== */
.nyap-cart .nyap-purchase-stats {
	background: linear-gradient(135deg, #fff9e6 0%, #ffedd5 100%);
	border: 2px solid #ffd700;
	border-radius: 12px;
	padding: 12px 16px;
	margin-bottom: 16px;
	text-align: center;
	animation: nyap-fadeInPulse 1s ease-out;
}
@keyframes nyap-fadeInPulse {
	0% { opacity: 0; transform: scale(0.95); }
	50% { transform: scale(1.02); }
	100% { opacity: 1; transform: scale(1); }
}
.nyap-cart .nyap-purchase-stats__icon { font-size: 20px; margin-right: 8px; }
.nyap-cart .nyap-purchase-stats__text { font-size: 14px; font-weight: 700; color: #ff6b00; display: inline-block; }
.nyap-cart .nyap-purchase-stats__count { font-size: 18px; font-weight: 800; color: #ff1493; margin: 0 4px; }

/* ====== 商品カード（旧 .option-card） ====== */
.nyap-cart .nyap-options { display: flex; justify-content: center; margin-bottom: 24px; }
.nyap-cart .nyap-option-card {
	border: 2px solid #ffc0cb;
	border-radius: 16px;
	padding: 28px 24px;
	background: #fff;
	max-width: 400px;
	width: 100%;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nyap-cart .nyap-option-card.is-selected {
	border-color: #ff69b4;
	background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
	box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

/* 婦人科医師バッジ */
.nyap-cart .nyap-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f8f9fa;
	color: #4a5568;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 8px;
	margin-bottom: 12px;
	border: 1.5px solid #cbd5e0;
	box-shadow: 0 1px 4px rgba(0,0,0,0.07);
	letter-spacing: 0.02em;
}
.nyap-cart .nyap-option-card__badge-wrap { text-align: center; margin-bottom: 4px; }

.nyap-cart .nyap-option-header { text-align: center; margin-bottom: 16px; }
.nyap-cart .nyap-option-title { font-size: 20px; font-weight: 700; margin: 0 0 6px; color: #2d3748; }

.nyap-cart .nyap-recommend-text {
	margin-top: 10px;
	text-align: center;
	font-size: 15px;
	color: #c0557a;
	font-weight: 700;
}
.nyap-cart .nyap-recommend-text__num { font-size: 40px; font-weight: 900; }

.nyap-cart .nyap-price-lowest-wrap { text-align: center; margin-top: 16px; }
.nyap-cart .nyap-price-lowest-tag {
	display: inline-block;
	background: #fffbeb;
	color: #92400e;
	border: 1.5px solid #f59e0b;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 6px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}
.nyap-cart .nyap-price-block { margin-top: 4px; text-align: center; }
.nyap-cart .nyap-price-original {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
	margin-bottom: 4px;
}
.nyap-cart .nyap-price-discount-row {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	margin-bottom: 2px;
}
.nyap-cart .nyap-price-off-badge {
	background: #e53e3e;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 6px;
	letter-spacing: 0.02em;
	flex-shrink: 0;
}
.nyap-cart .nyap-price {
	font-size: 36px;
	font-weight: 900;
	color: #e53e3e;
	letter-spacing: -0.02em;
	line-height: 1;
}

/* 選ばれる理由 */
.nyap-cart .nyap-note {
	margin-top: 6px;
	padding: 18px;
	background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
	border-radius: 12px;
	font-size: 13px;
	color: #d14081;
	line-height: 1.8;
	text-align: center;
}
.nyap-cart .nyap-note-title {
	font-size: 16px;
	font-weight: 700;
	color: #c0306a;
	margin-bottom: 12px;
	display: block;
}
.nyap-cart .nyap-reason-list {
	display: flex; flex-direction: column;
	gap: 10px;
	background: #fff;
	border-radius: 12px;
	padding: 14px 16px;
	box-shadow: 0 2px 8px rgba(255, 105, 180, 0.12);
	list-style: none;
	margin: 0;
}
.nyap-cart .nyap-reason-item {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 13px; color: #3d3d3d;
	line-height: 1.6;
	text-align: left;
}
.nyap-cart .nyap-reason-icon {
	flex-shrink: 0;
	font-size: 18px; line-height: 1.6;
}
.nyap-cart .nyap-reason-text strong {
	display: block;
	font-size: 13px; font-weight: 700;
	color: #ff1493;
	margin-bottom: 2px;
}
.nyap-cart .nyap-reason-text span { font-size: 12px; color: #666; }

/* ====== 次へボタン ====== */
.nyap-cart .nyap-next-button {
	width: 100%;
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	color: #fff;
	border: none;
	padding: 18px 48px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
	transition: all 0.3s;
	margin-top: 24px;
}
.nyap-cart .nyap-next-button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 20, 147, 0.5); }
.nyap-cart .nyap-next-button[disabled] { opacity: .5; cursor: not-allowed; }

.nyap-cart .nyap-next-wrap { text-align: center; margin: 0 auto; }

/* ====== Step2 ====== */
.nyap-cart .nyap-step2-title {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #ff1493;
	margin: 0 0 16px;
}
.nyap-cart .nyap-back-button {
	background: #f0f0f0;
	border: none;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 16px;
	color: #666;
	transition: all 0.3s;
}
.nyap-cart .nyap-back-button:hover { background: #e0e0e0; }

/* バナー（ダークネイビー + ゴールドアクセント） */
.nyap-cart .nyap-quantity-banner {
	background: linear-gradient(135deg, #1a2f4e 0%, #2d4a6e 100%);
	color: #fff;
	padding: 18px 20px 16px;
	text-align: center;
	border-radius: 14px;
	margin-bottom: 10px;
	box-shadow: 0 4px 16px rgba(26, 47, 78, 0.25);
	position: relative;
	overflow: hidden;
}
.nyap-cart .nyap-quantity-banner::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, #f6c94e, #ff9a5c, #f6c94e);
}
.nyap-cart .nyap-quantity-banner__label {
	display: inline-block;
	background: rgba(246, 201, 78, 0.18);
	color: #f6c94e;
	border: 1px solid rgba(246, 201, 78, 0.5);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
	letter-spacing: 0.06em;
	position: relative; z-index: 1;
}
.nyap-cart .nyap-quantity-banner__text {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.4;
	position: relative; z-index: 1;
	color: #f0f4f8;
}
.nyap-cart .nyap-quantity-banner__highlight { color: #f6c94e; font-weight: 900; }

/* multi-hint */
.nyap-cart .nyap-multi-hint {
	background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
	border: 1.5px solid #f6c94e;
	border-radius: 10px;
	padding: 10px 14px;
	margin-bottom: 14px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	text-align: left;
}
.nyap-cart .nyap-multi-hint__icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.nyap-cart .nyap-multi-hint__text { font-size: 13px; font-weight: 600; color: #7a4f00; line-height: 1.6; }

/* ====== 数量カード（旧 .quantity-card 縦並びリスト） ====== */
.nyap-cart .nyap-quantity-options {
	display: flex; flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}
.nyap-cart .nyap-quantity-card {
	all: unset;
	display: block;
	cursor: pointer;
	background: #fff;
	border: 2px solid #ffc0cb;
	border-radius: 14px;
	padding: 18px 16px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nyap-cart .nyap-quantity-card:hover {
	border-color: #ff69b4;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 105, 180, 0.18);
}
.nyap-cart .nyap-quantity-card:focus-visible { outline: 3px solid #ff69b4; outline-offset: 2px; }
.nyap-cart .nyap-quantity-card.is-selected {
	border-color: #ff1493;
	background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
	box-shadow: 0 8px 24px rgba(255, 20, 147, 0.25);
}
.nyap-cart .nyap-quantity-card.popular-card {
	border: 2.5px solid #f59e0b;
	background: linear-gradient(135deg, #fffdf0 0%, #fff8e1 100%);
}
.nyap-cart .nyap-quantity-card.popular-card.is-selected {
	border-color: #ff1493;
	background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
}
.nyap-cart .nyap-quantity-card.best-deal { border-color: #f6c94e; }
.nyap-cart .nyap-quantity-card.best-deal.is-selected { border-color: #ff1493; }

.nyap-cart .nyap-qty-radio-container { display: flex; align-items: center; gap: 12px; }
.nyap-cart .nyap-qty-radio-circle {
	width: 24px; height: 24px;
	border: 3px solid #ccc;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s;
}
.nyap-cart .nyap-quantity-card.is-selected .nyap-qty-radio-circle { border-color: #ff1493; background: #ff1493; }
.nyap-cart .nyap-qty-radio-circle::after {
	content: '';
	width: 10px; height: 10px;
	background: #fff; border-radius: 50%;
	opacity: 0; transition: all 0.3s;
}
.nyap-cart .nyap-quantity-card.is-selected .nyap-qty-radio-circle::after { opacity: 1; }
.nyap-cart .nyap-quantity-info { flex: 1; min-width: 0; }
.nyap-cart .nyap-quantity-label {
	font-size: 28px; font-weight: 900; color: #2d3748;
	margin-bottom: 4px;
}
.nyap-cart .nyap-popular-inline-label {
	display: inline-flex;
	align-items: center; gap: 4px;
	background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
	color: #fff;
	font-size: 11px; font-weight: 800;
	padding: 3px 10px;
	border-radius: 6px;
	margin-left: 8px;
	letter-spacing: 0.03em;
	vertical-align: middle;
}
.nyap-cart .nyap-discount-info { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nyap-cart .nyap-unit-price { font-size: 13px; color: #666; }
.nyap-cart .nyap-discount-badge {
	background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
	color: #fff;
	padding: 4px 12px;
	border-radius: 8px;
	font-size: 15px; font-weight: 900;
	letter-spacing: 0.02em;
	box-shadow: 0 2px 6px rgba(229, 62, 62, 0.4);
}
.nyap-cart .nyap-qty-price-container { text-align: right; flex-shrink: 0; }
.nyap-cart .nyap-original-price {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
	margin-bottom: 4px;
}
.nyap-cart .nyap-total-price {
	font-size: 32px; font-weight: 900; color: #ff1493; line-height: 1;
}
.nyap-cart .nyap-best-deal-badge {
	position: absolute;
	top: -10px; right: 16px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
	color: #fff;
	font-size: 12px; font-weight: 800;
	padding: 5px 14px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(238, 90, 82, 0.4);
	letter-spacing: 0.02em;
	z-index: 2;
}

/* ====== Checkout Button ====== */
.nyap-cart .nyap-checkout-button { padding: 0; margin-top: 16px; }
.nyap-cart .nyap-checkout-btn {
	width: 100%;
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	color: #fff;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
	transition: all 0.3s;
	display: flex; align-items: center; justify-content: center; gap: 8px;
}
.nyap-cart .nyap-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 20, 147, 0.5); }
.nyap-cart .nyap-checkout-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ====== Notice / footer ====== */
.nyap-cart .nyap-notice {
	background: #fff7ed;
	color: #9a3412;
	border-left: 4px solid #fb923c;
	padding: 10px 12px;
	font-size: 13px;
	border-radius: 6px;
	margin-top: 14px;
}
.nyap-cart .nyap-error-msg {
	background: #fee2e2; color: #991b1b;
	padding: 10px 14px; border-radius: 8px; font-size: 13px;
	margin: 10px 0;
}
.nyap-cart .nyap-skip { text-align: center; margin-top: 12px; }
.nyap-cart .nyap-skip a { color: #718096; font-size: 13px; }

.nyap-cart footer {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #e9ecef;
	text-align: center;
}
.nyap-cart .nyap-footer-links {
	display: flex; justify-content: center; gap: 24px;
	flex-wrap: wrap; margin-bottom: 16px;
}
.nyap-cart .nyap-footer-links a {
	color: #718096; text-decoration: none;
	font-size: 13px; transition: color 0.2s;
}
.nyap-cart .nyap-footer-links a:hover { color: #ff69b4; text-decoration: underline; }

/* ====== Modal ====== */
.nyap-cart-modal {
	position: fixed; inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 100000;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.nyap-cart-modal[hidden] { display: none; }
.nyap-cart-modal__box {
	background: #fff;
	border-radius: 20px;
	padding: 28px 24px 24px;
	max-width: 360px; width: 100%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	animation: nyap-modalIn 0.25s ease-out;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #2d3748;
}
@keyframes nyap-modalIn {
	from { opacity: 0; transform: scale(0.9) translateY(20px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}
.nyap-cart-modal__close {
	position: absolute;
	top: 8px; right: 8px;
	width: 32px; height: 32px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #9ca3af;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	display: flex; align-items: center; justify-content: center;
}
.nyap-cart-modal__close:hover { background: #f3f4f6; color: #4b5563; }
.nyap-cart-modal__box { position: relative; }
.nyap-cart-modal__emoji { font-size: 40px; margin-bottom: 12px; }
.nyap-cart-modal__title {
	font-size: 17px; font-weight: 800;
	color: #2d3748; margin: 0 0 10px;
	line-height: 1.5;
}
.nyap-cart-modal__body {
	font-size: 14px; color: #555;
	line-height: 1.75;
	margin-bottom: 20px;
	white-space: pre-line;
}
.nyap-cart-modal__btn-back {
	width: 100%;
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 10px;
	font-size: 16px; font-weight: 800;
	cursor: pointer;
	margin-bottom: 10px;
	box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}
.nyap-cart-modal__btn-proceed {
	width: 100%;
	background: #d1d5db; color: #6b7280;
	border: none;
	padding: 12px;
	border-radius: 10px;
	font-size: 14px; font-weight: 600;
	cursor: pointer;
}
.nyap-cart-modal__btn-proceed:hover { background: #bdc3cc; }

/* ====== STEP2 アドオン ====== */
.nyap-cart .nyap-selected-summary {
	background: #fff;
	border: 1px solid #ffd6e0;
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 13px;
	display: inline-block;
	margin-bottom: 12px;
}
.nyap-cart .nyap-addon-list { display: grid; gap: 12px; margin-bottom: 16px; }
.nyap-cart .nyap-addon-card {
	display: block;
	background: #fff;
	border: 2px solid #ffc0cb;
	border-radius: 14px;
	padding: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}
.nyap-cart .nyap-addon-card:hover { border-color: #ff69b4; }
.nyap-cart .nyap-addon-card.is-checked {
	border-color: #ff1493;
	background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
	box-shadow: 0 6px 14px rgba(255, 20, 147, 0.18);
}
.nyap-cart .nyap-addon-card__check { margin-right: 8px; transform: scale(1.2); }
.nyap-cart .nyap-addon-card__head {
	display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
	font-weight: 700;
}
.nyap-cart .nyap-addon-card__icon { font-size: 22px; }
.nyap-cart .nyap-addon-card__name { flex: 1; }
.nyap-cart .nyap-addon-card__price { color: #ff1493; font-weight: 800; }
.nyap-cart .nyap-addon-card__catch { color: #92400e; font-size: 13px; margin: 4px 0 0; }
.nyap-cart .nyap-addon-card__desc { color: #666; font-size: 13px; margin: 6px 0 0; }
.nyap-cart .nyap-addon-card__volume { font-size: 12px; color: #888; margin: 4px 0 0; }
.nyap-cart .nyap-addon-card__img { max-width: 120px; margin-top: 8px; border-radius: 8px; }

.nyap-cart .nyap-total {
	background: #fff;
	border: 1px solid #ffd6e0;
	border-radius: 12px;
	padding: 14px;
	margin-bottom: 12px;
}
.nyap-cart .nyap-total__row {
	display: flex; justify-content: space-between;
	font-size: 14px; color: #666;
}
.nyap-cart .nyap-total__sum {
	display: flex; justify-content: space-between;
	font-size: 20px; font-weight: 800;
	border-top: 1px dashed #ffd6e0;
	margin-top: 8px; padding-top: 8px;
	color: #ff1493;
}

/* ====== Progress dots ====== */
.nyap-cart .nyap-progress {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12px; color: #718096;
	margin-bottom: 12px;
}
.nyap-cart .nyap-progress__dot {
	padding: 4px 12px; border-radius: 999px; background: #f7fafc;
}
.nyap-cart .nyap-progress__dot.is-active {
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	color: #fff; font-weight: 600;
}
.nyap-cart .nyap-progress__dot.is-done { background: #d1fae5; color: #065f46; }
.nyap-cart .nyap-progress__line { width: 24px; height: 2px; background: #e5e5ea; }

/* ====== レスポンシブ（旧LPと同じブレークポイント） ====== */
@media (max-width: 600px) {
	.nyap-cart {
		padding: 12px;
		border-radius: 16px;
	}
	.nyap-cart .nyap-h1 { font-size: 20px; margin-bottom: 4px; }
	.nyap-cart .nyap-subtitle { font-size: 12px; margin-bottom: 20px; }
	.nyap-cart .nyap-logo { width: 48px; height: 48px; font-size: 24px; margin-bottom: 12px; }
	.nyap-cart .nyap-option-card { padding: 20px 16px; border-radius: 12px; }
	.nyap-cart .nyap-option-title { font-size: 16px; }
	.nyap-cart .nyap-recommend-text { font-size: 13px; }
	.nyap-cart .nyap-recommend-text__num { font-size: 32px; }
	.nyap-cart .nyap-price { font-size: 24px; }
	.nyap-cart .nyap-badge { font-size: 11px; padding: 5px 10px; }
	.nyap-cart .nyap-note { font-size: 12px; padding: 16px; }
	.nyap-cart .nyap-reason-list { padding: 12px 14px; gap: 8px; }
	.nyap-cart .nyap-reason-item { font-size: 12px; gap: 8px; }
	.nyap-cart .nyap-reason-icon { font-size: 16px; }

	.nyap-cart .nyap-step2-title { font-size: 16px; margin-bottom: 10px; }
	.nyap-cart .nyap-quantity-banner { padding: 14px 12px 12px; margin-bottom: 8px; }
	.nyap-cart .nyap-quantity-banner__text { font-size: 16px; }
	.nyap-cart .nyap-quantity-options { gap: 8px; margin-bottom: 12px; }
	.nyap-cart .nyap-quantity-card { padding: 12px 10px; border-radius: 10px; }
	.nyap-cart .nyap-qty-radio-container { gap: 8px; align-items: flex-start; }
	.nyap-cart .nyap-qty-radio-circle { width: 20px; height: 20px; border-width: 2px; margin-top: 4px; }
	.nyap-cart .nyap-qty-radio-circle::after { width: 8px; height: 8px; }
	.nyap-cart .nyap-quantity-label { font-size: 24px; margin-bottom: 2px; line-height: 1; }
	.nyap-cart .nyap-unit-price { font-size: 11px; }
	.nyap-cart .nyap-discount-info { gap: 6px; }
	.nyap-cart .nyap-discount-badge { font-size: 13px; padding: 3px 10px; }
	.nyap-cart .nyap-qty-price-container { min-width: 100px; }
	.nyap-cart .nyap-total-price { font-size: 26px; }
	.nyap-cart .nyap-original-price { font-size: 11px; margin-bottom: 2px; }
	.nyap-cart .nyap-best-deal-badge { font-size: 11px; padding: 4px 12px; top: -8px; right: 10px; }
	.nyap-cart .nyap-checkout-btn { font-size: 16px; padding: 14px; }
	.nyap-cart .nyap-back-button { font-size: 13px; padding: 8px 14px; margin-bottom: 10px; }
	.nyap-cart .nyap-multi-hint { padding: 8px 12px; }
	.nyap-cart .nyap-multi-hint__text { font-size: 12px; }
	.nyap-cart-modal__box { padding: 22px 18px 20px; }
}
