:root {
	--bg-cream: #f7f2e8;
	--bg-warm: #e8dcc7;
	--bg-deep: #1f1a16;
	--bg-panel: #fffaf2;
	--text-main: #2f2822;
	--text-soft: #6e6155;
	--gold: #b98a3d;
	--gold-soft: #d3aa68;
	--line: #ddc9a4;
	--success: #2f7a51;
	--shadow-soft: 0 12px 30px rgba(53, 40, 28, 0.1);
	--shadow-strong: 0 20px 45px rgba(35, 25, 15, 0.16);
	--radius-md: 14px;
	--radius-lg: 22px;
	--header-bg: rgba(247, 242, 232, 0.88);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	margin: 0;
	font-family: "Poppins", "Segoe UI", sans-serif;
	color: var(--text-main);
	background:
		radial-gradient(circle at 12% 20%, rgba(185, 138, 61, 0.22), transparent 42%),
		radial-gradient(circle at 88% 0%, rgba(31, 26, 22, 0.16), transparent 34%),
		linear-gradient(145deg, var(--bg-cream), var(--bg-warm));
	line-height: 1.6;
	overflow-x: clip;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.skip-link {
	position: absolute;
	left: 10px;
	top: -40px;
	background: var(--bg-deep);
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	z-index: 300;
}

.skip-link:focus {
	top: 10px;
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 5vw;
	backdrop-filter: blur(10px);
	background: var(--header-bg);
	border-bottom: 1px solid rgba(185, 138, 61, 0.3);
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.brand-name {
	font-size: 1.15rem;
	letter-spacing: 0.04em;
	font-weight: 600;
	color: var(--bg-deep);
}

.nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.nav a {
	position: relative;
	font-weight: 500;
	color: var(--text-main);
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.22s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
	width: 100%;
}

.theme-toggle {
	padding: 9px 14px;
	border-radius: 999px;
	font: inherit;
	font-weight: 600;
	background: transparent;
	color: var(--text-main);
	border: 1px solid rgba(31, 26, 22, 0.35);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
	transform: translateY(-2px);
	background: rgba(31, 26, 22, 0.06);
}

main {
	width: min(1180px, 92vw);
	margin: 24px auto 0;
}

.section {
	margin: 42px 0;
	padding: 34px;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.72));
	border: 1px solid rgba(185, 138, 61, 0.28);
	box-shadow: var(--shadow-soft);
	content-visibility: auto;
	contain-intrinsic-size: 1px 680px;
}

.section-title {
	margin: 0 0 10px;
	font-size: clamp(1.55rem, 2vw, 2.2rem);
	line-height: 1.2;
}

.section-subtitle {
	margin: 0 0 22px;
	color: var(--text-soft);
}

.hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: center;
	overflow: hidden;
}

.hero-text h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin: 0 0 14px;
	line-height: 1.05;
}

.eyebrow {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.74rem;
	margin-bottom: 12px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0 16px;
}

.btn-primary,
.btn-secondary,
.main-whatsapp,
.search-container button,
.newsletter-form button,
.whatsapp-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: 0;
	cursor: pointer;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.search-container button,
.newsletter-form button,
.main-whatsapp,
.whatsapp-btn {
	background: linear-gradient(135deg, var(--gold), var(--gold-soft));
	color: #1f1a16;
	box-shadow: 0 10px 20px rgba(185, 138, 61, 0.24);
}

.btn-secondary {
	border: 1px solid rgba(31, 26, 22, 0.4);
	padding: 10px 18px;
	background: transparent;
	color: var(--bg-deep);
}

.btn-primary,
.main-whatsapp {
	padding: 12px 20px;
}

.search-container button,
.newsletter-form button,
.whatsapp-btn {
	padding: 10px 16px;
}

.product-actions .whatsapp-btn {
	flex: 1;
}

.btn-primary:hover,
.btn-secondary:hover,
.main-whatsapp:hover,
.search-container button:hover,
.newsletter-form button:hover,
.whatsapp-btn:hover {
	transform: translateY(-2px);
}

