* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', system-ui, sans-serif;
	background: #fff5f5;
}


/* NAVBAR */
.navbar {
	background: #C89266;
	padding: 1rem 5%;
	/* position: relative; */
	width: 100%;
	/* border-radius: 0 0 25px 25px; */
	z-index: 100;
	transition: all 0.4s ease;
	position: fixed;
	top: 0;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.navbar_logo {
	font-size: 1.8rem;
	color: white;
	text-decoration: none;
	font-weight: 700;
	z-index: 1001;
	font-family: 'Dancing Script', cursive;
}

.navbar_menu {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	transition: all 0.4s ease;
}

.navbar_link {
	position: relative;
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.navbar_link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: white;
	transition: width 0.3s ease;
}

.navbar_link:hover::after {
	width: 100%;
}

.navbar_link.active::after {
	width: 100%;
	background-color: white;
}

.navbar_link {
	text-decoration: none;
	color: white;
	font-weight: 500;
	padding-bottom: 4px;
	transition: opacity 0.3s ease;
}

.navbar_link:hover {
	opacity: 0.8;
}

.navbar_hamburger {
	display: none;
	cursor: pointer;
	z-index: 1001;
}

.navbar_hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px 0;
	background: white;
	transition: all 0.3s ease;
}

.navbar.navbar-transparent {
	opacity: 0.5;
}

