
/* Album Constructor: shared frontend and admin styles */

.term-parent-wrap {
				display: none !important;
			}

.ac-admin-input-full {
	width: 100%;
}

.ac-admin-help-text {
	margin-top: 8px;
	color: #646970;
}

.ac-admin-inline-check {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ac-admin-inline-check--spaced {
	margin-bottom: 8px;
}

.ac-admin-order-column {
	width: 100%;
	padding-top: 16px;
}

.ac-admin-order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.single-product.ac-constructor-product form.cart,
.single-product.ac-constructor-product .variations_form {
	display: none !important;
}

.single-product.ac-constructor-product .ac-constructor-entry-button {
	margin: 24px 0 28px;
	clear: both;
	padding: 18px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fafafa;
	border-radius: 6px;
}

.single-product.ac-constructor-product .summary .ac-constructor-entry-button {
	margin: 16px 0 20px;
}

.single-product.ac-constructor-product .ac-constructor-entry-text {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.5;
	color: #222;
	display: block;
}

.single-product.ac-constructor-product .ac-constructor-entry-button a {
	display: inline-block;
	padding: 14px 28px;
	background: #111;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	font-weight: 600;
	line-height: 1.2;
}

.single-product.ac-constructor-product .ac-constructor-entry-button a:hover {
	background: #222;
	color: #fff;
}


			.ac-constructor {
				max-width: 1280px;
				margin: 0 auto;
				padding: 0 16px 100px;
				text-align: center;
			}

			.ac-constructor > h2 {
				text-align: center;
				font-size: 28px;
				line-height: 1.2;
				margin: 22px 0;
			}

			.ac-step-sticky {
				position: sticky;
				top: 12px;
				left: 0;
				z-index: 50;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				gap: 8px;
				width: fit-content;
				max-width: min(100%, 520px);
				margin: 0 auto 16px;
				padding: 8px 14px;
				border: 1px solid #e5e5e5;
				border-radius: 12px;
				background: rgba(255,255,255,0.97);
				backdrop-filter: blur(8px);
				box-shadow: 0 6px 18px rgba(0,0,0,0.05);
			}

			.ac-step-sticky-line {
				font-size: 13px;
				line-height: 1.35;
				color: #7a7a7a;
				font-weight: 500;
			}

			.ac-step-sticky-line strong {
				color: #6f6f6f;
				font-weight: 600;
			}

			.ac-step-panel {
				display: none;
			}

			.ac-step-panel.is-active {
				display: block;
			}

			.ac-summary-panel {
				display: none;
			}

			.ac-summary-panel.is-active {
				display: block;
			}

			.ac-summary-empty {
				max-width: 640px;
				margin: 0 auto;
				padding: 20px;
				border: 1px solid #e5e5e5;
				border-radius: 16px;
				background: #fafafa;
				text-align: center;
				color: #666;
			}

			.ac-summary-category {
				margin-bottom: 28px;
			}

			.ac-summary-category-title {
				margin: 0 0 14px;
				text-align: center;
			}

			.ac-summary-card-controls {
				display: flex;
				align-items: center;
				justify-content: center;
				padding: 12px 14px;
				background: #d9cdbd;
				border-top: 1px solid #9b8b78;
			}

			.ac-summary-card-label {
				font-size: 13px;
				font-weight: 600;
				color: #30261e;
				line-height: 1.2;
			}

			.ac-group {
				margin-bottom: 32px;
				text-align: center;
			}

			.ac-group h3 {
				margin-bottom: 8px;
				text-align: center;
				font-size: 20px;
				line-height: 1.25;
			}

			.ac-group-meta {
				margin-bottom: 12px;
				font-size: 13px;
				font-weight: 400;
				color: #6b625a;
			}

			.ac-group-meta strong {
				color: #6f6f6f;
			}

			.ac-group-description {
				max-width: 760px;
				margin: -2px auto 16px;
				font-size: 14px;
				line-height: 1.55;
				font-weight: 400;
				color: #5e554c;
				text-align: center;
			}

			.ac-group-description p {
				margin: 0 0 8px;
			}

			.ac-group-description p:last-child {
				margin-bottom: 0;
			}

			.ac-grid {
				display: grid;
				gap: 16px;
				align-items: start;
			}

			.ac-grid[data-count="1"] {
				grid-template-columns: repeat(1, minmax(0, 290px));
				justify-content: center;
			}

			.ac-grid[data-count="2"] {
				grid-template-columns: repeat(2, minmax(0, 290px));
				justify-content: center;
			}

			.ac-card {
				position: relative;
				width: 100%;
				max-width: 290px;
				justify-self: center;
				border: 1px solid #9b8b78;
				border-radius: 4px;
				background: #f8f4ed;
				overflow: hidden;
				transition: border-color 0.2s ease;
			}

			.ac-card::after {
				content: "";
				position: absolute;
				inset: 0;
				z-index: 4;
				box-sizing: border-box;
				border: 2px solid transparent;
				border-radius: inherit;
				pointer-events: none;
				transition: border-color 0.2s ease;
			}

			.ac-grid[data-count="2"] .ac-card {
				max-width: 290px;
			}

			.ac-card:hover {
				border-color: #3a2d23;
			}

			.ac-card.ac-selected {
				border-color: #111;
				box-shadow: none;
			}

			.ac-card.ac-selected::after {
				border-color: #111;
			}

			.ac-card-button {
				position: relative;
				display: block;
				width: 100%;
				border: 0;
				border-radius: 0;
				padding: 7px 7px 0;
				background: transparent;
				cursor: pointer;
				transition: none;
				text-align: left;
			}

			.ac-card-button:hover {
				border-color: transparent;
			}

			.ac-card-button:focus,
			.ac-card-button:focus-visible {
				border-color: transparent;
				outline: none;
				box-shadow: none;
			}

			.ac-card-button:focus-visible .ac-checkmark {
				outline: 2px solid #3a2d23;
				outline-offset: 2px;
			}

			.ac-thumb {
				width: 100%;
				aspect-ratio: 1 / 1;
				background: #f8f4ed;
				border-radius: 2px;
				overflow: hidden;
				margin-bottom: 8px;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.ac-thumb img {
				width: 100%;
				height: 100%;
				object-fit: contain;
				display: block;
			}

			.ac-title {
				display: block;
				font-size: 14px;
				line-height: 1.3;
				margin-bottom: 10px;
				padding: 0 7px;
			}

			.ac-checkmark {
				position: absolute;
				top: 10px;
				left: 10px;
				width: 20px;
				height: 20px;
				border-radius: 6px;
				border: 1px solid #bbb;
				background: #fff;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 13px;
				line-height: 1;
				z-index: 2;
			}

			.ac-card.ac-selected .ac-checkmark {
				background: #111;
				color: #fff;
				border-color: #111;
			}

			.ac-hidden-input {
				display: none;
			}

			.ac-card-controls {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 12px;
				padding: 10px 12px;
				background: #d9cdbd;
				border-top: 1px solid #9b8b78;
			}

			.ac-card-controls-label {
				font-size: 12px;
				font-weight: 600;
				color: #30261e;
				line-height: 1.2;
			}

			.ac-card-controls-main {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 8px;
				flex: 1;
			}

			.ac-qty-button {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				width: 32px;
				height: 32px;
				border: 1px solid #9b8b78;
				border-radius: 4px;
				background: #fffaf2;
				color: #30261e;
				font-size: 18px;
				line-height: 1;
				cursor: pointer;
				transition: 0.2s ease;
				font-weight: 600;
			}

			.ac-qty-button:hover:not([disabled]) {
				border-color: #3a2d23;
			}

			.ac-qty-button[disabled] {
				opacity: 0.45;
				cursor: not-allowed;
			}

			.ac-qty-button.is-limit-blocked {
				opacity: 0.6;
			}

			.ac-qty-value {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				min-width: 40px;
				height: 32px;
				padding: 0 10px;
				box-sizing: border-box;
				border: 1px solid #9b8b78;
				border-radius: 4px;
				background: #fffaf2;
				font-size: 14px;
				font-weight: 700;
				color: #30261e;
			}

			.ac-navigation {
				display: flex;
				align-items: center;
				justify-content: space-between;
				width: 100%;
				max-width: 596px;
				gap: 16px;
				margin: 20px auto 0;
				padding-top: 16px;
				border-top: 1px solid #e5e5e5;
			}

			.ac-constructor--not-started .ac-navigation {
				max-width: 928px;
			}

			.ac-nav-left,
			.ac-nav-right {
				display: flex;
				align-items: center;
				gap: 10px;
			}

			.ac-button {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				min-height: 40px;
				padding: 0 16px;
				border-radius: 10px;
				border: 1px solid #111;
				background: #111;
				color: #fff;
				cursor: pointer;
				font-size: 14px;
				line-height: 1;
				text-decoration: none;
				transition: 0.2s ease;
			}

			.ac-button:hover {
				opacity: 0.92;
			}

			.ac-button.is-secondary {
				background: #fff;
				color: #111;
			}

			.ac-button[disabled] {
				opacity: 0.45;
				cursor: not-allowed;
			}

			.ac-toast {
				position: fixed;
				right: 20px;
				bottom: 20px;
				z-index: 99999;
				max-width: 380px;
				background: #111;
				color: #fff;
				padding: 12px 14px;
				border-radius: 10px;
				box-shadow: 0 10px 30px rgba(0,0,0,0.18);
				font-size: 13px;
				line-height: 1.4;
				opacity: 0;
				pointer-events: none;
				transform: translateY(12px);
				transition: opacity 0.2s ease, transform 0.2s ease;
			}

			.ac-toast.is-visible {
				opacity: 1;
				pointer-events: auto;
				transform: translateY(0);
			}

			@media (max-width: 1024px) {
				.ac-grid {
					grid-template-columns: repeat(3, minmax(0, 1fr));
				}

				.ac-card {
					max-width: 470px;
				}
			}

			@media (max-width: 768px) {
				.ac-step-sticky {
					top: 12px;
					max-width: calc(100% - 8px);
					padding: 8px 10px;
				}

				.ac-step-sticky-line {
					font-size: 13px;
				}

				.ac-grid {
					grid-template-columns: repeat(2, minmax(0, 1fr));
					gap: 12px;
				}

				.ac-grid[data-count="1"] {
					grid-template-columns: repeat(1, minmax(0, 1fr));
				}

				.ac-card {
					max-width: none;
				}

				.ac-card-button {
					padding: 7px;
				}

				.ac-title {
					font-size: 14px;
				}

				.ac-card-controls {
					gap: 10px;
					padding: 10px 12px;
					align-items: flex-start;
					flex-direction: column;
				}

				.ac-card-controls-label {
					font-size: 12px;
				}

				.ac-card-controls-main {
					width: 100%;
					justify-content: center;
				}

				.ac-qty-button {
					width: 32px;
					height: 32px;
				}

				.ac-qty-value {
					min-width: 40px;
					height: 32px;
					font-size: 14px;
				}

				.ac-navigation {
					flex-direction: column;
					align-items: stretch;
				}

				.ac-nav-left,
				.ac-nav-right {
					width: 100%;
				}

				.ac-button {
					width: 100%;
				}

				.ac-toast {
					left: 12px;
					right: 12px;
					bottom: 12px;
					max-width: none;
				}
			}

			@media (max-width: 480px) {
				.ac-grid {
					grid-template-columns: repeat(2, minmax(0, 1fr));
					gap: 10px;
				}

				.ac-grid[data-count="1"] {
					grid-template-columns: repeat(1, minmax(0, 1fr));
				}
			}

			.ac-grid {
				grid-template-columns: repeat(2, minmax(0, 290px));
				justify-content: center;
			}

			.ac-card {
				max-width: 290px;
			}
		

.ac-constructor.ac-constructor--cols-2 .ac-grid {
	grid-template-columns: repeat(2, minmax(0, 290px));
	justify-content: center;
}

.ac-constructor.ac-constructor--cols-2 .ac-card {
	max-width: 290px;
}

/* First screen: album composition */
.ac-constructor--not-started .ac-steps,
.ac-constructor--not-started .ac-summary-panel {
	display: none !important;
}

.ac-start-panel {
	display: none;
	margin: 0 auto 28px;
}

.ac-start-panel.is-active {
	display: block;
}

.ac-start-head {
	max-width: 720px;
	margin: 0 auto 22px;
	text-align: center;
}

.ac-start-head h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.2;
}

.ac-start-head p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #62584f;
}

