@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   CSS Custom Properties (Variables) & Design Tokens
   ========================================================================== */
:root {
	/* Color Palette */
	--brand-pink: #C8699B;
	--brand-pink-hover: #b55687;
	--brand-pink-light: #fef7fa;
	--brand-pink-bg: #f7e9ef;
	--brand-charcoal: #4A4A4A;
	--brand-charcoal-light: #5a5a5a;
	--brand-charcoal-dark: #3a3a3a;
	--bg-cream: #fafafa;
	--bg-white: #ffffff;
	--text-primary: #4A4A4A;
	--text-secondary: #666666;
	--text-light: #999999;
	--text-white: #ffffff;
	--border-color: #F6F1F4;
	--gold: #f39c12;

	/* Transitions & Shadows */
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.08);

	/* Layout */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-full: 9999px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background-color: var(--bg-white);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
	font-family: inherit;
	font-size: inherit;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

ul {
	list-style: none;
}

/* Typography Extensions */
.serif-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 600;
}

/* ==========================================================================
   Common Components (Buttons, Badges)
   ========================================================================== */
.btn-view-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--brand-pink);
	color: var(--text-white);
	padding: 10px 10px 10px 24px;
	border-radius: var(--radius-full);
	font-weight: 500;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	gap: 15px;
	transition: var(--transition-smooth);
}

.btn-view-more:hover {
	background-color: var(--brand-pink-hover);
	transform: translateY(-2px);
}

.btn-circle-arrow {
	background-color: var(--bg-white);
	color: var(--brand-pink);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	transition: var(--transition-smooth);
}

.btn-view-more:hover .btn-circle-arrow {
	transform: translateX(2px);
}

/* Fancy Cursive underline */
.fancy-underline {
	position: relative;
	display: inline-block;
}

.fancy-underline::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 5px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 Q50,2 100,7' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 18px 100px;
	background-color: var(--bg-white);
}

/* Search Bar (Left) */
.search-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 250px;
	border-bottom: 1px solid var(--brand-pink);
	padding-bottom: 6px;
}

.search-wrapper input {
	border: none;
	outline: none;
	font-size: 0.85rem;
	color: var(--text-primary);
	width: 90%;
	background: transparent;
}

.search-wrapper input::placeholder {
	color: #888;
}

.search-wrapper button {
	background: none;
	border: none;
	color: var(--brand-pink);
	cursor: pointer;
	font-size: 0.95rem;
}

/* Logo (Center) */
.logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.logo-container img {
	width: 150px;
}

.logo-container svg {
	margin-bottom: 2px;
}

/* Utilities (Right) */
.header-utilities {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 25px;
}

.utility-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 500;
	color: var(--brand-charcoal);
	cursor: pointer;
}

.utility-link i {
	color: var(--brand-pink);
	font-size: 1.05rem;
}

.utility-link:hover {
	color: var(--brand-pink);
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: var(--brand-pink);
	color: var(--text-white);
	font-size: 0.7rem;
	font-weight: 600;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Bottom Navigation Bar */
.header-bottom-nav {
	background-color: #F6F1F4;
	display: flex;
	justify-content: center;
	padding: 12px 0;
}

.bottom-nav-links {
	display: flex;
	gap: 40px;
}

.bottom-nav-links a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--brand-charcoal-light);
	letter-spacing: 0.3px;
}

.bottom-nav-links a:hover {
	color: var(--brand-pink);
}

.menu-toggle {
	display: none;
	font-size: 1.4rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--brand-charcoal);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-section {
	position: relative;
	height: 600px;
	overflow: hidden;
	background-color: var(--brand-charcoal);
}

.hero-slider {
	display: flex;
	height: 100%;
	width: 100%;
	transition: var(--transition-slow);
}

.hero-slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.hero-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.slide-content {
	width: 65%;
	padding: 0 5% 0 8%;
	z-index: 2;
	color: var(--text-white);
}

.slide-content h1 {
	font-size: 4.688rem;
	line-height: 1.15;
	color: var(--text-white);
	margin-bottom: 20px;
}

.slide-content p {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 30px;
	max-width: 580px;
	line-height: 1.7;
}

