/* Custom Order page — [cvp_custom_order]. Brand red (#C4080E) matches the
   OTP modal / checkout accent color used everywhere else on the site. */

.cvp-custom-order {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 60px;
	font-family: inherit;
}

/* ---- Hero — two-column: text left, illustration right, on a soft
   gradient band so the page doesn't open on plain white. ---- */
.cvp-co-hero {
	background: linear-gradient(135deg, #fff5f5 0%, #ffffff 65%);
	border-radius: 22px;
	padding: 48px 40px;
	margin-bottom: 40px;
}
.cvp-co-hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 36px;
	align-items: center;
}
.cvp-co-hero__text {
	text-align: left;
}
.cvp-co-hero__title {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 14px;
	color: #1a1a1a;
}
.cvp-co-hero__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin: 0 0 16px;
}
.cvp-co-hero__min-note {
	display: inline-block;
	margin: 0 0 20px;
	padding: 8px 18px;
	background: #fff;
	border: 1px solid #f3d9da;
	border-radius: 30px;
	font-size: 14px;
	color: #333;
}
.cvp-co-hero__min-note strong {
	color: #C4080E;
}
.cvp-co-hero__cta {
	display: inline-block;
	background: #C4080E;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 28px;
	border-radius: 8px;
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.cvp-co-hero__cta:hover {
	opacity: 0.92;
	color: #fff;
	transform: translateY(-1px);
}
.cvp-co-hero__art {
	display: flex;
	justify-content: center;
}
.cvp-co-hero__art-svg {
	width: 100%;
	max-width: 300px;
	height: auto;
	animation: cvp-co-float 4s ease-in-out infinite;
}
@keyframes cvp-co-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
	.cvp-co-hero__art-svg {
		animation: none;
	}
}

/* ---- Steps (horizontal cards — the full custom-order procedure,
   shown below the form/WhatsApp CTA) — light band so it visually breaks
   from the white form section above it. ---- */
.cvp-co-steps {
	background: #faf7f5;
	border-radius: 22px;
	padding: 40px 32px;
	margin: 48px 0 20px;
}
.cvp-co-steps__title {
	text-align: center;
	font-size: 22px;
	margin-bottom: 24px;
	color: #1a1a1a;
}
.cvp-co-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.cvp-co-step-card {
	background: #fff8f8;
	border: 1px solid #f3d9da;
	border-radius: 12px;
	padding: 20px 16px;
	text-align: center;
}
.cvp-co-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #C4080E;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 10px;
}
.cvp-co-step-card h3 {
	font-size: 15px;
	margin: 0 0 6px;
	color: #1a1a1a;
}
.cvp-co-step-card p {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* ---- Gallery — wrapped in a soft cream band (.cvp-co-gallery-band) so
   the social-proof section reads as a distinct, highlighted showcase
   rather than a plain strip in the middle of an all-white page. ---- */
.cvp-co-gallery-band {
	background: #fdf6f2;
	border-radius: 22px;
	padding: 40px 32px;
	margin: 48px 0;
}
.cvp-co-gallery {
	margin: 0;
}
.cvp-co-gallery h2 {
	text-align: center;
	font-size: 22px;
	margin-bottom: 20px;
	color: #1a1a1a;
}
/* v0.19.49 — reported live: "has to be in a single line on both mobile and
   desktop -- other images scrollable... 5 images at a time on screen for
   desktop and 2 for mobile." Was a wrapping CSS grid (auto-fill), which
   simply added more rows once enough photos were uploaded instead of
   staying single-line. Switched to the same flex + overflow-x:auto
   horizontal-scroll-row pattern already used everywhere else in this
   plugin for exactly this "N visible, rest scrollable" shape
   (.cvp-home-scroll-row in homepage.css — see that class's own comments),
   rather than inventing a second version of the same mechanism. Item width
   is a percentage of the row (not a fixed px), calculated so exactly 5
   sit in view on desktop / 2 on mobile regardless of how wide the gallery
   band itself renders on a given screen. */
.cvp-co-gallery__grid {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.cvp-co-gallery__grid::-webkit-scrollbar {
	display: none;
}
.cvp-co-gallery__item {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	background: #f4f4f4;
	position: relative;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	scroll-snap-align: start;
	/* 5 visible on desktop: 4 gaps of 16px between 5 items. */
	flex: 0 0 calc((100% - 4 * 16px) / 5);
	width: calc((100% - 4 * 16px) / 5);
}
/* aspect-ratio (not a fixed height) matches the pattern already used for
   the homepage's customer-photos grid (.cvp-collection-tile img in
   homepage.css) — a fixed height alone gets silently overridden by the
   theme's own `img { height: auto }` reset, which is what was causing
   each photo to render at its full natural height with a tall blank
   gap below it instead of a uniform card. aspect-ratio + object-fit
   together survive that override and crop every upload the same way
   regardless of its original dimensions. */
.cvp-co-gallery__item img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}
.cvp-co-gallery__item:hover img {
	transform: scale(1.08);
}
.cvp-co-gallery__tag {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #C4080E;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3px;
	padding: 3px 9px;
	border-radius: 30px;
	z-index: 1;
}
.cvp-co-gallery__item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.55);
	color: #fff;
	font-size: 12px;
	padding: 6px 8px;
}

