.djj-offer-builder,
.djj-booking-form-wrap,
.djj-appointments,
.djj-cal-booking {
	width: 100%;
	margin: 24px 0;
	color: #151515;
}

.djj-elementor-widget-shell {
	display: block;
	width: 100%;
}

.djj-price-picker {
	--djj-picker-bg: transparent;
	--djj-picker-panel: #fff;
	--djj-picker-panel-soft: #f7f7f7;
	--djj-picker-accent: #111;
	--djj-picker-accent-strong: #111;
	--djj-picker-text: inherit;
	--djj-picker-muted: #666;
	--djj-picker-border: #d9d9d9;
	--djj-picker-selected: var(--djj-picker-accent-strong);
	--djj-picker-price: var(--djj-picker-accent-strong);
	--djj-picker-regular-price: #777;
	--djj-picker-button-bg: var(--djj-picker-accent-strong);
	--djj-picker-button-text: #fff;
	--djj-picker-radius: 8px;
	width: 100%;
	border-radius: 0;
	padding: 0;
	background: var(--djj-picker-bg);
	color: var(--djj-picker-text);
	box-shadow: none;
}

.djj-price-picker,
.djj-price-picker *,
.djj-picker-modal,
.djj-picker-modal * {
	box-sizing: border-box;
}

.djj-picker-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.djj-picker-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.djj-picker-brand-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	background: var(--djj-picker-panel-soft);
	color: inherit;
	font-weight: 800;
}

.djj-picker-brand-main,
.djj-picker-panel-title strong {
	text-transform: none;
	letter-spacing: 0;
}

.djj-picker-brand-sub,
.djj-picker-headline p,
.djj-picker-panel-title span,
.djj-picker-product small,
.djj-picker-note,
.djj-picker-empty {
	color: var(--djj-picker-muted);
}

.djj-picker-headline {
	max-width: 500px;
}

.djj-picker-headline > span,
.djj-picker-panel-title em {
	display: inline-flex;
	width: fit-content;
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	padding: 4px 10px;
	color: var(--djj-picker-accent-strong);
	font-size: 11px;
	font-style: normal;
	text-transform: none;
	letter-spacing: 0;
}

.djj-picker-headline h3 {
	margin: 10px 0 6px;
	color: inherit;
	font-size: 1.45rem;
	text-transform: none;
	letter-spacing: 0;
}

.djj-picker-headline p {
	margin: 0;
}

.djj-picker-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
	gap: 24px;
}

.djj-picker-config,
.djj-picker-summary {
	display: grid;
	align-content: start;
	gap: 14px;
}

[data-djj-individual-panels] {
	display: grid;
	gap: 14px;
}

[data-djj-individual-panels][hidden] {
	display: none;
}

.djj-picker-panel {
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	padding: 22px;
	background: var(--djj-picker-panel);
}

.djj-picker-panel-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
}

.djj-picker-panel-title strong {
	display: block;
	font-size: 13px;
}

.djj-picker-panel-title span {
	display: block;
	margin-top: 3px;
	font-size: 12px;
}

.djj-picker-group {
	display: grid;
	gap: 8px;
	margin-top: 12px;
}