.hero-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero-highlights li {
	background: #fff;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 0.85rem;
	border: 1px solid rgba(185, 138, 61, 0.32);
}

.hero-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
	background: #120e0b;
}

.hero-image img,
.hero-image video {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}

.featured-grid,
.collection-grid,
.about-grid,
.testimonial-grid {
	display: grid;
	gap: 16px;
}

.about-grid,
.testimonial-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.collection-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

#collections {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
		radial-gradient(circle at top left, rgba(185, 138, 61, 0.14), transparent 28%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.14), transparent 24%);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 54px rgba(53, 40, 28, 0.12);
}

#collections .collection-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 32px rgba(31, 26, 22, 0.08);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

#collections .collection-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 40px rgba(31, 26, 22, 0.12);
	border-color: rgba(185, 138, 61, 0.24);
}

#collections .collection-icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.28);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
	font-size: 1.7rem;
	margin-bottom: 14px;
}

#collections .collection-card h3 {
	margin-bottom: 8px;
	color: var(--bg-deep);
}

#collections .collection-card p {
	margin: 0;
	color: rgba(47, 40, 34, 0.72);
	line-height: 1.55;
}

#catalogue {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12)),
		radial-gradient(circle at top left, rgba(185, 138, 61, 0.12), transparent 24%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 28%);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 54px rgba(53, 40, 28, 0.12);
}

#catalogue .search-container input,
#catalogue .sort-wrap select,
#catalogue .filter-chip,
#catalogue .price-filter {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
	border-color: rgba(255, 255, 255, 0.28);
}

#catalogue .product-card,
#catalogue .no-results-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
	border-color: rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 36px rgba(31, 26, 22, 0.08);
}

#about {
	position: relative;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%),
		radial-gradient(circle at left center, rgba(185, 138, 61, 0.1), transparent 26%);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 54px rgba(53, 40, 28, 0.1);
}

#about .about-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
	border-color: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 34px rgba(31, 26, 22, 0.08);
	text-align: left;
}

#about .about-icon {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.26);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
	font-size: 1.35rem;
	margin-bottom: 14px;
}

#testimonials {
	position: relative;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
		radial-gradient(circle at top left, rgba(215, 162, 147, 0.16), transparent 28%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.14), transparent 24%);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 54px rgba(53, 40, 28, 0.1);
}

#testimonials .testimonial-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
	border-color: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 34px rgba(31, 26, 22, 0.08);
	position: relative;
}

#testimonials .testimonial-card::before {
	content: "\201C";
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 3rem;
	line-height: 1;
	color: rgba(185, 138, 61, 0.24);
}

#faq {
	position: relative;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
		radial-gradient(circle at top right, rgba(185, 138, 61, 0.14), transparent 26%),
		radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.14), transparent 24%);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 54px rgba(53, 40, 28, 0.1);
}

#faq .faq-list details {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
	border-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(12px);
	box-shadow: 0 12px 24px rgba(31, 26, 22, 0.06);
}

#order {
	position: relative;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(185, 138, 61, 0.14)),
		radial-gradient(circle at top left, rgba(185, 138, 61, 0.18), transparent 24%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.14), transparent 28%);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.26);
	box-shadow: 0 24px 58px rgba(53, 40, 28, 0.14);
}

#order .main-whatsapp {
	box-shadow: 0 14px 28px rgba(185, 138, 61, 0.28);
}

#newsletter {
	position: relative;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 24%),
		radial-gradient(circle at bottom right, rgba(185, 138, 61, 0.12), transparent 26%);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 54px rgba(53, 40, 28, 0.1);
}

#newsletter .newsletter-form {
	padding: 18px;
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(12px);
	box-shadow: 0 14px 26px rgba(31, 26, 22, 0.06);
}

#newsletter .newsletter-form input {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.32);
}

