html, body {
	max-width: 100vw;
	overflow-x: hidden;
}
nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	width: 100%;
	background: lightpink;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	position: sticky;
	z-index: 2000;
	position: fixed;
}

.navbar h3{
	display: inline-block;
	background: linear-gradient(270deg, black, #ffb6c1, #e75480, black);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	animation: gradientMove 3s ease-in-out infinite;
	font-weight: bold;
	letter-spacing: 2px;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.logo {
	height: 50px;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
	margin-right: 4rem;
	padding: 0;
}
.nav-links li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
    padding-left: 100px;
    font-size: 1.1rem;
}
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	width: 25px;
	height: 20px;
    margin-right: 30px;
	justify-content: space-between;
}
.hamburger span {
	display: block;
	height: 4px;
	background: #333;
	border-radius: 2px;
	transition: 0.3s;
}


@media (max-width: 1000px) {
	nav{
		background: #fff;
	}
	.nav-links {
		position: absolute;
		top: 50px;
		right: 0;
		height: auto;
		background: rgba(255, 182, 193, 0.97);
		flex-direction: column;
		width: 150px;
		max-width: 300px;
        padding-bottom: 2rem !important;
		transform: translateX(200%);
		box-shadow: -2px 0 16px rgba(0,0,0,0.18);
		transition: transform 0.3s ease;
		z-index: 1000;
		padding-top: 50px;
		align-items: flex-start;
	}
	.nav-links.active {
		transform: translateX(0);
	}
	.nav-links li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
    padding-left: 50px;
    font-size: 1.1rem;
}
	.hamburger {
			display: flex;
	}

	.nav-links {
		flex-direction: column;
		position: absolute;
		top: 70px;
		right: 0;
		width: 60vw;
		box-shadow: 0 4px 24px rgba(231,84,128,0.08);
		z-index: 9999;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.4s cubic-bezier(.4,2,.3,1), opacity 0.3s;
		display: flex;
	}
	.nav-links.active {
		max-height: 500px;
		opacity: 1;
		display: flex;
	}
	.nav-links li {
		opacity: 0;
		transform: translateY(-40px);
		transition: opacity 0.4s, transform 0.5s;
	}
	.nav-links.active li {
		opacity: 1;
		transform: translateY(0);
	}
	.nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
	.nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
	.nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
	.nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
	.nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
}
	


.main-container {
	position: relative;
	background: url(images/cover\ photo\ 1.jpg);
	background-size: cover;
	background-position: center;
	height: 95vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	z-index: 1;
}
.main-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.35);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	z-index: 0;
}
.main-container > * {
	position: relative;
	z-index: 1;
}
.main-container h3 {
	text-align: center;
	font-size: 2.5rem;
	margin: 0;
	color: #fff;
	
	padding: 0.7em 1.2em;
	border-radius: 8px;
}

