/* Fonts */
: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;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #401414; /* Background color for the entire website, including individual sections */
	--default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #00bb3e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #371f1f; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #ffffff; /* The default color of the main navmenu links */
	--nav-hover-color: #00bb3e; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #00bb3e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #331b1b;
	--surface-color: #3f2929;
}

.dark-background {
	--background-color: #291a1a;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #1c1717;
	--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: 'Playfair Display', serif;
}

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: 'Playfair Display', serif;
}

/* 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: #332727;
	padding: 10px 0;
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .cta-btn,
.header .cta-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 20px;
	padding: 8px 26px;
	margin: 0;
	border-radius: 50px;
	transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .logo h1 {
		font-size: 33px;
	}

	.header .cta-btn {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 20px;
	}

	.header .navmenu {
		order: 3;
	}
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: #332727;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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 > ul > li {
		white-space: nowrap;
		padding: 15px 14px;
	}

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

	.navmenu a,
	.navmenu a:focus {
		color: color-mix(in srgb, var(--nav-color), transparent 30%);
		font-size: 25px;
		padding: 0 2px;
		font-family: 'Playfair Display', serif;
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}

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

	.navmenu > ul > li > a:before {
		content: '';
		position: absolute;
		height: 2px;
		bottom: -27px;
		left: 0;
		background-color: var(--nav-hover-color);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navmenu a:hover:before,
	.navmenu li:hover > a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-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: 20px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

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

	.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;
	}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 25px;
		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);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: 'Playfair Display', serif;
		font-size: 30px;
		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: 18px;
		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);
		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: 38px;
		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: #332727;
	font-size: 17px;
	text-align: center;
	padding: 30px 0;
	position: relative;
}

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

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

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

.footer .social-links a {
	font-size: 21px;
	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: 17px;
	padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: 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 var(--accent-color);
	border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s 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: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 25px;
	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;
	bottom: 15px;
}

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

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

.section-title h2 {
	font-size: 37px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.section-title p {
	margin-bottom: 0;
	color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# main-fashion Section
--------------------------------------------------------------*/
.main-fashion {
	position: relative;
	background-color: #332727;
	padding: 0;
	overflow: hidden;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-fashion img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	filter: grayscale(100%) brightness(0.7);
	z-index: 1;
}

/* Content Container */
.main-fashion .container {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 1.5rem;
	text-align: center;
}

/* Heading */
.main-fashion h2 {
	font-family: 'Playfair Display', serif;
	font-size: 65px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2px;
	margin-bottom: 2rem;
}

/* Paragraph */
.main-fashion p {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 25px;
	color: #e0e0e0;
	font-weight: 300;
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
	.main-fashion {
		height: auto;
		padding: 100px 0;
	}

	.main-fashion h2 {
		font-size: 38px;
	}

	.main-fashion p {
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# about-fashion Section
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Parisienne&display=swap');
.about-fashion-container {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #fffdfc 0%, #f7f3f0 100%);
	font-family: 'Playfair Display', serif;
	color: #3c2f2f;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Oswald:wght@300;500&family=Space+Grotesk:wght@300;500&display=swap');

.about-fashion-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 10vw;
	padding: 10rem 5vw;
	background-color: #fdfdfd;
	color: #111;
	font-family: 'Space Grotesk', sans-serif;
	border-top: 2px solid #332727;
	border-bottom: 2px solid #332727;
	letter-spacing: 0.05em;
	position: relative;
}

/* Image: editorial treatment */
.about-fashion-right {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: none;
}

.about-fashion-right img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	filter: grayscale(40%) brightness(95%) contrast(1.05);
	transition: all 0.4s ease;
}

.about-fashion-right img:hover {
	filter: grayscale(0%) brightness(100%);
	transform: scale(1.01);
}

/* Text: editorial layout */
.about-fashion-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0;
}

/* Title: fashion-headline */
.section-title h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 4.5rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #332727;
	margin-bottom: 2rem;
	border-bottom: 1px solid #332727;
	padding-bottom: 0.5rem;
}

/* Subtitle */
.section-title p {
	font-size: 1.25rem;
	font-weight: 300;
	color: #444;
	font-style: italic;
	max-width: 600px;
	margin-bottom: 2.5rem;
}

/* Paragraphs */
.about-fashion .container > p {
	font-size: 1rem;
	line-height: 1.8;
	color: #222;
	margin-bottom: 1.8rem;
	font-weight: 300;
	max-width: 600px;
}

