.dev-configurator {
	padding: 3.75rem 0;
	background-color: #f7f7f7;
}

.option-item {
	padding: 0.9375rem;
	border: 0.125rem solid #eee;
	border-radius: 0.5rem;
	margin-bottom: 0.625rem;
	cursor: pointer;
	transition: all 0.3s;
}

.option-item:hover, .option-item.selected {
	border-color: #ff8141;
	background-color: rgba(255, 129, 65, 0.1);
}

.price-calculator {
	background-color: white;
	padding: 1.875rem;
	border-radius: 0.5rem;
	margin-top: 1.875rem;
}

.total-price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff8141;
}

.brand-button {
	border: none;
	border-radius: 0.25rem;
	padding: 0.625rem 1.25rem;
	font-weight: bold;
	transition: all 0.3s;
	background-color: #ff8141;
	color: white;
}

.brand-button:hover {
	opacity: 0.9;
	transform: translateY(-0.125rem);
}

.development-process {
	padding: 3.75rem 0;
}

.process-step {
	width: 5rem;
	height: 5rem;
	background-color: #ff8141;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: white;
	font-weight: bold;
	font-size: 1.5rem;
}

#shopConfiguratorModal .modal-dialog {
	max-width: 900px;
}

#shopConfiguratorModal .modal-content {
	border-radius: 12px;
}

#modal-configuration-info {
	min-height: 200px;
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
}

#shop-configurator-form .form-control {
	border-radius: 6px;
	border: 1px solid #ddd;
	padding: 10px 15px;
}

#shop-configurator-form .form-control:focus {
	border-color: #802FB9;
	box-shadow: 0 0 0 0.2rem rgba(128, 47, 185, 0.25);
}

#modal-selected-options {
	background-color: #f8f9fa;
	border-left: 4px solid #802FB9;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-unstyled li {
	margin-bottom: 8px;
	padding: 5px 0;
	border-bottom: 1px solid #eee;
}

.list-unstyled li:last-child {
	border-bottom: none;
}

.float-end {
	float: right;
	white-space: nowrap;
}
.option-item.selected {
	border: 2px solid #802FB9 !important;
	background-color: #f8f9fa !important;
}

.option-item {
	cursor: pointer;
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	transition: all 0.3s ease;
	margin-bottom: 15px;
}

.option-item:hover {
	border-color: #802FB9;
	background-color: #f8f9fa;
}