:root {
	--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Raleway", sans-serif;
	--nav-font: "Poppins", sans-serif;
}

:root {
	--background-color: #ffffff;
	--default-color: #212529;
	--heading-color: #bb7680;
	--accent-color: #cf9fa6;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
}

:root {
	--nav-color: rgba(255, 255, 255, 0.5);
	--nav-hover-color: #ffffff;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #212529;
	--nav-dropdown-hover-color: #cf9fa6;
}

.light-background {
	--background-color: #f1f3f8;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #bb7680;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #c89199;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(255, 255, 255, 0);
	--default-color: #ffffff;
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 32px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: rgba(187, 118, 128, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	text-align: center;
	padding: 30px 0;
	position: relative;
}

.footer h3 {
	font-size: 36px;
	font-weight: 700;
	position: relative;
	padding: 0;
	margin: 0 0 15px 0;
}

.footer p {
	font-size: 15;
	font-style: italic;
	padding: 0;
	margin: 0 0 30px 0;
}

.footer .social-links {
	margin: 0 0 30px 0;
}

.footer .social-links a {
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--contrast-color);
	line-height: 1;
	margin: 0 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	text-decoration: none;
}

.footer .copyright {
	padding-top: 25px;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
	font-size: 13px;
	padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 80px 0;
	text-align: center;
	position: relative;
}

.page-title:before {
	content: "";
	background-color: color-mix(
		in srgb,
		var(--background-color),
		transparent 50%
	);
	position: absolute;
	inset: 0;
}

.page-title h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 80vh;
	position: relative;
	padding: 120px 0 60px 0;
	display: flex;
	align-items: center;
	background: url(../img/hero-bg.jpg);
}

.hero:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero .container {
	position: relative;
	z-index: 3;
}

.hero h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.hero p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 5px 0 10px 0;
	font-size: 20px;
	font-weight: 400;
}

.hero .download-btn {
	color: var(--contrast-default);
	background: color-mix(in srgb, var(--default-color), transparent 90%);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	padding: 8px 30px 10px 30px;
	border-radius: 3px;
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .download-btn + .download-btn {
	margin-left: 20px;
}

.hero .download-btn:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.hero .download-btn i {
	font-size: 16px;
	line-height: 0;
	margin-right: 8px;
}

.hero .hero-img {
	position: relative;
	min-height: 600px;
}

.hero .hero-img .phone-1 {
	margin-top: 20px;
	position: absolute;
	left: 0;
	box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
	border-radius: 30px;
	width: 250px;
}

.hero .hero-img .phone-2 {
	position: absolute;
	left: 0;
	box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
	border-radius: 30px;
	width: 250px;
	margin-top: 70px;
	margin-left: 100px;
}

@media screen and (max-width: 992px) {
	.hero .hero-img {
		text-align: center;
		overflow: hidden;
		min-height: 600px;
	}

	.hero .hero-img .phone-1,
	.hero .hero-img .phone-2 {
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 28px;
		line-height: 36px;
	}

	.hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	.hero .download-btn {
		font-size: 14px;
		padding: 8px 20px 10px 20px;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	padding: 10px 20px;
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
	color: var(--accent-color);
	border-radius: 7px;
	display: inline-block;
}

.about .content h2 {
	font-weight: 700;
}

.about .content p:last-child {
	margin-bottom: 0;
}

.about .content .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.about .content .read-more i {
	font-size: 18px;
	margin-left: 5px;
	line-height: 0;
	transition: 0.3s;
}

.about .content .read-more:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	padding-right: 19px;
}

.about .content .read-more:hover i {
	margin-left: 10px;
}

.about .icon-box {
	background-color: var(--surface-color);
	padding: 50px 40px;
	box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 32px;
	line-height: 0;
	transition: all 0.4s ease-out 0s;
	background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
	color: var(--accent-color);
}

.about .icon-box h3 {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
}

.about .icon-box p {
	margin-bottom: 0;
}

.about .icon-box:hover i {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
	margin-top: -40px;
}

@media (max-width: 768px) {
	.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
	.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
		margin-top: 0;
	}
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured .card {
	background-color: var(--surface-color);
	color: var(--default-color);
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 20px;
	border: 0;
	height: 100%;
	position: relative;
}

.featured .card .img {
	position: relative;
	padding: 20px 20px 0 20px;
}

.featured .card .icon {
	color: var(--accent-color);
	background-color: color-mix(in srgb, var(--accent-color) 10%, white 100%);
	border: 4px solid var(--background-color);
	width: 72px;
	height: 72px;
	text-align: center;
	position: absolute;
	border-radius: 50%;
	left: calc(50% - 32px);
	bottom: -36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 0;
	transition: 0.3s;
}

.featured .card:hover .icon {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.featured .card h2 {
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	padding: 0;
	margin: 50px 0 12px 0;
}

.featured .card h2 a {
	color: var(--heading-color);
}

.featured .card h2 a:hover {
	color: var(--accent-color);
}

.featured .card p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	padding: 0 30px 30px 30px;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .steps-img img {
	max-width: 575px;
}

@media (max-width: 575px) {
	.cards .steps-img img {
		max-width: 100%;
	}
}

.cards .card-item {
	background: color-mix(in srgb, var(--default-color), transparent 97%);
	padding: 50px 30px;
	transition: all ease-in-out 0.3s;
	height: 100%;
	position: relative;
}

.cards .card-item span {
	color: var(--accent-color);
	display: block;
	font-size: 28px;
	font-weight: 700;
}

.cards .card-item h4 {
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
}

.cards .card-item h4 a {
	color: var(--heading-color);
}

.cards .card-item p {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin: 0;
	padding: 0;
}

.cards .card-item:hover {
	background: var(--accent-color);
	padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item + .features-item {
	margin-top: 100px;
}

@media (max-width: 640px) {
	.features .features-item + .features-item {
		margin-top: 40px;
	}
}

.features .features-item h3 {
	font-weight: 700;
	font-size: 26px;
}

.features .features-item ul {
	list-style: none;
	padding: 0;
}

.features .features-item ul li {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
}

.features .features-item ul li:last-child {
	padding-bottom: 0;
}

.features .features-item ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}

.features .features-item p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
	overflow: hidden;
}

.gallery .swiper-wrapper {
	height: auto;
}

.gallery .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
	background-color: var(--background-color);
	border: 1px solid var(--accent-color);
	width: 12px;
	height: 12px;
	opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
	text-align: center;
}