.main-container h3 b i{
	font-size:2.4rem ;
}
.main-container h3 b {
	display: inline-block;
	background: linear-gradient(270deg, #e75480, black, black, #fff);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	animation: gradientMove 3s ease-in-out infinite;
	font-weight: bold;
	letter-spacing: 2px;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.main-images-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 4em;
		max-width: 900px;
		margin: 2em auto 1em auto;
}
.main-circle-img {
	width: 350px;
	height: 550px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(231,84,128,0.10);
	border: 3px solid #e75480;
}
.main-content-center {
	flex: 1;
	text-align: center;
}
@media (max-width: 700px) {
	.main-images-row {
		flex-direction: column;
		gap: 0.7em;
		max-width: 120vw;
	}
	.main-circle-img {
		width: 110px;
		height: 150px;
	}
}

.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
	align-items: center;
	margin-top: 1.5em;
	margin-right: 2rem;
}
 .button-group button{
	background: linear-gradient(90deg, #e75480 0%, #ffb6c1 100%);
	color: hsl(0, 0%, 100%);
	border: none;
	width: 250px;
	border-radius: 30px;
	padding: 0.8em 2em;
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(231,84,128,0.10);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	outline: none;
	position: relative;
	z-index: 1;
}
.button-group button a {
	color: #fff;
	text-decoration: none;
	font-weight: 300;
	font-size: 1rem;
}
.button-group button:hover, .button-group button:focus {
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 24px rgba(231,84,128,0.18);
}
.home-gallery-preview {
	background: #fff8fa;
	padding: 2em 1em 1.5em 1em;
	margin: 2em auto 1em auto;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.08);
	max-width: 900px;
	text-align: center;
}
.preview-title {
	font-size: 2rem;
	color: #e75480;
	margin-bottom: 1em;
}
.preview-grid {
	display: flex;
	flex-direction: row;
	gap: 1.2em;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	margin-bottom: 1em;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	width: 100%;
	white-space: nowrap;
	padding-bottom: 0.5em;
}
.preview-grid img {
	min-width: 120px;
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(231,84,128,0.10);
	border: 2px solid #e75480;
	transition: transform 0.2s;
	scroll-snap-align: start;
	margin-right: 0;
}
.preview-link {
	display: inline-block;
	color: #fff;
	background: #e75480;
	padding: 0.7em 1.5em;
	border-radius: 25px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(231,84,128,0.10);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.preview-link:hover {
	background: #ffb6c1;
	color: #e75480;
	transform: scale(1.05);
}

@media (max-width: 1200px) {
	.home-gallery-preview {
		padding: 1.2em 0.3em 1em 0.3em;
		max-width: 98vw;
	}
	.preview-grid {
		gap: 0.7em;
		padding-bottom: 0.3em;
	}
	.preview-grid img {
		min-width: 90px;
		width: 90px;
		height: 90px;
	}
}
	
@media (max-width: 1200px){
	.main-container{
		background: url(images/nail\ 13.jpg);
		background-size: cover;
		background-position: center;
		height: 90vh;
	}
	.main-container h3 {
		padding-top: 2rem;
		font-size: 1.5rem;
	    margin-left: 1.5rem;
		color: white;
		border-radius: 8px;
		padding: 0.7em 1.2em;
	}
	.main-container h3 b{
		margin-top: 1rem;
	}
	.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
	align-items: center;
	margin-top: 1.5em;
	margin-right: 2rem;
}
 .button-group button{
	background: linear-gradient(90deg, #e75480 0%, #ffb6c1 100%);
	color: hsl(0, 0%, 100%);
	border: none;
	width: 150px;
	border-radius: 30px;
	padding: 0.5em 1em;
	font-size: 0.8rem;
	font-weight: 700;
	margin: 0;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(231,84,128,0.10);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	outline: none;
	position: relative;
	z-index: 1;
}
.button-group button a {
	color: #fff;
	text-decoration: none;
	font-weight: 300;
	font-size: 1rem;
}
.button-group button:hover, .button-group button:focus {
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 24px rgba(231,84,128,0.18);
}
	
}
.home-map-section {
	background: #fff8fa;
	padding: 2em 1em 1.5em 1em;
	margin: 2em auto 2em auto;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.08);
	max-width: 900px;
	text-align: center;
}
.map-title {
	font-size: 2rem;
	color: #e75480;
	margin-bottom: 1em;
}
.map-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.map-wrapper iframe {
	width: 100%;
	max-width: 600px;
	height: 300px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(231,84,128,0.10);
	border: none;
}

@media (max-width: 700px) {
	.home-map-section {
		padding: 1.2em 0.3em 1em 0.3em;
		max-width: 98vw;
	}
	.map-wrapper iframe {
		max-width: 98vw;
		height: 220px;
	}
}


.services{
	background: url(images/nail\ 7.jpg);
	height: 50vh;
}

.services h3{
	text-align: center;
	padding-top: 11rem;
	color: black;
	font-size: 2rem;
}

.services-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8rem;
	padding: 2em 1em 3em 20rem;
	background: #fff8fa;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.07);
	margin: 2em auto;
	max-width: 1200px;
}
.service-item {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(231,84,128,0.08);
	padding: 1.2em 1em 1.5em 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s, transform 0.2s;
	position: relative;
}
.service-item:hover {
	box-shadow: 0 8px 32px rgba(231,84,128,0.16);
	transform: translateY(-4px) scale(1.02);
}
.service-item img {
	width: 200px;
	height: 200px ;
	max-width: 200px;
	border-radius: 10px;
	margin-bottom: 1em;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(231,84,128,0.10);
}
.service-item h4 {
	margin: 0.5em 0 0.2em 0;
	font-size: 1.5rem;
	color: #e75480;
	font-weight: 700;
}
.service-item p {
	font-size: 1rem;
	color: #444;
	margin-bottom: 0.7em;
	text-align: center;
}
.service-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7em;
	margin: 0.3em 0;
}
.service-price-row h3 {
	font-size: 1rem;
	color: #222;
	margin: 0;
	font-weight: 500;
	flex: 1 1 auto;
}

