
:root {
	--vp-pages-pink: #f7b7d2;
	--vp-pages-hot-pink: #e85e9f;
	--vp-pages-purple: #8a5ccf;
	--vp-pages-lavender: #eee4ff;
	--vp-pages-cream: #fffaf5;
	--vp-pages-ink: #2d173e;
	--vp-pages-muted: #725f80;
	--vp-pages-white: #ffffff;
	--vp-pages-shadow: 0 18px 46px rgba(91, 48, 122, 0.13);
}

.vp-pages-shell {
	max-width: 1120px;
	margin: 0 auto;
	padding: 42px 20px 72px;
	color: var(--vp-pages-ink);
}

.vp-pages-hero {
	position: relative;
	overflow: hidden;
	padding: 54px 34px;
	border: 1px solid rgba(138, 92, 207, .15);
	border-radius: 34px;
	background:
		radial-gradient(circle at 10% 12%, rgba(247, 183, 210, .65), transparent 28%),
		radial-gradient(circle at 90% 10%, rgba(238, 228, 255, .95), transparent 34%),
		linear-gradient(135deg, #fffaf5 0%, #fff1f8 50%, #f3ebff 100%);
	box-shadow: var(--vp-pages-shadow);
	text-align: center;
}

.vp-pages-hero::after {
	content: "✦";
	position: absolute;
	right: 28px;
	top: 18px;
	color: var(--vp-pages-hot-pink);
	font-size: 42px;
	transform: rotate(12deg);
}

.vp-pages-eyebrow {
	display: inline-block;
	margin: 0 0 12px;
	padding: 8px 15px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .82);
	color: var(--vp-pages-purple);
	font-size: .84rem;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.vp-pages-hero h1 {
	margin: 0;
	color: var(--vp-pages-ink);
	font-size: clamp(2.25rem, 6vw, 4rem);
	line-height: 1.05;
}

.vp-pages-hero > p:not(.vp-pages-eyebrow) {
	max-width: 760px;
	margin: 18px auto 0;
	color: var(--vp-pages-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.vp-pages-primary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	margin-top: 24px;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--vp-pages-hot-pink), var(--vp-pages-purple));
	box-shadow: 0 13px 30px rgba(138, 92, 207, .27);
	color: #fff !important;
	font: inherit;
	font-weight: 900;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}

.vp-pages-primary-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 17px 34px rgba(138, 92, 207, .34);
}

.vp-product-section {
	padding: 64px 0 24px;
}

.vp-pages-section-heading {
	max-width: 760px;
	margin: 0 auto 30px;
	text-align: center;
}

.vp-pages-section-heading h2 {
	margin: 0;
	color: var(--vp-pages-ink);
	font-size: clamp(1.9rem, 4vw, 3rem);
}

.vp-pages-section-heading > p:not(.vp-pages-eyebrow) {
	color: var(--vp-pages-muted);
	line-height: 1.7;
}

.vp-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.vp-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
	border: 1px solid rgba(138, 92, 207, .13);
	border-radius: 24px;
	background: var(--vp-pages-white);
	box-shadow: var(--vp-pages-shadow);
}

.vp-product-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.vp-product-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: linear-gradient(135deg, #fff1f7, var(--vp-pages-lavender));
	font-size: 25px;
}

.vp-product-badge {
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff1f7;
	color: var(--vp-pages-hot-pink);
	font-size: .78rem;
	font-weight: 900;
}

.vp-product-card h3 {
	margin: 20px 0 8px;
	color: var(--vp-pages-ink);
	font-size: 1.3rem;
}

.vp-product-card p {
	flex-grow: 1;
	margin: 0;
	color: var(--vp-pages-muted);
	line-height: 1.65;
}

.vp-product-price {
	margin-top: 18px;
	color: var(--vp-pages-purple);
	font-size: 1.05rem;
	font-weight: 900;
}

.vp-product-order-link {
	display: inline-flex;
	justify-content: center;
	margin-top: 16px;
	padding: 12px 16px;
	border: 2px solid rgba(138, 92, 207, .25);
	border-radius: 999px;
	color: var(--vp-pages-purple) !important;
	font-weight: 900;
	text-decoration: none !important;
}

.vp-product-order-link:hover {
	border-color: var(--vp-pages-purple);
	background: #f7f1ff;
}

.vp-pages-callout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
	margin-top: 38px;
	padding: 34px;
	border-radius: 28px;
	background: linear-gradient(135deg, #362348, #5c4470);
	box-shadow: var(--vp-pages-shadow);
	color: #fff;
}

.vp-pages-callout h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.vp-pages-callout p:not(.vp-pages-eyebrow) {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .84);
	line-height: 1.7;
}

.vp-pages-callout .vp-pages-primary-button {
	margin-top: 0;
	white-space: nowrap;
}

.vp-contact-layout {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 24px;
	margin-top: 28px;
}

.vp-contact-options {
	display: grid;
	gap: 14px;
	align-content: start;
}

.vp-contact-option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(138, 92, 207, .14);
	border-radius: 20px;
	background: var(--vp-pages-white);
	box-shadow: var(--vp-pages-shadow);
	color: var(--vp-pages-ink) !important;
	text-decoration: none !important;
}

