/*!
Theme Name: missquince
Theme URI: https://missquince.vip
Author: MissQuince
Description: Custom WordPress theme for MissQuince.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: missquince
*/

/* ==========================================================================
   WordPress Essentials
   ========================================================================== */

/* Images
--------------------------------------------- */

img {
	max-width: 100%;
	height: auto;
}

.custom-logo-link {
	display: inline-block;
}

/* WordPress Alignments
--------------------------------------------- */

.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1.5rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-bottom: 1.5rem;
	margin-left: auto;
}

/* Accessibility
--------------------------------------------- */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 0.5rem;
	left: 0.5rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	color: #212529;
	background: #FFFFFF;
	border-radius: 0.375rem;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
	font-weight: 600;
	text-decoration: none;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

html,
body {
	overflow-x: hidden;
}

/* ==========================================================================
   Template Starts Here
   ========================================================================== */

/* ==========================================================================
   Global Styles
   ========================================================================== */

/* Custom Fonts
--------------------------------------------- */

@font-face {
	font-family: "Bevenida";
	src:
		url("fonts/bevenida-regular.woff2") format("woff2"),
		url("fonts/bevenida-regula.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Bevenida";
	src:
		url("fonts/bevenida-semibold.woff2") format("woff2"),
		url("fonts/bevenida-semibold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* Site Styles
--------------------------------------------- */

body {
	background-color: #FFF;
	font-family: sofia-pro, sans-serif;
	font-weight: 300;
}

body {
	color: #280382;
	font-weight: 300;
}

/* Typography
--------------------------------------------- */

.bevenida-font {
	font-family: "Bevenida", serif!important;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.bevenida-light {
	font-family: "Bevenida", serif!important;
	font-weight: 300;
}

strong,
b {
	font-weight: 600;
}

/* Text Colors
--------------------------------------------- */

.pink-text {
	color: #FFBEF1;
}

.purple-text {
	color: #5209C6;
}

.blue-text {
	color: #280382;
}

.magenta-text {
	color: #DA21A0;
}


/* ==========================================================================
   Header
   ========================================================================== */

/* Header Layout
--------------------------------------------- */

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	padding: 10px 0;
	background: transparent;
}

/* Navigation
--------------------------------------------- */

.navbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.site-header .custom-logo {
	display: block;
	width: auto;
	max-width: none;
	height: 85px;
}

/* Menu
--------------------------------------------- */

.navbar-nav {
	align-items: center;
	gap: 2.5rem;
	margin-left: auto;
	list-style: none;
}

.navbar-nav a {
	color: #25008B;
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.25s ease;
}

.navbar-nav a:hover,
.navbar-nav a:focus,
.navbar-nav .current-menu-item > a {
	color: #D61C97;
}

/* Menu CTA
--------------------------------------------- */

/* Menu CTA
--------------------------------------------- */

.navbar-nav li:last-child a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	background-clip: padding-box;
}

.navbar-nav li:last-child a:hover,
.navbar-nav li:last-child a:focus {
	color: #FFFFFF;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	box-shadow: none;
}

.navbar-nav li:last-child a:hover,
.navbar-nav li:last-child a:focus {
	color: #FFFFFF;
	background: #BC1885;
}

/* Mobile Toggle
--------------------------------------------- */

.navbar-toggler {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 10px 0 0;
	margin: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	position: relative;
	width: 28px;
	height: 2px;
	background: #D61C97;
	background-image: none;
	border-radius: 999px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	position: absolute;
	left: 0;
	width: 28px;
	height: 2px;
	content: "";
	background: #D61C97;
	border-radius: 999px;
}

.navbar-toggler-icon::before {
	top: -8px;
}

.navbar-toggler-icon::after {
	top: 8px;
}

/* Mobile Offcanvas Menu
--------------------------------------------- */

@media (max-width: 991.98px) {
	#primary-navigation {
		width: 100%;
		background-color: #FCF5FC;
	}

	#primary-navigation .offcanvas-header {
		padding: 1.5rem;
	}

	#primary-navigation .offcanvas-body {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 2rem;
	}

	#primary-navigation .navbar-nav {
		width: 100%;
		gap: 1.5rem;
		margin-left: 0;
		text-align: center;
	}

	#primary-navigation .navbar-nav a {
		font-size: 1.5rem;
	}

	#primary-navigation .navbar-nav li:last-child {
		width: 100%;
	}

	#primary-navigation .navbar-nav li:last-child a {
		width: 100%;
	}
}

/* Desktop Navigation
--------------------------------------------- */

@media (min-width: 992px) {
	#primary-navigation .offcanvas-header {
		display: none;
	}

	#primary-navigation .offcanvas-body {
		display: flex;
		align-items: center;
		width: 100%;
		padding: 0;
	}
}


/* Margin Top
   ========================================================================== */

.margintop-section {
	margin-top: 8em;
}

@media (max-width: 991.98px) {
	.margintop-section {
		margin-top: 6em;
	}
}



/* ==========================================================================
   Buttons
   ========================================================================== */

/* Base Button
--------------------------------------------- */

.btn-theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.3rem 2rem!important;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: sofia-pro, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.btn-theme:hover,
.btn-theme:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.3rem 2rem!important;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: sofia-pro, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

/* Gradient Button
--------------------------------------------- */

.btn-theme-primary {
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	background-clip: padding-box;
}

.btn-theme-primary:hover,
.btn-theme-primary:focus,
.btn-theme-primary:active {
	color: #FFFFFF;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	box-shadow: none;
}

.btn-theme-primary:hover,
.btn-theme-primary:focus {
	color: #FFFFFF;
}

/* Outline Button
--------------------------------------------- */

.btn-theme-outline {
	color: #5209C6;
	background: transparent;
	border-color: #5209C6;
}

.btn-theme-outline:hover,
.btn-theme-outline:focus {
	color: #FFFFFF;
	background: #5209C6;
	border-color: #5209C6;
}

/* Mobile Button Size
--------------------------------------------- */

@media (max-width: 767.98px) {
	.btn-theme {
		padding: 1rem 1.45rem;
		font-size: 1rem;
	}
}

/* Desktop Button Size
--------------------------------------------- */

@media (min-width: 768px) {
	.btn-theme {
		padding: 1rem 2.5rem;
		font-size: 1.25rem;
	}
}

/* Full Width Button
--------------------------------------------- */

.btn-block {
	display: block;
	width: 100%;
}

/* ==========================================================================
   Backgrounds
   ========================================================================== */

/* Solid Backgrounds
--------------------------------------------- */

.bg-light-pink {
	background-color: #FCF5FC;
}

/* Gradient Backgrounds
--------------------------------------------- */

.bg-light-pink-gradient {
	background: linear-gradient(
		to bottom,
		#FFFFFF 0%,
		#FCF5FC 5%
	);
}

