/* ===== CSS VARIABLES ===== */
:root {
	/* Colors */
	--primary-color: #584831;
	--accent-color: #957343;
	--background-color: #fff9f3;
	--text-color: #1f2937;
	--muted-color: #9ca3af;
	--white: #ffffff;
	--black: #000000;

	/* Typography */
	--font-heading: "Playfair Display", serif;
	--font-body: "Inter", sans-serif;

	/* Spacing */
	--container-max-width: 1200px;
	--section-padding: 4rem 0;
	--border-radius: 0.75rem;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);

	/* Transitions */
	--transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
	overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover,
a:focus {
	color: var(--accent-color);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ===== UTILITY CLASSES ===== */
.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 1rem;
}

.section {
	padding: var(--section-padding);
}

.section-title {
	text-align: center;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.section-subtitle {
	text-align: center;
	color: var(--muted-color);
	margin-bottom: 3rem;
	font-size: 1.125rem;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 249, 243, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: var(--transition);
	border-bottom: 1px solid rgba(107, 78, 61, 0.1);
}

.header.scrolled {
	background-color: var(--background-color);
	box-shadow: var(--shadow-md);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.nav-logo img {
	height: 40px;
	width: auto;
	padding: 0;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
}

.nav-link {
	font-weight: 500;
	color: var(--text-color);
	padding: 0.5rem 0;
	position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
	color: var(--primary-color);
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	gap: 4px;
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 100%;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--background-color);
		transform: translateX(-100%);
		transition: var(--transition);
		padding: 2rem 1rem;
		box-shadow: var(--shadow-lg);
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-list {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.nav-link {
		font-size: 1.125rem;
		padding: 1rem 0;
		border-bottom: 1px solid rgba(107, 78, 61, 0.1);
	}

	.nav-toggle.active .hamburger-line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active .hamburger-line:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active .hamburger-line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}

/* ===== HERO SECTION ===== */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(148, 99, 47, 0.568),
		rgba(188, 132, 99, 0.6)
	);
	z-index: -1;
}

.hero-content {
	text-align: center;
	color: var(--white);
	max-width: 800px;
	padding: 2rem;
}

