
:root {
	--primary-red: #c8102e;
	--dark-red: #a00d24;
	--light-red: #e63946;
	--white: #fff;
	--light-gray: #f8f9fa;
	--medium-gray: #e9ecef;
	--dark-gray: #333;
	--text-gray: #555;
	--gold: #ffd700;
	--header-bg: #ffebec;
	--footer-bg: #252624;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	background-color: var(--white);
	color: var(--dark-gray);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header Styles */
header {
	background: linear-gradient(135deg, var(--header-bg) 0%, #ffe0e2 100%);
	color: var(--dark-gray);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	border-bottom: 3px solid var(--primary-red);
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(200, 16, 46, .2);
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 70px;
	transition: transform .3s ease;
}

.logo:hover img {
	transform: scale(1.05);
}

.contact-info {
	font-weight: 500;
	font-size: 16px;
	display: flex;
	align-items: center;
	color: var(--primary-red);
}

.contact-info i {
	margin-right: 8px;
	font-size: 18px;
}

.marquee-container {
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	padding: 10px 0;
	margin-top: 10px;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(200, 16, 46, .3);
}

.marquee {
	white-space: nowrap;
	animation: marquee 25s linear infinite;
	font-weight: 500;
	letter-spacing: .5px;
	color: var(--white);
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}
	
	100% {
		transform: translateX(-100%);
	}
}

/* Navigation */
nav {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.nav-container {
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	display: block;
	padding: 18px 22px;
	text-decoration: none;
	color: var(--dark-gray);
	font-weight: 500;
	transition: all .3s ease;
	position: relative;
}

.nav-menu a:hover {
	color: var(--primary-red);
}

.nav-menu a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	transition: all .3s ease;
	transform: translateX(-50%);
	border-radius: 3px 3px 0 0;
}

.nav-menu a:hover::before {
	width: 80%;
}

/* Hero Section */
.hero {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .4) 100%);
	display: flex;
	align-items: center;
}

.hero-content {
	max-width: 650px;
	padding: 0 40px;
	color: var(--white);
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
	line-height: 1.2;
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: .9;
}

.btn {
	display: inline-block;
	padding: 14px 32px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	color: var(--white);
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	transition: all .3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(200, 16, 46, .3);
	position: relative;
	overflow: hidden;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(200, 16, 46, .4);
}

.btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
	transition: .5s;
}

.btn:hover::after {
	left: 100%;
}

/* Features Section */
.features {
	padding: 80px 0;
	background-color: var(--light-gray);
}

.features-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.feature-box {
	text-align: center;
	max-width: 300px;
	padding: 30px 20px;
	margin: 15px;
	background: var(--white);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
	transition: transform .3s ease, box-shadow .3s ease;
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--white);
	font-size: 32px;
}

.feature-box h3 {
	margin-bottom: 15px;
	color: var(--dark-gray);
	font-size: 20px;
}

/* Product Showcase - Creative Collage */
.product-showcase {
	padding: 80px 0;
	background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.section-title h2 {
	font-size: 36px;
	color: var(--dark-gray);
	display: inline-block;
	padding-bottom: 15px;
	position: relative;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	border-radius: 2px;
}

.section-title p {
	max-width: 600px;
	margin: 15px auto 0;
	color: var(--text-gray);
}

.showcase-collage {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 250px);
	gap: 20px;
}

.collage-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
	transition: all .4s ease;
}

.collage-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.collage-item:nth-child(1) {
	grid-column: 1/2;
	grid-row: 1/3;
}

.collage-item:nth-child(2) {
	grid-column: 2/3;
	grid-row: 1/2;
}

.collage-item:nth-child(3) {
	grid-column: 3/4;
	grid-row: 1/2;
}

.collage-item:nth-child(4) {
	grid-column: 2/4;
	grid-row: 2/3;
}

.collage-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.collage-item:hover .collage-image {
	transform: scale(1.1);
}

.collage-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .7) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	color: var(--white);
	opacity: 0;
	transition: opacity .4s ease;
}

.collage-item:hover .collage-overlay {
	opacity: 1;
}

.collage-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	transform: translateY(20px);
	transition: transform .4s ease;
}

.collage-item:hover .collage-title {
	transform: translateY(0);
}

.collage-btn {
	align-self: flex-start;
	margin-top: 10px;
	padding: 10px 25px;
	background: var(--white);
	color: var(--primary-red);
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transform: translateY(20px);
	transition: all .4s ease;
}

.collage-item:hover .collage-btn {
	transform: translateY(0);
}

.collage-btn:hover {
	background: var(--primary-red);
	color: var(--white);
}

/* Featured Products */
.featured-products {
	padding: 80px 0;
	background-color: var(--light-gray);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.product-card {
	background-color: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
	transition: transform .3s ease, box-shadow .3s ease;
	position: relative;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.product-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	color: var(--white);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	z-index: 2;
}

.product-image {
	width: 100%;
	height: 250px;
	object-fit: contain;
	padding: 20px;
	background-color: var(--white);
	transition: transform .3s ease;
}

.product-card:hover .product-image {
	transform: scale(1.05);
}

.product-info {
	padding: 20px;
	border-top: 1px solid var(--medium-gray);
}

.product-info h3 {
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--dark-gray);
	height: 48px;
	overflow: hidden;
}

.product-price {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-red);
	margin-bottom: 15px;
}

/* Self Care Section - Stylish Design */
.self-care {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	position: relative;
	overflow: hidden;
}

.self-care::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(200, 16, 46, .1) 0%, rgba(200, 16, 46, 0) 70%);
	border-radius: 50%;
}

.self-care::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(230, 57, 70, .1) 0%, rgba(230, 57, 70, 0) 70%);
	border-radius: 50%;
}