/* List */
.about-fashion ul {
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.about-fashion ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.2rem;
}

.about-fashion ul li i {
	font-size: 1rem;
	margin-right: 0.75rem;
	color: #332727;
	margin-top: 0.2rem;
}

.about-fashion ul li span {
	font-size: 0.95rem;
	color: #111;
	font-weight: 400;
	line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 992px) {
	.about-fashion-container {
		grid-template-columns: 1fr;
		padding: 6rem 2rem;
		gap: 4rem;
	}

	.section-title h2 {
		font-size: 3rem;
	}

	.section-title p {
		font-size: 1.1rem;
	}

	.about-fashion .container > p {
		font-size: 0.95rem;
	}
}

/* Section Background */
#serv-fashion.section {
	background-color: #fdfcfa;
	padding: 80px 0;
	font-family: 'Poppins', sans-serif;
	color: #333;
}

/* Section Title */
.section-title h2 {
	font-family: 'Playfair Display', serif;
	font-size: 35px;
	font-weight: 600;
	color: #1c1c1c;
	margin-bottom: 20px;
}

.section-title p {
	font-size: 19px;
	color: #555;
	max-width: 700px;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# fashion-results Section
--------------------------------------------------------------*/

.fashion-results {
	background-color: #fafafa;
	padding: 100px 0;
	font-family: 'Space Grotesk', sans-serif;
	color: #332727;
	border-top: 2px solid #332727;
	border-bottom: 2px solid #332727;
}

.fashion-results .subheading {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 80px auto;
	padding: 0 1.5rem;
}

.fashion-results .subheading h3 {
	font-size: 55px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Playfair Display', serif;
	margin-bottom: 20px;
	color: #332727;
}

.fashion-results .subheading p {
	font-size: 19px;
	line-height: 1.75;
	color: #444;
	font-style: normal;
	font-weight: 400;
}

/* Card Styling */
.fashion-results-item {
	background-color: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 0;
	padding: 60px 30px;
	text-align: left;
	transition: all 0.3s ease;
	box-shadow: none;
	height: 100%;
	position: relative;
}

.fashion-results-item:hover {
	background: #332727;
	color: #fff;
	border-color: #332727;
}

.fashion-results-item span {
	display: block;
	font-size: 65px;
	font-weight: 600;
	font-family: 'Playfair Display', serif;
	margin-bottom: 12px;
	color: #332727;
	transition: color 0.3s ease;
}

.fashion-results-item:hover span {
	color: #fff;
}

.fashion-results-item p {
	font-size: 19px;
	font-weight: 400;
	letter-spacing: 0.5px;
	margin: 0;
	color: #444;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.fashion-results-item:hover p {
	color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
	.fashion-results {
		padding: 70px 0;
	}

	.fashion-results .subheading h3 {
		font-size: 39px;
	}

	.fashion-results-item {
		padding: 50px 25px;
	}

	.fashion-results-item span {
		font-size: 49px;
	}

	.fashion-results-item p {
		font-size: 15px;
	}
}

/*--------------------------------------------------------------
# fashion-qa Section
--------------------------------------------------------------*/

.fashion-qa {
	background-color: #fafafa;
	padding: 100px 5vw;
	border-top: 2px solid #332727;
	border-bottom: 2px solid #332727;
	font-family: 'Space Grotesk', sans-serif;
	color: #332727;
}

.fashion-qa .content {
	max-width: 800px;
	margin: 0 auto 60px auto;
	text-align: center;
}

.fashion-qa .content h3 {
	font-family: 'Playfair Display', serif;
	font-size: 52px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
	color: #332727;
}

.fashion-qa .content p {
	font-size: 18px;
	color: #444;
	font-weight: 300;
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

/* Container for all FAQ items */
.fashion-qa-container {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Each FAQ item */
.fashion-qa-item {
	border-top: 1px solid #ddd;
	padding-top: 1.5rem;
	transition: background 0.3s ease;
	cursor: pointer;
}

.fashion-qa-item h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111;
	position: relative;
	padding-left: 30px;
	line-height: 1.4;
}

.fashion-qa-item h3::before {
	content: 'Q';
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	color: #332727;
}

/* Hidden by default */
.fashion-qa-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-height 0.5s ease,
		opacity 0.4s ease;
	padding-left: 30px;
	position: relative;
}

/* Show when active */
.fashion-qa-active .fashion-qa-content {
	max-height: 500px;
	opacity: 1;
}

/* Answer text */
.fashion-qa-content p {
	font-size: 16px;
	color: #333;
	line-height: 1.8;
	position: relative;
	margin: 0;
	padding-left: 0;
}

/* A label */
.fashion-qa-content p::before {
	content: 'A';
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	position: absolute;
	left: -30px;
	top: 0;
	color: #888;
}

/* Optional underline for open question */
.fashion-qa-active h3 {
	text-decoration: underline;
}

/* Hide icons if present */
.fashion-qa-icon,
.fashion-qa-toggle {
	display: none;
}

/* Responsive */
@media (max-width: 768px) {
	.fashion-qa {
		padding: 70px 1.5rem;
	}

	.fashion-qa .content h3 {
		font-size: 36px;
	}

	.fashion-qa-item h3 {
		font-size: 18px;
	}

	.fashion-qa-content p {
		font-size: 15px;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
	background-color: #fafafa;
	padding: 100px 5vw;
	border-top: 2px solid #332727;
	font-family: 'Space Grotesk', sans-serif;
	color: #332727;
}

/* Title block */
#contact .section-title {
	max-width: 800px;
	margin: 0 auto 60px auto;
	text-align: center;
}

#contact .section-title h2 {
	font-family: 'Playfair Display', serif;
	font-size: 52px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
	color: #332727;
}