@media (min-width: 992px) {
	.gallery .swiper-wrapper {
		padding: 60px 0;
	}

	.gallery .swiper-slide-active {
		background: var(--background-color);
		border: 6px solid var(--accent-color);
		padding: 4px;
		z-index: 1;
		transform: scale(1.1);
		border-radius: 25px;
		transition: none;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
	margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
	width: 120px;
	border-radius: 50%;
	border: 4px solid var(--background-color);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
	margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 50%);
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	opacity: 1;
	background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
	padding: 60px 0 120px 0;
}

.pricing .section-title {
	margin-bottom: 40px;
}

.pricing .pricing-item {
	background-color: var(--surface-color);
	box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
	padding: 60px 40px;
	height: 100%;
	position: relative;
	border-radius: 15px;
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
	text-align: center;
}

.pricing .icon {
	margin: 30px auto 20px auto;
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	transform-style: preserve-3d;
}

.pricing .icon i {
	color: var(--background-color);
	font-size: 28px;
	transition: ease-in-out 0.3s;
	line-height: 0;
}

.pricing .icon::before {
	position: absolute;
	content: "";
	height: 86px;
	width: 86px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--accent-color), transparent 80%);
	transition: all 0.3s ease-out 0s;
	transform: translateZ(-1px);
}

.pricing .icon::after {
	position: absolute;
	content: "";
	height: 102px;
	width: 102px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	transition: all 0.3s ease-out 0s;
	transform: translateZ(-2px);
}

.pricing h4 {
	font-size: 48px;
	color: var(--accent-color);
	font-weight: 700;
	font-family: var(--heading-font);
	margin-bottom: 25px;
	text-align: center;
}

.pricing h4 sup {
	font-size: 28px;
}

.pricing h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 18px;
	font-weight: 400;
}

.pricing ul {
	padding: 20px 0;
	list-style: none;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.pricing ul i {
	color: #059652;
	font-size: 24px;
	padding-right: 3px;
}

.pricing ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing .buy-btn {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	display: inline-block;
	padding: 8px 40px 10px 40px;
	border-radius: 50px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
	transition: none;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--heading-font);
	transition: 0.3s;
}