.bg-light-pink-gradient-contact {
	background: linear-gradient(
		to bottom,
		#FFFFFF 0%,
		#FCF5FC 20%
	);
}

.bg-brand-gradient {
	background: linear-gradient(
		9135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
}


/* ==========================================================================
   Hero
   ========================================================================== */

/* Hero Layout
--------------------------------------------- */

.home-hero {
	display: grid;
	width: 100%;
}

.home-hero > picture,
.home-hero > .home-hero-content {
	grid-area: 1 / 1;
}

/* Hero Image
--------------------------------------------- */

.home-hero > picture {
	display: block;
	width: 100%;
	z-index: 0;
}

.home-hero .hero-background {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	object-fit: cover;
	margin-top: 1em;
}

/* Hero Content
--------------------------------------------- */

.home-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 7em;
	padding-bottom: 2.5em;
}

@media (min-width: 992px) {
	.home-hero-content {
		padding-top: 10em;
		padding-bottom: 6em;
	}
}

/* Hero Heading
--------------------------------------------- */

.hero-heading {
	margin: 0;
	font-size: 2.3rem;
	line-height: 1;
}

@media (min-width: 992px) {
	.hero-heading {
		font-size: 5rem;
	}
}

.home-hero-content {
	display: grid;
	line-height: 1;
}

.home-hero-content > .container,
.home-hero-content > .hero-device-picture {
	grid-area: 1 / 1;
}

.home-hero-content > .container {
	position: relative;
	z-index: 2;
}

.hero-device-picture {
	position: relative;
	z-index: 1;
	align-self: center;
	justify-self: end;
	display: block;
	width: 49%;
	margin: 0;

	transform: translateY(16%) translatex(7%);
}

.hero-device-image {
	display: block;
	width: 100%;
	height: auto;
}

/* ==========================================================================
   Desktop Hero
   ========================================================================== */

@media (min-width: 992px) {

	.home-hero-desktop {
		position: relative;
		display: grid !important;
		width: 100%;
		min-height: 52rem;
		overflow: hidden;
	}

	.home-hero-desktop-background,
	.home-hero-desktop-content,
	.desktop-hero-device-picture {
		grid-area: 1 / 1;
	}


	/* Desktop Background
	--------------------------------------------- */

	.home-hero-desktop-background {
		z-index: 0;
		display: block;
		width: 100%;
		height: 100%;
		min-height: 52rem;
		object-fit: cover;
		object-position: center top;
	}


	/* Desktop Content
	--------------------------------------------- */

	.home-hero-desktop-content {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		width: 100%;
		padding-top: 9rem;
		padding-bottom: 6rem;
	}


	/* Desktop Text
	--------------------------------------------- */

	.desktop-hero-heading {
		margin: 0;
		font-size: 5rem;
		line-height: 0.98;
	}

	.desktop-hero-subheading {
		font-size: 1.75rem;
		line-height: 1.15;
	}

	.desktop-hero-intro {
		font-size: 1.2rem;
		line-height: 1.3;
	}

	.desktop-hero-intro p:last-child {
		margin-bottom: 0;
	}


/* Phone and Invitation
--------------------------------------------- */

.desktop-hero-device-picture {
	position: relative;
	z-index: 1;
	align-self: center;
	justify-self: end;
	display: block;

	/* Change this to make the phone larger or smaller */
	width: 55%;

	/* Change this to move the phone away from the right edge */
	margin-right: 5%;

	/* Change only the first value to move it up/down */
	transform: translateY(30%);
}

.desktop-hero-device-image {
	display: block;
	width: 100%;
	height: auto;
}

} /* End desktop hero media query */

/* ==========================================================================
   Feature Highlights
   ========================================================================== */

/* Feature Card
--------------------------------------------- */

.feature-highlights-card {
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 1.25rem;
	box-shadow: 0 8px 18px rgba(40, 3, 130, 0.16);
}

/* Feature Item
--------------------------------------------- */

.feature-highlight {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.75rem 0.5rem;
	text-align: center;
}

/* Feature Dividers
--------------------------------------------- */

.feature-highlight-bordered {
	position: relative;
}

.feature-highlight-bordered::before,
.feature-highlight-bordered::after {
	position: absolute;
	top: 50%;
	width: 1px;
	height: 60%;
	content: "";
	background-color: rgba(40, 3, 130, 0.16);
	transform: translateY(-50%);
}

.feature-highlight-bordered::before {
	left: 0;
}

.feature-highlight-bordered::after {
	right: 0;
}

/* Feature Icons
--------------------------------------------- */

.feature-highlight-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	object-fit: contain;
}

/* Feature Headings
--------------------------------------------- */

.feature-highlight-heading {
	margin: 0;
	color: #280382;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.15;
}

/* Desktop
--------------------------------------------- */

@media (min-width: 768px) {
	.feature-highlights-card {
		border-radius: 1.5rem;
	}

	.feature-highlight {
		padding: 2.5rem 1.5rem;
	}

	.feature-highlight-icon {
		width: 86px;
		height: 86px;
	}

	.feature-highlight-heading {
		font-size: 1.75rem;
	}
}

/* ==========================================================================
   Package Offer
   ========================================================================== */

/* Heading
--------------------------------------------- */

.offer-heading {
	font-size: 2rem;
	line-height: 1.2;
}

/* Intro
--------------------------------------------- */

.offer-intro p:last-child {
	margin-bottom: 0;
}

/* Divider
--------------------------------------------- */

.offer-divider-line {
	height: 1px;
	background-color: #FCF5FC;
}

.offer-divider-heart {
	width: 30px;
	height: auto;
}

/* Price
--------------------------------------------- */

.offer-price {
	font-size: 6rem;
	line-height: 1;
}

/* Decorative Stars
--------------------------------------------- */

.offer-star {
	position: absolute;
	z-index: 0;
	color: #FCF5FC;
	line-height: 1;
	pointer-events: none;
}

.offer-star-1 {
	top: 6%;
	left: 10%;
	font-size: 0.7rem;
}

.offer-star-2 {
	top: 10%;
	left: 5%;
	font-size: 1.25rem;
}

.offer-star-3 {
	top: 7%;
	right: 10%;
	font-size: 0.8rem;
}

.offer-star-4 {
	top: 12%;
	right: 5%;
	font-size: 1.25rem;
}

.offer-star-5 {
	bottom: 10%;
	left: 6%;
	font-size: 0.8rem;
}

.offer-star-6 {
	right: 7%;
	bottom: 8%;
	font-size: 1rem;
}

/* Desktop
--------------------------------------------- */

@media (min-width: 768px) {

	.offer-heading {
		font-size: 4.5rem;
	}

	.offer-divider-heart {
		width: 40px;
	}

	.offer-price {
		font-size: 8rem;
	}
}

/* ==========================================================================
   How It Works
   ========================================================================== */

/* Section Heading
--------------------------------------------- */

.process-section-heading {
	font-size: 2rem;
	line-height: 1.2;
}