.ac-start-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
	justify-content: center;
	max-width: 928px;
	margin: 0 auto;
}

.ac-start-grid[data-count="1"] {
	grid-template-columns: minmax(0, 290px);
	justify-content: center;
}

.ac-start-grid[data-count="2"] {
	grid-template-columns: repeat(2, minmax(0, 220px));
	justify-content: center;
	max-width: 456px;
}

.ac-start-grid[data-count="3"] {
	grid-template-columns: repeat(3, minmax(0, 220px));
	max-width: 692px;
}

.ac-start-grid[data-count="4"] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 928px;
}

.ac-start-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid #9b8b78;
	border-radius: 4px;
	background: #f8f4ed;
	overflow: hidden;
	text-align: left;
	transition: border-color 0.2s ease;
}

.ac-start-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-radius: inherit;
	pointer-events: none;
	transition: border-color 0.2s ease;
}

.ac-start-card--locked {
	border-color: #9b8b78;
	box-shadow: none;
}

.ac-start-card--locked::after {
	border-color: transparent;
}

.ac-start-thumb {
	width: calc(100% - 14px);
	aspect-ratio: 4 / 3;
	margin: 7px 7px 0;
	border-radius: 2px;
	background: #f8f4ed;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ac-start-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.ac-start-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 18px;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25;
	color: #6b5a49;
	background: #d9cdbd;
}