/* v0.19.53 — prev/next arrows for the gallery scroll-row, missing since
   the v0.19.49 single-line conversion (reported live). Same small
   light-outline circle treatment as the homepage's .cvp-home-row-arrow,
   reproduced locally since homepage.css isn't loaded on this page. */
.cvp-co-gallery-arrows {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.cvp-co-gallery-arrows .cvp-co-gallery__grid {
	flex: 1 1 auto;
	min-width: 0;
}
.cvp-co-gallery-arrow {
	flex: 0 0 auto;
	width: 30px !important;
	height: 30px !important;
	min-width: 0 !important;
	padding: 0 !important;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e3b3b4;
	color: #C4080E;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}
.cvp-co-gallery-arrow:hover {
	border-color: #C4080E;
	background: #fdf2f2;
}

/* ---- Confirmation screen (v0.19.53) — recap, value story, estimate
   reveal, intent buttons, status tracker, stats, curated reviews. ---- */
.cvp-co-success {
	text-align: left;
	padding: 30px 10px;
}
.cvp-co-success__header {
	text-align: center;
	margin-bottom: 24px;
}
.cvp-co-success__header h3 {
	font-size: 22px;
	color: #1a1a1a;
	margin: 0 0 6px;
}
.cvp-co-success__ref {
	color: #029E4C;
	font-weight: 700;
	font-size: 14px;
	margin: 0;
}

.cvp-co-recap,
.cvp-co-value-block,
.cvp-co-estimate,
.cvp-co-tracker,
.cvp-co-stats,
.cvp-co-reviews {
	margin-bottom: 24px;
}
.cvp-co-recap h4,
.cvp-co-value-block h4,
.cvp-co-reviews h4 {
	font-size: 15px;
	color: #1a1a1a;
	margin: 0 0 12px;
}
.cvp-co-recap__grid {
	display: flex;
	gap: 16px;
	align-items: center;
	background: #faf7f5;
	border-radius: 12px;
	padding: 14px;
}
.cvp-co-recap__thumb {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	overflow: hidden;
	background: #eee;
}
.cvp-co-recap__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cvp-co-recap__details p {
	margin: 0 0 4px;
	font-size: 13px;
	color: #444;
}
.cvp-co-recap__details p:last-child {
	margin-bottom: 0;
}

/* v0.19.54 — larger, warmer, emoji-led per direct request ("larger
   texts -- use emoji -- make it attractive"). */
.cvp-co-value-block {
	background: #fff8f8;
	border: 1px solid #f3d9da;
	border-radius: 12px;
	padding: 22px 24px;
}
.cvp-co-value-block h4 {
	font-size: 17px;
}
.cvp-co-value-block ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.cvp-co-value-block li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 12px;
}
.cvp-co-value-block li:last-child {
	margin-bottom: 0;
}
.cvp-co-value-emoji {
	flex: 0 0 auto;
	font-size: 20px;
	line-height: 1.4;
}

/* v0.19.54 — light green + larger/bolder per direct request ("larger
   texts -- light green background -- more prominent -- make it
   attractive"). */
.cvp-co-estimate {
	text-align: center;
	background: #e8f8ee;
	border: 1.5px solid #b7e8c8;
	border-radius: 14px;
	padding: 26px 20px;
	box-shadow: 0 4px 18px rgba(2, 158, 76, 0.12);
}
.cvp-co-estimate__label {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 700;
	color: #0a6b34;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.cvp-co-estimate__amount {
	margin: 0 0 8px;
	font-size: 30px;
	font-weight: 800;
	color: #029E4C;
}
.cvp-co-estimate__caveat {
	margin: 0;
	font-size: 12.5px;
	color: #4f7a5f;
	line-height: 1.5;
}

/* v0.19.54 — intent buttons need to visibly ask for a response, not sit
   as passive secondary links ("add effect -- make it look like a
   response is needed -- or requires attention"). Primary ("Looks good")
   gets a filled, gently pulsing treatment; secondary stays outlined but
   still animated so neither reads as decorative. */
.cvp-co-intent {
	text-align: center;
	margin-bottom: 24px;
}
.cvp-co-intent__prompt {
	font-size: 13.5px;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px;
}
.cvp-co-intent__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.cvp-co-intent-btn {
	flex: 1 1 200px;
	background: #fff;
	border: 1.5px solid #C4080E;
	color: #C4080E;
	font-weight: 700;
	font-size: 13.5px;
	padding: 13px 14px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
	animation: cvp-co-intent-attention 2.2s ease-in-out infinite;
}
.cvp-co-intent-btn--primary {
	background: #C4080E;
	color: #fff;
}
.cvp-co-intent-btn:hover:not(:disabled) {
	background: #a8060b;
	color: #fff;
	transform: translateY(-1px);
}
.cvp-co-intent-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	animation: none;
}
@keyframes cvp-co-intent-attention {
	0%, 100% { box-shadow: 0 0 0 0 rgba( 196, 8, 14, 0.28 ); }
	50% { box-shadow: 0 0 0 8px rgba( 196, 8, 14, 0 ); }
}
@media (prefers-reduced-motion: reduce) {
	.cvp-co-intent-btn {
		animation: none;
	}
}
.cvp-co-intent-ack {
	width: 100%;
	text-align: center;
	color: #029E4C;
	font-weight: 600;
	font-size: 13.5px;
	margin: 10px 0 0;
}