/* Section Divider
--------------------------------------------- */

.process-divider-line {
	width: 120px;
	height: 1px;
	background-color: #DA20A0;
}

.process-divider-heart {
	width: 30px;
	height: auto;
}

/* Process Image
--------------------------------------------- */

.process-image-wrapper {
	position: relative;
}

.process-image {
	display: block;
	width: 70%;
}

/* Process Number
--------------------------------------------- */

.process-number {
	position: absolute;
	top: 12px;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	color: #FFFFFF;
	background-color: #DA20A0;
	border-radius: 50%;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	transform: translateX(-50%);
}

/* Process Typography
--------------------------------------------- */

.process-heading {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.15;
}

.process-text {
	font-size: 1.125rem;
	line-height: 1.35;
}

.process-text p:last-child {
	margin-bottom: 0;
}

/* Desktop
--------------------------------------------- */

@media (min-width: 768px) {

	.process-section-heading {
		font-size: 4rem;
	}

	.process-number {
		top: 16px;
		width: 84px;
		height: 84px;
		font-size: 2.5rem;
	}

	.process-heading {
		font-size: 1.75rem;
	}

	.process-text {
		font-size: 1.25rem;
	}
}

/* ==========================================================================
   Why Parents Love
   ========================================================================== */

/* Logo
--------------------------------------------- */

.why-logo {
	max-width: 320px;
}

/* Icons
--------------------------------------------- */

.why-icon {
	width: 100%;
	margin: 0 auto;
}

/* Typography
--------------------------------------------- */

.why-heading {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.15;
}

.why-text {
	font-size: 1.125rem;
	line-height: 1.3;
}

.why-text p:last-child {
	margin-bottom: 0;
}

/* Desktop
--------------------------------------------- */

@media (min-width: 768px) {

	.why-logo {
		max-width: 420px;
	}

	.why-icon {
		width: 110px;
	}

	.why-heading {
		font-size: 2rem;
	}

	.why-text {
		font-size: 1.25rem;
	}
}

/* ==========================================================================
   FAQs
   ========================================================================== */

.faqs-heading {
	font-size: 2em;
	line-height: 1;
}

.faqs-intro {
	max-width: 34rem;
	line-height: 1.35;
}

.faqs-intro > *:last-child {
	margin-bottom: 0;
}

/* Accordion
--------------------------------------------- */

.faqs-accordion {
	--bs-accordion-bg: transparent;
	--bs-accordion-border-color: rgba(255, 255, 255, 0.7);
	--bs-accordion-btn-bg: transparent;
	--bs-accordion-active-bg: transparent;
	--bs-accordion-color: #fff;
	--bs-accordion-btn-color: #fff;
	--bs-accordion-active-color: #fff;
}

.faqs-accordion .accordion-item {
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.faqs-accordion .accordion-button {
	width: 100%;
	padding: 1.6rem 0;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	color: #fff;
	font-size: 1.5rem!important;
	font-weight: 300!important;
	line-height: 1.2;
	text-align: left;
}

.faqs-accordion .accordion-button:not(.collapsed) {
	background-color: transparent;
	color: #fff;
	box-shadow: none;
}

.faqs-accordion .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}

/* Custom Plus and Minus
--------------------------------------------- */

.faqs-accordion .accordion-button::after {
	width: 1.5rem;
	height: 1.5rem;
	margin-left: auto;
	padding-left: 1rem;
	flex-shrink: 0;
	background-image: none;
	content: "+";
	color: rgba(255, 255, 255, 0.8);
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	transform: none;
}

.faqs-accordion .accordion-button:not(.collapsed)::after {
	content: "−";
	transform: none;
}

.faqs-accordion .accordion-body {
	padding: 0 2.75rem 1.6rem 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.5;
}

.faqs-accordion .accordion-body > *:last-child {
	margin-bottom: 0;
}

/* Mobile
--------------------------------------------- */

@media (max-width: 575.98px) {
	.faqs-section {
		min-height: auto;
		padding-top: 4.5rem !important;
		padding-bottom: 5rem !important;
	}

	.faqs-heading {
		font-size: 2.6rem;
	}

	.faqs-intro {
		font-size: 1.15rem !important;
	}

	.faqs-accordion .accordion-button {
		padding: 1.55rem 0;
		font-size: 1rem;
	}

	.faqs-accordion .accordion-body {
		padding-right: 1.5rem;
		font-size: 1rem;
	}
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
	padding: 5rem 0 9rem;
	color: $blue;
	background-color: #FCF5FC;
}

.footer-logo-link {
	max-width: 23rem;
}

.footer-logo {
	display: block;
	width: 100%;
	height: auto;
}

.footer-tagline {
	color: $blue;
	font-size: clamp(1.6rem, 4vw, 2.25rem);
	font-weight: 600;
	line-height: 1.15;
}

.footer-description {
	max-width: 31rem;
	color: $blue;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.35;
}

/* Divider
--------------------------------------------- */

.footer-divider {
	gap: 1.75rem;
	margin: 4rem auto;
}

.footer-divider-line {
	display: block;
	flex: 1;
	max-width: 9.5rem;
	height: 1px;
	background-color: #da21a0;
}

.footer-divider-heart {
	display: block;
	width: 2rem;
	height: auto;
	flex-shrink: 0;
}

/* Social Media
--------------------------------------------- */

.footer-social {
	margin-bottom: 4rem;
}

.footer-social-heading {
	color: $blue;
	font-size: 2rem;
	font-weight: 600;
}

.footer-social-links {
	gap: 1.75rem;
}

.footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	background-color: #fde5f8;
	border: 1px solid #da21a0;
	border-radius: 50%;
	font-size: 3rem;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
	color: #da21a0;
	background-color: #fff;
	transform: translateY(-3px);
}

.footer-social-link:focus-visible {
	outline: 2px solid #da21a0;
	outline-offset: 4px;
}

/* CTA Card
--------------------------------------------- */

.footer-cta-card {
	padding: 1.25rem 1.5rem;
}

.footer-cta-icon {
	width: 100%;
	max-width: 9rem;
}

.footer-cta-heading {
	color: $blue;
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	line-height: 1;
}

.footer-cta-text {
	color: $purple;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.25;
}

.footer-packages-button {
	margin-top: 3.75rem;
	padding: 1rem 2rem;
	border: 0;
	border-radius: 999px;
	font-size: clamp(1.35rem, 4vw, 2rem);
	font-weight: 600;
	text-transform: uppercase;
}

/* Footer Bottom
--------------------------------------------- */

.footer-bottom {
	margin-top: 3.75rem;
}

.footer-copyright {
	font-size: 1rem;
	font-weight: 300;
}

.footer-legal-links {
	gap: 1.5rem;
}

.footer-legal-links a {
	color: $blue;
	font-size: 0.95rem;
	font-weight: 300;
	text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
	text-decoration: underline;
}