.slide-image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.slide-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: var(--transition-slow);
}

/* Slide Indicator Numbers (Bottom Left) */
.hero-numbers-nav {
	position: absolute;
	bottom: 40px;
	left: 8%;
	display: flex;
	gap: 20px;
	z-index: 10;
}

.slider-number {
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
	transition: var(--transition-smooth);
}

.slider-number.active {
	color: var(--text-white);
	border-bottom-color: var(--brand-pink);
	font-weight: 600;
}

/* ==========================================================================
   Features Icon Bar
   ========================================================================== */
.features-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 35px 100px;
	background-color: var(--bg-white);
	border-bottom: 1px solid var(--border-color);
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.feature-icon-box {
	color: var(--brand-pink);
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-info h4 {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--brand-charcoal);
	line-height: 1.4;
}

/* ==========================================================================
   Intro Header Section
   ========================================================================== */
.intro-section {
	padding: 100px 100px 100px 100px;
	text-align: center;
	background-color: var(--bg-white);
}

.intro-section .subtitle {
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--text-primary);
	letter-spacing: 3%;
	margin-bottom: 5px;
	display: block;
}

.intro-section h2 {
	font-size: 3.375rem;
	color: var(--text-primary);
}

.intro-section h2 span {
	color: var(--brand-pink);
	
	font-size: 2.8rem;
	font-weight: 500;
	vertical-align: middle;
}

.intro-section p {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Category Section (Dark Grey Grid)
   ========================================================================== */
.category-section-dark {
	background-color: var(--brand-charcoal-light);
	padding: 70px 100px;
	display: flex;
	gap: 40px;
	align-items: center;
}

.category-text-col {
	flex: 0 0 280px;
	color: var(--text-white);
}

.category-text-col span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.category-text-col h2 {
	font-size: 2.4rem;
	line-height: 1.15;
	margin-bottom: 15px;
	color: var(--text-white);
}

.category-text-col p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 25px;
}

.category-slider-controls {
	display: flex;
	gap: 10px;
}

.cat-control-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
	border: none;
}

.cat-control-btn.btn-pink-active {
	background-color: var(--brand-pink);
	color: var(--text-white);
}

.cat-control-btn.btn-outline-inactive {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.85);
}

.cat-control-btn.btn-pink-active:hover {
	background-color: var(--brand-pink-hover);
}

.cat-control-btn.btn-outline-inactive:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: rgba(255, 255, 255, 0.7);
}

/* Category Cards Grid Container (2 rows, 4 columns layout) */
.category-cards-container-outer {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.category-cards-container-outer::-webkit-scrollbar {
	display: none;
}

.category-cards-container-inner {
	display: grid;
	grid-template-rows: 600px;
	grid-template-columns: repeat(9, 400px);
	gap: 20px;
	padding: 10px 0;
	width: max-content;
}

.category-card-item {
	width: 400px !important;
	height: 500px !important;
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	flex-shrink: 0;
}

.category-card-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

.category-card-item:hover img {
	transform: scale(1.06);
}

/* Category Overlay Banner */
.cat-card-overlay-banner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	transition: var(--transition-smooth);
	border-top-right-radius: var(--radius-lg);
	border-bottom-right-radius: var(--radius-lg);
}

/* Card Normal State (White Banner) */
.category-card-item .cat-card-overlay-banner {
	background-color: var(--bg-white);
	position: absolute;
	bottom: 30px;
	width: 80%;
}

.category-card-item .cat-card-overlay-banner h4 {
	font-size: 1.375rem;
	font-weight: 500;
	color: var(--brand-charcoal);
	transition: var(--transition-smooth);
}

.cat-banner-circle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	transition: var(--transition-smooth);
}
.category-cards-container-outer{
    overflow:hidden;
}
.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    width: auto;
    box-sizing: border-box;
}

#categoryCarouselOuter .swiper-wrapper,
#categoryCarouselOuter2 .swiper-wrapper{
    align-items: stretch;
}

#categoryCarouselOuter .swiper-slide,
#categoryCarouselOuter2 .swiper-slide{
    box-sizing: border-box;
}

.category-cards-container-outer::-webkit-scrollbar{
    display:none;
}