.cvp-co-tracker {
	display: flex;
	justify-content: space-between;
	gap: 8px;
}
.cvp-co-tracker__step {
	flex: 1 1 0;
	text-align: center;
	position: relative;
}
.cvp-co-tracker__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #eee;
	color: #999;
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 6px;
}
.cvp-co-tracker__step.is-done .cvp-co-tracker__dot {
	background: #029E4C;
	color: #fff;
}
.cvp-co-tracker__step.is-current .cvp-co-tracker__dot {
	background: #C4080E;
	color: #fff;
}
.cvp-co-tracker__label {
	display: block;
	font-size: 11.5px;
	color: #777;
}
.cvp-co-tracker__step.is-done .cvp-co-tracker__label,
.cvp-co-tracker__step.is-current .cvp-co-tracker__label {
	color: #1a1a1a;
	font-weight: 600;
}

.cvp-co-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.cvp-co-stat {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff8f8;
	border: 1px solid #f3d9da;
	border-radius: 30px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.cvp-co-stat__icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

/* v0.19.54 — reviews became a single-line scrollable row with arrows
   (same pattern as the gallery) instead of a wrapping grid, to support
   more than a handful of curated reviews without growing the page. */
.cvp-co-reviews-arrows {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.cvp-co-reviews__grid {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.cvp-co-reviews__grid::-webkit-scrollbar {
	display: none;
}
.cvp-co-reviews-arrow {
	flex: 0 0 auto;
	width: 30px !important;
	height: 30px !important;
	min-width: 0 !important;
	padding: 0 !important;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e3b3b4;
	color: #C4080E;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}
.cvp-co-reviews-arrow:hover {
	border-color: #C4080E;
	background: #fdf2f2;
}
.cvp-co-review-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	scroll-snap-align: start;
	flex: 0 0 calc((100% - 3 * 14px) / 4);
	width: calc((100% - 3 * 14px) / 4);
}
.cvp-co-review-card__stars {
	color: #f5a623;
	font-size: 14px;
	margin-bottom: 6px;
}
.cvp-co-review-card__text {
	font-size: 13px;
	color: #444;
	line-height: 1.5;
	margin: 0 0 8px;
}
.cvp-co-review-card__name {
	font-size: 12px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.cvp-co-gallery-band--repeat {
	margin-top: 8px;
}

/* ---- Form section ---- */
.cvp-co-form-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
#cvp-co-form-wrap {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}

.cvp-co-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cvp-co-field {
	margin-bottom: 16px;
}
.cvp-co-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}
.cvp-co-field input[type="text"],
.cvp-co-field input[type="email"],
.cvp-co-field input[type="tel"],
.cvp-co-field input[type="number"],
.cvp-co-field input[type="file"],
.cvp-co-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
}
.cvp-co-field input:focus,
.cvp-co-field textarea:focus {
	outline: none;
	border-color: #C4080E;
}
.cvp-co-field textarea {
	resize: vertical;
}

.cvp-co-field-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

/* ---- Phone verify gate ---- */
/* v0.19.49 — added an explicit Verify button (replacing the old
   auto-open-modal-on-typing behavior — see custom-order.js's own
   docblock), sitting inline next to the phone field. */
.cvp-co-phone-row {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.cvp-co-phone-row input[type="tel"] {
	/* Overrides .cvp-co-field input's own width:100% — flex-basis falls
	   back to the width property when left at its default `auto`, so
	   leaving that 100% in place here would have this input alone try to
	   claim the full row width, pushing the button off to the side or
	   forcing a wrap instead of sharing the row with it. */
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
}
.cvp-co-phone-row input[readonly] {
	background: #f7f7f7;
	color: #555;
}
.cvp-co-verify-btn {
	flex: 0 0 auto;
	background: #C4080E;
	color: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}
.cvp-co-verify-btn:hover:not(:disabled) {
	background: #a8060b;
}
.cvp-co-verify-btn:disabled {
	background: #f0c6c8;
	cursor: not-allowed;
}
.cvp-co-verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: #029E4C;
	white-space: nowrap;
}
.cvp-co-phone-note {
	font-size: 11px;
	color: #999;
	margin: 6px 0 0;
	transition: color 0.2s ease;
}
/* v0.19.49 — reported live: a shopper who clicks Send before verifying
   just saw a generic error banner near the Send button itself, with
   nothing drawing their eye back up to the phone field that actually
   needs their attention (explicit request: "notification for them to
   verify — scrolling to the button"). Added by custom-order.js on submit
   while unverified, alongside scrolling the phone field into view —
   removed again automatically a few seconds later or the moment they
   start verifying. prefers-reduced-motion respected via the animation
   being purely a color/box-shadow pulse, not movement. */
.cvp-co-phone-field--attention {
	animation: cvp-co-phone-attention 1.4s ease-in-out 2;
	border-radius: 10px;
}
@keyframes cvp-co-phone-attention {
	0%, 100% { box-shadow: 0 0 0 0 rgba( 196, 8, 14, 0 ); }
	50% { box-shadow: 0 0 0 6px rgba( 196, 8, 14, 0.15 ); }
}
/* v0.19.53 — reported live as too easy to miss: the only text telling a
   customer why a disabled Get My Estimate button won't respond was 12px,
   light gray helper text. Bumped size/contrast/weight so it reads as
   active guidance rather than fine print. */
.cvp-co-submit-hint {
	font-size: 13.5px;
	font-weight: 600;
	color: #a8060b;
	text-align: center;
	margin: 10px 0 0;
}
.cvp-co-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	background: #029E4C;
	color: #fff;
	padding: 12px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
	z-index: 9999;
}

.cvp-co-ft-hint {
	display: block;
	font-size: 11px;
	color: #999;
	margin-top: 4px;
}

#cvp-co-image-preview img {
	margin-top: 10px;
	max-width: 140px;
	max-height: 140px;
	border-radius: 8px;
	border: 1px solid #ddd;
	object-fit: cover;
}