.footer-legal-divider {
	width: 1px;
	height: 1.1rem;
	background-color: #da21a0;
}

/* Decorative Background
--------------------------------------------- */

.footer-background {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
}

/* Mobile
--------------------------------------------- */

@media (max-width: 575.98px) {
	.site-footer {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.footer-logo-link {
		max-width: 19rem;
	}

	.footer-tagline {
		margin-top: 2rem !important;
		font-size: 1.75rem;
	}

	.footer-description {
		font-size: 1.15rem;
	}

	.footer-divider {
		gap: 1.5rem;
		margin: 3.5rem auto;
	}

	.footer-divider-line {
		max-width: 9rem;
	}

	.footer-divider-heart {
		width: 1.85rem;
	}

	.footer-social {
		margin-bottom: 3.75rem;
	}

	.footer-social-links {
		flex-wrap: nowrap !important;
		gap: 1.25rem;
	}

	.footer-social-link {
		width: 3.5rem;
		height: 3.5rem;
		font-size: 1.7rem;
	}

	.footer-cta-card {
		padding: 1.25rem 1rem;
	}

	.footer-cta-heading {
		font-size: 2.3rem;
	}

	.footer-cta-text {
		font-size: 1.1rem;
	}

	.footer-packages-button {
		margin-top: 3.5rem;
		font-size: 1.65rem;
	}

	.footer-bottom {
		margin-top: 3.5rem;
	}

	.footer-legal-links {
		gap: 1rem;
	}

	.footer-legal-links a {
		font-size: 0.9rem;
	}
}

/* Small Mobile
--------------------------------------------- */

@media (max-width: 399.98px) {
	.footer-social-links {
		gap: 0.75rem;
	}

	.footer-social-link {
		width: 4rem;
		height: 4rem;
		font-size: 2rem;
	}

	.footer-divider {
		gap: 1rem;
	}

	.footer-divider-line {
		max-width: 6rem;
	}

	.footer-divider-heart {
		width: 1.65rem;
	}

	.footer-cta-heading {
		font-size: 2rem;
	}

	.footer-legal-links {
		gap: 0.75rem;
	}
}

/* Studio Logo
--------------------------------------------- */

.footer-studio-logo {
	max-width: 4rem;
}

/* Footer Menu
--------------------------------------------- */

.footer-menu .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu .menu-item {
	display: flex;
	align-items: center;
}

.footer-menu .menu-item + .menu-item::before {
	content: "|";
	margin: 0 .9rem;
	color: #DA21A0;
	font-weight: 400;
}

.footer-menu .menu-item a {
	color: #280382;
	font-size: .95rem;
	font-weight: 300;
	text-decoration: none;
	transition: color .2s ease;
}

.footer-menu .menu-item a:hover,
.footer-menu .menu-item a:focus {
	color: #280382;
	text-decoration: none;
}

/* ==========================================================================
   Floating WhatsApp Support Button
   ========================================================================== */

.whatsapp-support-button {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	color: #FFFFFF;
	background-color: #25D366;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(40, 3, 130, 0.22);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.whatsapp-support-button svg {
	width: 32px;
	height: 32px;
}

.whatsapp-support-button:hover,
.whatsapp-support-button:focus-visible {
	color: #FFFFFF;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(40, 3, 130, 0.3);
}

.whatsapp-support-button:focus-visible {
	outline: 3px solid #DA21A0;
	outline-offset: 4px;
}

@media (max-width: 767.98px) {
	.whatsapp-support-button {
		right: 18px;
		bottom: 18px;
		width: 56px;
		height: 56px;
	}

	.whatsapp-support-button svg {
		width: 30px;
		height: 30px;
	}
}

/* ==========================================================================
   Packages
   ========================================================================== */

.package-card {
	position: relative;
	height: 100%;
	background: linear-gradient(
		#FDE5F8 0%,
		#FDE5F8 40%,
		#FFBEF1 100%
	);
	box-shadow: inset 0 0 0 1px rgba(218, 33, 160, 0.2);
}

/* Package icon
   ========================================================================== */

.package-icon {
	width: 7em;
	height: 7em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -9rem;
}

.package-icon img {
	display: block;
	width: 7em;
	height: auto;
}

/* Package typography
   ========================================================================== */

.package-title {
	color: #DA21A0;
	font-size: 2rem;
	font-weight: 300;
}

.package-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.35;
}

.package-features {
	color: #280382;
}

/* Package divider
   ========================================================================== */

.package-divider {
	width: 100%;
	height: 1px;
	margin: 0 0 1.5rem 0;
	background-color: #DA21A0;
}

/* Package price
   ========================================================================== */

.package-price {
	text-align: center;
}

