/* Ensure all product images in the product grid are the same size */
/*.product-grid img {*/
/*	width: 200px;*/
/*	height: 200px;*/
/*	object-fit: cover;*/
/*	display: block;*/
/*	margin: 0 auto;*/
/*	border-radius: 12px;*/
/*	background: var(--surface-alt);*/
/*}*/



.carousel {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	justify-content: center;
}
.carousel-images {
	position: relative;
	width: 120px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.carousel-image {
	width: 120px;
	height: 90px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	background: var(--surface-alt);
	position: absolute;
	left: 0; top: 0;
	transition: opacity 0.2s;
}
.carousel-arrow {
	background: var(--accent);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 1.2rem;
	color: var(--text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.carousel-arrow:hover {
	background: var(--accent-dark);
}
.carousel-indicators {
	display: flex;
	gap: 4px;
	margin-top: 4px;
	justify-content: center;
}
.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #e5d8c8;
	cursor: pointer;
	padding: 0;
}
.carousel-dot.active {
	background: var(--accent);
	box-shadow: 0 0 0 2px var(--accent-dark);
}
* {
	box-sizing: border-box;
}

:root {
	--page-bg: #f0ffff;
	--surface: #fffaf0;
	--surface-alt: #fdf5e6;
	--text: #4f4a45;
	--muted: #7a736d;
	--accent: #faebd7;
	--accent-dark: #ffe4e1;
	--shadow: 0 18px 45px rgba(120, 120, 130, 0.14);
}

body {
	margin: 0;
	padding: 0 20px 48px;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.6;
	color: var(--text);
	background: var(--page-bg);
}

nav {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding-top: 20px;
}

nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

nav li {
	position: relative;
}

.menu-button,
.dropbtn {
	box-sizing: border-box;
	display: inline-block;
	padding: 10px 18px;
	font: inherit;
	line-height: normal;
	border-radius: 999px;
	color: var(--text);
	background: rgba(248, 248, 255, 0.96);
	border: 1px solid rgba(250, 235, 215, 0.85);
	cursor: pointer;
	appearance: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-button:hover,
.menu-button:focus-visible,
.dropbtn:hover,
.dropbtn:focus-visible,
.dropdown:hover .dropbtn {
	color: #4f4a45;
	background: var(--accent);
	transform: translateY(-1px);
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	padding: 8px;
	border-radius: 12px;
	background-color: var(--surface);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.dropdown-content li {
	width: 100%;
}

.dropdown-link {
	color: #111111;
	display: block;
	width: 100%;
	padding: 14px 16px;
	border-radius: 8px;
	background: transparent;
	border: none;
	text-align: left;
	font: inherit;
	cursor: pointer;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
	background-color: var(--accent);
	color: #111111;
	transform: none;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
	display: block;
}

.dropdown.is-open .dropdown-content {
	display: block;
}

.dropdown.is-open .dropbtn {
	background: var(--accent);
	color: #4f4a45;
}

h1,
h2,
p,
.gallery {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

h1 {
	margin-top: 0;
	margin-bottom: 16px;
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 1.1;
}

h2 {
	margin-top: 36px;
	margin-bottom: 10px;
	font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

p {
	margin-top: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.card-category {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 24px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.card-category img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--surface-alt);
}

.card-category h3,
.card-category p {
	padding-left: 20px;
	padding-right: 20px;
}

.card-category h3 {
	margin: 20px 0 10px;
	font-size: 1.35rem;
}

.card-category p {
	margin-bottom: 24px;
}

@media (max-width: 900px) {
	.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		padding-left: 16px;
		padding-right: 16px;
	}

	nav ul {
		gap: 10px;
	}

	.dropdown {
		width: 100%;
	}

	.menu-button,
	.dropbtn {
		width: 100%;
		text-align: center;
	}

	.dropdown-content {
		position: static;
		display: none;
		min-width: 10%;
		margin-top: 8px;
		padding: 8px;
	}

	.dropdown:hover .dropdown-content,
	.dropdown:focus-within .dropdown-content {
		display: none;
	}

	.dropdown.is-open .dropdown-content {
		display: block;
	}

	.gallery {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}



.footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}


.about-image {
	width: 100%;
	max-width: 800px;
	height: auto;
	display: block;
	margin: 40px auto 0;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.contact-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 12px 0 0;
}

.contact-intro {
	margin-bottom: 24px;
}

.contact-card {
	padding: 28px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(253, 245, 230, 0.98));
	box-shadow: var(--shadow);
	border: 1px solid rgba(250, 235, 215, 0.9);
}

.contact-card h2 {
	margin-top: 0;
	margin-bottom: 18px;
}

.contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid rgba(122, 115, 109, 0.16);
}

.contact-list li:first-child {
	padding-top: 0;
	border-top: none;
}

.contact-label {
	font-weight: 700;
	color: var(--text);
}

.contact-list a {
	color: #6b4f3b;
	text-decoration: none;
	font-weight: 600;
}

.contact-list a:hover,
.contact-list a:focus-visible {
	text-decoration: underline;
}

.contact-note {
	margin-top: 24px;
	margin-bottom: 0;
}

.products-page {
	max-width: 1200px;
	margin: 0 auto;
}

.products-heading {
	margin-bottom: 28px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.product-card-db {
	overflow: hidden;
	border-radius: 24px;
	background: var(--surface);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}

.product-image-link {
	display: block;
}

.product-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	padding: 12px;
	background: var(--surface-alt);
}

.product-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.product-content h2,
.product-content p {
	margin: 0;
	max-width: none;
}

.product-meta {
	font-size: 0.95rem;
	color: var(--muted);
}

.product-more-info {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(248, 248, 255, 0.96);
	border: 1px solid rgba(250, 235, 215, 0.85);
	color: var(--text);
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-more-info:hover,
.product-more-info:focus-visible {
	background: var(--accent);
	transform: translateY(-1px);
}

.popup-open {
	overflow: hidden;
}

.product-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.product-popup[hidden] {
	display: none;
}

.product-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(79, 74, 69, 0.45);
}

.product-popup-card {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-height: calc(100vh - 48px);
	padding: 28px;
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 24px 60px rgba(79, 74, 69, 0.24);
	overflow-y: auto;
}

.product-popup-image {
	width: 100%;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 18px;
	margin-bottom: 18px;
	background: var(--surface-alt);
}

.product-popup-card h2,
.product-popup-card p {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.product-popup-card h2 {
	margin-top: 0;
	margin-bottom: 12px;
	padding-right: 36px;
}

.product-popup-card p {
	margin-bottom: 0;
	white-space: pre-line;
}

.product-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 999px;
	background: var(--accent);
	color: var(--text);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.product-popup-close:hover,
.product-popup-close:focus-visible {
	background: var(--accent-dark);
}

.product-link {
	align-self: flex-start;
	padding: 10px 18px;
	border-radius: 999px;
	color: var(--text);
	text-decoration: none;
	background: var(--accent);
	border: 1px solid rgba(250, 235, 215, 0.85);
}

.product-link:hover,
.product-link:focus-visible {
	background: var(--accent-dark);
	transform: translateY(-1px);
}

.empty-products,
.redirect-page {
	padding: 28px;
	border-radius: 24px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

@media (max-width: 640px) {
	.contact-card {
		padding: 22px 18px;
	}

	.contact-list li {
		flex-direction: column;
		align-items: flex-start;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}
}


.shop-now-button {
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	max-width: 180px;
	margin: auto auto 24px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--accent);
	color: var(--text);
	font: inherit;
	font-weight: 600;
	line-height: normal;
	appearance: none;
	border: 1px solid rgba(250, 235, 215, 0.85);
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-now-button:hover,
.shop-now-button:focus-visible {
	background: var(--accent-dark);
	transform: translateY(-1px);
}