.category-cards-container-inner{
    display:flex;
    gap:20px;
}
.category-card-item .cat-banner-circle {
	background-color: var(--brand-charcoal-light);
	color: var(--text-white);
}

/* Card Hover/Active State (Pink Banner) */
.category-card-item.active-pink .cat-card-overlay-banner,
.category-card-item:hover .cat-card-overlay-banner {
	background-color: var(--brand-pink);
}

.category-card-item.active-pink .cat-card-overlay-banner h4,
.category-card-item:hover .cat-card-overlay-banner h4 {
	color: var(--text-white);
}

.category-card-item.active-pink .cat-banner-circle,
.category-card-item:hover .cat-banner-circle {
	background-color: var(--bg-white);
	color: var(--brand-pink);
}

/* ==========================================================================
   Popular Products Carousel (With scroll snap & overflow auto)
   ========================================================================== */
.products-section {
	padding: 70px 100px;
	background-color: var(--bg-white);
}

.products-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 35px;
}

.products-header h2 {
	font-size: 2.2rem;
	color: var(--brand-pink);
}

.carousel-controls {
	display: flex;
	gap: 10px;
}

.control-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	background-color: var(--bg-white);
	color: var(--brand-charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.95rem;
	transition: var(--transition-smooth);
}

.control-btn.btn-active-pink {
	background-color: var(--brand-pink);
	border-color: var(--brand-pink);
	color: var(--text-white);
}

.control-btn:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.products-carousel-outer {
	overflow-x: auto;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	/* Hide scrollbars Edge */
	scrollbar-width: none;
	/* Hide scrollbars Firefox */
	padding: 10px 5px;
}

.products-carousel-outer::-webkit-scrollbar {
	display: none;
	/* Hide scrollbars Chrome/Safari */
}

.products-carousel-inner {
	display: flex;
	gap: 22px;
	width: max-content;
}

/* Product Card Layout */
.product-card {
	width: 100%;
	background-color: var(--bg-white);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
	padding: 15px;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

.products-carousel-inner .product-card {
	width: 250px;
}

.product-card:hover {
	box-shadow: var(--shadow-md);
}

/* Heart Icon (Top Right) */
.product-heart-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: var(--bg-white);
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	z-index: 10;
	transition: var(--transition-smooth);
	border: none;
}

.product-heart-badge:hover,
.product-heart-badge.active-pink {
	color: var(--brand-pink);
}

.product-img-wrap {
	height: 220px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	background-color: #f7f7f7;
	border-radius: var(--radius-md);
	position: relative;
}

.product-img-wrap img {
	max-height: 85%;
	object-fit: contain;
	transition: var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
	transform: scale(1.04);
	opacity: 0.85;
}

/* Product Content */
.product-name {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--brand-charcoal);
	line-height: 1.45;
	margin-bottom: 12px;
	height: 38px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	width: 100%;
}

.product-price-box {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.price-current {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-charcoal);
}

.price-old {
	font-size: 0.8rem;
	color: var(--text-light);
	text-decoration: line-through;
}

/* Discount Badge (Bottom Right) */
.product-discount-tag {
	background-color: #fbf1f4;
	color: var(--brand-pink);
	border-radius: var(--radius-sm);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 3px 8px;
}

/* Add To Cart Hover Overlay (Pill Style centered vertically on image area) */
.hover-cart-btn-overlay {
	position: absolute;
	top: 110px;
	left: 50%;
	transform: translate(-50%, -30%);
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-smooth);
	z-index: 15;
}

.product-card:hover .hover-cart-btn-overlay {
	opacity: 1;
	transform: translate(-50%, -50%);
	pointer-events: auto;
}

.btn-pill-cart {
	background-color: var(--brand-pink);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius-full);
	padding: 8px 18px;
	font-size: 0.75rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(200, 92, 138, 0.35);
	white-space: nowrap;
	transition: var(--transition-smooth);
}

.btn-pill-cart:hover {
	background-color: var(--brand-pink-hover);
}

.btn-cart-circle {
	background-color: var(--bg-white);
	color: var(--brand-pink);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
}

