/* Custom Price Product Frontend Styles */

.cpp-form-wrapper {
	margin-bottom: 20px;
}

.cpp-form-fields {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* Layouts */
.cpp-layout-inline .cpp-form-fields {
	flex-direction: row;
	align-items: center;
}

.cpp-layout-block .cpp-form-fields {
	flex-direction: column;
	align-items: flex-start;
}

/* Alignments */
.cpp-align-left .cpp-form-fields {
	justify-content: flex-start;
}
.cpp-align-center .cpp-form-fields {
	justify-content: center;
	align-items: center;
}
.cpp-align-right .cpp-form-fields {
	justify-content: flex-end;
	align-items: flex-end;
}

/* Elements */
.cpp-input-group .cpp-price-input {
	padding: 10px 15px;
	box-sizing: border-box;
	max-width: 150px;
}

.cpp-btn-group .cpp-add-to-cart-btn {
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cpp-btn-group .cpp-add-to-cart-btn.loading {
	opacity: 0.5;
	pointer-events: none;
}
