/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2e6872;
	--secondary-color: #3a7a8a;
	--accent-teal: #4a9cad;
	--accent-light-teal: #6bb5c5;
	--accent-warm: #e8a87c;
	--accent-coral: #e27d60;
	--text-dark: #2e6872;
	--text-light: #5a7f8c;
	--white: #ffffff;
	--bg-light: #f5f7f8;
}

html {
	scroll-behavior: smooth;
}

/* Performance: Preload kritische Ressourcen */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", sans-serif;
	font-weight: 300;
	color: var(--text-dark);
	background-color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo img {
	height: 50px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.nav-menu a:hover::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.lang-select {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	padding: 0.6rem 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232c5f6f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
	padding-right: 2.5rem;
}

.lang-select:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border-color: var(--accent-teal);
}

.lang-select:focus {
	border-color: var(--accent-teal);
	box-shadow: 0 8px 30px rgba(74, 156, 173, 0.3);
}

.lang-select option {
	background-color: var(--white);
	color: var(--text-dark);
	padding: 0.5rem;
}

.nav-instagram {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 25px rgba(44, 95, 111, 0.3);
	text-decoration: none;
	color: #fff;
}

.nav-instagram svg {
	fill: var(--white);
}

.nav-instagram:hover {
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 8px 30px rgba(44, 95, 111, 0.4);
}

.nav-cta-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	padding: 0.6rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(44, 95, 111, 0.3);
}

.nav-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(44, 95, 111, 0.3);
	color: var(--white);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(44, 95, 111, 0.1);
	border-radius: 8px;
	width: 45px;
	height: 45px;
	padding: 10px;
	cursor: pointer;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.nav-toggle:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 3px;
	transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 80px;
	position: relative;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-teal) 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

/* Desktop screens */
@media (min-width: 769px) and (max-width: 1920px) {
	.hero {
		background-image: url("bilder/hero-desktop.jpg");
		background-attachment: fixed;
		background-position: 45% 70%;
	}
}

/* Ultrawide screens */
@media (min-width: 1921px) {
	.hero {
		background-image: url("bilder/hero-ultrawide.jpg");
		background-attachment: fixed;
		background-position: center;
	}
}

.hero-content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5% 3rem 5%;
}

.hero-content {
	max-width: 450px;
	text-align: center;
	animation: fadeInUp 1s ease;
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.hero-brand {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 0.5rem;
	color: #8fd3e8;
	text-align: center;
	line-height: 1.2;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
	letter-spacing: 1px;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--white);
	text-align: center;
	line-height: 1.3;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-text {
	font-size: 1.15rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	text-align: center;
	line-height: 1.6;
	font-weight: 400;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.shop-btn {
	display: inline-block;
	background: var(--white);
	color: var(--primary-color);
	padding: 0.9rem 2.5rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
	border: 2px solid var(--white);
}

.shop-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
	background: var(--bg-light);
	color: var(--primary-color);
}

/* Mobile hero actions - hidden by default */
.hero-mobile-actions {
	display: none;
}

/* Nav menu mobile actions - hidden by default on desktop */
.nav-menu-mobile-actions {
	display: none;
}

/* Hero Products Section */
.hero-products {
	position: relative;
	z-index: 2;
	width: 100%;
	background: var(--primary-color);
	padding: 3rem 0;
}

.product-categories {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.category-card {
	background-color: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(44, 95, 111, 0.15);
	transition: all 0.4s ease;
	border: 2px solid var(--bg-light);
	text-decoration: none;
	color: var(--text-dark);
	display: block;
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(44, 95, 111, 0.3);
	border-color: var(--primary-color);
}

.category-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.category-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
	transform: scale(1.1);
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(46, 104, 114, 0.85), rgba(74, 156, 173, 0.85));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
	opacity: 1;
}

.category-cta {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 700;
	padding: 0.8rem 1.5rem;
	border: 2px solid var(--white);
	border-radius: 25px;
	background-color: transparent;
	transition: all 0.3s ease;
}

.category-card:hover .category-cta {
	background-color: var(--white);
	color: var(--primary-color);
}

.category-info {
	padding: 1rem;
	text-align: center;
}

.category-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	transition: color 0.3s ease;
}

.category-card:hover .category-title {
	color: var(--primary-color);
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	animation: fadeIn 0.3s ease;
}

.lightbox.active {
	display: flex;
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 50px;
	color: var(--white);
	font-size: 50px;
	font-weight: 300;
	cursor: pointer;
	transition: transform 0.3s ease;
	z-index: 10000;
}