@media (max-width: 700px) {
	.services-container {
		grid-template-columns: 1fr;
		padding: 1em 0.2em 2em 0.2em;
		gap: 1.2em;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.service-item {
		padding: 1em 0.5em 1.2em 0.5em;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		align-items: center;
		justify-content: center;
		display: flex;
		flex-direction: column;
	}
	.service-item img {
		max-width: 200px;
	}
	.service-price-row h3 {
		font-size: 0.95rem;
	}
	.add-cart {
		font-size: 0.95rem;
		padding: 0.3em 0.8em;
	}
}

.gallery{
	background: url(images/make\ up\ 6.jpg);
	height: 60vh;
}


.gallery h3{
	text-align: center;
	padding-top: 11rem;
	color: black;
	font-size: 2rem;
	
}
.gallery-intro {
	text-align: center;
	margin: 2.5em auto 1.5em auto;
	padding: 1.2em 1em 1.5em 1em;
	background: linear-gradient(90deg, #fff8fa 60%, #ffe3ef 100%);
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.07);
	animation: popIn 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
}
.gallery-intro h2 {
	font-size: 2rem;
	color: #e75480;
	margin-bottom: 0.3em;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 2rem;
}
.gallery-intro p {
	color: #222;
	font-size: 1rem;
	margin: 0;
}

.gallery-container {
	padding: 4rem 1rem;
} 

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5em;
	max-width: 900px;
	margin: 2em auto;
	padding: 1rem 1rem 2.5rem 1rem;
}
.gallery-title {
	text-align: center !important;
	font-size: 1.3rem;
	color: #e75480;
	margin-bottom: 1.2em;
	font-weight: 800;
	letter-spacing: 1px;
	background: rgba(255,255,255,0.7);
	border-radius: 8px;
	padding: 0.2em 1.2em;
	box-shadow: 0 2px 8px rgba(231,84,128,0.08);
	animation: galleryTitlePop 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
}
@keyframes galleryTitlePop {
	0% {
		opacity: 0;
		transform: scale(0.7) translateY(40px);
	}
	60% {
		opacity: 1;
		transform: scale(1.08) translateY(-8px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* Animation delay utility classes for gallery items */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(231,84,128,0.10);
	cursor: pointer;
	transition: transform 0.2s;
	background: #fff;
}
.gallery-item:hover {
	transform: scale(1.03);
}
.gallery-item img {
	width: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 1/1;
	animation: floatY 3s ease-in-out infinite alternate;
}
.animate-move img {
	animation: floatY 3s ease-in-out infinite alternate;
}
@keyframes floatY {
	0% { transform: translateY(0); }
	100% { transform: translateY(-18px); }
}
.gallery-actions {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1em;
	z-index: 2;
}
.like-btn, .download-btn {
	background: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #e75480;
	box-shadow: 0 2px 8px rgba(231,84,128,0.10);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.like-btn.liked, .like-btn:active {
	background: #e75480;
	color: #fff;
}
.download-btn:hover {
	background: #e75480;
	color: #fff;
	transform: scale(1.1);
}
@media (max-width: 1200px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		margin: 3rem,2rem;
		gap: 0.5rem;
	}
}
.gallery-lightbox {
	display: none;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s;
}
.gallery-lightbox.active {
	display: flex;
}
.lightbox-img {
	max-width: 90vw;
	max-height: 80vh;
	border-radius: 18px;
	box-shadow: 0 4px 32px rgba(231,84,128,0.18);
	border: 3px solid #fff8fa;
}
.lightbox-close {
	position: absolute;
	top: 2em;
	right: 2em;
	font-size: 2.5em;
	color: #fff;
	cursor: pointer;
	z-index: 100000;
}
.testimonials-section {
	background: #fff8fa;
	padding: 2em 1em;
	margin: 2em auto;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.08);
	max-width: 900px;
}
.testimonials-title {
	text-align: center;
	font-size: 2rem;
	color: #e75480;
	margin-bottom: 1.5em;
}
.testimonials-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
	justify-content: center;
}
.testimonial-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(231,84,128,0.07);
	padding: 1.2em 1em;
	max-width: 260px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.testimonial-img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1em;
	border: 2px solid #e75480;
}
.testimonial-name {
	font-weight: 600;
	color: #e75480;
	margin-top: 0.7em;
}
.testimonial-card blockquote {
	font-style: italic;
	color: #222;
	margin: 0.5em 0;
}