#featured {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.12)),
		radial-gradient(circle at top right, rgba(185, 138, 61, 0.18), transparent 34%),
		radial-gradient(circle at left center, rgba(255, 255, 255, 0.18), transparent 26%);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.32);
	box-shadow: 0 24px 60px rgba(53, 40, 28, 0.14);
	padding-bottom: 42px;
}

#featured::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(247, 242, 232, 0.86), transparent 14%, transparent 86%, rgba(247, 242, 232, 0.86));
	pointer-events: none;
	z-index: 1;
}

#featured .section-title,
#featured .section-subtitle,
#featured .marquee-container {
	position: relative;
	z-index: 2;
}

#featured .section-title {
	max-width: 12ch;
	font-size: clamp(1.9rem, 2.7vw, 3rem);
	letter-spacing: -0.03em;
	margin-bottom: 14px;
}

#featured .section-subtitle {
	max-width: 56ch;
	font-size: 0.98rem;
	color: rgba(47, 40, 34, 0.76);
	margin-bottom: 26px;
}

.carousel-container {
	overflow: hidden;
	width: 100%;
}

.marquee-container {
	overflow-x: auto;
	width: 100%;
	padding: 8px 0;
	-webkit-overflow-scrolling: touch;
}

.marquee-track {
	display: flex;
	gap: 16px;
	width: max-content;
	flex-wrap: nowrap;
	overflow: visible;
	padding: 0;
}

.carousel-track::-webkit-scrollbar {
	height: 4px;
}

.carousel-track::-webkit-scrollbar-track {
	background: rgba(185, 138, 61, 0.1);
	border-radius: 2px;
}

.carousel-track::-webkit-scrollbar-thumb {
	background: rgba(185, 138, 61, 0.4);
	border-radius: 2px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
	background: rgba(185, 138, 61, 0.6);
}

.carousel-track .featured-card {
	flex: 0 0 min(100%, 280px);
	scroll-snap-align: center;
}

.marquee-track .featured-card {
	flex: 0 0 280px;
	scroll-snap-align: unset;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
	border: 1px solid rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 34px rgba(31, 26, 22, 0.1);
	padding: 14px;
}

.collection-card,
.about-card,
.testimonial-card,
.featured-card,
.product-card,
.faq-list details {
	border: 1px solid rgba(185, 138, 61, 0.28);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.75);
}

.collection-card,
.about-card,
.testimonial-card,
.featured-card {
	padding: 18px;
}

.collection-card h3,
.about-card h3,
.testimonial-card,
.featured-card h3 {
	margin: 0 0 8px;
}

.collection-icon,
.about-icon {
	font-size: 2.2rem;
	margin-bottom: 10px;
	display: inline-block;
}

.testimonial-rating {
	font-size: 1.1rem;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.testimonial-card cite {
	display: block;
	margin-top: 12px;
	font-style: normal;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--gold);
}

.featured-card img {
	width: 100%;
	height: 220px;
	border-radius: 10px;
	object-fit: cover;
	margin-bottom: 12px;
}

#featured .featured-card h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
	color: var(--bg-deep);
}

#featured .featured-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(47, 40, 34, 0.72);
}

#featured .featured-card img {
	height: 250px;
	border-radius: 14px;
	box-shadow: 0 14px 24px rgba(31, 26, 22, 0.12);
}

.search-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.catalogue-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.price-filter {
	display: grid;
	gap: 6px;
	min-width: 220px;
}

.price-values {
	display: flex;
	justify-content: space-between;
	font-size: 0.84rem;
	color: var(--text-soft);
}

.price-sliders {
	display: grid;
	gap: 6px;
}

.price-filter label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-soft);
}

.price-filter input[type="range"] {
	width: 100%;
	accent-color: var(--gold);
	cursor: pointer;
}

.filter-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.filter-chip {
	padding: 8px 12px;
	border: 1px solid rgba(31, 26, 22, 0.22);
	border-radius: 999px;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.84);
	color: var(--text-main);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover {
	transform: translateY(-1px);
}

.filter-chip.is-active {
	background: linear-gradient(135deg, var(--gold), var(--gold-soft));
	border-color: transparent;
	color: #1f1a16;
}

.sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-soft);
}

.sort-wrap label {
	font-weight: 600;
	font-size: 0.9rem;
}

.sort-wrap select {
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(31, 26, 22, 0.25);
	background: rgba(255, 255, 255, 0.92);
	font: inherit;
	color: var(--text-main);
}

.catalogue-count {
	margin: 0 0 14px;
	font-size: 0.92rem;
	color: var(--text-soft);
}

.search-container input,
.newsletter-form input {
	flex: 1;
	min-width: 220px;
	padding: 12px 14px;
	border: 1px solid rgba(31, 26, 22, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	font: inherit;
}

.search-container input:focus,
.newsletter-form input:focus {
	outline: 2px solid rgba(185, 138, 61, 0.4);
	outline-offset: 1px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.product-card {
	position: relative;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	display: flex;
	flex-direction: column;
}

.product-image-wrap {
	position: relative;
	overflow: hidden;
	margin: -1px -1px 0 -1px;
	margin-bottom: 0;
}

.product-image-wrap img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.category-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--gold);
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	transition: transform 0.2s ease;
}

.product-card:hover .category-badge {
	transform: translateY(-2px);
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-strong);
}

.perfume-bottle {
	transform-origin: center bottom;
	filter: saturate(1.03);
}

.product-card::before,
.featured-card::before {
	content: "";
	position: absolute;
	inset: -120% auto auto -45%;
	width: 50%;
	height: 280%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
	transform: rotate(10deg);
	opacity: 0;
	pointer-events: none;
}

.product-card:hover::before,
.featured-card:hover::before {
	animation: perfumeShimmer 0.9s ease;
}

.product-info {
	padding: 14px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-info h3 {
	margin: 0 0 4px;
	font-size: 1rem;
}

.price {
	margin: 0 0 6px;
	font-weight: 700;
	color: var(--gold);
	font-size: 1.1rem;
}

.notes,
.wear {
	margin: 4px 0;
	font-size: 0.85rem;
	color: var(--text-soft);
	line-height: 1.4;
}

.product-actions {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.quick-view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid rgba(31, 26, 22, 0.24);
	background: rgba(255, 255, 255, 0.72);
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-main);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
	flex: 1;
}

.quick-view-btn:hover {
	transform: translateY(-1px);
	background: var(--bg-panel);
}

.no-results-card {
	margin-top: 16px;
	padding: 18px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(185, 138, 61, 0.34);
	background: linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(243, 230, 206, 0.72));
	box-shadow: var(--shadow-soft);
	animation: riseIn 0.34s ease;
}

.no-results-card h3 {
	margin: 0 0 6px;
}

.no-results-card p {
	margin: 0 0 10px;
	color: var(--text-soft);
}

.quick-view-modal {
	position: fixed;
	inset: 0;
	z-index: 600;
	display: grid;
	place-items: center;
	padding: 18px;
}

.quick-view-modal[hidden],
.no-results-card[hidden] {
	display: none !important;
}

.card-hidden {
	display: none !important;
}

.quick-view-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.quick-view-panel {
	position: relative;
	width: min(860px, 100%);
	max-height: 90vh;
	overflow-y: auto;
	padding: 18px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(185, 138, 61, 0.34);
	background: linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(246, 234, 213, 0.98));
	box-shadow: var(--shadow-strong);
	animation: modalIn 0.24s ease;
}

.quick-view-close {
	display: inline-flex;
	margin-left: auto;
	margin-bottom: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(31, 26, 22, 0.22);
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.8);
	cursor: pointer;
}

.quick-view-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: start;
}

.quick-view-grid img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.image-loading::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.08);
	pointer-events: none;
}

.image-loading img {
	opacity: 0;
	transition: opacity 0.35s ease;
}

.image-loading.image-loaded::after {
	opacity: 0;
	animation: none;
}