#contact .section-title p {
	font-size: 18px;
	color: #444;
	font-weight: 300;
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

/* Form container */
#contact form {
	max-width: 900px;
	margin: 0 auto;
}

#contact .form-control {
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #fff;
	font-size: 16px;
	color: #332727;
	font-family: 'Space Grotesk', sans-serif;
	transition: border-color 0.3s ease;
}

#contact .form-control::placeholder {
	color: #999;
	font-weight: 300;
}

#contact .form-control:focus {
	outline: none;
	border-color: #332727;
	background-color: #fff;
}

/* Button */
#contact button[type='submit'] {
	margin-top: 20px;
	padding: 14px 40px;
	border: 2px solid #332727;
	background: transparent;
	color: #332727;
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

#contact button[type='submit']:hover {
	background: #332727;
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	#contact {
		padding: 70px 1.5rem;
	}

	#contact .section-title h2 {
		font-size: 36px;
	}

	#contact .form-control {
		font-size: 15px;
		padding: 14px 16px;
	}

	#contact button[type='submit'] {
		font-size: 14px;
		padding: 12px 30px;
	}
}

.footer-48201 {
	padding: 7rem 0;
	background-color: #2c2c29;
	color: #fff;
}
.footer-48201 .footer-site-logo {
	font-size: 1.5rem;
	color: #fff;
}
.footer-48201 .nav-links li {
	margin-bottom: 10px;
}
.footer-48201 .nav-links li a {
	color: #fff;
}
.footer-48201 .nav-links li a:hover {
	color: #fff;
}
.footer-48201 .btn.btn-tertiary {
	background-color: #e42c64;
	color: #fff;
	border-radius: 30px;
	border: none;
	padding: 10px 20px;
}
.footer-48201 .social li {
	display: inline-block;
}
.footer-48201 .social li a {
	color: gray;
	padding: 7px;
}
.footer-48201 .social li a:hover {
	color: #fff;
}
.footer-48201 .copyright {
	border-top: 1px solid #404040;
}

#cookie-popup {
	position: fixed;
	bottom: 30px;
	transform: translateX(-50%);
	background: #ffffff;
	color: #333;
	padding: 20px 30px;
	font-family: 'Playfair Display', serif;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	display: none;
	opacity: 0; /* Initially invisible */
	transform: translateY(50px); /* Slide up effect */
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
	max-width: 450px;
	z-index: 9999;
}

#cookie-popup.show {
	opacity: 1;
	transform: translateY(0);
}

#cookie-popup p {
	margin: 0;
	padding: 0;
}

#cookie-popup .popup-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-popup button {
	background: #28a745;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 16px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

#cookie-popup button:hover {
	background: #218838;
	transform: scale(1.05);
}

#cookie-popup .popup-message {
	max-width: 80%;
}

#cookie-popup .popup-message a {
	color: #28a745;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
	color: #218838;
}