@media (max-width: 1200px) {
	.testimonials-grid {
		flex-direction: column;
		gap: 1.2em;
		align-items: center;
	}
}


.cta-section {
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	color: #fff;
	padding: 1.5em 0.5em 1.5em 0.5em;
	margin: 2em auto 2rem auto;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.10);
	max-width: 700px;
	text-align: center;
}
.cta-content h3 {
	font-size: 2rem;
	margin-bottom: 0.5em;
}
.cta-content p {
	font-size: 1.1rem;
	margin-bottom: 1.2em;
}
.cta-btn {
	display: inline-block;
	background: #fff;
	color: #e75480;
	font-weight: 600;
	padding: 0.6em 1.5em;
	border-radius: 25px;
	font-size: 1rem;
	margin-bottom: 1em;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(231,84,128,0.10);
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
	background: #e75480;
	color: #fff;
	transform: scale(1.05);
}
.cta-socials {
	margin-top: 1em;
}
.cta-socials a {
	color: #fff;
	font-size: 2rem;
	margin: 0 0.5em;
	transition: color 0.2s, transform 0.2s;
}
.cta-socials a:hover {
	color: #222;
	transform: scale(1.2);
}
@media screen and (max-width: 1200px) {
	.cta-section {
		margin: 1em 1.5rem 1em 1.5rem;
	}
	.cta-content h3 {
		font-size: 1.5rem;
	}
	.cta-content p {
		font-size: 1rem;
	}
	.cta-btn {
		font-size: 0.9rem;
		padding: 0.5em 1.2em;
	}
	.cta-socials a {
		font-size: 1.5rem;
		margin: 0 0.3em;
	}
	
}