.package-price span {
	display: block;
	margin-bottom: 0.8rem;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.package-price strong {
	display: block;
	font-size: clamp(3rem, 4vw, 4rem);
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* Package features
   ========================================================================== */

.package-features ul {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

.package-features li {
	position: relative;
	margin-bottom: 2rem;
	padding-left: 3.5rem;
}

.package-features li::before {
	content: "\f00c";
	position: absolute;
	top: 0;
	left: 0;
	color: #DA21A0;
	font-family: "Line Awesome Free";
	font-size: 1.5rem;
	font-weight: 900;
}

/* Package button
   ========================================================================== */

.package-button {
	color: #FFFFFF;
	background-color: #DA21A0;
	border-radius: 50px;
	padding-bottom: 10px;
}

.package-button:hover,
.package-button:focus {
	color: #FFFFFF;
	background-color: #BD1689;
}

/* ==========================================================================
   How It Works Steps
   ========================================================================== */

.steps-process {
	padding-bottom: 3rem;
}

.steps-process-item {
	padding: 2rem 0;
}

.steps-process-item + .steps-process-item {
	border-top: 1px solid rgba(218, 33, 160, .14);
}


/* Mobile and Tablet Images
--------------------------------------------- */

.steps-process-image-row {
	justify-content: center;
}

.steps-process-image-column {
	flex: 0 0 auto;
	width: 78%;
}

.steps-process-image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: .75rem;
}


/* Step Number
--------------------------------------------- */

.steps-process-number-column {
	position: relative;
	align-self: stretch;
	padding-right: .75rem;
}

.steps-process-number-column::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background-image: linear-gradient(
		to bottom,
		#DA21A0 50%,
		transparent 50%
	);
	background-size: 2px 8px;
	background-repeat: repeat-y;
}

.steps-process-number {
	font-size: clamp(3rem, 11vw, 4.25rem);
	line-height: 1;
	text-align: center;
}


/* Step Content
--------------------------------------------- */

.steps-process-content-column {
	padding-left: 1rem;
}

.steps-process-content {
	padding-left: .5rem;
	padding-right: .5rem;
}

.steps-process-content > *:first-child {
	margin-top: 0;
}

.steps-process-content > *:last-child {
	margin-bottom: 0;
}

.steps-process-content h2,
.steps-process-content h3,
.steps-process-content h4 {
	margin-bottom: .65rem;
	font-size: clamp(1.65rem, 6vw, 2rem);
	line-height: 1.05;
}

.steps-process-content p {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.55;
}


/* Tablet
--------------------------------------------- */

@media (min-width: 576px) {

	.steps-process {
		padding-bottom: 4rem;
	}

	.steps-process-item {
		padding: 2.5rem 0;
	}

	.steps-process-image-column {
		width: 60%;
	}

	.steps-process-number {
		font-size: 4.5rem;
	}

	.steps-process-content-column {
	padding-left: 1.5rem;
	}

	.steps-process-content {
	padding-left: .5rem;
	}

	.steps-process-content h2,
	.steps-process-content h3,
	.steps-process-content h4 {
		font-size: 2rem;
	}

	.steps-process-content p {
		font-size: 1.1rem;
	}

	.steps-process-image {
		border-radius: 1rem;
	}

}


/* Desktop
--------------------------------------------- */

@media (min-width: 992px) {

	.steps-process {
		padding-bottom: 6rem;
	}

	.steps-process-item-desktop {
		padding: 4rem 0;
	}

	.steps-process-item-desktop.steps-process-item-first {
		border-top: 0;
	}

	.steps-process-number {
		padding-right: 2rem;
		font-size: 5.5rem;
		text-align: left;
	}

	.steps-process-number-column::after {
		right: calc(var(--bs-gutter-x) * .5);
	}

	.steps-process-content {
		padding: 0 2.5rem;
	}

	.steps-process-content h2,
	.steps-process-content h3,
	.steps-process-content h4 {
		margin-bottom: 1rem;
		font-size: 2.5rem;
	}

	.steps-process-content p {
		font-size: 1.2rem;
		line-height: 1.6;
	}

	.steps-process-image-desktop {
		width: auto;
		max-width: 100%;
		max-height: 300px;
		object-fit: contain;
	}

}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-hero {
	padding-bottom: 2rem;
}

.contact-intro {
	max-width: 42rem;
	margin: 0 auto 1.75rem;
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.8;
	color: #280382;
}

.contact-phone {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	color: #DA20A0;
	font-size: 1.15rem;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s ease;
}

.contact-phone:hover,
.contact-phone:focus {
	color: #5209C6;
	text-decoration: none;
}

.contact-phone i {
	font-size: 2rem;
	line-height: 1;
}

.contact-form .form-control {
	min-height: 3.5rem;
	padding: .9rem 1.2rem;
	font-size: 1rem;
	font-weight: 300;
	color: #280382;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: none;
	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.contact-form textarea.form-control {
	min-height: 10rem;
	padding-top: 1rem;
	resize: vertical;
}

.contact-form .form-control::placeholder {
	color: #9D92B8;
	opacity: 1;
}

.contact-form .form-control:focus {
	border-color: #5209C6;
	box-shadow: 0 0 0 .2rem rgba(82, 9, 198, .12);
}

.contact-form .btn-theme-primary {
	min-height: 3.5rem;
	font-size: 1rem;
	font-weight: 500;
	margin-top: .5rem;
}

@media (max-width: 767.98px) {

	.contact-hero {
		padding-bottom: 1.5rem;
	}

	.contact-phone {
		font-size: 1.05rem;
	}

	.contact-phone i {
		font-size: 1.8rem;
	}


	.contact-form .form-control {
		min-height: 3.25rem;
	}

	.contact-form textarea.form-control {
		min-height: 8rem;
	}

}

.contact-form-section {
	font-size: .7rem!important;
}

/* ==========================================================================
   WooCommerce Single Product
   ========================================================================== */

/* Product Details Card
--------------------------------------------- */

.single-product-details-card {
	display: flow-root;
	margin-bottom: 3rem;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 1.25rem;
	box-shadow: 0 8px 18px rgba(40, 3, 130, 0.16);
}

.single-product-details-card .row {
	width: 100%;
	margin: 0;
}

.single-product-image-column,
.single-product-summary-column {
	padding: 2rem;
}

.single-product-summary-column {
	display: flex;
	align-items: center;
}

.single-product-summary-column .summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.single-product-details-card .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

/* Product Additional Information Card
--------------------------------------------- */

.single-product .woocommerce-tabs {
	float: none;
	width: 100%;
	margin: 0 0 3rem;
	padding: 2rem;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 1.25rem;
	box-shadow: 0 8px 18px rgba(40, 3, 130, 0.16);
}

/* Related Products
--------------------------------------------- */

.single-product .related.products {
	margin-top: 3rem;
}

.single-product .related.products > h2 {
	margin-bottom: 2rem;
}

.single-product .related.products ul.products {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}

.single-product .related.products ul.products::before,
.single-product .related.products ul.products::after {
	display: none;
}

.single-product .related.products ul.products li.product {
	float: none;
	width: 100%;
	margin: 0;
	padding: 1.5rem;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 1.25rem;
	box-shadow: 0 8px 18px rgba(40, 3, 130, 0.16);
}

/* Tablet
--------------------------------------------- */

@media (min-width: 768px) {

	.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

/* Desktop
--------------------------------------------- */

@media (min-width: 992px) {

	.single-product-image-column,
	.single-product-summary-column {
		padding: 3rem;
	}

	.single-product-details-card,
	.single-product .woocommerce-tabs {
		border-radius: 1.5rem;
	}

	.single-product .woocommerce-tabs {
		padding: 3rem;
	}

	.single-product .related.products ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.single-product .related.products ul.products li.product {
		padding: 2rem;
		border-radius: 1.5rem;
	}

}

/* ==========================================================================
   WooCommerce Product Information Form
   ========================================================================== */

/* Hide product tab
--------------------------------------------- */

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0 0 0 1em;
    margin: 0 0 1.618em;
    overflow: hidden;
    position: relative;
    display: none;
}

/* Product Title
--------------------------------------------- */

.single-product .summary .product_title {
	margin-bottom: 1rem;
	color: #280382;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

/* Product Price
--------------------------------------------- */

.single-product .summary .price {
	display: block;
	margin-bottom: 2rem;
	margin-top: 1em;
	color: #DA20A0!important;
	font-family: "Bevenida", serif;
	font-size: 3rem!important;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* Variations Form
--------------------------------------------- */

.single-product .variations_form {
	width: 100%;
	margin: 0;
}

.single-product .variations {
	width: 100%;
	margin-bottom: 1.5rem;
	border: 0;
}

.single-product .variations tbody {
	display: grid;
	gap: 1rem;
}

.single-product .variations tr {
	display: grid;
	grid-template-columns: 1fr;
	gap: .5rem;
}

.single-product .variations th,
.single-product .variations td {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
}

/* Variation Labels
--------------------------------------------- */

.single-product .variations label {
	display: block;
	margin: 0;
	color: #280382;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
}

/* Variation Select Fields
--------------------------------------------- */

.single-product .variations select {
	display: block;
	width: 100%;
	min-height: 3.5rem;
	padding: .9rem 3rem .9rem 1.2rem;
	color: #280382;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: none;
	font-family: sofia-pro, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.2;
	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.single-product .variations select:focus {
	border-color: #5209C6;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(82, 9, 198, .12);
}

/* Reset Variations Link
--------------------------------------------- */

.single-product .reset_variations {
	display: inline-block;
	margin-top: .5rem;
	color: #DA20A0;
	font-size: .9rem;
	font-weight: 400;
	text-decoration: none;
}

.single-product .reset_variations:hover,
.single-product .reset_variations:focus {
	color: #5209C6;
	text-decoration: none;
}

/* Selected Variation
--------------------------------------------- */

.single-product .woocommerce-variation {
	margin-bottom: 1rem;
}

.single-product .woocommerce-variation-price {
	margin-bottom: 1rem;
}

/* Quantity and Add to Cart
--------------------------------------------- */

.single-product .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: 7rem minmax(0, 1fr);
	gap: .75rem;
	width: 100%;
	margin-top: 1rem;
}

.single-product form.cart:not(.variations_form) {
	display: block;
	width: 100%;
	margin-top: 2.5rem;
}

/* Quantity Field
--------------------------------------------- */

.single-product form.cart .quantity {
	float: none;
	width: 100%;
	margin: 0;
}

.single-product form.cart .qty {
	width: 100%;
	min-height: 3.5rem;
	padding: .9rem 1rem;
	color: #280382;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: none;
	font-family: sofia-pro, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	text-align: center;
	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.single-product form.cart .qty:focus {
	border-color: #5209C6;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(82, 9, 198, .12);
}

/* Add to Cart Button
--------------------------------------------- */

.single-product form.cart .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.5rem;
	padding: 1rem 2rem;
	margin: 0;
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	font-family: sofia-pro, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	transition:
		transform .2s ease,
		opacity .2s ease;
}

.single-product form.cart .single_add_to_cart_button:hover,
.single-product form.cart .single_add_to_cart_button:focus,
.single-product form.cart .single_add_to_cart_button:active {
	color: #FFFFFF;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	box-shadow: none;
	transform: translateY(-1px);
}

.single-product form.cart .single_add_to_cart_button.disabled,
.single-product form.cart .single_add_to_cart_button:disabled {
	color: #FFFFFF;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	opacity: .45;
}

/* Product Meta
--------------------------------------------- */

.single-product .product_meta {
	margin-top: 2rem;
	color: #280382;
	font-size: .95rem;
	font-weight: 300;
	line-height: 1.6;
}

.single-product .product_meta a {
	color: #DA20A0;
	text-decoration: none;
}

.single-product .product_meta a:hover,
.single-product .product_meta a:focus {
	color: #5209C6;
}

/* Mobile
--------------------------------------------- */

@media (max-width: 575.98px) {

	.single-product .summary .product_title {
		font-size: 2.5rem;
	}

	.single-product .variations select,
	.single-product form.cart .qty,
	.single-product form.cart .single_add_to_cart_button {
		min-height: 3.25rem;
	}

	.single-product .woocommerce-variation-add-to-cart,
	.single-product form.cart:not(.variations_form) {
		grid-template-columns: 1fr;
	}

}

/* ==========================================================================
   WooCommerce Cart Buttons
   ========================================================================== */

.woocommerce-cart .woocommerce-cart-form button.button,
.woocommerce-cart .cart-collaterals a.checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	background-clip: padding-box;
	text-decoration: none;
}

.woocommerce-cart .woocommerce-cart-form button.button:hover,
.woocommerce-cart .woocommerce-cart-form button.button:focus,
.woocommerce-cart .woocommerce-cart-form button.button:active,
.woocommerce-cart .cart-collaterals a.checkout-button:hover,
.woocommerce-cart .cart-collaterals a.checkout-button:focus,
.woocommerce-cart .cart-collaterals a.checkout-button:active {
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	box-shadow: none;
	text-decoration: none;
}

.woocommerce-cart .cart-collaterals a.checkout-button {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

/* ==========================================================================
   WooCommerce Checkout Fields
   ========================================================================== */

.woocommerce-checkout .form-row {
	margin-bottom: 1.25rem;
}

.woocommerce-checkout .form-row label {
	display: block;
	margin-bottom: .45rem;
	color: #280382;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
}

.woocommerce-checkout .form-row .required {
	color: #DA20A0;
}

.woocommerce form.checkout .form-row input.input-text,
.woocommerce form.checkout .form-row input[type="text"],
.woocommerce form.checkout .form-row input[type="email"],
.woocommerce form.checkout .form-row input[type="tel"],
.woocommerce form.checkout .form-row input[type="password"],
.woocommerce form.checkout .form-row textarea,
.woocommerce-checkout .woocommerce-input-wrapper input.input-text,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection--single {
	width: 100%;
	min-height: 3.5rem;
	padding: .9rem 1.2rem;
	color: #280382;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.woocommerce form.checkout .form-row textarea,
.woocommerce-checkout .woocommerce-input-wrapper textarea {
	min-height: 10rem;
	padding-top: 1rem;
	resize: vertical;
}

.woocommerce form.checkout .form-row input::placeholder,
.woocommerce form.checkout .form-row textarea::placeholder {
	color: #9D92B8;
	opacity: 1;
}

.woocommerce form.checkout .form-row input:focus,
.woocommerce form.checkout .form-row textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--open .select2-selection--single {
	outline: 0;
	border-color: #5209C6;
	box-shadow: 0 0 0 .2rem rgba(82, 9, 198, .12);
}

.woocommerce-checkout .select2-container {
	width: 100% !important;
}

.woocommerce-checkout .select2-container .select2-selection--single {
	display: flex;
	align-items: center;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	width: 100%;
	padding: 0 2rem 0 0;
	color: #280382;
	line-height: 1.5;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	top: 50%;
	right: 1rem;
	width: 1.25rem;
	height: 1.25rem;
	transform: translateY(-50%);
}

.woocommerce-checkout .select2-dropdown {
	overflow: hidden;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: 0 .5rem 1.5rem rgba(40, 3, 130, .1);
}

.woocommerce-checkout .select2-search--dropdown {
	padding: .75rem;
}

.woocommerce-checkout .select2-search--dropdown .select2-search__field {
	min-height: 3rem;
	padding: .7rem 1rem;
	color: #280382;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: .75rem;
	box-shadow: none;
}

.woocommerce-checkout .select2-results__option {
	padding: .75rem 1rem;
	color: #280382;
	font-size: 1rem;
	font-weight: 300;
}

.woocommerce-checkout .select2-results__option--highlighted[aria-selected],
.woocommerce-checkout .select2-results__option--highlighted[data-selected] {
	color: #FFFFFF;
	background-color: #5209C6;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout #order_review_heading {
	margin-bottom: 1.5rem;
	color: #280382;
}

@media (max-width: 767.98px) {

	.woocommerce-checkout .form-row {
		margin-bottom: 1rem;
	}

	.woocommerce form.checkout .form-row input.input-text,
	.woocommerce form.checkout .form-row input[type="text"],
	.woocommerce form.checkout .form-row input[type="email"],
	.woocommerce form.checkout .form-row input[type="tel"],
	.woocommerce form.checkout .form-row input[type="password"],
	.woocommerce form.checkout .form-row textarea,
	.woocommerce-checkout .woocommerce-input-wrapper input.input-text,
	.woocommerce-checkout .woocommerce-input-wrapper textarea,
	.woocommerce-checkout .select2-container .select2-selection--single {
		min-height: 3.25rem;
	}

	.woocommerce form.checkout .form-row textarea,
	.woocommerce-checkout .woocommerce-input-wrapper textarea {
		min-height: 8rem;
	}

}

/* ==========================================================================
   WooCommerce Checkout Notices
   ========================================================================== */

.woocommerce-checkout .woocommerce-info {
	position: relative;
	margin-bottom: 2rem;
	padding: 1.5rem 1.75rem 1.5rem 4rem;
	color: #280382;
	background: linear-gradient(
		180deg,
	#FEF2FC 0%,
	#FDECF9 30%,
	#FBE1F5 65%,
	#F8C8EC 100%
	);
	box-shadow: inset 0 0 0 1px rgba(218, 33, 160, .2);
	border: 0;
	border-radius: var(--bs-border-radius-xl);
}

.woocommerce-checkout .woocommerce-info::before {
	content: "\f02b";
	font-family: "Line Awesome Free";
	font-weight: 900;
	color: #DA20A0;
	font-size: 1.75rem;
	position: absolute;
	top: 50%;
	left: 1.5rem;
	transform: translateY(-50%);
}

.woocommerce-checkout .woocommerce-info a {
	color: #5209C6;
	font-weight: 600;
	text-decoration: none;
	transition: color .2s ease;
}

.woocommerce-checkout .woocommerce-info a:hover,
.woocommerce-checkout .woocommerce-info a:focus {
	color: #DA20A0;
	text-decoration: none;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout #order_review_heading {
	margin-bottom: 1.5rem;
	color: #280382;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.2;
}

/* Place Order Button
--------------------------------------------- */

.woocommerce-checkout #place_order {
	display: flex;
	width: 100%;
	min-height: 3.5rem;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 500;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	transition: opacity .2s ease;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:focus,
.woocommerce-checkout #place_order:active {
	color: #FFFFFF;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	box-shadow: none;
	opacity: .95;
}

.woocommerce-ordering, .woocommerce-result-count {
	display: none;
}

/* ==========================================================================
   Related Product Cards
   ========================================================================== */

.single-product .related.products ul.products li.product.feature-highlights-card {
	padding: 0;
}

/* ==========================================================================
   Thank You Preview
   ========================================================================== */

.woocommerce-order-details .shop_table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-order-details .shop_table th,
.woocommerce-order-details .shop_table td {
	padding: 1rem 0;
	border: 0;
}

.woocommerce-order-details .shop_table tbody tr,
.woocommerce-order-details .shop_table tfoot tr {
	border-bottom: 1px dashed #E8D9EF;
}

.woocommerce-order-details .shop_table tbody tr:last-child {
	border-bottom: 0;
}

.woocommerce-order-details .shop_table thead tr {
	border-bottom: 2px solid #F3EAF6;
}

.woocommerce-order-details .shop_table tfoot tr:last-child {
	border-bottom: 0;
}

.woocommerce div.product div.images img {
    border-radius: 1.5rem;
}

/* ==========================================================================
   WooCommerce Review Stars
   ========================================================================== */

.woocommerce .star-rating::before,
.woocommerce .star-rating span::before,
.woocommerce p.stars a,
.woocommerce p.stars a::before {
	color: #D4AF37;
}

/* ==========================================================================
   WooCommerce Upsells
   ========================================================================== */

.single-product .up-sells > h2 {
	margin-bottom: 2rem;
}

/* ==========================================================================
   Hide Quantity Selector for Packages and Printed Invitations
   ========================================================================== */

.single-product.product_cat-packages .quantity,
.single-product.product_cat-printed-invitations .quantity {
	display: none;
}

/* ==========================================================================
   WooCommerce Product Grid
   ========================================================================== */

body:not(.single-product) .woocommerce ul.products,
body:not(.single-product) .woocommerce-page ul.products {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center !important;
	width: 100%;
	max-width: 100%;
	gap: 3rem 2rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

body:not(.single-product) .woocommerce ul.products::before,
body:not(.single-product) .woocommerce ul.products::after,
body:not(.single-product) .woocommerce-page ul.products::before,
body:not(.single-product) .woocommerce-page ul.products::after {
	display: none !important;
	content: none !important;
}

body:not(.single-product) .woocommerce ul.products li.product,
body:not(.single-product) .woocommerce-page ul.products li.product {
	flex: 0 0 100%;
	width: 100% !important;
	max-width: 26rem;
	margin: 0 auto !important;
	padding: 0;
	float: none !important;
}

/* Tablet
--------------------------------------------- */

@media (min-width: 768px) and (max-width: 991.98px) {

	body:not(.single-product) .woocommerce ul.products li.product,
	body:not(.single-product) .woocommerce-page ul.products li.product {
		flex: 0 0 calc(50% - 1rem);
		width: calc(50% - 1rem) !important;
		max-width: none;
		margin: 0 !important;
	}

}

/* Desktop
--------------------------------------------- */

@media (min-width: 992px) {

	body:not(.single-product) .woocommerce ul.products,
	body:not(.single-product) .woocommerce-page ul.products {
		width: 100%;
	}

	body:not(.single-product) .woocommerce ul.products li.product,
	body:not(.single-product) .woocommerce-page ul.products li.product {
		flex: 0 0 26rem;
		width: 26rem !important;
		max-width: 26rem;
		margin: 0 !important;
	}

}

/* Small Laptops
--------------------------------------------- */

@media (min-width: 1200px) and (max-width: 1399.98px) {

	body:not(.single-product) .woocommerce ul.products,
	body:not(.single-product) .woocommerce-page ul.products {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100% !important;
		max-width: 100%;
		gap: 3rem 1.5rem;
	}

	body:not(.single-product) .woocommerce ul.products li.product,
	body:not(.single-product) .woocommerce-page ul.products li.product,
	body:not(.single-product) .woocommerce ul.products li.product.feature-highlights-card,
	body:not(.single-product) .woocommerce-page ul.products li.product.feature-highlights-card {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
	}

}

/* ==========================================================================
   WooCommerce Success Notice
   ========================================================================== */

.woocommerce-message {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	margin-bottom: 2rem;
	padding: 1.5rem 1.75rem 1.5rem 5.5rem;
	color: #280382;
	background: linear-gradient(
		180deg,
		#FEF2FC 0%,
		#FDECF9 30%,
		#FBE1F5 65%,
		#F8C8EC 100%
	);
	box-shadow: inset 0 0 0 1px rgba(218, 33, 160, .2);
	border: 0;
	border-radius: var(--bs-border-radius-xl);
}

/* Success icon
--------------------------------------------- */

.woocommerce-message::before {
	left: 2rem;
	top: 50%;
	margin: 0;
	color: #DA20A0;
	font-size: 1.75rem;
	transform: translateY(-50%);
}

/* Links inside the notice
--------------------------------------------- */

.woocommerce-message a:not(.button) {
	color: #4B1CC7;
	font-weight: 700;
	text-decoration: none;
}

/* View Cart button
--------------------------------------------- */

.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce-message a.button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	order: 2;
	min-width: 52px;
	height: 52px;
	padding: 0 1.25rem;
	color: #FFFFFF !important;
	background-color: #DA20A0!important;
	border: 0 !important;
	border-radius: 999px;
	box-shadow: none !important;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

/* Shopping bag icon
--------------------------------------------- */

.woocommerce .woocommerce-message .button::before,
.woocommerce-page .woocommerce-message .button::before,
.woocommerce-message a.button::before {
	content: "\f290";
	margin-right: .5rem;
	color: #FFFFFF;
	font-family: "Line Awesome Free";
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1;
}

/* Button states
--------------------------------------------- */

.woocommerce .woocommerce-message .button:hover,
.woocommerce .woocommerce-message .button:focus,
.woocommerce .woocommerce-message .button:active,
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce-page .woocommerce-message .button:focus,
.woocommerce-page .woocommerce-message .button:active,
.woocommerce-message a.button:hover,
.woocommerce-message a.button:focus,
.woocommerce-message a.button:active {
	color: #FFFFFF !important;
	background-color: transparent !important;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	) !important;
	border: 0 !important;
	box-shadow: none !important;
	text-decoration: none;
}

/* Mobile
--------------------------------------------- */

@media (max-width: 767.98px) {

	.woocommerce-message {
		gap: 1rem;
		padding: 1.25rem 1.25rem 1.25rem 4.5rem;
	}

	.woocommerce-message::before {
		left: 1.5rem;
	}

	.woocommerce .woocommerce-message .button,
	.woocommerce-page .woocommerce-message .button,
	.woocommerce-message a.button {
		width: 52px;
		min-width: 52px;
		padding: 0;
		overflow: hidden;
		font-size: 0;
	}

	.woocommerce .woocommerce-message .button::before,
	.woocommerce-page .woocommerce-message .button::before,
	.woocommerce-message a.button::before {
		margin-right: 0;
		font-size: 1.4rem;
	}

}

/* ==========================================================================
   WooCommerce Review Form
   ========================================================================== */

.woocommerce #review_form #respond {
	margin-top: 2rem;
}

.woocommerce #review_form #respond p {
	margin-bottom: 1.5rem;
}

.woocommerce #review_form #respond label {
	display: block;
	margin-bottom: .5rem;
	color: #280382;
	font-size: 1rem;
	font-weight: 400;
}

/* Review textarea
--------------------------------------------- */

.woocommerce #review_form #respond textarea {
	width: 100%;
	min-height: 10rem;
	padding: .9rem 1.2rem;
	color: #280382;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: none;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	transition: border-color .2s ease, box-shadow .2s ease;
	resize: vertical;
}