.ac-start-body {
	padding: 12px 12px 4px;
	flex: 1;
}

.ac-start-body h4 {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.25;
	color: #111;
}

.ac-start-body p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 400;
	color: #62584f;
}

.ac-start-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 8px 0;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	color: #62584f;
}

.ac-start-price strong {
	color: #111;
	font-size: 15px;
	white-space: nowrap;
}

.ac-start-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	background: #d9cdbd;
	border-top: 1px solid #9b8b78;
}

.ac-start-controls--locked {
	background: #d9cdbd;
	border-top-color: #9b8b78;
}

.ac-start-total {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 22px auto 0;
	padding: 12px 18px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	font-size: 15px;
	line-height: 1.3;
}

.ac-start-total strong {
	font-size: 20px;
	color: #111;
}

.ac-summary-start {
	max-width: 760px;
	margin: 0 auto 28px;
	padding: 18px 20px;
	border: 1px solid #e5e5e5;
	border-radius: 16px;
	background: #fafafa;
	text-align: left;
}

.ac-summary-start h4 {
	margin: 0 0 12px;
	text-align: center;
}

.ac-summary-start-row,
.ac-summary-start-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 0;
	border-bottom: 1px solid #e8e8e8;
	font-size: 14px;
}

.ac-summary-start-total {
	border-bottom: 0;
	padding-top: 12px;
	font-size: 16px;
}

.ac-summary-start-total strong {
	font-size: 20px;
}

@media (max-width: 900px) {
	.ac-start-grid {
		grid-template-columns: repeat(2, minmax(0, 220px));
		max-width: 456px;
	}
}

@media (max-width: 768px) {
	.ac-start-head h3 {
		font-size: 20px;
	}

	.ac-start-controls {
		align-items: flex-start;
		flex-direction: column;
	}

	.ac-start-controls .ac-card-controls-main {
		width: 100%;
	}

	.ac-start-total {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}
}

/* Scenario queue additions */
.ac-summary-scenario {
	margin: 30px 0;
	padding: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 18px;
	background: #f8f4ed;
}

.ac-summary-scenario-title {
	margin: 0 0 18px;
	font-size: 20px;
	line-height: 1.25;
	text-align: center;
}

.ac-summary-scenario .ac-summary-category:last-child {
	margin-bottom: 0;
}