/* ---- Minimum-order note (shown above Send, restates the hero note) ---- */
.cvp-co-form-min-note {
	background: #fff8f8;
	border: 1px dashed #C4080E;
	border-radius: 10px;
	padding: 12px 14px;
	margin-bottom: 16px;
	text-align: center;
	font-size: 13px;
	color: #555;
}
.cvp-co-form-min-note strong {
	color: #C4080E;
}

.cvp-co-error {
	background: #fdecea;
	color: #b32d2e;
	border: 1px solid #f3c6c4;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	margin-bottom: 16px;
}

.cvp-co-submit {
	width: 100%;
	background: #C4080E;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.15s ease;
}
.cvp-co-submit:hover {
	opacity: 0.92;
}
.cvp-co-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ---- Success state ---- */
.cvp-co-success {
	text-align: center;
	padding: 30px 10px;
}
.cvp-co-success h3 {
	font-size: 22px;
	color: #029E4C;
	margin: 0 0 10px;
}
.cvp-co-success p {
	color: #444;
	font-size: 15px;
	line-height: 1.6;
}

/* ---- WhatsApp CTA ---- */
.cvp-co-whatsapp {
	text-align: center;
	padding: 20px;
}
.cvp-co-whatsapp p {
	font-size: 13px;
	color: #666;
	margin-bottom: 10px;
}
.cvp-co-whatsapp__btn {
	display: inline-block;
	background: #029E4C;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 12px 26px;
	border-radius: 30px;
	font-size: 14px;
}
.cvp-co-whatsapp__btn:hover {
	opacity: 0.92;
	color: #fff;
}