.djj-picker-group > label {
	color: inherit;
	font-size: 12px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.djj-picker-products {
	display: grid;
	gap: 12px;
}

.djj-picker-offers {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	margin-bottom: 16px;
}

.djj-picker-product {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	padding: 14px;
	background: var(--djj-picker-panel);
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.djj-picker-product:hover,
.djj-picker-product:focus-within {
	border-color: var(--djj-picker-selected);
	background: var(--djj-picker-panel-soft);
	box-shadow: 0 0 0 1px var(--djj-picker-selected);
}

.djj-picker-product:has(input:checked) {
	border-color: var(--djj-picker-selected);
	background: var(--djj-picker-panel-soft);
	box-shadow: 0 0 0 2px var(--djj-picker-selected);
}

.djj-picker-product input {
	margin-top: 2px;
	accent-color: var(--djj-picker-accent);
}

.djj-picker-product-body {
	display: grid;
	flex: 1;
	gap: 7px;
}

.djj-picker-product-body > span {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.djj-picker-product-body strong {
	font-size: 13px;
	text-transform: none;
	letter-spacing: 0;
}

.djj-picker-product-body em {
	color: var(--djj-picker-price);
	font-style: normal;
	font-weight: 700;
	white-space: nowrap;
}

.djj-picker-price {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: baseline;
	gap: 6px;
	text-align: right;
}

.djj-picker-price del {
	color: var(--djj-picker-regular-price);
	font-size: 0.8em;
	font-weight: 600;
}

.djj-picker-product-link {
	width: fit-content;
	color: var(--djj-picker-accent-strong);
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.djj-picker-bundle-includes {
	display: grid;
	gap: 14px;
	margin-top: 18px;
	border-top: 1px solid var(--djj-picker-border);
	padding-top: 18px;
}

.djj-picker-bundle-includes[hidden] {
	display: none;
}

.djj-picker-included-group {
	display: grid;
	gap: 8px;
}

.djj-picker-included-group > strong {
	color: inherit;
	font-size: 12px;
}

.djj-picker-product-readonly {
	cursor: default;
	background: var(--djj-picker-panel-soft);
}

.djj-picker-product-readonly:hover {
	border-color: var(--djj-picker-border);
	box-shadow: none;
}

.djj-picker-readonly-check {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: var(--djj-picker-radius);
	background: var(--djj-picker-selected);
	color: var(--djj-picker-button-text);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.djj-picker-breakdown {
	display: grid;
	gap: 7px;
	max-height: 240px;
	overflow: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.djj-picker-breakdown li,
.djj-picker-total p,
.djj-picker-total > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.djj-picker-breakdown li {
	border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
	padding-bottom: 5px;
}

.djj-picker-breakdown strong,
.djj-picker-total strong {
	color: var(--djj-picker-price);
}

.djj-picker-total {
	display: grid;
	gap: 5px;
	margin-top: 16px;
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	padding: 14px;
	background: var(--djj-picker-panel-soft);
}

.djj-picker-total > div strong {
	font-size: 1.5rem;
}

.djj-picker-total p {
	margin: 0;
	color: var(--djj-picker-muted);
}

.djj-picker-discount {
	display: grid;
	gap: 8px;
	margin: 14px 0;
}

.djj-picker-discount label {
	font-weight: 700;
}

.djj-picker-discount > div {
	display: flex;
	gap: 8px;
}

.djj-picker-discount input {
	min-width: 0;
	flex: 1;
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	padding: 9px 10px;
	background: #fff;
	color: #151515;
	font: inherit;
	text-transform: uppercase;
}

.djj-picker-discount button {
	border: 1px solid var(--djj-picker-border);
	border-radius: var(--djj-picker-radius);
	padding: 9px 12px;
	background: var(--djj-picker-panel);
	color: inherit;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.djj-picker-discount p {
	margin: 0;
	color: var(--djj-picker-muted);
	font-size: 0.9rem;
}

.djj-picker-book-button {
	width: fit-content;
	border: 0;
	border-radius: var(--djj-picker-radius);
	padding: 10px 18px;
	background: var(--djj-picker-button-bg);
	color: var(--djj-picker-button-text);
	font-weight: 800;
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
}

.djj-picker-note {
	margin: 10px 0 0;
	font-size: 0.85rem;
}

.djj-picker-modal[hidden] {
	display: none !important;
}

body.djj-picker-modal-open {
	overflow: hidden;
}

.djj-picker-modal {
	position: fixed !important;
	z-index: 2147483647;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
}

.djj-picker-modal.is-open {
	display: grid !important;
}

.djj-picker-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.68);
}

.djj-picker-modal-panel {
	position: relative;
	width: min(860px, calc(100vw - 40px));
	max-height: calc(100vh - 40px);
	overflow: auto;
	border-radius: var(--djj-picker-radius);
	padding: 20px;
	background: #fff;
	color: #151515;
}

.djj-picker-modal-header,
.djj-picker-form-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.djj-picker-modal-header h3 {
	margin: 0;
}

.djj-picker-modal-header button,
.djj-picker-form-actions button:last-child,
.djj-picker-signature button {
	border: 0;
	border-radius: var(--djj-picker-radius);
	padding: 9px 12px;
	background: #ece9df;
	color: #151515;
	cursor: pointer;
}

.djj-picker-booking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.djj-picker-booking-grid label,
.djj-picker-signature {
	display: grid;
	gap: 6px;
	font-weight: 700;
}

.djj-picker-booking-wide {
	grid-column: 1 / -1;
}

.djj-picker-booking-grid input,
.djj-picker-booking-grid select,
.djj-picker-booking-grid textarea {
	width: 100%;
	min-width: 0;
	border: 1px solid #cfcfcf;
	border-radius: var(--djj-picker-radius);
	padding: 10px 12px;
	font: inherit;
}

.djj-picker-booking-field-checkbox {
	display: flex !important;
	flex-direction: row;
	align-items: flex-start;
}

.djj-picker-booking-field-checkbox input {
	width: auto;
	margin-top: 0.25em;
}

.djj-picker-booking-field-checkbox span {
	font-weight: 600;
}

.djj-picker-selected-offer {
	display: grid;
	gap: 8px;
	margin: 16px 0;
	border: 1px solid #d8d8d8;
	border-radius: var(--djj-picker-radius);
	padding: 12px;
	background: #f7f7f4;
}

.djj-picker-selected-offer pre {
	margin: 0;
	white-space: pre-wrap;
	font: inherit;
}

.djj-picker-editor-note {
	display: grid;
	gap: 4px;
	margin-top: 16px;
	border: 1px dashed #c8c1b5;
	border-radius: var(--djj-picker-radius);
	padding: 12px;
	background: #fffaf0;
	color: var(--djj-picker-text);
}

.djj-picker-editor-note span {
	color: var(--djj-picker-muted);
	font-size: 13px;
	line-height: 1.45;
}

.djj-picker-signature canvas {
	width: 100%;
	height: 220px;
	border: 1px solid #cfcfcf;
	border-radius: var(--djj-picker-radius);
	background: #fff;
	touch-action: none;
}

.djj-picker-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 14px 0;
}

.djj-picker-form-message {
	margin-top: 12px;
	border-left: 4px solid #1f8f4d;
	padding: 10px 12px;
	background: #edf8f1;
	color: #113f25;
	font-weight: 700;
}

.djj-offer-builder h3,
.djj-booking-form h3,
.djj-appointments h3,
.djj-cal-booking h3 {
	margin: 0 0 16px;
	font-size: 1.4rem;
	line-height: 1.2;
}

.djj-offer-group {
	margin: 20px 0;
}

.djj-offer-group h4 {
	margin: 0 0 10px;
	font-size: 1rem;
	line-height: 1.25;
}

.djj-product-grid,
.djj-form-grid,
.djj-cal-booking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.djj-product-choice {
	display: block;
	min-width: 0;
}

.djj-product-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.djj-product-card {
	display: grid;
	gap: 8px;
	min-height: 100%;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	padding: 14px;
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.djj-product-choice input:checked + .djj-product-card {
	border-color: #111;
	box-shadow: 0 0 0 2px #111 inset;
}

.djj-product-choice:focus-within .djj-product-card {
	outline: 2px solid #2a7fff;
	outline-offset: 2px;
}

.djj-product-choice:hover .djj-product-card {
	transform: translateY(-1px);
}

.djj-product-title {
	font-weight: 700;
	line-height: 1.2;
}

.djj-product-price {
	font-weight: 700;
	color: #8a5b00;
}

.djj-product-description,
.djj-product-included {
	font-size: 0.95rem;
	line-height: 1.45;
	color: #3f3f3f;
}

.djj-product-description p {
	margin: 0;
}

.djj-offer-summary,
.djj-selected-offer {
	display: grid;
	gap: 8px;
	margin: 20px 0;
	padding: 14px;
	border: 1px solid #d8d8d8;
	border-radius: 8px;
	background: #f7f7f4;
}

.djj-offer-summary pre,
.djj-selected-offer pre {
	overflow: auto;
	white-space: pre-wrap;
	margin: 0;
	font: inherit;
}

.djj-offer-total {
	font-size: 1.25rem;
	font-weight: 800;
}

.djj-booking-form {
	display: grid;
	gap: 18px;
}

.djj-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	font-weight: 600;
}

.djj-form-field input,
.djj-form-field select,
.djj-form-field textarea {
	width: 100%;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	padding: 10px 12px;
	background: #fff;
	color: #151515;
	font: inherit;
}

.djj-form-field textarea {
	min-height: 120px;
	resize: vertical;
}

.djj-form-field-checkbox {
	grid-column: 1 / -1;
	flex-direction: row;
	align-items: flex-start;
}

.djj-form-field-checkbox input {
	width: auto;
	margin-top: 0.25em;
}

.djj-signature-field {
	display: grid;
	gap: 10px;
}

.djj-signature-field label {
	font-weight: 700;
}

.djj-signature-field canvas {
	display: block;
	width: 100%;
	max-width: 720px;
	height: 220px;
	border: 1px solid #cfcfcf;
	border-radius: 8px;
	background: #fff;
	touch-action: none;
}

.djj-submit-button,
.djj-secondary-button {
	width: fit-content;
	border: 0;
	border-radius: 6px;
	padding: 11px 16px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.djj-submit-button {
	background: #111;
	color: #fff;
}

.djj-secondary-button {
	background: #ece9df;
	color: #151515;
}

.djj-success-message {
	margin: 0 0 18px;
	border-left: 4px solid #1f8f4d;
	padding: 12px 14px;
	background: #edf8f1;
	color: #113f25;
	font-weight: 700;
}

.djj-muted {
	margin: 0;
	color: #666;
}

.djj-product-showcase {
	--djj-product-columns: 3;
	display: grid;
	grid-template-columns: repeat(var(--djj-product-columns), minmax(0, 1fr));
	gap: 18px;
}

.djj-product-showcase-card {
	display: grid;
	align-content: start;
	gap: 14px;
	min-width: 0;
	border: 1px solid #d8d8d8;
	border-radius: 8px;
	padding: 16px;
	background: #fff;
	color: #151515;
}

.djj-product-showcase-single {
	--djj-product-columns: 1;
}

.djj-product-showcase-media {
	margin: 0;
}

.djj-product-showcase-media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
}

.djj-product-showcase-content {
	display: grid;
	gap: 8px;
}

.djj-product-showcase-card h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.25;
}

.djj-product-showcase-price {
	color: #8a5b00;
	font-size: 1rem;
	line-height: 1.25;
}

.djj-product-showcase-description,
.djj-product-showcase-details {
	color: inherit;
	font-size: 0.95rem;
	line-height: 1.45;
}

.djj-product-showcase-description p {
	margin: 0;
}

.djj-product-showcase-details {
	border-top: 1px solid rgba(148, 163, 184, 0.35);
	padding-top: 8px;
	white-space: normal;
}

.djj-product-showcase-link {
	width: fit-content;
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.djj-product-detail-title {
	margin: 0;
	color: inherit;
}

.djj-product-detail-image {
	margin: 0;
}

.djj-product-detail-image img {
	display: block;
	width: 100%;
	height: auto;
}

.djj-product-detail-price {
	display: inline-block;
	color: #8a5b00;
	font-size: 1.25rem;
	line-height: 1.25;
}

.djj-product-detail-text {
	color: inherit;
	line-height: 1.55;
}

.djj-product-detail-text p:first-child {
	margin-top: 0;
}

.djj-product-detail-text p:last-child {
	margin-bottom: 0;
}

.djj-appointment-list {
	display: grid;
	gap: 10px;
}

.djj-appointment-card,
.djj-cal-type-card {
	display: grid;
	gap: 12px;
	border: 1px solid #d8d8d8;
	border-radius: 8px;
	padding: 14px;
	background: #fff;
}

.djj-appointment-card > div:first-child {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 14px;
}

.djj-appointment-card strong,
.djj-cal-type-card strong {
	line-height: 1.2;
}

.djj-appointment-card span,
.djj-cal-type-card p {
	line-height: 1.45;
}

.djj-appointment-status {
	width: fit-content;
	border-radius: 999px;
	padding: 4px 9px;
	background: #ece9df;
	font-size: 0.85rem;
	font-weight: 700;
}

.djj-appointment-card-cancelled {
	opacity: 0.7;
}

.djj-secondary-link {
	color: #151515;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.djj-cal-type-copy {
	display: grid;
	gap: 6px;
}

.djj-cal-type-copy p {
	margin: 0;
}

.djj-cal-embed {
	width: 100%;
	min-height: 680px;
	border: 0;
	border-radius: 8px;
	background: #fff;
}

@media (max-width: 900px) {
	.djj-picker-layout {
		grid-template-columns: 1fr;
	}

	.djj-picker-summary {
		order: 2;
	}

	.djj-picker-config {
		order: 1;
	}
}

@media (max-width: 767px) {
	.djj-picker-header,
	.djj-picker-panel-title,
	.djj-picker-product-body > span,
	.djj-picker-total p,
	.djj-picker-total > div {
		flex-direction: column;
		align-items: flex-start;
	}

	.djj-picker-header {
		gap: 12px;
	}

	.djj-picker-panel {
		padding: 16px;
	}

	.djj-picker-offers {
		grid-template-columns: 1fr;
	}

	.djj-picker-product {
		min-width: 0;
		padding: 12px;
	}

	.djj-picker-product-body {
		min-width: 0;
	}

	.djj-picker-product-body strong,
	.djj-picker-product-body small,
	.djj-picker-product-link,
	.djj-picker-breakdown li span,
	.djj-picker-total span {
		overflow-wrap: anywhere;
	}

	.djj-picker-price {
		justify-content: flex-start;
		text-align: left;
	}

	.djj-picker-breakdown li {
		flex-wrap: wrap;
	}

	.djj-picker-discount > div,
	.djj-picker-form-actions {
		flex-wrap: wrap;
	}

	.djj-picker-discount button,
	.djj-picker-form-actions button,
	.djj-picker-book-button {
		width: 100%;
	}

	.djj-picker-modal {
		align-items: flex-start;
		justify-items: center;
		padding: 12px;
		overflow: auto;
	}

	.djj-picker-modal-panel {
		width: min(100%, calc(100vw - 24px));
		max-height: calc(100dvh - 24px);
		padding: 16px;
	}

	.djj-picker-booking-grid {
		grid-template-columns: 1fr;
	}

	.djj-picker-consent {
		align-items: flex-start;
	}
}

@media (max-width: 520px) {
	.djj-product-grid,
	.djj-form-grid,
	.djj-cal-booking-grid {
		grid-template-columns: 1fr;
	}

	.djj-product-showcase {
		grid-template-columns: 1fr;
	}

	.djj-price-picker {
		padding: 0;
	}

	.djj-picker-layout,
	.djj-picker-config,
	[data-djj-individual-panels] {
		gap: 12px;
	}

	.djj-signature-field canvas {
		height: 180px;
	}

	.djj-picker-signature canvas {
		height: 180px;
	}
}