.vp-contact-option > span {
	display: grid;
	place-items: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 15px;
	background: linear-gradient(135deg, #fff1f7, var(--vp-pages-lavender));
	font-size: 22px;
}

.vp-contact-option strong,
.vp-contact-option small {
	display: block;
}

.vp-contact-option small {
	margin-top: 4px;
	color: var(--vp-pages-muted);
}

a.vp-contact-option:hover {
	transform: translateY(-2px);
}

.vp-contact-form-card {
	padding: 28px;
	border: 1px solid rgba(138, 92, 207, .13);
	border-radius: 26px;
	background: var(--vp-pages-white);
	box-shadow: var(--vp-pages-shadow);
}

.vp-contact-form-card h2 {
	margin: 0 0 22px;
	color: var(--vp-pages-ink);
	font-size: 1.8rem;
}

.vp-contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.vp-contact-field-full {
	grid-column: 1 / -1;
}

.vp-contact-field label {
	display: block;
	margin-bottom: 8px;
	color: var(--vp-pages-ink);
	font-weight: 900;
}

.vp-contact-field label span {
	color: var(--vp-pages-hot-pink);
}

.vp-contact-field input,
.vp-contact-field select,
.vp-contact-field textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	min-height: 50px;
	margin: 0;
	padding: 12px 14px;
	border: 2px solid #eadff1;
	border-radius: 14px;
	outline: 0;
	background: #fffdfd;
	color: var(--vp-pages-ink);
	font: inherit;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.vp-contact-field textarea {
	min-height: 145px;
	resize: vertical;
}

.vp-contact-field input:focus,
.vp-contact-field select:focus,
.vp-contact-field textarea:focus {
	border-color: var(--vp-pages-purple);
	box-shadow: 0 0 0 4px rgba(138, 92, 207, .12);
}

.vp-contact-submit {
	width: 100%;
}

.vp-pages-notice {
	margin-bottom: 18px;
	padding: 15px 17px;
	border-radius: 15px;
	font-weight: 800;
}

.vp-pages-notice-success {
	border: 1px solid #9ddbb5;
	background: #edfdf3;
	color: #17673a;
}

.vp-pages-notice-error {
	border: 1px solid #f1a8b7;
	background: #fff1f4;
	color: #8c243d;
}

.vp-pages-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Homepage preview sections inserted by the plugin. */
.vp-home-preview {
	max-width: 1120px;
	margin: 42px auto;
	padding: 0 20px;
}

.vp-home-preview-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding: 34px;
	border: 1px solid rgba(138, 92, 207, .14);
	border-radius: 28px;
	background:
		radial-gradient(circle at 8% 20%, rgba(247, 183, 210, .5), transparent 28%),
		linear-gradient(135deg, #fffaf5, #f5edff);
	box-shadow: var(--vp-pages-shadow);
}

.vp-home-preview-card h2 {
	margin: 0;
	color: var(--vp-pages-ink);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.vp-home-preview-card p {
	margin-bottom: 0;
	color: var(--vp-pages-muted);
	line-height: 1.7;
}

.vp-home-preview-card .vp-pages-primary-button {
	margin-top: 0;
	white-space: nowrap;
}

.vp-segregated-original {
	display: none !important;
}

@media (max-width: 900px) {
	.vp-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vp-contact-layout {
		grid-template-columns: 1fr;
	}

	.vp-pages-callout,
	.vp-home-preview-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.vp-pages-callout .vp-pages-primary-button,
	.vp-home-preview-card .vp-pages-primary-button {
		justify-self: center;
	}
}

@media (max-width: 650px) {
	.vp-pages-shell {
		padding: 24px 14px 52px;
	}

	.vp-pages-hero {
		padding: 38px 17px 30px;
		border-radius: 24px;
	}

	.vp-pages-hero::after {
		right: 14px;
		top: 11px;
		font-size: 28px;
	}

	.vp-product-section {
		padding-top: 44px;
	}

	.vp-product-grid,
	.vp-contact-form-grid {
		grid-template-columns: 1fr;
	}

	.vp-contact-field-full {
		grid-column: auto;
	}

	.vp-product-card,
	.vp-contact-form-card,
	.vp-pages-callout {
		padding: 20px 16px;
		border-radius: 21px;
	}

	.vp-home-preview {
		margin: 28px auto;
		padding: 0 14px;
	}

	.vp-home-preview-card {
		padding: 24px 18px;
		border-radius: 22px;
	}
}


/* Version 1.2: allow designed pages to use the full content width of the theme. */
body.page-template-default .page-wrap:has(.vp-pages-shell) {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.page-template-default .page-wrap:has(.vp-pages-shell) > .entry-content {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-default .page-wrap:has(.vp-pages-shell) .vp-pages-shell {
	width: min(1120px, calc(100% - 40px)) !important;
	max-width: 1120px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Ensure the dark custom-design callout remains readable over theme heading rules. */
.vp-pages-callout,
.vp-pages-callout h2,
.vp-pages-callout p,
.vp-pages-callout .vp-pages-eyebrow {
	color: #ffffff !important;
}

.vp-pages-callout .vp-pages-eyebrow {
	background: rgba(255, 255, 255, .92) !important;
	color: #7a4ec5 !important;
}

.vp-pages-callout p:not(.vp-pages-eyebrow) {
	color: rgba(255, 255, 255, .90) !important;
}

@media (max-width: 650px) {
	body.page-template-default .page-wrap:has(.vp-pages-shell) .vp-pages-shell {
		width: calc(100% - 28px) !important;
	}
}