.self-care .section-title h2 {
	font-size: 42px;
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 15px;
}

.self-care-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	position: relative;
	z-index: 1;
}

.self-care-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	height: 350px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
	transition: all .4s ease;
}

.self-care-item:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.self-care-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.self-care-item:hover .self-care-image {
	transform: scale(1.1);
}

.self-care-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .7) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	color: var(--white);
}

.self-care-text {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 10px;
	transform: translateY(20px);
	transition: transform .4s ease;
}

.self-care-item:hover .self-care-text {
	transform: translateY(0);
}

.self-care-desc {
	font-size: 16px;
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s ease;
	transition-delay: .1s;
}

.self-care-item:hover .self-care-desc {
	opacity: 1;
	transform: translateY(0);
}

/* Testimonials - Enhanced Design */
.testimonials {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
}

.testimonial-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.section-title.testimonial-title h2 {
	font-size: 42px;
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 15px;
}

.section-title.testimonial-title h2::after {
	width: 150px;
	height: 4px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
}

.testimonial-slider {
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
	background: var(--white);
	padding: 20px;
}

.testimonial-track {
	display: flex;
	transition: transform .5s ease;
}

.testimonial-slide {
	min-width: 100%;
	padding: 0 20px;
}

.testimonial-content {
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	padding: 40px;
	border-radius: 15px;
	position: relative;
	border-left: 5px solid var(--primary-red);
	box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.testimonial-content::before {
	content: "\"";
	font-size: 120px;
	color: var(--primary-red);
	position: absolute;
	top: -30px;
	left: 20px;
	line-height: 1;
	opacity: .2;
	font-family: Georgia, serif;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 25px;
	color: var(--text-gray);
	font-size: 18px;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.testimonial-author-info {
	display: flex;
	align-items: center;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: bold;
	font-size: 22px;
	margin-right: 15px;
}

.testimonial-author-details {
	display: flex;
	flex-direction: column;
}

.testimonial-author {
	font-weight: 700;
	color: var(--dark-gray);
	font-size: 18px;
}

.testimonial-location {
	color: var(--primary-red);
	font-size: 15px;
	font-weight: 500;
}

.testimonial-rating {
	margin-top: 5px;
	color: var(--gold);
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.testimonial-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #ccc;
	margin: 0 8px;
	cursor: pointer;
	transition: all .3s ease;
}

.testimonial-dot.active {
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	transform: scale(1.2);
}

/* Footer - Enhanced Design */
footer {
	background: linear-gradient(135deg, var(--footer-bg) 0%, #1a1b1a 100%);
	color: var(--white);
	padding: 80px 0 20px;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.footer-logo img {
	height: 70px;
	margin-bottom: 20px;
}

.footer-about {
	font-size: 15px;
	line-height: 1.7;
	opacity: .9;
}

.footer-heading {
	font-size: 20px;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 12px;
	color: var(--white);
}

.footer-heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(to right, var(--primary-red), var(--light-red));
	border-radius: 2px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: all .3s ease;
	opacity: .9;
	display: flex;
	align-items: center;
}

.footer-links a:hover {
	opacity: 1;
	padding-left: 8px;
	color: var(--gold);
}

.footer-links a i {
	margin-right: 10px;
	font-size: 14px;
}

.contact-info-footer {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
}

.contact-icon {
	margin-right: 12px;
	color: var(--primary-red);
	font-size: 18px;
	margin-top: 3px;
}

.social-links {
	display: flex;
	margin-top: 25px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	border-radius: 50%;
	margin-right: 12px;
	transition: all .3s ease;
	color: var(--white);
}

.social-link:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 5px 15px rgba(200, 16, 46, .4);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	opacity: .8;
	position: relative;
	z-index: 1;
}

.footer-bottom a {
	color: var(--white);
	text-decoration: none;
	transition: color .3s ease;
}

.footer-bottom a:hover {
	color: var(--gold);
}

/* Hide WP Social Chat button only on post ID 2189 */
.postid-2702 #qlwapp {
	display: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.showcase-collage {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 200px);
	}
	
	.collage-item:nth-child(1) {
		grid-column: 1/2;
		grid-row: 1/2;
	}
	
	.collage-item:nth-child(2) {
		grid-column: 2/3;
		grid-row: 1/2;
	}
	
	.collage-item:nth-child(3) {
		grid-column: 1/2;
		grid-row: 2/3;
	}
	
	.collage-item:nth-child(4) {
		grid-column: 2/3;
		grid-row: 2/3;
	}
	
	.self-care-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.header-top {
		flex-direction: column;
		text-align: center;
	}
	
	.contact-info {
		margin-top: 10px;
	}
	
	.nav-menu {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.nav-menu a {
		padding: 15px 18px;
	}
	
	.hero-content h1 {
		font-size: 36px;
	}
	
	.features-container {
		flex-direction: column;
		align-items: center;
	}
	
	.showcase-collage {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 200px);
	}
	
	.collage-item:nth-child(1), .collage-item:nth-child(2), .collage-item:nth-child(3), .collage-item:nth-child(4) {
		grid-column: 1/2;
	}
	
	.collage-item:nth-child(1) {
		grid-row: 1/2;
	}
	
	.collage-item:nth-child(2) {
		grid-row: 2/3;
	}
	
	.collage-item:nth-child(3) {
		grid-row: 3/4;
	}
	
	.collage-item:nth-child(4) {
		grid-row: 4/5;
	}
	
	.self-care-grid {
		grid-template-columns: 1fr;
	}
	
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-bottom div {
		margin-bottom: 10px;
	}
	
	.hero {
		height: 500px;
	}
	
	.hero-content h1 {
		font-size: 32px;
	}
}