.product-container {
	display: grid;
	max-width: 900px;
	margin: 6em auto 3em auto;
	padding: 2.5em 1.5em 2em 1.5em;
	background: linear-gradient(120deg, #fff8fa 60%, #ffe3ef 100%);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(231,84,128,0.10);
	position: relative;
	z-index: 1;
}
.product-title {
	text-align: center;
	font-size: 2.3rem;
	color: #e75480;
	font-weight: 900;
	letter-spacing: 2px;
	margin-bottom: 2.2em;
	background: linear-gradient(90deg, #e75480 20%, #ffb6c1 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: galleryTitlePop 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
}
@keyframes galleryTitlePop {
	0% {
		opacity: 0;
		transform: scale(0.7) translateY(40px);
	}
	60% {
		opacity: 1;
		transform: scale(1.08) translateY(-8px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2.2em;
	justify-items: center;
}
.product-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.10);
	padding: 2em 1.2em 2.5em 1.2em;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.25s, transform 0.22s;
	position: relative;
	overflow: hidden;
}
.product-card:hover {
	box-shadow: 0 8px 32px rgba(231,84,128,0.18);
	transform: translateY(-6px) scale(1.03);
}
.product-card img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1.2em;
	border: 3px solid #ffe3ef;
	box-shadow: 0 2px 12px rgba(231,84,128,0.08);
	background: #fff8fa;
}
.product-card h3 {
	font-size: 1.25rem;
	color: #e75480;
	font-weight: 700;
	margin-bottom: 0.5em;
	text-align: center;
}
.product-card p {
	color: #444;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 1.1em;
}
.product-card .price {
	font-size: 0.7rem;
	color: #fff;
	background: linear-gradient(90deg, black 60%, #ffb6c1 100%);
	border-radius: 16px;
	padding: 0.3em 1.1em;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 1.2em;
	display: inline-block;
	box-shadow: 0 2px 8px rgba(231,84,128,0.08);
}
.add-to-cart-btn {
	background: linear-gradient(90deg, #e75480 0%, #ffb6c1 100%);
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 0.7em 2em;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(231,84,128,0.10);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	outline: none;
}
.add-to-cart-btn:hover {
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	color: #fff;
	transform: scale(1.07);
	box-shadow: 0 8px 32px rgba(231,84,128,0.16);
}
@media (max-width: 1200px) {
	.product-container {
		padding: 1.2em 0.2em 1.5em 0.2em;
	}
	.product-title {
		font-size: 1.5rem;
	}
	.product-card img {
		width: 90px;
		height: 90px;
	}
	.product-card {
		padding: 1.2em 1.5em 1.5em 1.5em;
	}
}
@media (max-width: 1200px) {
	.cart, .cart-container, .cart-box {
		width: 80vw !important;
		max-width: 300px !important;
		min-width: 180px;
		margin: 0 auto;
	}
}
#cart-box {
  position: fixed !important;
  top: 80px;
  right: 30px;
  background: #fff8fa;
  border: 2px solid #e75480;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(231,84,128,0.18);
  padding: 1.2em 1.5em 1em 1.5em;
  z-index: 9999;
  min-width: 220px;
  max-width: 90vw;
  font-size: 1rem;
  color: #222;
  display: block;
}
@media (max-width: 1200px) {
  #cart-box {
    top: 70px;
    right: 10px;
    left: auto;
    min-width: 180px;
    max-width: 98vw;
    font-size: 0.95rem;
    padding: 1em 0.7em 0.7em 0.7em;
  }
}



.contact-session {
	max-width: 900px;
	margin: 3em auto 2em auto;
	text-align: center;
}
.contact-session-title {
	font-size: 2rem;
	color: #e75480;
	margin-bottom: 1.2em;
	font-weight: 700;
	letter-spacing: 1px;
}
.contact-session-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
	justify-content: center;
	margin-bottom: 2em;
}
.contact-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(231,84,128,0.08);
	padding: 1.2em 1.5em 1.5em 1.5em;
	min-width: 180px;
	max-width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s, transform 0.2s;
	position: relative;
	animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55) both;
}
.contact-card:hover {
	box-shadow: 0 8px 32px rgba(231,84,128,0.16);
	transform: translateY(-4px) scale(1.04);
}
.contact-icon {
	font-size: 2.5rem;
	color: #e75480;
	margin-bottom: 0.5em;
	animation: bounceIcon 1.5s infinite alternate;
}
@keyframes popIn {
	0% { opacity: 0; transform: scale(0.7); }
	100% { opacity: 1; transform: scale(1); }
}
@keyframes bounceIcon {
	0% { transform: translateY(0); }
	100% { transform: translateY(-10px); }
}
.contact-card h4 {
	margin: 0.2em 0 0.3em 0;
	font-size: 1.1rem;
	color: #e75480;
	font-weight: 700;
}
.contact-card p, .contact-card a {
	color: #222;
	font-size: 1rem;
	margin: 0;
	text-decoration: none;
}
.contact-message-form {
	margin-top: 2em;
	display: flex;
	flex-direction: column;
	gap: 1em;
	align-items: center;
	color: #e75480;
	font-size: 1rem;
}
.contact-message-form input,
.contact-message-form textarea {
	width: 100%;
	max-width: 400px;
	padding: 0.7em 1em;
	border-radius: 8px;
	border: 1px solid #e75480;
	font-size: 1rem;
	background: #fff;
	color: #222;
	outline: none;
	transition: border 0.2s;
}
.contact-message-form input:focus,
.contact-message-form textarea:focus {
	border: 1.5px solid #e75480;
}
.contact-message-form button {
	margin-top: 0.5em;
}
@media (max-width: 1200px) {
	
	.contact-session {
	max-width: 800px;
	margin: 6rem auto 2em auto;
	
	padding: 1em 1em 2em 1.5em;
	text-align: center;
}
.contact-session-title {
	font-size: 1.5rem;
	color: #e75480;
	margin-bottom: 1.2em;
	font-weight: 700;
	letter-spacing: 1px;
}
.contact-session-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
	justify-content: center;
	margin-bottom: 2em;
}
.contact-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(231,84,128,0.08);
	padding: 1em 0.5em 1em 0.5em;
	min-width: 100px;
	max-width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s, transform 0.2s;
	position: relative;
	animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55) both;
}

