/* ===== OPTIMIZED CSS FOR TRUHLÁŘSTVÍ PETR HOŘEJŠÍ ===== */
/* Only includes styles actually used in templates */

/* ===== CSS VARIABLES ===== */
:root {
	--dark: #101010;
	--light: #ffffff;
	--overlay: rgba(0,0,0,.55);
}

/* ===== RESET & BASE ===== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

html, body {
	height: 100%;
	background: #fff;
	color: var(--light);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	overflow-x: hidden;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero {
	background-attachment: scroll;
	will-change: transform;
}

img {
	max-width: 100%;
	height: auto;
	transition: transform 0.3s ease;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.hero--home,
.hero--about,
.hero--products,
.hero--shop,
.hero--contact {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

/* ===== NAVIGATION ===== */
/* Sidebar Toolbar */
.toolbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 72px;
	height: 100%;
	background: var(--dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 3000;
}

.logo-toolbar {
	display: block;
	width: 54px;
	height: 54px;
	margin-top: 18px;
}

.logo-toolbar img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.icon-btn {
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	color: var(--light);
	transition: opacity .25s;
}

.icon-btn:hover {
	opacity: .7;
}

.icon-btn.lines {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 28px;
}

/* Side Drawer */
.side-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 260px;
	height: 100%;
	background: rgb(16 16 16 / 95%);
	padding: 120px 40px 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
	transform: translateX(-100%);
	transition: transform .35s ease;
	z-index: 4000;
	overflow-y: auto;
}

body.menu-open .side-drawer {
	transform: none;
}

.side-drawer a {
	color: #fff;
	text-decoration: none;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.4;
	transition: opacity .25s;
}

.side-drawer a:hover {
	opacity: .7;
}

/* Top Navigation */
.topnav-smart {
	position: fixed;
	top: 0;
	left: 72px;
	right: 0;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	padding: 0 1rem;
	z-index: 2500;
	background: transparent;
	backdrop-filter: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-100%);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.topnav-smart.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-group {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-link {
	display: inline-block;
	padding: .55rem 1.6rem;
	border-radius: 2rem;
	border: 1px solid rgb(255 255 255 / 38%);
	background: rgb(255 255 255 / 18%);
	backdrop-filter: blur(8px);
	color: var(--light);
	text-decoration: none;
	font-weight: 500;
	transition: background .25s, transform .2s;
}

.nav-link:hover {
	background: rgb(255 255 255 / 28%);
	transform: translateY(-2px);
}

.logo-center {
	display: block;
	width: 96px;
	height: 96px;
}

.logo-center img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Main Content */
main {
	padding-top: 0px;
	padding-left: 72px;
}

/* ===== HERO SECTIONS ===== */
.hero {
	position: relative;
	width: calc(100vw - 72px);
	height: 100vh;
	background: url('/images/wdx.jpg') center/cover no-repeat;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 37%);
}

.hero--products {
	background: url('/images/p1.jpg') center/cover no-repeat;
}

.hero--shop {
	background: url('/images/eshop.jpg') center/cover no-repeat;
}

.hero--shop::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
	z-index: 1;
}

.hero--contact {
	background: url('/images/contact-hero.jpg') center/cover no-repeat;
}

.hero--checkout {
	background: url('/images/about.jpg') center/cover no-repeat;
}

.about-hero {
	width: calc(100vw - 72px);
	height: 70vh;
	background: url('/images/about.jpg') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	color: #fff;
}

.about-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 5%) 60%, rgba(0, 0, 0, .6) 100%);
}

.center-box {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 2;
}

.brand {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.brand h1 {
	font-size: 32px;
	letter-spacing: 4px;
	font-weight: 400;
}

.brand span {
	font-size: 10px;
	letter-spacing: 3px;
	color: #ccc;
}

.headline {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 52px;
	line-height: 1.25;
	max-width: 900px;
	margin-bottom: 4rem;
}

.subtitle {
	font-size: 18px;
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.about-sub {
	z-index: 2;
	max-width: 900px;
	font-size: 18px;
	line-height: 1.9;
	padding: 0 24px;
	color: #e8e8e8;
}

.about-hero h1 {
	z-index: 2;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 60px;
	margin-bottom: 20px;
}

.discover {
	font-size: 12px;
	letter-spacing: 5px;
	color: #fff;
	text-decoration: none;
}

.discover::before {
	content: '';
	display: block;
	width: 1px;
	height: 50px;
	margin: 0 auto 20px;
	background: #fff;
}

.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}

.mouse {
	width: 28px;
	height: 46px;
	border: 2px solid #fff;
	border-radius: 18px;
		display: flex;
	justify-content: center;
	align-items: flex-start;
}

.wheel {
	width: 4px;
	height: 8px;
	background: #fff;
	border-radius: 2px;
	margin-top: 6px;
	animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
	0%, 20% { opacity: 0; transform: translateY(0); }
	40%, 60% { opacity: 1; transform: translateY(8px); }
	80%, 100% { opacity: 0; transform: translateY(14px); }
}

/* ===== MAIN CONTENT SECTIONS ===== */
.about-section {
	position: relative;
	width: calc(100vw - 72px);
	margin: 80px 0 0 72px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 650px;
	background: #fff;
}

.about-section::before,
.about-section::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
}