.ac-summary-category-title {
	font-size: 16px;
}

/* Scenario header above category title */
.ac-scenario-heading {
	max-width: 720px;
	margin: 0 auto 8px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	color: #111;
	text-align: center;
}

.ac-scenario-heading + h3 {
	margin-top: 0;
}

@media (max-width: 768px) {
	.ac-scenario-heading {
		font-size: 16px;
	}
}

/* Photo route and personal-data consent modal */

html.ac-photo-consent-open,
body.ac-photo-consent-open {
	overflow: hidden;
}

.ac-constructor--not-started .ac-photo-upload-panel {
	display: none !important;
}

.ac-photo-upload-panel {
	display: none;
	margin: 0 auto 28px;
}

.ac-photo-upload-panel.is-active {
	display: block;
}

.ac-photo-upload-card {
	max-width: 760px;
	margin: 0 auto;
	padding: 24px 22px;
	border: 1px solid #e5e5e5;
	border-radius: 18px;
	background: #fff;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.ac-photo-upload-card h3 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.25;
}

.ac-photo-upload-card p {
	max-width: 620px;
	margin: 0 auto 18px;
	font-size: 15px;
	line-height: 1.5;
	color: #666;
}

.ac-photo-upload-placeholder {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: 560px;
	margin: 0 auto;
	padding: 18px;
	border: 1px dashed #cfd6dc;
	border-radius: 16px;
	background: #f7f8f9;
	color: #4f5b63;
}

.ac-photo-upload-placeholder strong {
	color: #111;
}

.ac-photo-consent-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.ac-photo-consent-modal.is-active {
	display: flex;
}

.ac-photo-consent-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.46);
}

.ac-photo-consent-dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 620px);
	max-height: calc(100vh - 36px);
	overflow: auto;
	padding: 24px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0,0,0,0.25);
	text-align: left;
}

.ac-photo-consent-dialog h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.25;
	text-align: center;
}

.ac-photo-consent-dialog p {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.5;
	color: #555;
}

.ac-photo-consent-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 16px;
	padding: 14px;
	border-radius: 14px;
	background: #f6f7f8;
}

.ac-photo-consent-links a {
	color: #111;
	font-weight: 600;
}

.ac-photo-consent-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.45;
	color: #333;
}

.ac-photo-consent-check input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.ac-photo-consent-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

@media (max-width: 768px) {
	.ac-photo-upload-card {
		padding: 20px 16px;
	}

	.ac-photo-consent-dialog {
		padding: 20px 16px;
	}

	.ac-photo-consent-actions {
		flex-direction: column-reverse;
	}
}

/* Photo upload: local file selection (V11) */
.ac-photo-upload-dropzone {
	position: relative;
	max-width: 620px;
	margin: 0 auto 14px;
	padding: 22px;
	border: 2px dashed #cfd6dc;
	border-radius: 18px;
	background: #f7f8f9;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.ac-photo-upload-dropzone.is-dragover {
	border-color: #111;
	background: #f0f2f3;
}

.ac-photo-file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.ac-photo-dropzone-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #4f5b63;
}

.ac-photo-dropzone-main strong {
	font-size: 18px;
	line-height: 1.3;
	color: #111;
}

.ac-photo-dropzone-main span {
	font-size: 14px;
	line-height: 1.45;
}

.ac-photo-upload-rules {
	max-width: 620px;
	margin: 0 auto 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: #fff8e5;
	border: 1px solid #f0d991;
	font-size: 13px;
	line-height: 1.45;
	color: #6a4d00;
	text-align: left;
}

.ac-photo-upload-status {
	max-width: 620px;
	margin: 0 auto 14px;
	padding: 12px 14px;
	border: 1px solid #dfe5e9;
	border-radius: 14px;
	background: #f7f8f9;
	font-size: 15px;
	line-height: 1.4;
	color: #4f5b63;
}

.ac-photo-upload-status.is-ready {
	border-color: #b8ddc8;
	background: #eaf8ef;
	color: #205a35;
}

.ac-photo-upload-status.is-incomplete {
	border-color: #dfe5e9;
	background: #f7f8f9;
}

.ac-photo-file-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 620px;
	margin: 0 auto 14px;
	text-align: left;
}

.ac-photo-file-list-empty {
	padding: 14px;
	border: 1px dashed #cfd6dc;
	border-radius: 14px;
	background: #fafafa;
	color: #66717a;
	text-align: center;
	font-size: 14px;
}

.ac-photo-file-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #e1e5e8;
	border-radius: 14px;
	background: #fff;
}

.ac-photo-file-item-main {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.ac-photo-file-item-main strong {
	font-size: 14px;
	line-height: 1.25;
	color: #111;
}

.ac-photo-file-item-main span {
	font-size: 14px;
	line-height: 1.3;
	color: #4f5b63;
	overflow-wrap: anywhere;
}

.ac-photo-file-item-main small {
	font-size: 12px;
	line-height: 1.25;
	color: #7a858d;
}

.ac-photo-file-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #d7dde1;
	border-radius: 10px;
	background: #fff;
	color: #333;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	flex: 0 0 auto;
}

.ac-photo-file-remove:hover {
	border-color: #999;
}

.ac-photo-upload-actions {
	display: flex;
	justify-content: center;
	max-width: 620px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.ac-photo-upload-dropzone {
		padding: 18px 14px;
	}

	.ac-photo-upload-actions .ac-button {
		width: 100%;
	}
}

