.ph-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 10px 0;
}

.ph-section-title__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ph-section-heading {
	font-size: 18px;
	font-weight: 700;
	color: #1f211d;
	line-height: 1.2;
}

.ph-section-subtitle {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.5;
}

.ph-icon {
	width: 20px;
	height: 20px;
	display: inline-block;
	color: inherit;
}

.ph-icon--md {
	width: 22px;
	height: 22px;
}

.ph-icon--lg {
	width: 26px;
	height: 26px;
}

.ph-icon-accent {
	color: #f6b31f;
}

.ph-option-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.ph-option__card {
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	padding: 18px;
	cursor: pointer;
	position: relative;
	min-height: 100%;
	transition: all 0.2s ease;
}

.ph-option__card:hover {
	border-color: rgba(148, 163, 184, 0.8);
	transform: translateY(-2px);
}

.ph-option__card.selected {
	background: #ffffff;
	border-color: #f6b31f;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.ph-option__card .addon-card-check {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 22px;
	height: 22px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.2s ease;
}

.ph-option__card.selected .addon-card-check {
	opacity: 1;
	transform: scale(1);
	background: #f6b31f;
	border-color: #f6b31f;
	color: #1f211d;
}

.ph-option__card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ph-option__card.is-disabled {
	opacity: 0.45;
	pointer-events: none;
	filter: grayscale(1);
	border-color: #e2e8f0;
	background: #f5f5f5;
}

.ph-option__icon,
.ph-option__card .product-icon {
	width: 40px;
	height: 40px;
	border-radius: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: rgb(148, 163, 184);
	font-weight: 600;
}

.ph-option__icon svg,
.ph-option__card .product-icon svg {
	width: 100%;
	height: 100%;
	color: inherit;
}

.ph-option__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px 0;
	color: #1f211d;
}

.ph-option__sub,
.ph-option__card .product-description {
	font-size: 13px;
	color: #64748b;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.ph-option__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.ph-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px 5px;
	border-radius: 8px;
	font-size: 10px;
	font-weight: 600;
	border: 1px solid rgb(191, 219, 254);
	background: rgb(239, 246, 255);
	color: rgb(29, 78, 216);
	line-height: 10px;
}

.ph-chip.ph-chip--info {
	border-color: rgba(59, 130, 246, 0.35);
	background: rgba(59, 130, 246, 0.1);
	color: #1d4ed8;
}

.ph-chip.ph-chip--warning {
	border-color: rgba(234, 179, 8, 0.45);
	background: rgba(250, 204, 21, 0.16);
	color: #854d0e;
}

.ph-option__list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ph-benefit {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #0f172a;
	font-size: 12px;
	line-height: 1.5;
}

.ph-benefit__icon {
	width: 15px;
	height: 15px;
	color: #10b981;
	flex-shrink: 0;
}

.ph-benefit__text {
	display: inline-block;
}

/* Admin helpers */
.phhrt-icon-preview {
	margin-top: 6px;
	min-height: 26px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.phhrt-icon-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.phhrt-icon-option__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}