.about-section::before { left: 33.333%; }
.about-section::after { left: 66.666%; }

.about-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-text {
	padding: 100px 60px 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-text h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 32px;
	color: #111;
}

.about-text p {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 48px;
	max-width: 440px;
}

.btn-read {
	display: inline-block;
	background: #a3835f;
	color: #fff;
	text-decoration: none;
	padding: 15px 38px;
	border-radius: 2px;
	font-size: 13px;
	letter-spacing: 3px;
	font-weight: 500;
	transition: opacity .25s;
}

.btn-read:hover {
	opacity: .85;
}
.custom-section{
	width:calc(100vw - 72px);     /* محاذاة مع القسم أعلاه */
	margin:120px 0 0 72px;        /* بداية من نفس نقطة القسم أعلاه */
	padding:0 0 40px;
	background:#fff;
	text-align:left;              /* محاذاة لليسار لتتطابق مع الصورة أعلاه */
	}
	
	.custom-title{
	font-family:'Playfair Display',serif;
	font-size:46px;font-weight:500;
	line-height:1.3;margin:0 0 60px 0;color:#111;
	text-align:left;                      /* محاذاة لليسار */
	max-width:100%;
	}
	
	/* شبكة البطاقات */
	.custom-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);  /* 4 بطاقات في صف واحد */
	gap:24px;                             /* مسافة بين البطاقات */
	padding:0 0 0 0;                      /* بدء من الحافة اليسرى مباشرة */
	max-width:100%;                       /* عرض كامل */
	margin:0;                             /* بدء من نفس نقطة الصورة أعلاه */
	}
	
	/* البطاقة */
	.custom-card{
	position:relative;
	height:480px;                         /* زيادة الارتفاع من 380px إلى 480px */
	border-radius:10px;                   /* زيادة نصف القطر */
	overflow:hidden;
	background:var(--dark);
	color:#fff;
	display:flex;flex-direction:column;justify-content:flex-end;
	padding:40px;                         /* زيادة الحشو من 32px إلى 40px */
	transition:transform .35s ease;
	}
	.custom-card::before{
	content:'';
	position:absolute;inset:0;
	background:var(--img) center/cover no-repeat;
	filter:brightness(.65);
	transition:filter .35s ease;
	}
	.custom-card h3,
	.custom-card p,
	.custom-card .btn-more{position:relative;z-index:2}
	
	.custom-card h3{
	font-family:'Playfair Display',serif;font-size:32px;margin-bottom:18px;
	}
	.custom-card p{
	font-size:17px;line-height:1.7;margin-bottom:28px;
	}
	.btn-more{
	align-self:flex-start;
	background:#a3835f;color:#fff;text-decoration:none;
	padding:14px 32px;border-radius:4px;font-size:14px;letter-spacing:2px;
	transition:opacity .25s;
	}
	.btn-more:hover{opacity:.85}
	
	/* Hover تأثير */
	.custom-card:hover{
	transform:translateY(-6px);
	}
	.custom-card:hover::before{
	filter:brightness(.9);
	}
	
	/* استجابة للشاشات الصغيرة */
	@media(max-width:768px){
	.custom-title{margin:0 30px 40px;font-size:36px}
	.custom-grid{gap:24px;padding:0 30px}
	.custom-card{height:380px;padding:30px}
	}
	/* تحسين قسم Zakázková výroba */
	.custom-section{
	/* محاذاة مع القسم أعلاه (about-section) */
	margin-left:72px;
	padding:0 0 60px;              /* أسفل أكبر قليلًا */
	width:calc(100vw - 72px);
	text-align:left;               /* محاذاة مع الصورة أعلاه */
	}
	
	/* عنوان أقرب إلى البطاقات */
	.custom-title{
	margin:0 0 50px 0;
	text-align:left;
	max-width:100%;
	}
	
	/* شبكة البطاقات – أعرض */
	.custom-grid{
	padding:0 0 0 0;                      /* بدء من الحافة اليسرى مباشرة */
	gap:24px;                             /* مسافة بين البطاقات */
	grid-template-columns:repeat(4,1fr);  /* 4 بطاقات في صف واحد */
	max-width:100%;                       /* عرض كامل */
	margin:0;                             /* بدء من نفس نقطة الصورة أعلاه */
	}
	
	/* أبعاد البطاقة */
	.custom-card{
	height:480px;                  /* أكبر حجم للبطاقات */
	border-radius:10px;
	padding:40px;                  /* حشو أكبر */
	}
	
	/* تكبير النص داخل البطاقة قليلًا */
	.custom-card h3{font-size:32px;margin-bottom:18px}
	.custom-card p {font-size:17px;margin-bottom:28px}
	
	/* الهوفر يبقى كما هو */
	
	/* استجابة للشاشات المتوسطة – بطاقتان */
	@media (max-width:1100px){
	.custom-grid{
		grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
	}
	}
	
	/* استجابة للهاتف – بطاقة واحدة بكامل العرض */
	@media (max-width:768px){
	.custom-section{margin:80px 0 0 0;padding-bottom:40px;width:100vw;text-align:center}
	.custom-title{margin:0 auto 36px;font-size:34px;text-align:center;padding:0 24px}
	.custom-grid{
		grid-template-columns:1fr;  /* بطاقة واحدة في الصف */
		padding:0 24px;
		gap:24px;
		max-width:400px;
	}
	.custom-card{height:420px;padding:32px}
	}
	/* ===== ضبط شبكة Zakázková výroba ===== */
	
	/* عرض البطاقات في صف واحد مع محاذاة للصورة أعلاه */
	.custom-grid{
	grid-template-columns:repeat(4,1fr);  /* 4 بطاقات في صف واحد */
	gap:24px;                             /* مسافة بين البطاقات */
	padding:0 0 0 0;                      /* بدء من الحافة اليسرى مباشرة */
	max-width:100%;                       /* عرض كامل */
	margin:0;                             /* بدء من نفس نقطة الصورة أعلاه */
	}
	
	.custom-card{
	height:480px;            
	padding:40px;             
	}
	
	/* نصوص أكبر لتتناسب مع البطاقات الأكبر */
	.custom-card h3{font-size:32px;margin-bottom:18px}
	.custom-card p {font-size:17px;margin-bottom:28px}
	
	/* للشاشات الكبيرة جداً - زيادة المساحة الجانبية */
	@media (min-width:1700px){
	.custom-grid{
		padding:0 100px;  /* مساحة مناسبة للشاشات الكبيرة مع البطاقات العريضة */
		max-width:1800px; /* عرض أكبر للشاشات الكبيرة جداً */
	}
	}
	
	/* استجابة للشاشات المتوسطة - صفان من البطاقات */
	@media (max-width:1300px){
	.custom-grid{
		grid-template-columns:repeat(2,1fr);  /* صفان من البطاقات */
		gap:20px;
		padding:0;                            /* بدء من الحافة اليسرى */
		max-width:100%;                       /* عرض كامل */
		margin:0;                             /* بدء من نفس نقطة الصورة أعلاه */
	}
	}
	