/* Photo preparation: local resize/compression (V12) */
.ac-photo-preparation-progress {
	max-width: 620px;
	margin: 0 auto 14px;
	padding: 12px 14px;
	border: 1px solid #dfe5e9;
	border-radius: 14px;
	background: #f7f8f9;
	font-size: 14px;
	line-height: 1.45;
	color: #4f5b63;
	text-align: left;
}

.ac-photo-preparation-progress.is-active {
	border-color: #cfd6dc;
	background: #eef2f5;
	color: #34404a;
}

.ac-photo-preparation-progress.is-ready {
	border-color: #b8ddc8;
	background: #eaf8ef;
	color: #205a35;
}

.ac-photo-preparation-progress.is-warning {
	border-color: #f0d991;
	background: #fff8e5;
	color: #6a4d00;
}

.ac-photo-file-prepare-status {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.35;
	color: #66717a;
}

.ac-photo-file-prepare-status.is-ready {
	color: #205a35;
}

.ac-photo-file-prepare-status.is-warning {
	color: #8a6500;
}

.ac-photo-file-prepare-status.is-error {
	color: #a32929;
}

.ac-photo-file-prepare-status.is-progress {
	color: #34404a;
}

.ac-photo-file-prepare-status.is-muted {
	color: #87919a;
}

.ac-photo-upload-status.is-prepared {
	border-color: #b8ddc8;
	background: #eaf8ef;
	color: #205a35;
}

.ac-photo-upload-actions {
	gap: 10px;
	flex-wrap: wrap;
}

.ac-photo-file-remove[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.ac-photo-upload-actions {
		flex-direction: column;
	}
}

/* Photo preparation action uses the main navigation button (V12.1) */
.ac-photo-upload-actions .ac-button {
	min-width: 220px;
}

/* Photo final preparation: protected server-side saving stays hidden behind preparation UX (V13.1) */
.ac-photo-server-upload-progress {
	display: none;
	max-width: 620px;
	margin: 0 auto 14px;
	padding: 12px 14px;
	border: 1px solid #dfe5e9;
	border-radius: 14px;
	background: #f7f8f9;
	font-size: 14px;
	line-height: 1.45;
	color: #4f5b63;
	text-align: left;
}

.ac-photo-server-upload-progress.is-active {
	display: block;
	border-color: #cfd6dc;
	background: #eef2f5;
	color: #34404a;
}

.ac-photo-server-upload-progress.is-ready {
	display: block;
	border-color: #b8ddc8;
	background: #eaf8ef;
	color: #205a35;
}

.ac-photo-server-upload-progress.is-error {
	display: block;
	border-color: #f0b8b8;
	background: #fff0f0;
	color: #7a1f1f;
}


.ac-photo-upload-status-hidden {
	display: none !important;
}

.ac-photo-processing-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.32);
	padding: 20px;
}

.ac-photo-processing-modal.is-active {
	display: flex;
}

.ac-photo-processing-dialog {
	width: min(420px, 100%);
	padding: 28px 30px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	text-align: center;
	color: #222;
}

.ac-photo-processing-dialog strong {
	display: block;
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.25;
}

.ac-photo-processing-dialog span {
	display: block;
	font-size: 15px;
	line-height: 1.45;
	color: #5d6770;
}

.ac-photo-processing-spinner {
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	border: 4px solid #e6e8eb;
	border-top-color: #111;
	border-radius: 50%;
	animation: ac-photo-spin 0.8s linear infinite;
}

@keyframes ac-photo-spin {
	to { transform: rotate(360deg); }
}

.ac-photo-processing-open,
.ac-photo-processing-open body {
	overflow: hidden;
}

/* V16.15: old technical photo progress rows are hidden; progress is shown only by the central spinner overlay. */
.ac-photo-preparation-progress,
.ac-photo-server-upload-progress {
	display: none !important;
}

/* Mobile layout: keep composition cards and constructor choices readable. */
@media (max-width: 768px) {
	.ac-constructor .ac-group-description {
		margin-bottom: 18px;
		padding: 0 2px;
		font-size: 14px;
		line-height: 1.5;
		text-align: left;
	}

	.ac-constructor .ac-start-grid,
	.ac-constructor .ac-start-grid[data-count] {
		grid-template-columns: minmax(0, 1fr);
		max-width: 360px;
	}

	.ac-constructor .ac-grid,
	.ac-constructor.ac-constructor--cols-2 .ac-grid,
	.ac-constructor .ac-grid[data-count="1"],
	.ac-constructor .ac-grid[data-count="2"] {
		grid-template-columns: minmax(0, 1fr);
		max-width: 420px;
		margin-right: auto;
		margin-left: auto;
		gap: 12px;
	}

	.ac-constructor .ac-card,
	.ac-constructor.ac-constructor--cols-2 .ac-card {
		width: 100%;
		max-width: 420px;
	}

	.ac-constructor .ac-navigation {
		max-width: 420px;
	}
}

/* V16.28: marketplace-calibrated compact typography for the constructor. */
body:has(.ac-constructor) .wp-block-post-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.18;
	letter-spacing: 0;
}

.ac-constructor,
.ac-constructor button,
.ac-constructor input,
.ac-constructor select,
.ac-constructor textarea,
.ac-photo-consent-dialog,
.ac-photo-consent-dialog button,
.ac-photo-processing-dialog {
	font-family: Manrope, sans-serif;
}