/* Hover-active representation */
.product-card.hover-active-state .hover-cart-btn-overlay {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

/* ==========================================================================
   Top Trending Collections Section
   ========================================================================== */
.trending-section {
	background-color: #f7eff2;
	padding: 80px 100px;
}

.trending-container {
	display: flex;
	gap: 50px;
}

.trending-left-col {
	flex: 0 0 260px;
	display: flex;
	flex-direction: column;
}

.trending-left-col .subtitle {
	font-size: 0.85rem;
	color: var(--brand-pink);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.trending-left-col h2 {
	font-size: 2.5rem;
	line-height: 1.15;
	color: var(--brand-charcoal);
	margin-bottom: 15px;
}

.trending-left-col p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 30px;
}

.trending-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.trending-menu-item {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-secondary);
	cursor: pointer;
	align-self: flex-start;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: var(--transition-smooth);
}

.trending-menu-item:hover,
.trending-menu-item.active {
	color: var(--brand-charcoal);
	font-weight: 600;
}

.trending-menu-item.active {
	border-bottom-color: var(--brand-pink);
}

.trending-grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

/* Adjust card width inside Trending Grid to take full grid space */
.trending-grid .product-card {
	width: 100%;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 90px 100px;
	background-color: var(--bg-white);
}

.about-img-box {
	width: 45%;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.about-img-box img {
	width: 100%;
	display: block;
}

.about-content {
	width: 55%;
	display: flex;
	flex-direction: column;
}

.about-content .btn-view-more {
	align-self: flex-end;
}

.about-content h2 {
	font-size: 2.5rem;
	color: var(--brand-charcoal-dark);
	margin-top: 5px;
	margin-bottom: 20px;
}

.about-content .about-subtitle {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	letter-spacing: 0.5px;
	display: block;
}

.about-content p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 22px;
	text-align: justify;
	line-height: 1.7;
}

/* ==========================================================================
   Promotional Banner Section (New Arrivals)
   ========================================================================== */
.promo-banner-section {
	padding: 30px 100px 80px;
	background-color: var(--bg-white);
}

.cursive-white {
	font-family: 'Great Vibes', cursive;
	font-size: 3.2rem;
	font-weight: 400;
	color: #ffffff;
	vertical-align: middle;
	margin-right: 8px;
}

.promo-banner-card {
	background-color: var(--brand-pink-hover);
	border-radius: var(--radius-lg);
	display: flex;
	overflow: hidden;
	position: relative;
	padding: 50px 8%;
	color: var(--text-white);
	align-items: center;
}

.promo-banner-content {
	width: 55%;
	z-index: 2;
}

.promo-banner-content h2 {
	font-size: 3rem;
	margin-bottom: 30px;
	line-height: 1.15;
}

.promo-arrival-info-box {
	background-color: rgba(255, 255, 255, 0.12);
	border-left: 3px solid rgba(255, 255, 255, 0.4);
	padding: 15px 20px;
	margin-bottom: 30px;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	max-width: 460px;
}

.promo-arrival-info-box h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.promo-arrival-info-box p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

.promo-banner-visual {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--radius-lg);
	padding: 30px;
	height: 310px;
	max-width: 310px;
	margin-left: auto;
}

