.rfpp-purchase-plans {
	margin: 0 0 18px;
	padding: 16px;
	border: 1px solid #e6e0d3;
	border-radius: 18px;
	background: #f7f3e8;
	direction: rtl;
}

.rfpp-section-title {
	margin: 0 0 12px;
	font-weight: 700;
	color: #1f4d2b;
}

.rfpp-plan-options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.rfpp-plan-option {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0;
	padding: 12px;
	border: 1px solid #ded8ca;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.rfpp-plan-option:hover,
.rfpp-plan-option.is-selected {
	border-color: #1f4d2b;
	box-shadow: inset 0 0 0 1px #1f4d2b;
	background: #fbf9f3;
}

.rfpp-plan-option.is-disabled {
	opacity: .55;
	cursor: not-allowed;
}

.rfpp-plan-option input {
	margin-top: 4px;
	flex: 0 0 auto;
}

.rfpp-plan-option span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.rfpp-plan-option strong {
	color: #1f4d2b;
}

.rfpp-plan-option small,
.rfpp-plan-option em {
	font-size: 12px;
	line-height: 1.7;
	font-style: normal;
}

.rfpp-plan-option em {
	color: #9b2c2c;
}

.rfpp-quantity-context {
	margin: 13px 0 0;
	font-size: 13px;
	color: #555;
}

.rfpp-club-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #ded8ca;
}

.rfpp-club-fields[hidden] {
	display: none !important;
}

.rfpp-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
}

.rfpp-field select {
	width: 100%;
	min-height: 42px;
	border-radius: 10px;
}

.rfpp-club-note {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 12px;
	line-height: 1.9;
	color: #555;
}

@media (max-width: 767px) {
	.rfpp-plan-options,
	.rfpp-club-fields {
		grid-template-columns: 1fr;
	}
}
