.haine-rc-buttons {
	display: flex;
	gap: 12px;
	margin: 20px 0;
}

.haine-rc-button {
	padding: 11px 28px;
	border-radius: 8px;
	border: 1px solid var(--Foundation-Orange-O300, #d84006);
	background: transparent;
	color: var(--Foundation-Orange-O300, #d84006);
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.haine-rc-button:hover {
	background: var(--Foundation-Orange-O300, #d84006);
	color: #fff;
}

.haine-rc-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.haine-rc-modal-content {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	max-width: 600px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
}

.haine-rc-step-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.haine-rc-form-step {
	display: none;
}

.haine-rc-form-step.active {
	display: block;
}

.haine-rc-form-step[data-step="3"].active ~ .haine-rc-nav-buttons {
	display: flex;
}

.haine-rc-form {
	max-width: 400px;
	margin: 0 auto;
}

.haine-rc-field {
	margin-bottom: 16px;
}

.haine-rc-field label {
	display: block;
	color: #6b6b6b;
	font-size: 14px;
	margin-bottom: 4px;
}

.haine-rc-field input[type="text"],
.haine-rc-field input[type="tel"],
.haine-rc-field textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #c7c7c7;
	border-radius: 8px !important;
}

.haine-rc-products-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.haine-rc-products-table th,
.haine-rc-products-table td {
	padding: 8px;
	border: 1px solid #ddd;
	text-align: left;
}

.haine-rc-products-table input[type="checkbox"] {
	margin: 0 !important;
}

.haine-rc-select-all {
	margin-bottom: 10px;
}

.haine-rc-nav-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
	margin-top: 20px;
}

.haine-rc-nav-buttons button {
	padding: 11px 28px;
	border-radius: 8px;
	border: 1px solid var(--Foundation-Orange-O300, #d84006);
	background: transparent;
	color: var(--Foundation-Orange-O300, #d84006);
	font-weight: 600;
	cursor: pointer;
}

.haine-rc-nav-buttons .haine-rc-next {
	background: var(--Foundation-Orange-O300, #d84006);
	color: #fff;
}

.haine-rc-upload {
	margin-bottom: 16px;
}

.haine-rc-radio-group {
	margin-bottom: 16px;
}

.haine-rc-radio-group label {
	display: block;
	margin-bottom: 8px;
}

.haine-rc-instructions {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
	line-height: 1.6;
}

.haine-rc-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 40px;
	text-align: center;
}

.haine-rc-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--Foundation-Orange-O300, #d84006);
	border-radius: 50%;
	animation: haine-rc-spin 1s linear infinite;
	margin-bottom: 16px;
}

@keyframes haine-rc-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.haine-rc-loading p {
	color: #666;
	font-size: 16px;
}

.haine-rc-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: transparent;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #111;
}

.haine-rc-success {
	background: #ecfdf3;
	border: 1px solid #bbf7d0;
	color: #065f46;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 12px;
	font-weight: 600;
}

@media (max-width: 640px) {
	.haine-rc-modal-content {
		padding: 20px;
	}

	.haine-rc-nav-buttons {
		flex-direction: column;
		gap: 10px;
	}
}

.haine-rc-page {
	padding-bottom: 100px;
}
.haine-rc-breadcrumb {
	padding-top: 300px;
}

ol.breadcrumb {
	background-color: transparent;
}
li.breadcrumb-item.active {
	color: inherit !important;
}

.haine-rc-page,
.page-title-area {
	max-width: 1170px !important;
	margin: 0 auto !important;
}

.haine-rc-products-table tr > th:first-child {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.haine-rc-products-table tbody tr td:first-of-type {
	text-align: center;
}

.haine-rc-products-table tbody tr td:first-of-type input[type="checkbox"] {
	scale: 1.2;
}

.haine-rc-next,
.haine-rc-prev {
	width: 100%;
}

.haine-rc-field label:has(input[type="checkbox"]) {
	display: flex;
	align-items: center;
	gap: 8px;
}

.haine-rc-field label input[type="checkbox"] {
	width: fit-content;
}

.haine-rc-field label:has(input[type="radio"]) {
	display: flex;
	align-items: center;
	gap: 15px;
}

fieldset {
	padding: 0 !important;
}

.haine-rc-field .haine-rc-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	margin-bottom: 10px;
	border: 1px solid #e5e7eb; /* gray-200 */
	border-radius: 10px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.haine-rc-field .haine-rc-option:hover {
	border-color: #9ca3af; /* gray-400 */
}
.haine-rc-field .haine-rc-option input[type="radio"] {
	accent-color: #16a34a; /* green-600 */
}
.haine-rc-field .haine-rc-option.is-selected {
	border-color: #16a34a; /* green-600 */
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
	background-color: #f0fdf4; /* green-50 */
}
.haine-rc-field .haine-rc-option span {
	font-weight: 600;
}