.contact-card h4 {
	font-size: 1rem;
}
.contact-card p, .contact-card a {
	color: #222;
	font-size: 1rem;
	margin: 0;
	text-decoration: none;
}
.contact-message-form {
	margin-top: 2em;
	display: flex;
	flex-direction: column;
	gap: 1em;
	align-items: center;
	color: #e75480;
	font-size: 1rem;
}
.contact-message-form input,
.contact-message-form textarea {
	width: 80%;
	max-width: 90%;
	padding: 0.7em 1em;
	border-radius: 8px;
	border: 1px solid #e75480;
	font-size: 1rem;
	background: #fff;
	color: #222;
	outline: none;
	transition: border 0.2s;
}
.contact-message-form input:focus,
.contact-message-form textarea:focus {
	border: 1.5px solid #e75480;
}
.contact-message-form button {
	margin-top: 1rem;
}
}
.booking-main {
	max-width: 430px;
	margin: 2.5em auto 3em auto;
	background: #fff8fa;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.07);
	padding: 2.5em 1.5em 2em 1.5em;
	text-align: center;
}
.booking-title {
	font-size: 2rem;
	color: #e75480;
	margin-bottom: 1.2em;
	font-weight: 700;
	letter-spacing: 1px;
}
.booking-form label {
	display: block;
	margin-bottom: 0.3em;
	color: #e75480;
	font-weight: 600;
	text-align: left;
}
.booking-type-group {
	display: flex;
	justify-content: center;
	gap: 2em;
	margin-bottom: 1.2em;
}
.booking-type-group input[type="radio"] {
	accent-color: #e75480;
	margin-right: 0.4em;
}
.luxury-label {
	color: #e75480;
	font-weight: 700;
	letter-spacing: 1px;
}
.classic-label {
	color: #222;
	font-weight: 700;
	letter-spacing: 1px;
}
.booking-service-group,
.booking-details-group,
.booking-date-group,
.booking-time-group,
.booking-contact-group {
	margin-bottom: 1.1em;
}
.booking-form select,
.booking-form input[type="date"],
.booking-form input[type="details"],
.booking-form input[type="time"],
.booking-form input[type="text"],
.booking-form input[type="tel"] ,
.booking-form input[type="email"] {
	width: 90%;
	padding: 0.7em 1em;
	border-radius: 8px;
	border: 1px solid #e75480;
	margin-top: 0.2em;
	font-size: 1rem;
	background: #fff;
	color: #222;
	margin-bottom: 0.5em;
	outline: none;
	transition: border 0.2s;
}
.booking-form select:focus,
.booking-form input:focus {
	border: 1.5px solid #e75480;
}
.booking-btn {
	background: linear-gradient(90deg, #e75480 0%, #ffb6c1 100%);
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 0.8em 2em;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 1em;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(231,84,128,0.10);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	outline: none;
}
.booking-btn:hover, .booking-btn:focus {
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 24px rgba(231,84,128,0.18);
}
.booking-details-textarea {
	width: 90%;
	padding: 0.7em 1em;
	border-radius: 8px;
	border: 1px solid #e75480;
	margin-top: 0.2em;
	font-size: 1rem;
	background: #fff;
	color: #222;
	margin-bottom: 0.5em;
	outline: none;
	resize: vertical;
}
.booking-payment-group {
	margin-bottom: 1.1em;
	text-align: left;
}
.booking-payment-group label {
	color: #e75480;
	font-weight: 600;
	margin-bottom: 0.3em;
	display: block;
}
.payment-options {
	display: flex;
	gap: 1.5em;
	margin-top: 0.5em;
}
.payment-options label {
	color: #222;
	font-weight: 500;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.4em;
	cursor: pointer;
}
.payment-options input[type="radio"] {
	accent-color: #e75480;
}
@media (max-width: 1200px) {
	.booking-main {
	max-width: 430px;
	margin: 2.5em auto 3em auto;
	background: #fff8fa;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(231,84,128,0.07);
	padding: 2.5em 1.5em 2em 1.5em;
	text-align: center;
}
.booking-title {
	font-size: 1.3rem;
	color: #e75480;
	margin-bottom: 1.2em;
	font-weight: 700;
	letter-spacing: 1px;
}
.booking-form label {
	display: block;
	margin-bottom: 0.3em;
	color: #e75480;
	font-weight: 600;
	text-align: left;
}
.booking-type-group {
	display: flex;
	justify-content: center;
	gap: 2em;
	margin-bottom: 1.2em;
}
.booking-type-group input[type="radio"] {
	accent-color: #e75480;
	margin-right: 0.4em;
}
.luxury-label {
	color: #e75480;
	font-weight: 700;
	letter-spacing: 1px;
}
.classic-label {
	color: #222;
	font-weight: 700;
	letter-spacing: 1px;
}
.booking-service-group,
.booking-details-group,
.booking-date-group,
.booking-time-group,
.booking-contact-group {
	margin-bottom: 1.1em;
}
#service{
	font-size: 0.9rem;
}
.booking-form select,
.booking-form input[type="details"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"] {
	width: 80%;
	padding: 0.7em 1em;
	border-radius: 8px;
	border: 1px solid #e75480;
	margin-top: 0.2em;
	font-size: 1rem;
	background: #fff;
	color: #222;
	margin-bottom: 0.5em;
	outline: none;
	transition: border 0.2s;
}
.booking-form select:focus,
.booking-form input:focus {
	border: 1.5px solid #e75480;
}
.booking-btn {
	background: linear-gradient(90deg, #e75480 0%, #ffb6c1 100%);
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 0.8em 2em;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 1em;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(231,84,128,0.10);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	outline: none;
}
.booking-btn:hover, .booking-btn:focus {
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 24px rgba(231,84,128,0.18);
}
.booking-details-textarea {
	width: 80%;
	padding: 0.7em 1em;
	border-radius: 8px;
	border: 1px solid #e75480;
	margin-top: 0.2em;
	font-size: 1rem;
	background: #fff;
	color: #222;
	margin-bottom: 0.5em;
	outline: none;
	resize: vertical;
}
.card-details-hidden {
  display: none;
  margin-top: 1em;
}
.transfer-details-hidden {
  display: none;
  margin-top: 1em;
}
.card-btn-black {
  margin-top: 0.5em;
  color: black;
}
.transfer-account-custom {
  background: #fff8fa;
  border-radius: 8px;
  padding: 1em 0.7em 0.7em 0.7em;
  margin-bottom: 1em;
  box-shadow: 0 2px 8px rgba(231,84,128,0.07);
}
}
.booking-success-message {
	display: none;
	background: linear-gradient(90deg, #ffb6c1 0%, #e75480 100%);
	color: #fff;
	padding: 1em 2em;
	border-radius: 12px;
	text-align: center;
	font-size: 1.2em;
	margin-bottom: 1em;
	box-shadow: 0 2px 12px rgba(231,84,128,0.10);
}
.booking-success-message.active {
	display: block;
}



.footer-container {
	background: black;
	color: #fff;
	padding: 2.5em 1em 1.2em 1em;
	text-align: center;
	position: relative;
	margin-top: 2em;
	box-shadow: 0 -2px 16px rgba(231,84,128,0.10);
}
.footer-container img{
	height: 30px ;
	width: 30px;
	padding-right: 1rem;
}
.footer-container h3 {
	display: inline-block;
	background: linear-gradient(270deg, #e75480, #ffb6c1, #e75480, #fff);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	animation: gradientMove 3s ease-in-out infinite;
	font-weight: bold;
	letter-spacing: 2px;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.footer-flex {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 3em;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}
.footer-flex .opening-hours {
	margin-bottom: 0;
}
.footer-flex .social-media {
	margin: 0;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 1rem;
}
.footer-flex .social-media a {
	display: inline-block;
	margin: 0 0.5em 0 0;
}

	
.footer-container .opening-hours {
	margin-bottom: 1.2em;
}
.footer-container .opening-hours h4 {
	font-size: 1.2rem;
	margin-bottom: 0.3em;
	color: #fff;
	margin-bottom: 1rem;
}
.footer-container .opening-hours ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	text-align: left;
}
.footer-container .opening-hours li {
	font-size: 1rem;
	margin-bottom: 0.2em;
}
.footer-container .social-media {
	margin: 1.2em 0 0.7em 0;
}
.footer-container .social-media a {
	color: #fff;
	font-size: 2rem;
	margin: 0 0.5em;
	transition: color 0.2s, transform 0.2s;
	display: inline-block;
}
.footer-container .social-media a:hover {
	color: #e75480;
	transform: scale(1.15) rotate(-8deg);
}
.footer-container p {
	font-size: 1rem;
	margin-top: 1.2em;
	color: #fff;
	opacity: 0.85;
}
@media (max-width: 1200px) {
	.footer-flex {
		flex-direction: column;
		align-items: center;
		gap: 1.2em;
	}
	.footer-flex .social-media {
		flex-direction: row;
		align-items: center;
		gap: 0.5em;
	}

	.footer-container h3 {
		font-size: 1.3rem;
	}
	.footer-container .social-media a {
		font-size: 1.5rem;
		margin: 0 0.3em;
	}
	.footer-container .opening-hours ul {
		font-size: 0.95rem;
	}
}