.visual-white-box {
	background-color: var(--bg-white);
	width: 250px;
	height: 250px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.visual-white-box img {
	max-height: 80%;
	object-fit: contain;
}

/* ==========================================================================
   Newsletter Bar (Stay In Touch 3-Inputs)
   ========================================================================== */
.newsletter-bar-updated {
	background-color: #828282;
	color: var(--text-white);
	padding: 35px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.newsletter-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.newsletter-left svg,
.newsletter-left i {
	font-size: 2.2rem;
	color: var(--brand-pink);
}

.newsletter-left h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.newsletter-left p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 2px;
}

.newsletter-right {
	flex: 0 1 780px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.newsletter-inputs-row {
	display: flex;
	gap: 12px;
	width: 100%;
}

.newsletter-input-field {
	flex: 1;
	background-color: var(--bg-white);
	border: none;
	padding: 14px 20px;
	border-radius: var(--radius-full);
	color: var(--brand-charcoal);
	font-size: 0.85rem;
	outline: none;
}

.newsletter-input-field::placeholder {
	color: #999;
}

.btn-subscribe {
	background-color: var(--brand-pink);
	color: var(--text-white);
	border: none;
	border-radius: var(--radius-full);
	padding: 10px 10px 10px 24px;
	font-size: 0.85rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

.btn-subscribe:hover {
	background-color: var(--brand-pink-hover);
}

.btn-subscribe-circle {
	background-color: var(--bg-white);
	color: var(--brand-pink);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}

.newsletter-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
}

.newsletter-checkbox-label input {
	accent-color: var(--brand-pink);
}

.newsletter-checkbox-label a {
	color: var(--text-white);
	text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
	background-color: var(--brand-charcoal-dark);
	color: #b0b0b0;
	padding: 70px 100px 0;
	font-size: 0.85rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.footer-brand p {
	line-height: 1.6;
	margin-top: 15px;
	margin-bottom: 20px;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--text-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.social-icon:hover {
	background-color: var(--brand-pink);
	transform: translateY(-2px);
}

.footer-col h4 {
	color: var(--text-white);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a:hover {
	color: var(--brand-pink);
	padding-left: 2px;
}

.footer-bottom-pink {
	background-color: var(--brand-pink);
	color: var(--text-white);
	padding: 16px 100px;
	margin-left: -100px;
	margin-right: -100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	font-size: 0.75rem;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	line-height: 1.5;
}

.footer-contact-item i {
	color: var(--brand-pink);
	margin-top: 3px;
	font-size: 0.95rem;
	width: 14px;
	text-align: center;
}

.footer-contact-item a {
	color: #b0b0b0;
	transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
	color: var(--brand-pink);
}

.footer-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.payment-badge {
	display: inline-block;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 500;
}

/* Mobile Drawer Styles */
.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-drawer {
	position: fixed;
	top: 0;
	left: -280px;
	width: 280px;
	height: 100%;
	background-color: var(--bg-white);
	z-index: 201;
	padding: 30px 24px;
	box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.mobile-drawer.active {
	left: 0;
}

.drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.drawer-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--brand-charcoal);
}

.drawer-links {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.drawer-links a {
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--brand-charcoal);
}

.drawer-links a:hover {
	color: var(--brand-pink);
}

/* ==========================================================================
   Megamenu Dropdown Overlay
   ========================================================================== */
.megamenu-dropdown {
	position: absolute;
	top: 100%;
	left: 100px;
	right: 100px;
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-lg);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	z-index: 999;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	overflow: hidden;
}

.megamenu-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Sidebar styling */
.megamenu-sidebar {
	width: 280px;
	background-color: var(--brand-pink-light);
	border-right: 1px solid var(--border-color);
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}

.megamenu-sidebar-item {
	font-family: 'Urbanist', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--brand-charcoal);
	padding: 14px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--transition-smooth);
	border-left: 4px solid transparent;
}

.megamenu-sidebar-item i {
	font-size: 0.75rem;
	color: var(--text-light);
	transition: var(--transition-smooth);
}

.megamenu-sidebar-item:hover,
.megamenu-sidebar-item.active {
	color: var(--brand-pink);
	background-color: var(--bg-white);
	border-left-color: var(--brand-pink);
	font-weight: 600;
}

.megamenu-sidebar-item:hover i,
.megamenu-sidebar-item.active i {
	color: var(--brand-pink);
	transform: translateX(3px);
}

/* Right Content Panel */
.megamenu-content-panel {
	flex: 1;
	padding: 40px;
	background-color: var(--bg-white);
	min-width: 0;
}

.megamenu-panel-content {
	display: none;
	animation: fadeEffect 0.3s ease-in-out;
	width: 100%;
}

.megamenu-panel-content.active {
	display: flex;
	gap: 40px;
}

@keyframes fadeEffect {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Panel Title */
.megamenu-panel-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--brand-charcoal);
	margin-bottom: 25px;
	grid-column: span 4;
	width: 100%;
}

/* Columns Grid */
.megamenu-columns-wrapper {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	min-width: 0;
}

.megamenu-column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.megamenu-column-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.megamenu-column h4,
.megamenu-column-group h4 {
	font-family: 'Urbanist', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--brand-charcoal);
	letter-spacing: 0.3px;
	margin-bottom: 5px;
}