.ac-constructor > h2,
.ac-start-head h3,
.ac-group h3,
.ac-summary-start h4,
.ac-summary-scenario-title,
.ac-summary-category-title,
.ac-photo-upload-card h3,
.ac-photo-consent-dialog h3,
.ac-photo-processing-dialog strong {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: 0;
	color: #30261e;
}

.ac-constructor > h2 {
	font-size: 24px;
}

.ac-step-sticky-line {
	font-size: 12px;
}

.ac-group h3 {
	font-size: 17px;
	line-height: 1.25;
}

.ac-group-meta {
	font-size: 12px;
}

.ac-group-description {
	font-size: 12px;
	line-height: 1.45;
}

.ac-title {
	font-size: 13px;
}

.ac-card-controls-label,
.ac-summary-card-label {
	font-size: 12px;
}

.ac-qty-value,
.ac-button {
	font-size: 13px;
}

.ac-start-head h3 {
	font-size: 18px;
	line-height: 1.2;
}

.ac-start-head p {
	font-size: 12px;
	line-height: 1.45;
}

.ac-start-thumb-placeholder {
	font-size: 13px;
}

.ac-start-body h4 {
	font-size: 14px;
	line-height: 1.25;
}

.ac-start-body p {
	font-size: 12px;
	line-height: 1.5;
}

.ac-start-price {
	font-size: 12px;
}

.ac-start-price strong {
	font-size: 14px;
}

.ac-start-total {
	font-size: 13px;
}

.ac-start-total strong {
	font-size: 17px;
}

.ac-summary-start-row {
	font-size: 13px;
}

.ac-summary-start-total {
	font-size: 14px;
}

.ac-summary-start-total strong {
	font-size: 17px;
}

.ac-summary-scenario-title {
	font-size: 17px;
}

.ac-summary-category-title {
	font-size: 14px;
}

.ac-scenario-heading {
	font-size: 13px;
}

.ac-photo-upload-card h3 {
	font-size: 20px;
}

.ac-photo-upload-card p,
.ac-photo-consent-dialog p {
	font-size: 13px;
}

.ac-photo-consent-dialog h3,
.ac-photo-processing-dialog strong {
	font-size: 18px;
}

.ac-photo-dropzone-main strong {
	font-size: 15px;
}

.ac-photo-dropzone-main span {
	font-size: 12px;
}

.ac-photo-upload-status,
.ac-photo-processing-dialog span {
	font-size: 13px;
}

@media (max-width: 768px) {
	body:has(.ac-constructor) .wp-block-post-title {
		font-size: 24px;
	}

	.ac-constructor .ac-group-description {
		font-size: 13px;
	}

	.ac-start-body p,
	.ac-start-price {
		font-size: 12px;
	}
}

/* V16.33: compact only the constructor headings and vertical rhythm. */
body:has(.ac-constructor) .wp-block-post-title {
	font-size: 24px;
	margin-bottom: 16px;
}

.ac-constructor {
	padding-bottom: 80px;
}

.ac-step-sticky {
	margin-bottom: 12px;
	padding: 7px 12px;
}

.ac-start-panel {
	margin-bottom: 24px;
}

.ac-start-head {
	margin-bottom: 18px;
}

.ac-start-head h3 {
	font-size: 17px;
}

.ac-start-total {
	margin-top: 18px;
}

.ac-group {
	margin-bottom: 26px;
}

.ac-group h3 {
	font-size: 16px;
}

.ac-group-meta {
	margin-bottom: 8px;
}

.ac-group-description {
	margin-bottom: 12px;
}

.ac-summary-category {
	margin-bottom: 24px;
}

.ac-summary-scenario {
	margin-top: 24px;
	margin-bottom: 24px;
}

@media (max-width: 768px) {
	body:has(.ac-constructor) .wp-block-post-title {
		font-size: 22px;
	}
}

/* V16.32: denser desktop category grid with four columns from 1080px. */
.ac-constructor:has(.ac-step-panel.is-active) .ac-grid {
	grid-template-columns: repeat(4, minmax(0, 260px));
	max-width: 1082px;
	margin-right: auto;
	margin-left: auto;
	gap: 14px;
	justify-content: center;
}

.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="1"] {
	grid-template-columns: minmax(0, 260px);
	max-width: 260px;
}

.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="2"] {
	grid-template-columns: repeat(2, minmax(0, 260px));
	max-width: 534px;
}

.ac-constructor:has(.ac-step-panel.is-active) .ac-card {
	max-width: 260px;
}

.ac-constructor:has(.ac-step-panel.is-active) .ac-navigation {
	max-width: 1082px;
}

@media (min-width: 769px) {
	.ac-constructor:has(.ac-step-panel.is-active) .ac-card-controls {
		gap: 4px;
		padding-right: 9px;
		padding-left: 9px;
	}
}