.btn-more {
	align-self: flex-start;
	background: #a3835f;
	color: #fff;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 4px;
	font-size: 14px;
	letter-spacing: 2px;
	transition: opacity .25s;
}

.btn-more:hover {
	opacity: .85;
}

.custom-card:hover {
	transform: translateY(-6px);
}

.custom-card:hover::before {
	filter: brightness(.9);
}

/* E-shop Section */
.eshop-section {
	position: relative;
	width: calc(100vw - 72px);
	margin: 140px 0 0 72px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 500px;
}

.eshop-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.eshop-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eshop-text {
	padding: 100px 60px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.eshop-text h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 38px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 28px;
	color: #111;
}

.eshop-text p {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 46px;
	max-width: 460px;
}

.btn-shop {
	align-self: flex-start;
	background: #a3835f;
	color: #fff;
	text-decoration: none;
	padding: 14px 40px;
	border-radius: 2px;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 500;
	transition: opacity .25s;
}

.btn-shop:hover {
	opacity: .85;
}

/* Materials Section */
.materials-section {
	width: calc(100vw - 72px);
	margin-left: 72px;
	padding: 120px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.materials-text {
	max-width: 850px;
	padding: 0 28px;
}

.materials-text h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 44px;
	font-weight: 500;
	margin-bottom: 28px;
	color: #111;
}

.materials-text p {
	max-width: 800px;
	font-size: 17px;
	line-height: 1.9;
	color: #555;
}

.materials-lead {
	font-size: 18px;
	line-height: 1.9;
	margin-bottom: 40px;
	color: #555;
}

.materials-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 34px;
	flex-wrap: wrap;
	justify-content: center;
}

.materials-benefits li {
	font-size: 16px;
	color: #555;
	display: flex;
	align-items: center;
	gap: 10px;
}

.materials-benefits i {
	font-size: 18px;
	color: #a3835f;
}

/* ===== GALLERY SECTIONS ===== */
.gallery-section {
	width: calc(100vw - 72px);
	margin: 120px 0 140px 72px;
	background: #fff;
}

.gallery-title {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 42px;
	font-weight: 500;
	margin: 0 20px 60px;
	color: #111;
		text-align: center;
}

.article-description {
	color: #111 !important;
	text-align: center;
	margin: 0 auto 2.5rem auto;
	max-width: 700px;
	font-size: 1.1rem;
	line-height: 1.7;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
	padding: 0 120px 0 20px;
}

.g-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 8px;
	aspect-ratio: 4 / 3;
}

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

.g-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.25);
	opacity: 0;
	transition: opacity .35s;
}

.g-item:hover img {
	transform: scale(1.08);
}

.g-item:hover::after {
	opacity: 1;
}

.no-images,
.no-content {
	text-align: center;
	padding: 60px 20px;
	color: #666;
}

.no-images h3,
.no-content h3 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 24px;
	margin-bottom: 16px;
	color: #333;
}

.no-images p,
.no-content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.no-content a {
	color: #a3835f;
	text-decoration: underline;
}