.megamenu-column ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.megamenu-column ul li a {
	font-family: 'Urbanist', sans-serif;
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--text-secondary);
	display: block;
	line-height: 24px;
}

.megamenu-column ul li a:hover {
	color: var(--brand-pink);
	padding-left: 2px;
}

/* Featured product card far right */
.megamenu-featured {
	width: 240px;
	border-left: 1px solid var(--border-color);
	padding-left: 30px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}

.megamenu-featured h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--brand-charcoal);
	margin-bottom: 12px;
}

.megamenu-featured-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 15px;
	display: flex;
	flex-direction: column;
	transition: var(--transition-smooth);
}

.megamenu-featured-card:hover {
	box-shadow: var(--shadow-md);
}

.megamenu-featured-img {
	height: 140px;
	background-color: #f7f7f7;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 12px;
}

.megamenu-featured-img img {
	max-height: 85%;
	object-fit: contain;
	transition: var(--transition-slow);
}

.megamenu-featured-card:hover .megamenu-featured-img img {
	transform: scale(1.05);
}

.megamenu-featured-title {
	font-family: 'Urbanist', sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--brand-charcoal);
	line-height: 1.4;
	margin-bottom: 10px;
	height: 48px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.megamenu-featured-price-box {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
}

.megamenu-featured-price-box .price-current {
	font-family: 'Urbanist', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-pink);
}

.megamenu-featured-price-box .price-old {
	font-family: 'Urbanist', sans-serif;
	font-size: 0.8rem;
	color: var(--text-light);
	text-decoration: line-through;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1200px) {
	.trending-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 992px) {
	.header-top {
		grid-template-columns: auto 1fr;
		gap: 15px;
	}

	.search-wrapper {
		display: none;
	}

	.header-bottom-nav {
		display: none;
	}

	.megamenu-dropdown {
		display: none !important;
	}

	.menu-toggle {
		display: block;
	}

	.hero-slide {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.slide-content {
		width: 100%;
		padding: 60px 20px;
		z-index: 2;
	}

	.slide-content h1 {
		font-size: 2.4rem;
	}

	.slide-content p {
		margin: 0 auto 24px;
	}

	.slide-image-container {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	.features-bar {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.category-section-dark {
		flex-direction: column;
		align-items: stretch;
	}

	.category-text-col {
		flex: none;
		width: 100%;
		text-align: center;
	}

	.category-slider-controls {
		justify-content: center;
	}

	.trending-container {
		flex-direction: column;
		gap: 30px;
	}

	.trending-left-col {
		flex: none;
		width: 100%;
		text-align: center;
	}

	.trending-menu {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	.trending-menu-item {
		align-self: center;
	}

	.trending-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-section {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.about-img-box,
	.about-content {
		width: 100%;
	}

	.promo-banner-card {
		flex-direction: column;
		gap: 30px;
		text-align: center;
		padding: 35px;
	}

	.promo-banner-content,
	.promo-banner-visual {
		width: 100%;
	}

	.promo-banner-content p {
		margin-left: auto;
		margin-right: auto;
	}

	.newsletter-bar-updated {
		flex-direction: column;
		text-align: center;
	}

	.newsletter-inputs-row {
		flex-direction: column;
	}

	.newsletter-right {
		max-width: 100%;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-brand {
		grid-column: span 2;
	}

	.header-top,
	.features-bar,
	.category-section-dark,
	.products-section,
	.trending-section,
	.about-section,
	.promo-banner-section,
	.newsletter-bar-updated,
	.footer-main {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.footer-bottom-pink {
		margin-left: -16px;
		margin-right: -16px;
		padding-left: 16px;
		padding-right: 16px;
		justify-content: center;
		text-align: center;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	.hero-section {
		height: 450px;
	}

	.slide-content h1 {
		font-size: 2.2rem;
	}

	.features-bar {
		grid-template-columns: 1fr;
		padding: 30px 10%;
	}

	.trending-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: span 1;
	}
}

.container {
	max-width: 100% !important;
	padding: 0px !important;
}

.header-utilities {
	color: #C8699B;

}