.ajpl-wrap {
	margin: 24px 0;
	padding: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fff;
}

.ajpl-title {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 700;
}

.ajpl-note,
.ajpl-help,
.ajpl-supported-power {
	margin-bottom: 16px;
	color: #555;
}

.ajpl-prescription-table-wrap {
	overflow-x: auto;
	margin-bottom: 24px;
}

.ajpl-prescription-table {
	width: 100%;
	border-collapse: collapse;
}

.ajpl-prescription-table th,
.ajpl-prescription-table td {
	padding: 12px;
	border: 1px solid #ddd;
	text-align: center;
}

.ajpl-prescription-table input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.ajpl-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

.ajpl-card {
	display: block;
	cursor: pointer;
}

.ajpl-card input[type="radio"] {
	display: none;
}

.ajpl-card-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	border: 1px solid #ddd;
	border-radius: 12px;
	background: #fafafa;
	transition: all 0.2s ease;
	min-height: 130px;
}

.ajpl-card input[type="radio"]:checked + .ajpl-card-content {
	border-color: #6c4bd9;
	box-shadow: 0 0 0 2px rgba(108, 75, 217, 0.12);
	background: #f8f5ff;
}

.ajpl-card-content strong {
	font-size: 16px;
}

.ajpl-card-content small {
	color: #666;
	line-height: 1.4;
}

.ajpl-card-content em {
	font-style: normal;
	font-weight: 700;
	color: #222;
}

.ajpl-lens-options {
	display: none;
}

.ajpl-lens-options.is-active {
	display: block;
}

.ajpl-price-box {
	margin-top: 20px;
	padding: 16px;
	border: 1px dashed #bbb;
	border-radius: 12px;
	background: #fcfcfc;
}

.ajpl-price-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
}