@media (max-width: 1079.98px) {
	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid {
		grid-template-columns: repeat(3, minmax(0, 260px));
		max-width: 808px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="1"] {
		grid-template-columns: minmax(0, 260px);
		max-width: 260px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="2"] {
		grid-template-columns: repeat(2, minmax(0, 260px));
		max-width: 534px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-card {
		max-width: 260px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-navigation {
		max-width: 808px;
	}
}

@media (max-width: 919.98px) {
	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid {
		grid-template-columns: repeat(2, minmax(0, 290px));
		max-width: 596px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="1"] {
		grid-template-columns: minmax(0, 290px);
		max-width: 290px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="2"] {
		grid-template-columns: repeat(2, minmax(0, 290px));
		max-width: 596px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-card {
		max-width: 290px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-navigation {
		max-width: 596px;
	}
}

@media (max-width: 768.98px) {
	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid,
	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="1"],
	.ac-constructor:has(.ac-step-panel.is-active) .ac-grid[data-count="2"] {
		grid-template-columns: minmax(0, 1fr);
		max-width: 420px;
		gap: 12px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-card {
		width: 100%;
		max-width: 420px;
	}

	.ac-constructor:has(.ac-step-panel.is-active) .ac-navigation {
		max-width: 420px;
	}
}

/* V16.32: summary cards follow the denser desktop category grid. */
.ac-summary-panel.is-active .ac-grid {
	display: flex;
	flex-wrap: wrap;
	max-width: 1082px;
	margin-right: auto;
	margin-left: auto;
	gap: 14px;
	justify-content: center;
}

.ac-summary-panel.is-active .ac-card {
	box-sizing: border-box;
	flex: 0 1 calc((100% - 42px) / 4);
	max-width: 260px;
}

.ac-constructor:has(.ac-summary-panel.is-active) .ac-navigation {
	max-width: 1082px;
}

@media (max-width: 1079.98px) {
	.ac-summary-panel.is-active .ac-grid {
		max-width: 808px;
	}

	.ac-summary-panel.is-active .ac-card {
		flex-basis: calc((100% - 28px) / 3);
		max-width: 260px;
	}

	.ac-constructor:has(.ac-summary-panel.is-active) .ac-navigation {
		max-width: 808px;
	}
}

@media (max-width: 919.98px) {
	.ac-summary-panel.is-active .ac-grid {
		max-width: 594px;
	}

	.ac-summary-panel.is-active .ac-card {
		flex-basis: calc((100% - 14px) / 2);
		max-width: 290px;
	}

	.ac-constructor:has(.ac-summary-panel.is-active) .ac-navigation {
		max-width: 594px;
	}
}

@media (max-width: 768.98px) {
	.ac-summary-panel.is-active .ac-grid {
		max-width: 420px;
		gap: 12px;
	}

	.ac-summary-panel.is-active .ac-card {
		flex-basis: 100%;
		width: 100%;
		max-width: 420px;
	}

	.ac-constructor:has(.ac-summary-panel.is-active) .ac-navigation {
		max-width: 420px;
	}
}

/* V16.34: remove the duplicate page heading and tighten the introductory rhythm. */
body:has(.ac-constructor) .wp-block-post-title {
	display: none !important;
}

body:has(.ac-constructor) main.wp-block-group {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}

body:has(.ac-constructor) main > .wp-block-group {
	padding-top: 8px !important;
	padding-block-start: 8px !important;
}

body:has(.ac-constructor) .wp-block-post-content {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}

.ac-constructor {
	padding-top: 0;
}

.ac-step-sticky {
	margin: 4px auto 10px;
}

.ac-start-head {
	margin-bottom: 0;
}

.ac-start-head h3,
.ac-group h3 {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
	margin-bottom: 4px;
}

.ac-constructor .ac-group-description {
	margin: 0 auto 4px;
	padding: 0;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 400;
	color: #30261e;
	text-align: center;
}

.ac-group-meta {
	margin-bottom: 0;
}

.ac-group {
	margin-bottom: 18px;
}

/* V16.38: keep transient notices reliable in Firefox responsive mode. */
.ac-toast,
.ac-toast.is-visible {
	pointer-events: none;
	transform: none;
	transition: none;
}

/* V16.43: concise delivery and payment explanations on the constructor checkout. */
.ac-checkout-info {
	margin: 4px 0 22px;
	padding: 13px 15px;
	border: 1px solid rgba(117, 86, 57, 0.2);
	border-radius: 8px;
	background: #fbf7f1;
	color: #30261e;
	font-size: 14px;
	line-height: 1.5;
}

.ac-checkout-info strong {
	display: block;
	margin-bottom: 3px;
}

.ac-checkout-info p {
	margin: 0;
}

/* V16.44: warm, compact checkout that continues the constructor visual system. */
body.woocommerce-checkout {
	--ac-checkout-ink: #30261e;
	--ac-checkout-muted: #6b625a;
	--ac-checkout-line: #d9cdbd;
	--ac-checkout-soft: #fbf7f1;
	--ac-checkout-button: #3a2d23;
}

body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .woocommerce form,
body.woocommerce-checkout .woocommerce input,
body.woocommerce-checkout .woocommerce select,
body.woocommerce-checkout .woocommerce textarea,
body.woocommerce-checkout .woocommerce button {
	font-family: Manrope, Arial, sans-serif;
	color: var(--ac-checkout-ink);
}

body.woocommerce-checkout .woocommerce form.checkout {
	width: 100%;
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
}

body.woocommerce-checkout .woocommerce-checkout .col2-set {
	width: 100%;
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

body.woocommerce-checkout .woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout #order_review_heading {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--ac-checkout-ink);
}

body.woocommerce-checkout .woocommerce-additional-fields > h3 {
	display: none;
}

body.woocommerce-checkout .woocommerce form .form-row {
	margin: 0 0 17px;
	padding: 0;
}

body.woocommerce-checkout .woocommerce form .form-row label {
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ac-checkout-ink);
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row textarea,
body.woocommerce-checkout .woocommerce form .form-row select,
body.woocommerce-checkout .select2-container .select2-selection--single {
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #9b8b78;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	font-size: 15px;
	line-height: 1.45;
}

body.woocommerce-checkout .woocommerce form .form-row textarea {
	min-height: 92px;
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
body.woocommerce-checkout .woocommerce form .form-row textarea:focus,
body.woocommerce-checkout .woocommerce form .form-row select:focus {
	border-color: var(--ac-checkout-button);
	outline: 2px solid rgba(58, 45, 35, 0.12);
	outline-offset: 1px;
}

body.woocommerce-checkout .ac-checkout-info {
	margin: 2px 0 30px;
	padding: 14px 16px;
	border-color: var(--ac-checkout-line);
	background: var(--ac-checkout-soft);
	font-size: 14px;
	line-height: 1.5;
}

body.woocommerce-checkout .ac-checkout-info strong {
	font-size: 14px;
	font-weight: 700;
}

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
	width: 100%;
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
	border-color: var(--ac-checkout-line) !important;
	border-radius: 8px;
	font-size: 15px;
	color: var(--ac-checkout-ink);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	padding: 13px 14px;
	border-color: rgba(155, 139, 120, 0.35) !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th {
	font-size: 15px;
	font-weight: 700;
}

body.woocommerce-checkout .ac-checkout-coupon {
	margin: 26px 0 8px;
	padding-bottom: 20px;
}

body.woocommerce-checkout .ac-checkout-coupon-toggle {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ac-checkout-ink);
	font-size: 14px;
	line-height: 1.5;
	text-decoration: none;
	cursor: pointer;
}

body.woocommerce-checkout .ac-checkout-coupon-toggle small {
	font-size: inherit;
	color: var(--ac-checkout-muted);
	text-decoration: underline;
	text-decoration-color: rgba(48, 38, 30, 0.28);
	text-underline-offset: 3px;
}

body.woocommerce-checkout .ac-checkout-coupon-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 650px;
	margin-top: 12px;
}

body.woocommerce-checkout .ac-checkout-coupon-fields[hidden] {
	display: none !important;
}

body.woocommerce-checkout .ac-checkout-coupon-fields input {
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid #9b8b78;
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
}

body.woocommerce-checkout .ac-checkout-coupon-status {
	min-height: 0;
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--ac-checkout-muted);
}

body.woocommerce-checkout .ac-checkout-coupon-status:empty {
	display: none;
}

body.woocommerce-checkout .ac-checkout-coupon-status.is-success {
	color: #315b3b;
}

body.woocommerce-checkout .ac-checkout-coupon-status.is-error {
	color: #8a2f2f;
}

body.woocommerce-checkout #payment.woocommerce-checkout-payment {
	margin-top: 16px;
	border-top: 1px solid var(--ac-checkout-line);
	border-bottom: 1px solid var(--ac-checkout-line);
	border-radius: 0;
	background: transparent !important;
	color: var(--ac-checkout-ink);
}

body.woocommerce-checkout #payment ul.payment_methods {
	margin: 0;
	padding: 22px 0 18px !important;
	border: 0 !important;
	background: transparent !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
	margin: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li > label {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--ac-checkout-ink);
}