/* Name and email fields
--------------------------------------------- */

.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"] {
	width: 100%;
	min-height: 3.5rem;
	padding: .9rem 1.2rem;
	color: #280382;
	background-color: #FFFFFF;
	border: 1px solid #F1D8F1;
	border-radius: 1rem;
	box-shadow: none;
	font-size: 1rem;
	font-weight: 300;
	transition: border-color .2s ease, box-shadow .2s ease;
}

/* Field focus
--------------------------------------------- */

.woocommerce #review_form #respond input[type="text"]:focus,
.woocommerce #review_form #respond input[type="email"]:focus,
.woocommerce #review_form #respond textarea:focus {
	outline: 0;
	border-color: #DA20A0;
	box-shadow: 0 0 0 .2rem rgba(218, 32, 160, .1);
}

/* Rating stars
--------------------------------------------- */

.woocommerce #review_form #respond .stars {
	margin-bottom: 1.75rem;
}

.woocommerce #review_form #respond .stars a {
	color: #D8A821;
	font-size: 1.75rem;
}

/* Submit button
--------------------------------------------- */

.woocommerce #review_form #respond .form-submit {
	margin-top: 1.5rem;
}

.woocommerce #review_form #respond .form-submit input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	padding: .9rem 2rem;
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	text-transform: none;
	transition: opacity .2s ease;
}