.no-content a:hover {
	color: #8b6f47;
}

/* ===== SHOP SECTIONS ===== */
.shop-gallery .gallery-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	padding: 0 120px 0 20px;
	gap: 26px;
}

.prod-card {
	position: relative;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	transition: transform .35s ease;
}

.prod-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--img) center/cover no-repeat;
	filter: brightness(.65);
	transition: filter .35s ease;
}

.prod-card h3,
.prod-card p,
.prod-card a {
	position: relative;
	z-index: 2;
}

.prod-card h3 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 28px;
	margin-bottom: 14px;
}

.prod-card p {
	font-size: 15px;
	margin-bottom: 28px;
	line-height: 1.7;
}

.prod-card:hover {
	transform: translateY(-6px);
}

.prod-card:hover::before {
	filter: brightness(.9);
}

.prod-card.small {
	height: 320px;
}

.prod-card.small h3 {
	font-size: 24px;
	margin-bottom: 12px;
	line-height: 1.3;
}

.prod-card.small p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 0;
	opacity: 0.9;
}

/* Fish Card Style */
.prod-card.fish {
	position: relative;
	aspect-ratio: 1/1.15;
	height: 320px;
	border-radius: 18px;
	overflow: visible;
	box-shadow: 0 6px 32px rgba(0,0,0,0.10);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: #eee;
	transition: transform 0.25s, box-shadow 0.25s;
	margin-bottom: 120px;
	cursor: pointer;
}

.prod-card.fish:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.prod-card.fish::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--img) center/cover no-repeat;
	z-index: 1;
	transition: filter 0.3s;
}

.prod-card.fish::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.10) 100%);
	z-index: 2;
}

.prod-card.fish .fish-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 28px 18px 22px 18px;
	text-align: center;
	color: #fff;
	width: 100%;
}

.prod-card.fish h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5em;
	text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.prod-card.fish p {
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
	text-shadow: 0 1px 6px rgba(0,0,0,0.18);
	opacity: 0.95;
}

.price-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 4;
	background: rgba(163, 131, 95, 0.95);
	color: #fff;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
}

.product-availability {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 4;
}

.availability-badge {
	display: inline-block;
	background: rgba(76, 175, 80, 0.95);
	color: #fff;
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.3);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
}

.availability-badge:hover {
	background: rgba(76, 175, 80, 1);
	transform: scale(1.05);
}

.unavailable-badge {
	background: rgba(231, 76, 60, 0.2);
	color: #e74c3c;
	border: 1px solid rgba(231, 76, 60, 0.3);
}

.product-order {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100px;
	padding: 0 20px;
	z-index: 4;
	text-align: center;
	cursor: auto;
}

.quantity-input {
	display: inline-flex;
	justify-content: center;
	margin-bottom: 10px;
}

.quantity-input label {
	color: #555;
	font-weight: 600;
	margin-right: 6px;
}

.quantity-field {
	width: 80px;
	padding: 6px 8px;
	border: 1px solid rgba(0,0,0,0.3);
	border-radius: 4px;
	background: rgba(255,255,255,0.9);
	color: #333;
	text-align: center;
	font-size: 14px;
}

.unit {
	color: #666;
	font-size: 12px;
	margin-left: 8px;
}

.btn-add-to-cart {
	width: 100%;
	padding: 10px 16px;
	background: #ff6b35;
	color: white;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-add-to-cart:hover {
	background: #e55a2b;
	transform: translateY(-1px);
}

.shop-empty {
	text-align: center;
	padding: 80px 20px;
	color: #666;
}

.shop-empty h3 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 28px;
	margin-bottom: 16px;
	color: #333;
}

.shop-empty p {
	font-size: 16px;
	line-height: 1.6;
	max-width: 500px;
	margin: 0 auto;
}

/* ===== CART STYLES ===== */
.cart-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 10px rgba(0,0,0,0.1);
	z-index: 5000;
	transition: right 0.3s ease;
}

.cart-sidebar.open {
	right: 0;
}

.cart-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close-cart {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}

.cart-content {
	height: calc(100% - 80px);
	display: flex;
	flex-direction: column;
}

.cart-items {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
}

.empty-cart {
	text-align: center;
	color: #666;
	padding: 40px 0;
}

.cart-footer {
	padding: 20px;
	border-top: 1px solid #eee;
}

.cart-total {
	margin-bottom: 15px;
	font-size: 18px;
}

.cart-actions {
	display: flex;
	gap: 10px;
}

.btn-clear,
.btn-checkout {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	transition: background 0.3s ease;
}

.btn-clear {
	background: #e74c3c;
	color: white;
}

.btn-checkout {
	background: #ff6b35;
	color: white;
	flex: 1;
}

.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 4000;
	display: none;
}

.cart-overlay.show {
	display: block;
}

.cart-icon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 56px;
	height: 56px;
	background: #ff6b35;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
}

.cart-icon:hover {
	background: #e55a2b;
	transform: translateY(-2px);
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #e74c3c;
	color: white;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	border: 2px solid white;
}

/* ===== CHECKOUT STYLES ===== */
.checkout-section {
	padding: 60px 0;
	background: #f8f9fa;
	min-height: 80vh;
}