/* Sticky stílus */
.navbar_sticky {
	position: fixed;
	top: 0;
	width: 100%;
	opacity: 1 !important;
	/* animation: smoothSticky 0.5s ease; */
	backdrop-filter: blur(10px);
	background: rgba(200, 146, 102, 0.95);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes smoothSticky {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

/* Mobil nézet */
@media (max-width: 768px) {
	.navbar_menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background: rgba(200, 146, 102, 0.98);
		flex-direction: column;
		padding: 6rem 2rem;
		gap: 2rem;
		backdrop-filter: blur(5px);
		transition: right 0.3s ease;
	}

	.navbar_menu.active {
		right: 0;
	}

	.navbar_hamburger {
		display: block;
	}

	.navbar_hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.navbar_hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.navbar_hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}

/* Footer */
.footer {
	background: linear-gradient(160deg, #d8a87d 0%, #c89266 100%);
	color: #fff;
	padding: 4rem 5%;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer:before {
	content: '';
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
	height: 60px;
	background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M0 10 Q 25 5 50 10 T 100 10 L 100 0 L 0 0" fill="%23d8a87d"/></svg>');
}

.footer_top {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.footer_heading {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer_button {
	display: inline-block;
	background: #fff;
	color: #C89266;
	padding: 1.2rem 2.5rem;
	border-radius: 35px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer_button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer_content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	max-width: 1400px;
	margin: 0 auto 3rem;
	position: relative;
	z-index: 1;
}

.footer_section {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	backdrop-filter: blur(5px);
}

.footer_title {
	font-size: 1.6rem;
	margin-bottom: 1.2rem;
	color: #fff9f2;
}

.footer_title i {
	margin-right: 10px;
	font-size: 1.2em;
}

.footer_text {
	line-height: 1.6;
	opacity: 0.9;
}

.footer_subtitle {
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
	color: #fff9f2;
}

.footer_columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.footer_list {
	list-style: none;
	padding: 0;
}

.footer_link {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.5rem;
	border-radius: 8px;
	display: block;
}

.footer_link:hover {
	background: rgba(255, 255, 255, 0.1);
	padding-left: 1rem;
}

.footer_form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer_input {
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	background: transparent;
	color: #fff;
	transition: all 0.3s ease;
}

.footer_input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.footer_input:focus {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

.footer_submit {
	background: #fff;
	color: #C89266;
	border: none;
	padding: 1rem;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 700;
	transition: all 0.3s ease;
}

.footer_submit:hover {
	background: #f8f8f8;
	transform: translateY(-2px);
}

.footer_bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding-top: 2rem;
	text-align: center;
	position: relative;
	z-index: 1;
}

.footer_contacts {
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.footer_info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
}

.footer_copyright {
	opacity: 0.9;
	font-size: 0.9rem;
	margin-top: 1.5rem;
}

.footer_social {
	display: flex;
	gap: 1.2rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.footer_socialLink {
	color: #fff;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_socialLink i {
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.footer_socialLink:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	.footer {
		padding: 3rem 5%;
	}

	.footer_heading {
		font-size: 1.8rem;
	}

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

	.footer_section {
		text-align: center;
	}

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

	.footer_button {
		width: 100%;
		padding: 1rem;
	}

	.footer_info {
		flex: 1 1 100%;
		justify-content: center;
	}

	.footer_social {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.footer:before {
		top: -20px;
		height: 40px;
	}

	.footer_heading {
		font-size: 1.5rem;
	}

	.footer_subtitle {
		font-size: 1.1rem;
	}

	.footer_info {
		font-size: 0.9rem;
	}
}

/* Hero */
.hero {
	/* top: -66px; */
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-image: url('/import/assets/img/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.05);
	z-index: 1;
}

.hero_content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 2;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
	padding: 20px;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero_title {
	font-size: 4.5rem;
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	font-family: 'Dancing Script', serif;
	animation-delay: 0.3s;
}

.hero_subtitle {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	animation-delay: 0.6s;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.hero_button {
	display: inline-block;
	padding: 1.2rem 2.5rem;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	animation-delay: 0.9s;
}

.hero_button:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero_title,
.hero_subtitle,
.hero_button {
	opacity: 0;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-name: fadeInUp;
	animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero_scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollBounce 2s infinite;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.3s ease;
	z-index: 3;
}

@keyframes scrollBounce {

	0%,
	100% {
		transform: translateY(0) translateX(-50%);
		opacity: 0.8;
	}

	50% {
		transform: translateY(-20px) translateX(-50%);
		opacity: 1;
	}
}

.hero_scroll i {
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.hero_scroll:hover {
	opacity: 1;
	transform: translateX(-50%) scale(1.1);
}

@media (max-width: 768px) {
	.hero_title {
		font-size: 3rem;
	}

	.hero_subtitle {
		font-size: 1.2rem;
	}

	.hero_button {
		padding: 1rem 2rem;
	}
}

@media (max-width: 480px) {
	.hero_title {
		font-size: 2.5rem;
	}

	.hero_subtitle {
		font-size: 1rem;
	}

	.hero_scroll i {
		font-size: 1.8rem;
	}
}

/* About us */
.aboutus_section {
	padding: 4rem 2rem;
	background-color: #fffaf7;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: aboutus_fadeIn 1s ease-in;
}

.aboutus_container {
	max-width: 1200px;
	display: flex;
	gap: 3rem;
	align-items: stretch;
	flex-wrap: wrap;
}

.aboutus_text-content {
	flex: 1;
	min-width: 280px;
	animation: aboutus_slideUp 1s ease-out;
	display: flex;
	flex-direction: column;
}

.aboutus_title {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	color: #C89266;
	font-family: 'Dancing Script', serif;
}

.aboutus_intro {
	font-size: 1.3rem;
	font-weight: bold;
	color: #a46c47;
	margin-bottom: 1rem;
}

.aboutus_text {
	font-size: 1.1rem;
	color: #5a3e34;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.aboutus_list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5rem;
}

.aboutus_list li {
	font-size: 1rem;
	color: #4a2e25;
	margin-bottom: 0.6rem;
	display: flex;
	align-items: center;
}

.aboutus_closing {
	font-size: 1.1rem;
	color: #a46c47;
	font-style: italic;
}

.aboutus_image-wrapper {
	flex: 1;
	min-width: 280px;
	max-height: 550px;
	display: flex;
	align-self: stretch;
}

.aboutus_image {
	width: 100%;
	object-fit: cover;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease;
}

.aboutus_image:hover {
	transform: scale(1.03);
}

/* Animációk */
@keyframes aboutus_fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes aboutus_slideUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Mobil optimalizáció */
@media (max-width: 768px) {
	.aboutus_container {
		flex-direction: column;
		text-align: center;
	}

	.aboutus_image-wrapper {
		height: auto;
	}

	.aboutus_image {
		height: auto;
		max-height: 400px;
	}

	.aboutus_title {
		font-size: 2.2rem;
	}

	.aboutus_intro,
	.aboutus_text,
	.aboutus_closing,
	.aboutus_list li {
		font-size: 1rem;
	}
}

/* Featured products */
.featured_section {
	padding: 4rem 2rem;
	background-color: #fff3ea;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.featured_title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #C89266;
	font-family: 'Dancing Script', serif;
}

.featured_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.featured_card {
	background-color: #fff;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 350px;
}

.featured_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.featured_image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
}

.featured_name {
	font-size: 1.3rem;
	color: #C89266;
	margin-bottom: 0.5rem;
}

.featured_desc {
	font-size: 1rem;
	color: #5a3e34;
	margin-bottom: 1.2rem;
}

.featured_button {
	padding: 0.6rem 1.2rem;
	background-color: #C89266;
	color: white;
	border-radius: 999px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 10px rgba(200, 146, 102, 0.4);
}

.featured_button:hover {
	background-color: #a46c47;
	transform: translateY(-2px);
}

/* Blog */
.blog-section {
	padding: 6rem 5%;
	background-color: #fff9f7;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-family: 'Dancing Script', serif;
	font-size: 2.8rem;
	color: #c89266;
	text-align: center;
	margin-bottom: 1rem;
}

.section-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 4rem;
	font-size: 1.2rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.blog-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.blog-content {
	padding: 1.8rem;
}

.blog-content h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #333;
	font-family: 'Playfair Display';
}

.blog-excerpt {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.read-more {
	color: #8d6e63;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
}

.read-more i {
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.read-more:hover {
	color: #c89266;
}

.read-more:hover i {
	transform: translateX(5px);
}

.view-all {
	text-align: center;
	margin-top: 3rem;
}

.view-all-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: #c89266;
	color: white;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #c89266;
}

.view-all-btn:hover {
	background: transparent;
	color: #c89266;
}

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.section-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 480px) {
	.blog-section {
		padding: 4rem 5%;
	}

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

	.blog-image {
		height: 200px;
	}
}

/* Contact */
.contact-cta {
	padding: 6rem 5%;
	background: linear-gradient(135deg, rgba(200, 146, 102, 0.1) 0%, rgba(255, 123, 156, 0.1) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact-title {
	font-size: 2.5rem;
	color: #c89266;
	margin-bottom: 1.5rem;
}

.contact-text {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 3rem;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.button-group {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-button {
	display: inline-block;
	padding: 1.2rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	min-width: 200px;
	text-align: center;
}

.cta-button.primary {
	background: #c89266;
	color: white;
	border: 2px solid #c89266;
}

.cta-button.secondary {
	background: transparent;
	color: #c89266;
	border: 2px solid #c89266;
}

.cta-button.primary:hover {
	background: #c89266;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(200, 146, 102, 0.3);
}

.cta-button.secondary:hover {
	background: rgba(200, 146, 102, 0.1);
	transform: translateY(-3px);
}

/* Dekoratív elemek */
.contact-cta::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ff7b9c" opacity="0.1" d="M30,15 Q50,0 70,15 T90,45 Q100,70 80,85 T50,100 Q20,100 10,80 T0,50 Q5,20 30,15"/></svg>');
	background-size: contain;
	z-index: 1;
}

.contact-cta::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 150px;
	height: 150px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23c89266" opacity="0.1" d="M50,0 Q80,20 85,50 T70,90 Q50,100 30,90 T15,50 Q20,20 50,0"/></svg>');
	background-size: contain;
	z-index: 1;
}

@media (max-width: 768px) {
	.contact-title {
		font-size: 2rem;
	}

	.contact-text {
		font-size: 1rem;
	}

	.cta-button {
		padding: 1rem 2rem;
		min-width: 160px;
	}

	.contact-cta::before,
	.contact-cta::after {
		display: none;
	}
}

/* About page */
.about-page {
	padding: 6rem 5%;
	background-color: #fff3ea;
}

.page-header {
	text-align: center;
	margin-bottom: 4rem;
}

.page-title {
	font-family: 'Dancing Script', serif;
	font-size: 3.5rem;
	color: #c89266;
	margin-bottom: 1rem;
}

.page-subtitle {
	font-size: 1.2rem;
	color: #666;
	font-weight: 300;
}

.story-section {
	max-width: 1200px;
	margin: 0 auto 6rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.story-content {
	position: relative;
}

.story-title {
	font-family: 'Dancing Script', serif;
	font-size: 2.2rem;
	color: #c89266;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.story-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 3px;
	background: #c89266;
}

.story-text {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.highlight-box {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin: 2rem 0;
	border-left: 4px solid #c89266;
}

.gallery-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 4rem;
}

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	aspect-ratio: 1/1;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-10px);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	color: white;
	font-weight: 500;
}

.story-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.story-image img {
	width: 100%;
	height: auto;
	max-height: 650px;
	display: block;
}

.signature {
	font-family: 'Dancing Script', serif;
	font-size: 1.8rem;
	color: #c89266;
	text-align: right;
	font-style: italic;
}

.special-features {
	li {
		list-style-type: none;
	}
}

.mobile-visible {
	display: none;
}

@media (max-width: 1024px) {
	.story-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.mobile-hidden {
		display: none;
	}

	.mobile-visible {
		display: block;
	}

	.story-image {
		width: 100%;
		max-height: 400px;
		margin: 0 auto;

		img {
			object-fit: cover;
			object-position: center;
		}
	}
}

@media (max-width: 768px) {
	.page-title {
		font-size: 2.8rem;
	}

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

@media (max-width: 480px) {
	.page-title {
		font-size: 2.2rem;
	}

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

	.highlight-box {
		padding: 1.5rem;
	}
}

/* Product */
.product_page {
	padding: 6rem 5%;
	max-width: 1800px;
	margin: 0 auto;
}

.product_header {
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
}

.product_title {
	font-family: 'Dancing Script', serif;
	font-size: 4rem;
	color: #c89266;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
}

.product_title:after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #c89266;
}

.product_subtitle {
	font-size: 1.3rem;
	color: #666;
	font-weight: 400;
	max-width: 700px;
	margin: 2rem auto 0;
}

.product_category {
	margin-bottom: 6rem;
	position: relative;
}

.product_category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.product_category-title {
	font-family: 'Dancing Script', serif;
	font-size: 2.5rem;
	color: #c89266;
	position: relative;
	padding-left: 2rem;
}

.product_category-title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 50px;
	background: #c89266;
	border-radius: 10px;
}

.product_category-description {
	flex: 0 0 100%;
	margin-top: 1rem;
	color: #666;
	font-size: 1.1rem;
}

.product_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 3rem;
}

.product_card {
	background: #fffdfb;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
	position: relative;
}

.product_card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.product_image-container {
	height: 350px;
	overflow: hidden;
	position: relative;
}

.product_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.product_card:hover .product_image {
	transform: scale(1.1);
}

.product_badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #a5c1b5;
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 5px 15px rgba(165, 193, 181, 0.3);
}

.product_content {
	padding: 2rem;
	position: relative;
}

.product_name {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #c89266;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.product_card:hover .product_name {
	color: #8d6e63;
}

.product_description {
	color: #666;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.product_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px dashed #c89266;
}

.product_price {
	font-weight: 700;
	color: #c89266;
	font-size: 1.5rem;
}

.product_price small {
	font-size: 1rem;
	font-weight: 400;
	color: #7d8b89;
}

.product_ingredients {
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	background: rgba(250, 250, 250, 0.9);
	padding: 2rem;
	border-radius: 24px 24px 0 0;
	box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
	z-index: 10;
}

.product_card:hover .product_ingredients {
	transform: translateY(90%);
	opacity: 1;
}

.product_ingredients-title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #8d6e63;
}

.product_ingredients-list {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.product_ingredient {
	background: #f0e6e1;
	color: #5a4a42;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	border: 1px solid #e0d5cf;
}

@media (max-width: 1200px) {
	.product_grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}

	.product_image-container {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.product_page {
		padding: 4rem 5%;
	}

	.product_title {
		font-size: 3rem;
	}

	.product_category-title {
		font-size: 2rem;
	}

	.product_grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.product_title {
		font-size: 2.5rem;
	}

	.product_category-title {
		font-size: 1.8rem;
		padding-left: 1.5rem;
	}

	.product_category-title:before {
		height: 40px;
		width: 6px;
	}

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

	.product_image-container {
		height: 250px;
	}
}

/* Reviews */
.testimonials_page {
	padding: 6rem 5%;
	max-width: 1800px;
	margin: 0 auto;
	overflow: hidden;
}

.testimonials_header {
	text-align: center;
}

.testimonials_title {
	font-family: 'Dancing Script', serif;
	font-size: 4rem;
	color: #c89266;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.testimonials_subtitle {
	font-size: 1.3rem;
	color: #7d8b89;
	font-weight: 400;
	max-width: 700px;
	margin: 0 auto;
}

.testimonials_container {
	position: relative;
	padding: 3rem 0;
}

.testimonials_track {
	display: flex;
	gap: 3rem;
	padding: 2rem 0;
	animation: scroll 30s linear infinite;
	width: calc(300px * 8);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-300px * 4));
	}
}

.testimonial_card {
	flex: 0 0 300px;
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.testimonial_card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial_avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	display: block;
	border: 3px solid #e0d5cf;
}

.testimonial_content {
	text-align: center;
}

.testimonial_text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #5a4a42;
}

.testimonial_author {
	font-weight: 700;
	color: #8d6e63;
	margin-bottom: 0.5rem;
}

.testimonial_date {
	font-size: 0.9rem;
	color: #7d8b89;
}

.testimonial_rating {
	color: #ffe3a8;
	margin: 1rem 0;
	font-size: 1.2rem;
}

.testimonials_controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.testimonials_control {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #8d6e63;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.testimonials_control:hover {
	background: #c89266;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.testimonials_title {
		font-size: 3rem;
	}

	.testimonials_subtitle {
		font-size: 1.1rem;
	}

	.testimonial_card {
		flex: 0 0 280px;
	}
}

@media (max-width: 480px) {
	.testimonials_title {
		font-size: 2.5rem;
	}

	.testimonials_track {
		gap: 2rem;
	}

	.testimonial_card {
		flex: 0 0 260px;
		padding: 1.5rem;
	}
}

/* Contact */
.contact_page {
	padding: 6rem 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.contact_header {
	text-align: center;
	margin-bottom: 5rem;
}

.contact_title {
	font-family: 'Dancing Script', serif;
	font-size: 4rem;
	color: #c89266;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.contact_subtitle {
	font-size: 1.3rem;
	color: #7d8b89;
	font-weight: 400;
	max-width: 700px;
	margin: 0 auto;
}

.contact_container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 6rem;
}

.contact_info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact_card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact_card_title {
	font-family: 'Dancing Script', serif;
	font-size: 1.8rem;
	color: #8d6e63;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact_card_title i {
	color: #c89266;
	font-size: 1.5rem;
}

.contact_detail {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	color: #8d6e63;
}

.contact_detail i {
	color: #c89266;
	width: 30px;
	text-align: center;
}

.contact_detail a {
	text-decoration: none;
	color: #c89266;
}

.contact_map {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact_map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.contact_form_container {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 4rem;
}

.form_title {
	font-family: 'Dancing Script', serif;
	font-size: 2rem;
	color: #8d6e63;
	margin-bottom: 2rem;
	text-align: center;
}

.contact_form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.contact_message {
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.contact_message--hidden {
	display: none;
	opacity: 0;
	height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.contact_message--success {
	background-color: #e8f5e9;
	border: 1px solid #a5d6a7;
	color: #2e7d32;
}

.contact_message--error {
	background-color: #ffebee;
	border: 1px solid #ef9a9a;
	color: #c62828;
}

.form_group {
	margin-bottom: 1.5rem;
}

.form_group.full_width {
	grid-column: span 2;
}

.form_label {
	display: block;
	margin-bottom: 0.5rem;
	color: #5a4a42;
	font-weight: 600;
}

.form_input,
.form_textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #e0d5cf;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.form_input:focus,
.form_textarea:focus {
	outline: none;
	border-color: #c89266;
	box-shadow: 0 0 0 3px rgba(165, 193, 181, 0.2);
}

.form_textarea {
	min-height: 150px;
	resize: vertical;
}

.form_submit {
	background: #8d6e63;
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	grid-column: span 2;
	justify-self: center;
	width: 200px;
}

.form_submit:hover {
	background: #c89266;
	transform: translateY(-3px);
}

.newsletter_container {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.newsletter_title {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: #8d6e63;
	margin-bottom: 1rem;
}

.newsletter_text {
	color: #7d8b89;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter_form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter_input {
	flex: 1;
	padding: 1rem;
	border: 1px solid #e0d5cf;
	border-radius: 50px 0 0 50px;
	font-family: 'Montserrat', sans-serif;
}

.newsletter_input:focus {
	outline: none;
	border-color: #a5c1b5;
}

.newsletter_submit {
	background: #8d6e63;
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 0 50px 50px 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter_submit:hover {
	background: #c89266;
}

.newsletter_message {
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.newsletter_message--hidden {
	display: none;
	opacity: 0;
	height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.newsletter_message--success {
	background-color: #e8f5e9;
	border: 1px solid #a5d6a7;
	color: #2e7d32;
}

.newsletter_message--error {
	background-color: #ffebee;
	border: 1px solid #ef9a9a;
	color: #c62828;
}

/* Gomb stílusok */
.newsletter_button_text {
	display: inline-block;
}

.newsletter_button_icon {
	margin-left: 8px;
	transition: opacity 0.3s;
}

.newsletter_button_icon--hidden {
	display: none;
}

.newsletter_spinner {
	margin-left: 8px;
	display: none;
	animation: newsletter_spin 1s linear infinite;
}

.newsletter_spinner--hidden {
	display: none;
}

.newsletter_spinner:not(.newsletter_spinner--hidden) {
	display: inline-block;
}

@keyframes newsletter_spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 1024px) {
	.contact_container {
		grid-template-columns: 1fr;
	}

	.contact_map {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.contact_title {
		font-size: 3rem;
	}

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

	.form_group.full_width {
		grid-column: span 1;
	}

	.form_submit {
		grid-column: span 1;
		width: 100%;
	}

	.newsletter_form {
		flex-direction: column;
	}

	.newsletter_input {
		border-radius: 50px;
		margin-bottom: 1rem;
	}

	.newsletter_submit {
		border-radius: 50px;
	}
}

@media (max-width: 480px) {
	.contact_title {
		font-size: 2.5rem;
	}

	.contact_form_container,
	.newsletter_container {
		padding: 2rem;
	}
}

/* Blog */
.blog_page {
	padding: 6rem 5%;
	max-width: 1800px;
	margin: 0 auto;
}

.blog_header {
	text-align: center;
	margin-bottom: 5rem;
}

.blog_title {
	font-family: 'Dancing Script', serif;
	font-size: 4rem;
	color: #C89266;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.blog_subtitle {
	font-size: 1.3rem;
	color: #7d8b89;
	font-weight: 400;
	max-width: 700px;
	margin: 0 auto;
}

.blog_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 3rem;
	margin-bottom: 4rem;
}

.blog_card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.blog_card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog_image {
	height: 250px;
	overflow: hidden;
}

.blog_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.blog_content {
	padding: 2rem;
}

.blog_category {
	display: inline-block;
	background: #f0e6e1;
	color: #8d6e63;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.blog_card_title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #5a4a42;
}

.blog_excerpt {
	color: #7d8b89;
	margin-bottom: 1.5rem;
}

.blog_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #7d8b89;
	font-size: 0.9rem;
	border-top: 1px solid #e0d5cf;
	padding-top: 1.5rem;
}

.blog_read_more {
	color: #8d6e63;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease;
}

.blog_read_more:hover {
	color: #c89266;
}

.blog_read_more i {
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.blog_read_more:hover i {
	transform: translateX(5px);
}

.blog_pagination {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 4rem;
}

.pagination_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	color: #5a4a42;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.pagination_link:hover,
.pagination_link.active {
	background: #8d6e63;
	color: white;
}

@media (max-width: 768px) {
	.blog_title {
		font-size: 3rem;
	}

	.blog_grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.blog_title {
		font-size: 2.5rem;
	}

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

/* Post */
.post_page {
	padding: 6rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.post_header {
	text-align: center;
	margin-bottom: 4rem;
}

.post_category {
	display: inline-block;
	background: #f0e6e1;
	color: #8d6e63;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.post_title {
	font-family: 'Dancing Script', serif;
	font-size: 3rem;
	color: #5a4a42;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.post_meta {
	color: #7d8b89;
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.post_meta_item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.post_meta_item i {
	color: #a5c1b5;
}

.post_image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 3rem;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.post_content {
	max-width: 800px;
	margin: 0 auto;
}

.post_content p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.post_content h2 {
	font-size: 2rem;
	color: #8d6e63;
	margin: 3rem 0 1.5rem;
}

.post_content h3 {
	font-size: 1.5rem;
	color: #8d6e63;
	margin: 2rem 0 1rem;
}

.post_content ul,
.post_content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.post_content li {
	margin-bottom: 0.5rem;
}

.recipe_box {
	background: white;
	border-radius: 20px;
	padding: 8px 16px;
	margin: 16px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.recipe_title {
	font-size: 1.8rem;
	color: #5a4a42;
	margin-bottom: 1.5rem;
	text-align: center;
}

.recipe_section {
	margin-bottom: 2rem;
}

.recipe_section_title {
	font-size: 1.3rem;
	color: #8d6e63;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.recipe_section_title i {
	color: #a5c1b5;
}

.post_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 3rem 0;
}

.post_tag {
	background: #f0e6e1;
	color: #8d6e63;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.post_tag:hover {
	background: #a5c1b5;
	color: white;
}

.post_navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 5rem;
	border-top: 1px solid #e0d5cf;
	padding-top: 3rem;
}

.post_nav_link {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	color: #8d6e63;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.post_nav_link:hover {
	color: #a5c1b5;
}

.post_nav_link i {
	transition: transform 0.3s ease;
}

.post_nav_link:hover i {
	transform: translateX(-5px);
}

.post_nav_next:hover i {
	transform: translateX(5px);
}

@media (max-width: 768px) {
	.post_title {
		font-size: 2.5rem;
	}

	.post_image {
		height: 350px;
	}

	.post_content {
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.post_page {
		padding: 4rem 5%;
	}

	.post_title {
		font-size: 2rem;
	}

	.post_meta {
		flex-direction: column;
		gap: 0.5rem;
		align-items: center;
	}

	.post_image {
		height: 250px;
	}

	.post_navigation {
		flex-direction: column;
		gap: 1.5rem;
	}
}


.gallery_section {
	background-color: #fffaf7;
	animation: gallery_fadeIn 1s ease-in;
}

.gallery_container {
	padding: 6rem 5%;
	max-width: 1800px;
	margin: 0 auto;
	overflow: hidden;
}

.gallery_title {
	font-family: 'Dancing Script', serif;
	font-size: 4rem;
	color: #c89266;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	text-align: center;
	animation: gallery_slideUp 1s ease-out;
}

.gallery_intro {
	font-size: 1.3rem;
	color: #7d8b89;
	font-weight: 400;
	max-width: 700px;
	margin-bottom: 3rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.gallery_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.gallery_item {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	height: 280px;
	cursor: pointer;
}

.gallery_item:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.gallery_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery_item:hover .gallery_image {
	transform: scale(1.05);
}

.gallery_caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(90, 62, 52, 0.9), transparent);
	color: white;
	padding: 1.5rem 1rem 1rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery_item:hover .gallery_caption {
	transform: translateY(0);
}

.gallery_caption h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	font-family: 'Dancing Script', serif;
}

.gallery_caption p {
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Lightbox stílusok - Frissítve */
.gallery_lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(90, 62, 52, 0.9);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery_lightbox.active {
	display: block;
	opacity: 1;
}

.gallery_lightbox-content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gallery_lightbox-image-container {
	position: relative;
	max-width: 90%;
	max-height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery_lightbox-image {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 0.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery_lightbox-caption {
	width: 100%;
	text-align: center;
	color: #fffaf7;
	padding: 16px 0;
	max-width: 800px;
	margin: 0 auto;
}

.gallery_lightbox-caption h3 {
	font-family: 'Dancing Script', serif;
	font-size: 1.8rem;
	margin-bottom: 0.3rem;
	color: #C89266;
}

.gallery_lightbox-close {
	position: fixed;
	top: 30px;
	right: 30px;
	color: #fffaf7;
	font-size: 2.5rem;
	cursor: pointer;
	transition: color 0.3s;
	background: none;
	border: none;
	padding: 0;
	z-index: 1001;
}

.gallery_lightbox-close:hover {
	color: #C89266;
}

.gallery_lightbox-nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	color: #fffaf7;
	font-size: 3rem;
	cursor: pointer;
	padding: 1rem;
	transition: color 0.3s;
	user-select: none;
	background: none;
	border: none;
	z-index: 1001;
}

.gallery_lightbox-nav:hover {
	color: #C89266;
}

.gallery_lightbox-prev {
	left: 20px;
}

.gallery_lightbox-next {
	right: 20px;
}

/* Lábléc */
.gallery_footer {
	background-color: #5a3e34;
	color: #fffaf7;
	padding: 3rem 2rem;
	text-align: center;
}

.gallery_footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.gallery_footer-column h3 {
	font-family: 'Dancing Script', serif;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #C89266;
}

.gallery_footer-column p,
.gallery_footer-column a {
	color: #fffaf7;
	margin-bottom: 0.8rem;
	display: block;
	text-decoration: none;
}

.gallery_footer-column a:hover {
	color: #C89266;
}

.gallery_social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
}

.gallery_social-links a {
	color: #fffaf7;
	font-size: 1.5rem;
	transition: color 0.3s;
}

.gallery_social-links a:hover {
	color: #C89266;
}

.gallery_copyright {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 250, 247, 0.2);
	font-size: 0.9rem;
}

/* Product Detail - Minimal Style */
.product-detail {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail__container {
	margin-top: 32px;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.product-detail__image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-detail__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.product-detail__content {
    padding: 0 1rem;
}

.product-detail__header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.product-detail__title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #C89266;
    margin-bottom: 0.5rem;
}

.product-detail__price {
    font-size: 1.5rem;
    color: #C89266;
    font-weight: 600;
}

.product-detail__price small {
    font-size: 1rem;
    color: #999;
}

.product-detail__badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1.2rem;
    background: #A5C1B5;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-detail__section {
    margin-bottom: 2.5rem;
}

.product-detail__subtitle {
    font-size: 1.3rem;
    color: #C89266;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.product-detail__description {
    line-height: 1.7;
    color: #666;
    font-size: 1rem;
}

.product-detail__ingredients {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail__ingredient {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.product-detail__ingredient i {
    color: #C89266;
    font-size: 0.5rem;
}

.product-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #C89266;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-detail__back:hover {
    background: #C89266;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .product-detail__container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .product-detail__image {
        height: 500px;
    }
    
    .product-detail__content {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .product-detail {
        padding: 6rem 2rem;
    }
}

/* Animációk */
@keyframes gallery_fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes gallery_slideUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Reszponzív stílusok */
@media (max-width: 768px) {
	.gallery_header-container {
		flex-direction: column;
		gap: 1rem;
	}

	.gallery_nav ul {
		gap: 1.5rem;
	}

	.gallery_title {
		font-size: 2.2rem;
	}

	.gallery_intro {
		font-size: 1.1rem;
	}

	.gallery_lightbox-nav {
		font-size: 2rem;
	}

	.gallery_lightbox-close {
		top: 20px;
		right: 20px;
		font-size: 2rem;
	}
}