body.woocommerce-checkout #payment div.payment_box {
	margin: 9px 0 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ac-checkout-muted);
}

body.woocommerce-checkout #payment div.payment_box::before {
	display: none !important;
}

body.woocommerce-checkout #payment div.payment_box p {
	margin: 0;
}

body.woocommerce-checkout #payment .form-row.place-order {
	margin: 0;
	padding: 20px 0 0 !important;
	border: 0;
	background: transparent;
}

body.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
	max-width: 760px;
	font-size: 12px;
	line-height: 1.55;
	color: var(--ac-checkout-muted);
}

body.woocommerce-checkout #payment .woocommerce-privacy-policy-text p {
	margin: 0 0 14px;
}

body.woocommerce-checkout #payment .woocommerce-privacy-policy-text a {
	color: var(--ac-checkout-ink);
	text-decoration-color: rgba(48, 38, 30, 0.35);
	text-underline-offset: 2px;
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout .ac-checkout-coupon-apply {
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid var(--ac-checkout-button);
	border-radius: 10px;
	background: var(--ac-checkout-button) !important;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	box-shadow: none;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus,
body.woocommerce-checkout .ac-checkout-coupon-apply:hover,
body.woocommerce-checkout .ac-checkout-coupon-apply:focus {
	background: #2c2119 !important;
	border-color: #2c2119;
}

@media (max-width: 768px) {
	body.woocommerce-checkout .woocommerce-billing-fields > h3,
	body.woocommerce-checkout #order_review_heading {
		font-size: 23px;
	}

	body.woocommerce-checkout .woocommerce form .form-row label,
	body.woocommerce-checkout .woocommerce-checkout-review-order-table,
	body.woocommerce-checkout .woocommerce-checkout-review-order-table th {
		font-size: 14px;
	}

	body.woocommerce-checkout .ac-checkout-info,
	body.woocommerce-checkout #payment div.payment_box,
	body.woocommerce-checkout .ac-checkout-coupon-toggle {
		font-size: 13px;
	}

	body.woocommerce-checkout .ac-checkout-coupon-fields {
		grid-template-columns: 1fr;
	}

	body.woocommerce-checkout #payment ul.payment_methods li > label {
		font-size: 19px;
	}

	body.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
		font-size: 11.5px;
	}
}