.checkout-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 40px;
	align-items: start;
}

.order-summary {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	position: sticky;
	top: 20px;
}

.order-items {
	margin-bottom: 25px;
}

.order-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.order-item:last-child {
	border-bottom: none;
}

.item-image {
	width: 60px;
	height: 50px;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0;
	flex-shrink: 0;
}

.item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-details {
	flex: 1;
	min-width: 0;
}

.item-details h4 {
	font-size: 1rem;
	color: #333;
	margin-bottom: 5px;
}

.item-quantity,
.item-price {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

.item-total {
	font-weight: 600;
	color: #2c5aa0;
	white-space: nowrap;
}

.order-total {
	padding: 20px 0;
	border-top: 2px solid #2c5aa0;
}

.total-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.total-row.total-final {
	border-bottom: none;
	font-size: 1.2rem;
	font-weight: 700;
	color: #a3835f;
	margin-top: 10px;
	padding-top: 20px;
	border-top: 2px solid #a3835f;
}

.checkout-form {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.form-group-wide {
	grid-column: span 2;
}

.form-group label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.form-input {
	padding: 12px 16px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: #2c5aa0;
	box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-error {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 5px;
	font-weight: 500;
}

.payment-info {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.payment-info h3 {
	color: #2c5aa0;
	margin-bottom: 15px;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.payment-method {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 2px solid #a3835f;
}

.payment-method i {
	font-size: 1.5rem;
	color: #2c5aa0;
}

.payment-method strong {
	display: block;
	color: #a3835f;
	margin-bottom: 5px;
}

.payment-method p {
	margin: 0;
	font-size: 0.9rem;
	color: #666;
}

.form-actions {
	margin-top: 30px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.btn-back,
.btn-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-back {
	background: #6c757d;
	color: white;
}

.btn-back:hover {
	background: #5a6268;
}

.btn-submit {
	background: #ff6b35;
	color: white;
	font-size: 1.1rem;
}

.btn-submit:hover {
	background: #e55a2b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* ===== CONTACT STYLES ===== */
.contact-info {
	width: calc(100vw - 72px);
	margin-left: 72px;
	padding: 110px 0;
	background: #fff;
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 40px;
}

.contact-data {
	padding: 0 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-data h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 24px;
	color: #111;
}

.contact-data ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 2;
}

.contact-data li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #555;
}

.contact-data a {
	color: inherit;
	text-decoration: none;
}

.contact-data a:hover {
	text-decoration: underline;
}

.contact-data i {
	color: #a3835f;
}

.contact-map iframe {
	width: 100%;
	height: 380px;
	border: 0;
	border-left: 1px solid #eee;
}

.contact-section {
	width: calc(100vw - 72px);
	margin: 140px 0 120px 72px;
	padding: 0 0 60px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.contact-title {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 24px;
	color: #111;
}

.contact-lead {
	margin: 0 0 52px;
	max-width: 600px;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

.contact-form {
	max-width: 820px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
	font-size: 15px;
	resize: vertical;
	background: rgb(255 255 255 / 65%);
	backdrop-filter: blur(6px);
	transition: border-color .25s, box-shadow .25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #a3835f;
	box-shadow: 0 0 0 3px rgb(163 131 95 / 25%);
}

.btn-send {
	align-self: flex-start;
	background: #a3835f;
	color: #fff;
	padding: 14px 46px;
	border: none;
	border-radius: 2px;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 500;
	cursor: pointer;
	transition: opacity .25s;
}

.btn-send:hover {
	opacity: .85;
}

/* ===== FLASH MESSAGES ===== */
.flash-messages-container {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	pointer-events: none;
	width: 100%;
	max-width: 600px;
	padding: 0 20px;
}

.flash-message {
	pointer-events: auto;
  position: relative;
	padding: 20px 24px 20px 60px;
	margin: 15px auto;
	max-width: 600px;
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	animation: flashSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.flash-message::before {
  content: '';
  position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(45deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
}

.flash-message::after {
  content: '';
  position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
}

.flash-message.success {
	background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
	border-color: rgba(0, 184, 148, 0.3);
}

.flash-message.success::after {
	content: '\f00c';
	background: rgba(255,255,255,0.2);
}

.flash-message.error {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	border-color: rgba(231, 76, 60, 0.3);
}

.flash-message.error::after {
	content: '\f00d';
	background: rgba(255,255,255,0.2);
}

.close-btn {
    position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	color: rgba(255,255,255,0.7);
	font-size: 20px;
	cursor: pointer;
	padding: 4px;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.close-btn:hover {
	background: rgba(255,255,255,0.2);
	color: rgba(255,255,255,1);
	transform: scale(1.1);
}

.progress-bar {
    position: absolute;
	bottom: 0;
    left: 0;
	height: 3px;
	background: rgba(255,255,255,0.3);
	border-radius: 0 0 12px 12px;
	animation: progressShrink 5s linear forwards;
}

@keyframes flashSlideIn {
	from {
		opacity: 0;
		transform: translateY(-30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes progressShrink {
	from { width: 100%; }
	to { width: 0%; }
}

/* ===== FOOTER ===== */
.site-footer {
	width: calc(100vw - 72px);
	margin-left: 72px;
	background: #0d0d0d;
	color: #d4d4d4;
	font-size: 15px;
	line-height: 1.8;
	padding: 80px 72px 40px;
	border-top: 4px solid #a3835f;
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	gap: 48px;
	align-items: flex-start;
}

.footer-logo {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 16px;
}

.footer-tag {
	max-width: 360px;
}

.footer-contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	margin-bottom: 18px;
}

.footer-contact a {
	color: #d4d4d4;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color .25s, border-color .25s;
}

.footer-contact a:hover {
	color: #a3835f;
	border-color: #a3835f;
}

.footer-social {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.footer-social a {
	text-decoration: none !important;
	border-bottom: none !important;
}

.social-heading {
	font-weight: 600;
	color: #fff;
	font-size: 16px;
	margin-bottom: 8px;
}

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

.social-btn {
	width: 44px;
	height: 44px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #d4d4d4;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.social-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s;
}

.social-btn:hover::before {
	left: 100%;
}

.social-btn:hover {
	background: #a3835f;
	border-color: #a3835f;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(163, 131, 95, 0.3);
}

.social-btn:focus {
	outline: 2px solid #a3835f;
	outline-offset: 2px;
}

.footer-copy {
	text-align: center;
	margin-top: 60px;
	font-size: 13px;
	color: #777;
}

/* ===== COOKIE CONSENT SYSTEM ===== */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 6000;
	background: rgba(16, 16, 16, 0.98);
	backdrop-filter: blur(20px);
	border-top: 3px solid #a3835f;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.hidden {
	transform: translateY(100%);
	pointer-events: none;
}

.cookie-consent.active {
	transform: translateY(0);
	animation: slideUpIn 0.6s ease-out forwards;
}

@keyframes slideUpIn {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 28px 32px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
}

.cookie-title {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px 0;
	letter-spacing: 0.5px;
}

.cookie-description {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	max-width: 800px;
}

.cookie-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.cookie-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.cookie-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s;
}

.cookie-btn:hover::before {
	left: 100%;
}

.cookie-btn.accept {
	background: linear-gradient(135deg, #a3835f 0%, #8b6f47 100%);
	color: #fff;
	box-shadow: 0 4px 16px rgba(163, 131, 95, 0.3);
}

.cookie-btn.accept:hover {
	background: linear-gradient(135deg, #8b6f47 0%, #73593b 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(163, 131, 95, 0.4);
}

.cookie-btn.reject {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.cookie-btn.reject:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.cookie-btn.preferences {
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(163, 131, 95, 0.5);
}

.cookie-btn.preferences:hover {
	background: rgba(163, 131, 95, 0.1);
	color: #fff;
	border-color: #a3835f;
	transform: translateY(-1px);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	z-index: 7000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show {
	opacity: 1;
	visibility: visible;
}

.cookie-modal-content {
	background: #fff;
	border-radius: 16px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show .cookie-modal-content {
	transform: scale(1) translateY(0);
}

.cookie-modal-header {
	padding: 32px 32px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	margin-bottom: 24px;
}

.cookie-modal-header h3 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.btn-close {
	width: 40px;
	height: 40px;
	border: none;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	position: relative;
}

.btn-close::before,
.btn-close::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 2px;
	background: #666;
	border-radius: 1px;
}

.btn-close::before {
	transform: rotate(45deg);
}

.btn-close::after {
	transform: rotate(-45deg);
}

.btn-close:hover {
	background: rgba(0, 0, 0, 0.1);
	transform: scale(1.1);
}

.cookie-modal-content > p {
	padding: 0 32px;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 32px;
}

.cookie-options {
	padding: 0 32px;
	margin-bottom: 32px;
}

.cookie-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	background: #f8f9fa;
	border-radius: 12px;
	margin-bottom: 16px;
	border: 2px solid transparent;
	transition: all 0.2s ease;
}

.cookie-option:hover {
	border-color: rgba(163, 131, 95, 0.2);
	background: #f5f6f7;
}

.cookie-option span {
	font-weight: 600;
	color: #333;
	font-size: 16px;
}

.cookie-option input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: #a3835f;
}

.cookie-option input[type="checkbox"]:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.cookie-more-info {
	padding: 0 32px;
	margin-bottom: 32px;
	font-size: 14px;
	color: #666;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px 32px;
	margin: 0 32px 32px;
}

.cookie-more-info a {
	color: #a3835f;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.cookie-more-info a:hover {
	border-color: #a3835f;
}

.cookie-modal-footer {
	padding: 24px 32px 32px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-end;
	border-top: 1px solid #eee;
}

.cookie-modal-footer .cookie-btn {
	min-width: 120px;
	justify-content: center;
}

.cookie-btn.save {
	background: linear-gradient(135deg, #a3835f 0%, #8b6f47 100%);
	color: #fff;
	box-shadow: 0 4px 16px rgba(163, 131, 95, 0.3);
}

.cookie-btn.save:hover {
	background: linear-gradient(135deg, #8b6f47 0%, #73593b 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(163, 131, 95, 0.4);
}

/* ===== RESPONSIVE COOKIE DESIGN ===== */
@media (max-width: 992px) {
	.cookie-content {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: left;
	}
	
	.cookie-actions {
		justify-content: flex-start;
	}
	
	.cookie-modal-content {
		margin: 20px;
		max-width: calc(100% - 40px);
	}
	
	.cookie-modal-header,
	.cookie-modal-content > p,
	.cookie-options,
	.cookie-more-info,
	.cookie-modal-footer {
		padding-left: 24px;
		padding-right: 24px;
	}
	
	.cookie-more-info {
		margin-left: 24px;
		margin-right: 24px;
	}
}

@media (max-width: 768px) {
	.cookie-content {
		padding: 24px 20px;
	}
	
	.cookie-title {
		font-size: 20px;
	}
	
	.cookie-description {
		font-size: 14px;
	}
	
	.cookie-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.cookie-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}
	
	.cookie-modal-header h3 {
		font-size: 22px;
	}
	
	.cookie-modal-header,
	.cookie-modal-content > p,
	.cookie-options,
	.cookie-more-info,
	.cookie-modal-footer {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.cookie-more-info {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.cookie-modal-footer {
		flex-direction: column;
	}
	
	.cookie-modal-footer .cookie-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.cookie-content {
		padding: 20px 16px;
	}
	
	.cookie-title {
		font-size: 18px;
		margin-bottom: 8px;
	}
	
	.cookie-description {
		font-size: 13px;
		line-height: 1.5;
	}
	
	.cookie-modal-content {
		border-radius: 12px;
	}
	
	.cookie-modal-header,
	.cookie-modal-content > p,
	.cookie-options,
	.cookie-more-info,
	.cookie-modal-footer {
		padding-left: 16px;
		padding-right: 16px;
	}
	
	.cookie-more-info {
		margin-left: 16px;
		margin-right: 16px;
		padding: 16px;
		font-size: 13px;
	}
	
	.cookie-option {
		padding: 16px 20px;
	}
	
	.cookie-option span {
		font-size: 15px;
	}
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
.cookie-btn:focus,
.btn-close:focus,
.cookie-option input:focus {
	outline: 2px solid #a3835f;
	outline-offset: 2px;
}

.cookie-consent[aria-hidden="true"] {
	display: none;
}

.cookie-modal[aria-hidden="true"] {
	display: none;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
	.cookie-consent,
	.cookie-modal,
	.cookie-modal-content,
	.cookie-btn {
		transition: none;
		animation: none;
	}
	
	.cookie-btn::before {
		display: none;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.cookie-consent {
		background: #000;
		border-top-color: #fff;
	}
	
	.cookie-title,
	.cookie-description {
		color: #fff;
	}
	
	.cookie-btn.accept {
		background: #fff;
		color: #000;
		border: 2px solid #000;
	}
	
	.cookie-btn.reject,
	.cookie-btn.preferences {
		background: #000;
		color: #fff;
		border: 2px solid #fff;
	}
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-philosophy,
.produce-section,
.materials-showcase,
.craftsmanship-section {
	width: calc(100vw - 72px);
	margin: 120px 0 140px 72px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #fff;
	height: 580px;
	align-items: center;
}

.produce-img,
.materials-img,
.craftsmanship-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.produce-img img,
.materials-img img,
.craftsmanship-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.headline { font-size: 38px; }
	.topnav-smart { gap: 1.2rem; padding: 0 0.5rem; }
	.nav-link { padding: .5rem 1.1rem; font-size: .9rem; }
	
	.about-hero {
		width: 100vw;
		margin-left: 0;
		height: 55vh;
		padding: 0 16px;
	}
	.about-hero h1 { font-size: 44px; }
	
	.about-section,
	.about-philosophy,
	.produce-section,
	.materials-showcase,
	.craftsmanship-section,
	.eshop-section {
		display: block;
		width: 100vw;
		margin: 100px 0 120px 0;
	}
	
	.about-text,
	.eshop-text {
		padding: 60px 40px;
	}
	
	.custom-section {
		margin: 80px 0 0 0;
		width: 100vw;
	text-align: center;
}
	.custom-title {
		margin: 0 auto 36px;
		font-size: 34px;
		padding: 0 24px;
	}
	.custom-grid {
		grid-template-columns: 1fr;
		padding: 0 24px;
		gap: 24px;
	}
	
	.materials-section {
		width: 100vw;
		margin-left: 0;
		padding: 90px 24px;
	}
	
	.gallery-section {
		width: 100vw;
		margin: 100px 0 120px 0;
	}
	.gallery-grid {
		padding: 0 24px;
		gap: 18px;
	}
	
	.shop-gallery .gallery-grid {
		padding: 0 24px;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
	
	.contact-info {
		grid-template-columns: 1fr;
		width: 100vw;
		margin-left: 0;
	}
	.contact-data { padding: 0 40px 40px; }
	
	.contact-section {
		width: 100vw;
		margin-left: 0;
		padding: 80px 0;
	}
	
	.checkout-container {
		grid-template-columns: 1fr;
	}
	
	.site-footer {
		width: 100vw;
		margin-left: 0;
		padding: 70px 40px 36px;
	}
	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	
	.flash-messages-container {
		padding: 0 10px;
	}
	.flash-message {
		padding: 18px 20px 18px 55px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.topnav-smart { display: none !important; }
	
	.footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.hero-content {
		padding: 1rem;
		max-width: 98%;
	}
	
	.hero-title {
		font-size: 1.8rem;
		margin-bottom: 0.8rem;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	}
	
	.hero-subtitle {
		font-size: 0.9rem;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	}
	}

/* ===== RESPONSIVE DESIGN ===== */
/* --- 1. Large Laptops (max-width: 1200px) --- */
@media (max-width: 1200px) {
	.custom-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		padding: 0 40px;
	}
	.gallery-grid {
		padding: 0 40px;
	}
	.about-text,
	.eshop-text,
	.materials-text,
	.contact-data {
		padding: 80px 40px;
	}
	.footer-inner {
		grid-template-columns: 2fr 1fr;
	}
}

/* --- 2. Tablets (max-width: 992px) --- */
@media (max-width: 992px) {
	.topnav-smart {
		display: none !important;
	}

	.about-philosophy,
	.materials-showcase {
		display: flex;
		flex-direction: column;
	}

	.about-philosophy .about-text,
	.materials-showcase .about-text {
		order: -1;
	}

	.about-section,
	.eshop-section,
	.contact-info,
	.produce-section,
	.materials-showcase,
	.craftsmanship-section,
	.about-philosophy {
		grid-template-columns: 1fr;
		height: auto;
	}
    .eshop-section .eshop-img {
        order: 1;
    }
	.about-section,
	.custom-section,
	.eshop-section,
	.contact-section,
	.gallery-section,
	.materials-section,
	.contact-info,
	.site-footer,
	.about-philosophy,
	.produce-section,
	.materials-showcase,
	.craftsmanship-section {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 60px;
		margin-bottom: 60px;
		height: auto;
	}
    .hero, .about-hero {
        width: 100%;
        margin-left: 0;
    }
	.hero {
		height: 80vh;
	}
	.headline { font-size: 40px; }
	.custom-title,
	.gallery-title,
	.about-text h2,
	.materials-text h2 {
		font-size: 38px;
	}
	.site-footer {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* --- 3. Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
	main {
		padding-left: 0;
		padding-top: 60px; 
	}
	
	.hero-content {
		padding: 1.5rem;
		max-width: 95%;
	}
	
	.hero-title {
		font-size: 2.2rem;
		margin-bottom: 1rem;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	}
	
	.hero-subtitle {
		font-size: 1rem;
		max-width: 100%;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	}
	.toolbar {
		width: 100%;
		height: 60px;
		flex-direction: row;
		justify-content: space-between;
		padding: 0 20px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	}
	.logo-toolbar {
		height: 40px;
		width: auto;
		margin-top: 0;
	}
	.icon-btn.lines {
		position: static;
		transform: none;
	}
	.about-section,
	.custom-section,
	.eshop-section,
	.contact-section,
	.gallery-section,
	.materials-section,
	.contact-info,
	.site-footer,
	.about-philosophy,
	.produce-section,
	.materials-showcase,
	.craftsmanship-section {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 60px;
		margin-bottom: 60px;
		height: auto;
	}
    .hero, .about-hero {
        width: 100%;
        margin-left: 0;
    }
	.hero {
		height: 80vh;
	}
	.headline { font-size: 32px; }
	.custom-title,
	.gallery-title,
	.about-text h2,
	.materials-text h2 {
		font-size: 30px;
		margin: 0 0 40px 0;
		padding: 0 20px;
	}
	.about-text,
	.eshop-text,
	.materials-text,
	.contact-data {
		padding: 40px 20px;
	}
	.custom-grid,
	.gallery-grid {
		padding: 0 20px;
	}
	.footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-social {
		align-items: center;
		margin: 0 auto;
	}
	.contact-form .form-row,
	.checkout-form .form-row {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 0;
	}
	.contact-form {
		padding: 0 20px;
	}
}
/* --- UNIFIED HERO COMPONENT STYLES --- */
.hero-overlay {
	position: absolute;
	inset: 0;
 	z-index: 1;
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
	padding: 2rem;
	color: var(--light);
	max-width: 900px;
	width: 100%;
}

.hero-title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
	text-align: center;
}

.hero-subtitle {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0.95;
	text-align: center;
}

/* New Why Us Section */
.why-us-section {
	width: calc(100vw - 72px);
	margin-left: 72px;
	padding: 28px 0;
	text-align: center;
	background: #fff;
}

.why-us-section h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 42px;
	font-weight: 500;
	margin-bottom: 24px;
	color: #111;
}

.why-us-section p {
	max-width: 800px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 2.2;
	color: #555;
}

.craftsmanship-section {
	width: 100%;
	margin-left: 0;
	margin-top: 60px;
	margin-bottom: 60px;
	height: auto;
}

.why-us-section {
	width: 100%;
	margin-left: 0;
	padding-left: 20px;
	padding-right: 20px;
}