.image-loading.image-loaded img {
	opacity: 1;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-list details {
	padding: 12px 14px;
}

.faq-list summary {
	cursor: pointer;
	font-weight: 600;
}

.faq-list p {
	margin: 10px 0 0;
	color: var(--text-soft);
}

.order-section {
	background:
		linear-gradient(135deg, rgba(185, 138, 61, 0.24), rgba(255, 250, 242, 0.95)),
		rgba(255, 250, 242, 0.95);
}

.order-steps {
	margin: 0 0 16px;
	padding-left: 20px;
}

.newsletter-form {
	display: grid;
	gap: 10px;
	max-width: 580px;
}

.newsletter-status {
	margin: 0;
	color: var(--success);
	font-weight: 600;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.footer {
	margin-top: 50px;
	background: var(--bg-deep);
	color: #f8ecda;
}

.footer-content {
	width: min(1180px, 92vw);
	margin: 0 auto;
	padding: 26px 0;
}

.footer p {
	margin: 7px 0;
}

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

body.theme-dark {
	--bg-cream: #1a1511;
	--bg-warm: #251d15;
	--bg-deep: #f6e7d2;
	--bg-panel: #2a2118;
	--text-main: #f0dfc8;
	--text-soft: #cebca3;
	--gold: #dbb06f;
	--gold-soft: #edc486;
	--line: #4a3928;
	--success: #96d0ab;
	--header-bg: rgba(26, 21, 17, 0.86);
	--shadow-soft: 0 12px 26px rgba(0, 0, 0, 0.33);
	--shadow-strong: 0 18px 38px rgba(0, 0, 0, 0.45);
	background:
		radial-gradient(circle at 14% 12%, rgba(219, 176, 111, 0.2), transparent 38%),
		radial-gradient(circle at 84% 0%, rgba(255, 233, 198, 0.1), transparent 35%),
		linear-gradient(150deg, #130f0c, #261d15);
}

body.theme-dark .section {
	background: linear-gradient(180deg, rgba(42, 33, 24, 0.95), rgba(42, 33, 24, 0.78));
	border-color: rgba(219, 176, 111, 0.22);
}

body.theme-dark #featured {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		radial-gradient(circle at top right, rgba(219, 176, 111, 0.18), transparent 34%),
		radial-gradient(circle at left center, rgba(255, 255, 255, 0.06), transparent 26%);
	border-color: rgba(219, 176, 111, 0.22);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

body.theme-dark #featured::before {
	background: linear-gradient(90deg, rgba(19, 15, 12, 0.94), transparent 14%, transparent 86%, rgba(19, 15, 12, 0.94));
}

body.theme-dark #featured .section-subtitle,
body.theme-dark #featured .featured-card p {
	color: rgba(240, 223, 200, 0.72);
}

body.theme-dark .marquee-track .featured-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.2);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

body.theme-dark #collections {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top left, rgba(219, 176, 111, 0.16), transparent 28%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 24%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

body.theme-dark #collections .collection-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

body.theme-dark #collections .collection-card:hover {
	border-color: rgba(219, 176, 111, 0.32);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.26);
}

body.theme-dark #collections .collection-icon {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.theme-dark #collections .collection-card p {
	color: rgba(240, 223, 200, 0.72);
}

body.theme-dark #catalogue {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top left, rgba(219, 176, 111, 0.14), transparent 24%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

body.theme-dark #catalogue .search-container input,
body.theme-dark #catalogue .sort-wrap select,
body.theme-dark #catalogue .filter-chip,
body.theme-dark #catalogue .price-filter,
body.theme-dark #catalogue .product-card,
body.theme-dark #catalogue .no-results-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.2);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

body.theme-dark #about {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 24%),
		radial-gradient(circle at left center, rgba(219, 176, 111, 0.12), transparent 26%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

body.theme-dark #about .about-card,
body.theme-dark #about .about-icon {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

body.theme-dark #testimonials {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top left, rgba(215, 162, 147, 0.12), transparent 28%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 24%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

body.theme-dark #testimonials .testimonial-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

body.theme-dark #testimonials .testimonial-card::before {
	color: rgba(219, 176, 111, 0.18);
}