.lightbox-close:hover {
	transform: scale(1.2);
}

#lightbox-img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* About Section */
.about {
	padding: 5rem 0;
	background-color: var(--white);
}

.about h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--text-dark);
	font-weight: 800;
}

.about-content {
	display: grid;
	gap: 3rem;
	margin-bottom: 3rem;
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.8;
}

.about-text .highlight {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
}

.brand-statement {
	background: linear-gradient(135deg, var(--bg-light), var(--white));
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	border-left: 5px solid var(--primary-color);
}

.brand-statement p {
	font-size: 1.2rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
	font-weight: 500;
}

.tagline {
	font-style: italic;
	color: var(--secondary-color);
	font-weight: 600 !important;
}

.hashtag {
	color: var(--primary-color);
	font-weight: 700 !important;
	font-size: 1.3rem !important;
}

.impact-box {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	padding: 2.5rem 3rem;
	border-radius: 20px;
	margin: 2.5rem auto;
	max-width: 800px;
	box-shadow: 0 10px 40px rgba(44, 95, 111, 0.3);
	text-align: center;
	border: none;
	position: relative;
	overflow: hidden;
}

.impact-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.impact-box h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 800;
	color: var(--white);
	position: relative;
	z-index: 1;
	letter-spacing: 0.5px;
}

.impact-box p {
	font-size: 1.15rem;
	font-weight: 400;
	margin: 0;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	position: relative;
	z-index: 1;
}

.cta-section {
	text-align: center;
}

.shop-btn-secondary {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent-teal), var(--accent-light-teal));
	color: var(--white);
	padding: 1rem 3rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(74, 156, 173, 0.3);
}

.shop-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(74, 156, 173, 0.4);
}

/* Shop Preview Section */
.shop-preview {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.shop-preview h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 800;
}

.shop-preview-text {
	text-align: center;
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 3rem;
}

.iframe-container {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 600px;
	margin: 0 auto 3rem;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(44, 95, 111, 0.2);
	border: 3px solid var(--primary-color);
	background-color: var(--white);
}

.iframe-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.shop-cta {
	text-align: center;
}

/* Partnership Section */
.partnership-section {
	text-align: center;
	width: 100%;
	background: var(--bg-light);
	padding: 2.5rem 3rem;
	border-radius: 20px;
	margin-top: 2rem;
}

.partnership-section h3 {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.partnership-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.partnership-logos img {
	height: 60px;
	width: auto;
	object-fit: contain;
	filter: grayscale(0%);
	transition: all 0.3s ease;
	opacity: 0.9;
}

.partnership-logos img:hover {
	opacity: 1;
	transform: translateY(-5px);
}

/* Footer */
footer {
	background-color: var(--text-dark);
	color: var(--white);
	padding: 3rem 0 2rem;
	text-align: center;
}

.social {
	margin-bottom: 1.5rem;
}

.social a {
	color: var(--white);
	font-size: 1.5rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
	border-radius: 50%;
}

.social a:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(44, 95, 111, 0.4);
}

.footer-links {
	margin-bottom: 1.5rem;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
	margin: 0 1rem;
}

.footer-links a:hover {
	color: var(--accent-light-teal);
	text-decoration: underline;
}

.footer-note {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	margin-top: 1.5rem;
	line-height: 1.6;
}

.footer-note a {
	color: #ffffff;
	text-decoration: underline;
	font-weight: 700;
	transition: color 0.3s ease;
}

.footer-note a:hover {
	color: var(--accent-light-teal);
	text-decoration: underline;
}

.copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.product-categories {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.nav-container {
		padding: 0.8rem 1.5rem;
	}
	.nav-menu {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		flex-direction: column;
		background-color: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		padding: 2rem;
		gap: 1.5rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transform: translateY(-120%);
		opacity: 0;
		transition: all 0.3s ease;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
	}
	.nav-toggle {
		display: flex;
	}

	/* Hide desktop nav actions on mobile */
	.nav-actions {
		display: none;
	}

	/* Show mobile actions in nav menu */
	.nav-menu-mobile-actions {
		display: flex;
		gap: 1rem;
		padding-top: 1rem;
		margin-top: 1rem;
		border-top: 1px solid rgba(46, 104, 114, 0.1);
		align-items: center;
		justify-content: center;
	}

	.hero {
		padding: 4rem 0 2rem;
		background-attachment: scroll;
		background-position: 35% 50%;
		background-size: cover;
	}

	.hero-content-wrapper {
		height: 45vh;
		padding: 2rem 2rem 2rem 2rem;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	/* Hide mobile hero actions */
	.hero-mobile-actions {
		display: none !important;
	}

	.hero-content {
		max-width: 100%;
		text-align: center;
		padding: 1.5rem;
	}
	.hero-brand {
		font-size: 2.2rem;
		text-align: center;
	}

	.hero-subtitle {
		font-size: 1.2rem;
		text-align: center;
	}

	.hero-text {
		font-size: 0.9rem;
		text-align: center;
	}

	.impact-box {
		padding: 2rem;
		margin: 2rem auto;
	}

	.impact-box h3 {
		font-size: 1.5rem;
	}

	.impact-box p {
		font-size: 1rem;
	}

	.partnership-section {
		padding: 2rem;
	}

	.partnership-logos img {
		height: 50px;
	}

	.hero-products {
		padding: 2rem 0;
	}

	.product-categories {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.hero-image-grid {
		height: 500px;
		max-width: 600px;
	}

	.hero-image-large {
		width: 58%;
		height: 65%;
		top: 18%;
		left: 0;
	}

	.hero-image-top {
		width: 48%;
		height: 42%;
		top: 5%;
		right: 0;
	}

	.hero-image-bottom {
		width: 52%;
		height: 38%;
		bottom: 5%;
		right: 3%;
	}

	.lightbox-close {
		top: 20px;
		right: 30px;
		font-size: 40px;
	}

	#lightbox-img {
		max-width: 95%;
		max-height: 95%;
	}

	.iframe-container {
		height: 500px;
		border-radius: 15px;
	}

	.shop-preview h2 {
		font-size: 2rem;
	}

	.shop-preview-text {
		font-size: 1rem;
	}

	.about h2 {
		font-size: 2rem;
	}

	.about-text p {
		font-size: 1rem;
	}

	.brand-statement {
		padding: 1.5rem;
	}

	.brand-statement p {
		font-size: 1rem;
	}
	.footer-note {
		font-size: 0.85rem;
		padding: 0 1rem;
	}

	.partnership-logos {
		gap: 1rem;
	}

	.partnership-logos img {
		height: 40px;
	}
}

@media (max-width: 480px) {
	.nav-container {
		padding: 0.6rem 1rem;
	}

	.nav-logo img {
		height: 40px;
	}

	.lang-select {
		padding: 0.5rem 0.8rem;
		padding-right: 2rem;
		font-size: 0.85rem;
	}

	.nav-instagram {
		width: 40px;
		height: 40px;
	}

	.nav-instagram svg {
		width: 20px;
		height: 20px;
	}

	.nav-toggle {
		width: 40px;
		height: 40px;
		padding: 8px;
		gap: 4px;
	}

	.nav-toggle span {
		height: 2.5px;
	}

	.nav-cta-btn {
		padding: 0.5rem 1rem;
		font-size: 0.85rem;
	}
	.footer-note {
		font-size: 0.8rem;
	}
	.hero {
		background-position: center bottom;
	}
	.hero-content-wrapper {
		height: 40vh;
		padding: 3rem 1.5rem 1.5rem 1.5rem;
	}

	.hero-mobile-actions {
		top: 1.25rem;
		gap: 0.6rem;
	}

	.hero-instagram {
		width: 48px;
		height: 48px;
	}

	.hero-instagram svg {
		width: 22px;
		height: 22px;
	}

	.hero-lang-select {
		padding: 0.6rem 0.9rem;
		padding-right: 2.3rem;
		font-size: 0.88rem;
	}

	.hero-content {
		max-width: 100%;
		padding: 1.2rem 1.5rem;
	}
	.hero-brand {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-text {
		font-size: 0.85rem;
	}

	.shop-btn {
		padding: 0.7rem 1.8rem;
		font-size: 0.9rem;
	}

	.impact-box {
		padding: 1.8rem 1.5rem;
		margin: 1.5rem auto;
	}

	.impact-box h3 {
		font-size: 1.3rem;
	}

	.impact-box p {
		font-size: 0.95rem;
	}

	.partnership-section {
		padding: 1.8rem 1.5rem;
	}

	.partnership-logos {
		gap: 1.5rem;
	}

	.partnership-logos img {
		height: 45px;
	}

	.hero-products {
		padding: 1.5rem 0;
	}

	.product-categories {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.category-title {
		font-size: 1rem;
	}

	.lightbox-close {
		top: 15px;
		right: 20px;
		font-size: 35px;
	}

	.iframe-container {
		height: 400px;
		border-radius: 12px;
	}

	.shop-preview h2 {
		font-size: 1.8rem;
	}
}