.pricing .buy-btn:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured {
	z-index: 10;
	border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
	.pricing .featured {
		transform: scale(1.15);
	}
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
	background-color: var(--surface-color);
	position: relative;
	padding: 20px;
	margin-bottom: 15px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 5px;
	overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin: 0 30px 0 0;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.faq .faq-container .faq-item h3 .num {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active {
	background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
	border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
	color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
		url("../img/page-title-bg.jpg") fixed center center;
	background-size: cover;
	padding: 120px 0;
}

.cta h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 700;
}

.cta p {
	font-size: 14px;
	color: #fff;
}

.cta .cta-btn {
	font-family: "Raleway", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px;
	transition: 0.5s;
	margin-top: 10px;
	border: 2px solid #fff;
	color: #fff;
}

.cta .cta-btn:hover {
	background: #a87c50;
	border: 2px solid #a87c50;
}

/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers {
	padding-top: 60px;
	padding-bottom: 30px;
}

.best-sellers .product-item {
	height: 100%;
	background-color: var(--surface-color);
	border-radius: 2px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.best-sellers .product-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.best-sellers .product-item:hover .product-image img {
	transform: scale(1.02);
}

.best-sellers .product-item:hover .product-actions {
	opacity: 1;
	transform: translateY(0);
}

.best-sellers .product-item:hover .cart-btn {
	opacity: 1;
	transform: translateY(0);
}

.best-sellers .product-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

.best-sellers .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.best-sellers .product-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	background-color: var(--heading-color);
	color: var(--contrast-color);
	font-size: 0.75rem;
	font-weight: 500;
	font-family: var(--heading-font);
	padding: 0.4em 1em;
	border-radius: 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.best-sellers .product-badge.sale-badge {
	background-color: #dc2626;
}

.best-sellers .product-badge.trending-badge {
	background-color: var(--accent-color);
}

.best-sellers .product-actions {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.best-sellers .action-btn {
	width: 40px;
	height: 40px;
	border: none;
	background-color: var(--contrast-color);
	color: var(--heading-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.best-sellers .action-btn:hover {
	background-color: var(--heading-color);
	color: var(--contrast-color);
}

.best-sellers .action-btn.active {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.best-sellers .cart-btn {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	padding: 12px 24px;
	background-color: var(--contrast-color);
	color: var(--heading-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	font-weight: 500;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	border-radius: 10px;
}

.best-sellers .cart-btn:hover {
	background-color: var(--heading-color);
	color: var(--contrast-color);
	border-color: var(--heading-color);
}

.best-sellers .product-info {
	padding: 16px 20px 25px;
}

.best-sellers .product-category {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.best-sellers .product-name {
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
	margin-bottom: 12px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.best-sellers .product-name a {
	color: var(--heading-color);
}

.best-sellers .product-name a:hover {
	color: var(--accent-color);
}

.best-sellers .product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 15px;
}

.best-sellers .stars {
	color: #f59e0b;
	font-size: 0.8rem;
}

.best-sellers .stars i {
	margin-right: 1px;
}

.best-sellers .rating-count {
	font-size: 0.75rem;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-weight: 400;
}

.best-sellers .product-price {
	margin-bottom: 15px;
	text-align: center;
}

.best-sellers .product-price .old-price {
	font-size: 0.9rem;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	text-decoration: line-through;
	margin-right: 8px;
}

.best-sellers .product-price .current-price {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--heading-color);
}

.best-sellers .product-price:not(:has(.old-price)) {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--heading-color);
}

.best-sellers .color-swatches {
	display: flex;
	gap: 6px;
}

.best-sellers .swatch {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}

.best-sellers .swatch:hover {
	transform: scale(1.15);
}

.best-sellers .swatch.active:after {
	content: "";
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border: 1px solid var(--heading-color);
	border-radius: 50%;
}

.btn-product {
	--bs-btn-color: #fff;
	--bs-btn-bg: #bb7680;
	--bs-btn-border-color: #bb7680;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #bb7680;
	--bs-btn-hover-border-color: #bb7680;
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #bb7680;
	--bs-btn-active-border-color: #bb7680;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #bb7680;
	--bs-btn-disabled-border-color: #bb7680;
}
@media (max-width: 1199.98px) {
	.best-sellers .product-info {
		padding: 16px 18px 22px;
	}

	.best-sellers .product-name {
		font-size: 0.95rem;
	}
}

@media (max-width: 991.98px) {
	.best-sellers .product-item {
		max-width: 320px;
		margin: 0 auto;
	}
}

@media (max-width: 767.98px) {
	.best-sellers .row {
		--bs-gutter-x: 2rem;
		--bs-gutter-y: 3rem;
	}

	.best-sellers .product-actions {
		opacity: 1;
		transform: translateY(0);
	}

	.best-sellers .cart-btn {
		opacity: 1;
		transform: translateY(0);
	}

	.best-sellers .product-info {
		padding: 16px 16px 20px;
	}
}

@media (max-width: 575.98px) {
	.best-sellers .row {
		--bs-gutter-x: 1.5rem;
		--bs-gutter-y: 2.5rem;
	}

	.best-sellers .product-badge {
		top: 15px;
		left: 15px;
		font-size: 0.7rem;
		padding: 0.35em 0.8em;
	}

	.best-sellers .product-actions {
		top: 15px;
		right: 15px;
	}

	.best-sellers .action-btn {
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}

	.best-sellers .cart-btn {
		bottom: 15px;
		left: 15px;
		right: 15px;
		padding: 10px 20px;
		font-size: 0.8rem;
	}
}