@media (max-width: 900px) {
	.cvp-co-hero__inner {
		grid-template-columns: 1fr;
	}
	.cvp-co-hero__text {
		text-align: center;
	}
	.cvp-co-hero__min-note {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: fit-content;
	}
	.cvp-co-hero__art {
		order: -1;
	}
	.cvp-co-hero__art-svg {
		max-width: 220px;
	}
	.cvp-co-steps__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.cvp-co-hero {
		padding: 32px 20px;
	}
	.cvp-co-gallery-band,
	.cvp-co-steps {
		padding: 28px 20px;
	}
	/* 2 visible on mobile: 1 gap of 10px between 2 items — a tighter gap
	   than desktop's 16px so the second item doesn't get crowded out on a
	   narrow phone screen. */
	.cvp-co-gallery__grid {
		gap: 10px;
	}
	.cvp-co-gallery__item {
		flex: 0 0 calc((100% - 10px) / 2);
		width: calc((100% - 10px) / 2);
	}
	.cvp-co-review-card {
		flex: 0 0 calc((100% - 10px) / 1.4);
		width: calc((100% - 10px) / 1.4);
	}
	.cvp-co-field-row {
		grid-template-columns: 1fr;
	}
	.cvp-co-hero__title {
		font-size: 24px;
	}
	.cvp-co-steps__grid {
		grid-template-columns: 1fr;
	}
	.cvp-co-tracker__label {
		font-size: 10px;
	}
	.cvp-co-tracker__dot {
		width: 26px;
		height: 26px;
		font-size: 12px;
	}
	.cvp-co-intent-btn {
		flex-basis: 100%;
	}
}