body.theme-dark #faq {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top right, rgba(219, 176, 111, 0.12), transparent 26%),
		radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.04), transparent 24%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

body.theme-dark #faq .faq-list details {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

body.theme-dark #order {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(219, 176, 111, 0.08)),
		radial-gradient(circle at top left, rgba(219, 176, 111, 0.16), transparent 24%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

body.theme-dark #newsletter {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
		radial-gradient(circle at bottom right, rgba(219, 176, 111, 0.12), transparent 26%);
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

body.theme-dark #newsletter .newsletter-form,
body.theme-dark #newsletter .newsletter-form input {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border-color: rgba(219, 176, 111, 0.18);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

body.theme-dark .collection-card,
body.theme-dark .about-card,
body.theme-dark .testimonial-card,
body.theme-dark .featured-card,
body.theme-dark .product-card,
body.theme-dark .faq-list details,
body.theme-dark .hero-highlights li,
body.theme-dark .search-container input,
body.theme-dark .newsletter-form input,
body.theme-dark .sort-wrap select,
body.theme-dark .filter-chip,
body.theme-dark .no-results-card,
body.theme-dark .quick-view-panel,
body.theme-dark .quick-view-btn,
body.theme-dark .quick-view-close {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(219, 176, 111, 0.24);
	color: var(--text-main);
}

body.theme-dark .btn-secondary,
body.theme-dark .theme-toggle {
	border-color: rgba(240, 223, 200, 0.38);
	color: var(--text-main);
}

body.theme-dark .theme-toggle:hover {
	background: rgba(255, 255, 255, 0.08);
}

body.theme-dark .carousel-nav {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(219, 176, 111, 0.3);
	color: var(--text-main);
}

body.theme-dark .carousel-nav:hover {
	background: linear-gradient(135deg, var(--gold), var(--gold-soft));
	border-color: transparent;
	color: #1f1a16;
}

body.theme-dark .carousel-dot {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(219, 176, 111, 0.28);
}

body.theme-dark .carousel-dot:hover {
	background: var(--gold-soft);
}

body.theme-dark .carousel-dot.active {
	background: var(--gold);
}

body.theme-dark .footer {
	background: #0f0b08;
	color: #e8d8c1;
}

@keyframes perfumeShimmer {
	0% {
		opacity: 0;
		left: -48%;
	}
	10% {
		opacity: 0.85;
	}
	100% {
		opacity: 0;
		left: 132%;
	}
}

@keyframes riseIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes modalIn {
	from {
		opacity: 0;
		transform: scale(0.97) translateY(8px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes logoSpin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@media (max-width: 920px) {
	.header {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.hero {
		grid-template-columns: 1fr;
	}

	.hero-image img,
	.hero-image video {
		min-height: 280px;
	}
}

@media (max-width: 600px) {
	.section {
		padding: 22px;
		margin: 28px 0;
	}

	.hero-text h1 {
		font-size: 1.9rem;
	}

	#featured {
		padding-bottom: 28px;
	}

	#featured .section-title,
	#featured .section-subtitle {
		max-width: none;
	}

	#featured .featured-card img {
		height: 220px;
	}

	.nav {
		gap: 12px;
	}

	.theme-toggle {
		width: 100%;
	}

	.price-filter,
	.sort-wrap {
		width: 100%;
	}

	.sort-wrap select {
		width: 100%;
	}

	.quick-view-grid {
		grid-template-columns: 1fr;
	}

	.quick-view-grid img {
		height: 240px;
	}

	.carousel-nav {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.carousel-track .featured-card {
		flex: 0 0 min(100%, calc(100vw - 100px));
	}

	.search-container button,
	.search-container input,
	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
	}
}

.preload-splash {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--bg-cream), var(--bg-warm));
	pointer-events: none;
}

.preload-logo {
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
	animation: logoSpin 1.8s linear infinite;
}

.preload-text {
	font-size: 0.9rem;
	color: var(--text-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
}

.preload-splash.hidden {
	animation: fadeOutUp 0.45s ease forwards;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