.hero-title {
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Page Hero (for other pages) */
.page-hero {
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 40px;
}

.page-hero .hero-content {
	max-width: 600px;
}

/* ===== SIGNATURE DRINKS ===== */
.drinks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.drink-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.drink-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.drink-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.drink-content {
	padding: 1.5rem;
}

.drink-name {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 1; /* Show only 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.drink-description {
	color: var(--muted-color);
	margin-bottom: 1rem;
	font-size: 0.9rem;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* Show only 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.drink-price {
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--primary-color);
}

/* ===== STORY TEASER ===== */
.story-teaser {
	background: var(--white);
}

.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.story-image img {
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
}

@media screen and (max-width: 768px) {
	.story-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* ===== WHY CHOOSE US ===== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.feature-icon {
	margin-bottom: 1rem;
}

.feature-title {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.feature-description {
	color: var(--muted-color);
	font-size: 0.9rem;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.gallery-card {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	display: block;
}

.gallery-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.gallery-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.gallery-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-card:hover .gallery-image-wrapper img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	padding: 2rem 1.5rem 1.5rem;
	transform: translateY(0);
	transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
	background: linear-gradient(transparent, rgba(169, 92, 225, 0.9));
	padding: 2.5rem 1.5rem 2rem;
}

.gallery-content {
	color: var(--white);
}

.gallery-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.gallery-description {
	font-size: 0.9rem;
	opacity: 0.9;
	margin: 0;
	line-height: 1.4;
}

.gallery-cta {
	text-align: center;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.blog-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.blog-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-content {
	padding: 1.5rem;
}

.blog-date {
	color: var(--muted-color);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.blog-title {
	margin: 0.5rem 0 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Show only 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-title a {
	color: var(--primary-color);
	text-decoration: none;
}

.blog-title a:hover {
	color: var(--accent-color);
}

.blog-excerpt {
	color: var(--muted-color);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* Show only 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-link {
	color: var(--primary-color);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
	background: var(--primary-color);
	color: var(--white);
}

.newsletter-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-title {
	color: var(--white);
	margin-bottom: 1rem;
}

.newsletter-description {
	margin-bottom: 2rem;
	opacity: 0.9;
}

.newsletter-form {
	max-width: 400px;
	margin: 0 auto;
}

.form-group {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	flex-direction: column;
}

.newsletter-input {
	flex: 1;
	padding: 0.75rem;
	border: none;
	border-radius: var(--border-radius);
	font-size: 1rem;
}

.newsletter-btn {
	padding: 0.75rem 1.5rem;
	background: var(--accent-color);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}

.newsletter-btn:hover,
.newsletter-btn:focus {
	background: var(--white);
	color: var(--primary-color);
}

.newsletter-consent {
	text-align: left;
	font-size: 0.875rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	margin: 0;
}

.error-message {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.error-message.show {
	display: block;
}

@media screen and (max-width: 768px) {
	.form-group {
		flex-direction: column;
	}

	.newsletter-btn {
		width: 100%;
	}
}

/* ===== CTA BANNER ===== */
.cta-banner {
	background: rgb(249, 244, 255);
	text-align: center;
}

.cta-title {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.cta-description {
	color: var(--muted-color);
	margin-bottom: 2rem;
	font-size: 1.125rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
	background: black;
	color: var(--white);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-title {
	color: var(--white);
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

.footer-address {
	font-style: normal;
	line-height: 1.6;
}

.footer-address a {
	color: var(--white);
	text-decoration: none;
}

.footer-address a:hover {
	color: var(--accent-color);
}

.footer-map-link {
	display: inline-block;
	margin-top: 1rem;
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition);
}

.footer-map-link:hover {
	transform: scale(1.05);
}

.footer-map-thumb {
	width: 150px;
	height: 100px;
	object-fit: cover;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--accent-color);
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--white);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--accent-color);
	transform: translateY(-2px);
}

.footer-logo {
	display: flex;
	justify-content: center;
	margin: 2rem 0;
}

.footer-logo-img {
	background: var(--white);
	padding: 1rem;
	border-radius: var(--border-radius);
	width: auto;
	height: 60px;
	object-fit: contain;
	box-shadow: var(--shadow-md);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
}

.footer-credit {
	margin-top: 0.5rem;
	font-size: 0.875rem;
}

.footer-credit a {
	color: var(--accent-color);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--accent-color);
	transform: translateY(-2px);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
	position: fixed;
	top: 100px;
	right: 2rem;
	background: var(--white);
	color: var(--text-color);
	padding: 1rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	border-left: 4px solid var(--primary-color);
	transform: translateX(400px);
	transition: var(--transition);
	z-index: 1001;
	max-width: 300px;
}

.toast.show {
	transform: translateX(0);
}

.toast.success {
	border-left-color: #10b981;
}

.toast.error {
	border-left-color: #ef4444;
}

.toast-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.toast-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--muted-color);
	padding: 0;
	line-height: 1;
}

.toast-close:hover {
	color: var(--text-color);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	border-top: 1px solid rgba(107, 78, 61, 0.2);
	padding: 1.5rem;
	box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
	z-index: 1002;
	transform: translateY(100%);
	transition: var(--transition);
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: var(--container-max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-content h3 {
	margin: 0 0 0.5rem 0;
	color: var(--primary-color);
	font-size: 1.125rem;
}

.cookie-content p {
	margin: 0;
	color: var(--muted-color);
	font-size: 0.9rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

@media screen and (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.story-full {
	max-width: 800px;
	margin: 0 auto;
}

.timeline {
	background: var(--white);
}

.timeline-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.timeline-container::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--accent-color);
	transform: translateX(-50%);
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 100px 1fr;
	gap: 2rem;
	align-items: center;
	margin-bottom: 3rem;
	position: relative;
}

.timeline-item:nth-child(even) {
	grid-template-areas: "image date content";
}

.timeline-item:nth-child(odd) {
	grid-template-areas: "content date image";
}

.timeline-date {
	grid-area: date;
	background: var(--primary-color);
	color: var(--white);
	padding: 0.5rem;
	border-radius: 50%;
	text-align: center;
	font-weight: 600;
	font-size: 0.875rem;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.timeline-content {
	grid-area: content;
	background: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
}

.timeline-content h3 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.timeline-image {
	grid-area: image;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	width: 100%;
	height: 200px;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.timeline-container::before {
		left: 30px;
	}
	.nav-logo img {
		height: 64px;
		width: auto;
		padding: 10px 0;
	}
	.timeline-item {
		grid-template-columns: 60px 1fr;
		grid-template-areas:
			"date content"
			"date image";
		gap: 1rem;
	}

	.timeline-item:nth-child(even) {
		grid-template-areas:
			"date content"
			"date image";
	}

	.timeline-date {
		margin: 0;
	}
}
.timeline {
	display: none;
}
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.team-member {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.team-photo {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.team-info {
	padding: 1.5rem;
}

.team-name {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.team-role {
	color: var(--accent-color);
	font-weight: 500;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.team-bio {
	color: var(--muted-color);
	font-size: 0.9rem;
	line-height: 1.6;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.value-card {
	text-align: center;
	padding: 2rem;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.value-icon {
	margin-bottom: 1rem;
}

.value-title {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.value-description {
	color: var(--muted-color);
	font-size: 0.9rem;
}

.cta-section {
	background: var(--accent-color);
	color: var(--white);
	text-align: center;
}

.cta-section .cta-title {
	color: var(--white);
}

.cta-section .cta-description {
	color: rgba(255, 255, 255, 0.9);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
	:root {
		--section-padding: 2rem 0;
	}

	.container {
		padding: 0 1rem;
	}

	.hero-buttons,
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}

	/* Footer mobile centering */
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.footer-section {
		text-align: center;
	}

	.footer-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.footer-address {
		text-align: center;
	}
	.footer-logo {
		margin: 1.5rem 0;
	}
	.footer-logo-img {
		height: 50px;
		padding: 0.75rem;
	}

	.footer-map-link {
		display: flex;
		justify-content: center;
		margin: 1rem auto 0;
	}

	.footer-map-thumb {
		margin: 0 auto;
	}

	.social-links {
		justify-content: center;
		margin-top: 1rem;
	}
}

@media screen and (max-width: 480px) {
	.drinks-grid,
	.features-grid,
	.blog-grid,
	.team-grid,
	.values-grid {
		grid-template-columns: 1fr;
	}
	.legal-intro {
		text-align: center;
	}
	.gallery-preview {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.gallery-overlay {
		padding: 1.5rem 1rem 1rem;
	}

	.gallery-title {
		font-size: 1.1rem;
	}

	.gallery-description {
		font-size: 0.85rem;
	}
}

@media screen and (max-width: 640px) {
	.gallery-preview {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
	.hero-image {
		transform: none !important;
	}

	.parallax-element {
		transform: none !important;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	:root {
		--primary-color: #000000;
		--text-color: #000000;
		--background-color: #ffffff;
	}
}

/* Print styles */
@media print {
	.header,
	.footer,
	.back-to-top,
	.cookie-banner,
	.toast {
		display: none !important;
	}

	body {
		background: white !important;
		color: black !important;
	}

	.hero {
		height: auto !important;
		page-break-inside: avoid;
	}
}
#cookie-description {
	color: black !important;
}
.product-content {
	padding: 2rem;
}
