.cpp-rdv {
	max-width: 640px;
	margin: 1.5rem 0;
}

.cpp-rdv-field {
	margin-bottom: 1.25rem;
}

.cpp-rdv-field > label {
	display: block;
	font-weight: 600;
	margin-bottom: .4rem;
	color: #15506A;
}

.cpp-rdv-service,
.cpp-rdv-date {
	width: 100%;
	padding: .7rem .8rem;
	font-size: 1rem;
	border: 1px solid #E2E8EA;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}

.cpp-rdv-hint {
	color: #5C6E76;
	margin: .4rem 0;
}

.cpp-rdv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
	gap: .5rem;
}

.cpp-rdv-slot {
	padding: .7rem .4rem;
	font-size: 1rem;
	font-weight: 600;
	color: #2C7A57;
	background: #E8F4EC;
	border: 1px solid #3CA277;
	border-radius: 8px;
	cursor: pointer;
	min-height: 44px;
	transition: background .12s ease;
}

.cpp-rdv-slot:hover {
	background: #d7ecdd;
}

.cpp-rdv-slot.is-selected {
	background: #3CA277;
	color: #fff;
}

@media (max-width: 480px) {
	.cpp-rdv-grid {
		grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	}
}

.cpp-rdv-form {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid #E2E8EA;
}

.cpp-rdv-form-title {
	color: #15506A;
	margin: 0 0 1rem;
}

.cpp-rdv-form input[type="text"],
.cpp-rdv-form input[type="email"],
.cpp-rdv-form input[type="tel"],
.cpp-rdv-form textarea {
	width: 100%;
	padding: .7rem .8rem;
	font-size: 1rem;
	border: 1px solid #E2E8EA;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}

.cpp-rdv-consent {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	margin: .5rem 0 1rem;
	color: #5C6E76;
	font-size: .95rem;
	cursor: pointer;
}

.cpp-rdv-consent input {
	margin-top: .2rem;
}

.cpp-rdv-submit {
	width: 100%;
	padding: .85rem 1rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	background: #3CA277;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	min-height: 48px;
	transition: background .12s ease;
}

.cpp-rdv-submit:hover {
	background: #2C7A57;
}

.cpp-rdv-submit:disabled {
	opacity: .6;
	cursor: default;
}

.cpp-rdv-message {
	margin-top: .8rem;
	color: #2C7A57;
	font-weight: 600;
}

.cpp-rdv-message.is-error {
	color: #b03434;
}

.cpp-rdv-success {
	padding: 1.25rem;
	background: #E8F4EC;
	border: 1px solid #3CA277;
	border-radius: 8px;
	color: #2C7A57;
	font-weight: 600;
	font-size: 1.05rem;
}

.cpp-tarifs {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0;
	font-size: 1rem;
}

.cpp-tarifs th,
.cpp-tarifs td {
	text-align: left;
	padding: .75rem 1rem;
	border-bottom: 1px solid #E2E8EA;
}

.cpp-tarifs thead th {
	color: #15506A;
	font-weight: 700;
	border-bottom: 2px solid #15506A;
}

.cpp-tarifs tbody tr:nth-child(even) {
	background: #EAF3F7;
}

.cpp-tarifs .cpp-tarifs-duration {
	width: 120px;
	color: #5C6E76;
}

.cpp-tarifs .cpp-tarifs-price {
	width: 140px;
	font-weight: 700;
	color: #2C7A57;
	white-space: nowrap;
}

.cpp-tarifs-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 1rem 0;
}

.cpp-tarifs-wrap .cpp-tarifs {
	margin: 0;
	min-width: 420px;
}

@media (max-width: 600px) {
	.cpp-tarifs {
		font-size: .9rem;
	}
	.cpp-tarifs th,
	.cpp-tarifs td {
		padding: .55rem .6rem;
	}
	.cpp-tarifs .cpp-tarifs-duration {
		width: auto;
		white-space: nowrap;
	}
}