.woocommerce #review_form #respond .form-submit input[type="submit"]:hover,
.woocommerce #review_form #respond .form-submit input[type="submit"]:focus,
.woocommerce #review_form #respond .form-submit input[type="submit"]:active {
	color: #FFFFFF;
	background-color: transparent;
	background-image: linear-gradient(
		135deg,
		#DA20A0 0%,
		#5209C6 100%
	);
	border: 0;
	box-shadow: none;
	opacity: .9;
}

/* Mobile
--------------------------------------------- */

@media (max-width: 767.98px) {

	.woocommerce #review_form #respond .form-submit input[type="submit"] {
		width: 100%;
	}

}

.term-description {
	display: none;
}

/* ==========================================================================
   WooCommerce Lightbox
   ========================================================================== */

.pswp__bg {
	background: #280382 !important;
	opacity: 1 !important;
}

.pswp__top-bar,
.pswp__caption {
	background: transparent !important;
}

/* ==========================================================================
   WooCommerce Product Gallery
   ========================================================================== */

.woocommerce-product-gallery {
	position: relative;
}

.woocommerce-product-gallery::after {
	content: "\f52a";
	font-family: "bootstrap-icons";
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #DA21A0;
	background: rgba(255, 255, 255, .95);
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(40, 3, 130, 0.16);
	pointer-events: none;
	z-index: 10;
}

/* ==========================================================================
   WooCommerce Product Grid Fix
   ========================================================================== */

body.tax-product_cat ul.products,
body.post-type-archive-product ul.products {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center !important;
	gap: 3rem 2rem;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after {
	display: none !important;
	content: none !important;
}

body.tax-product_cat ul.products li.product,
body.post-type-archive-product ul.products li.product {
	flex: 0 0 26rem;
	float: none !important;
	width: 26rem !important;
	max-width: 100%;
	margin: 0 !important;
	padding: 0;
}
