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

body {
	font-family: Arial, sans-serif;
	scroll-behavior: smooth;
	overflow: hidden;

	/* overflow-y: auto; */
	touch-action: auto;
	-webkit-overflow-scrolling: touch;

	overscroll-behavior: none;
	touch-action: manipulation;

}

section {
	height: 100vh;
	/* padding: 20px; */

	/* min-height: 100svh; */
	padding: 2rem 1rem;
	box-sizing: border-box;

	min-height: 100vh;
	scroll-snap-align: start; /* Optional: better scroll control */
	overflow: hidden;         /* Optional: prevent internal scroll */
}


.categories .i {
	display: none;
}


.logo-container {
	position: fixed;
	left: 80px; /* Align to the left */
	top: 20px; /* Same top spacing as the navbar */
	z-index: 100; /* Ensure it appears above other elements */
	padding: 10px; /* Optional: Add some padding around the logo */
}

.logo {
	height: 50px;
}

.scroll-down {
	position: absolute;
	bottom: 20px; /* Place it near the bottom of the section */
	left: 50%;
	animation: bounce-down 1.5s infinite; /* Bouncing animation */
	cursor: pointer; /* Indicate clickability */
	font-size: 2rem; /* Adjust icon size */
	color: #ffffff; /* Icon color */
	z-index: 9999; /* Ensure it's above other content */
	cursor: pointer;
}

@keyframes bounce-down {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(10px);
	}
	60% {
		transform: translateY(5px);
	}
}

.scroll-down:hover {
	color: #c49719; /* Slightly darker color on hover */
}



.scroll-up {
	position: absolute;
	left: 50%;
	top: 20px; /* Place it near the bottom of the section */
	animation: bounce-up 1.5s infinite; /* Bouncing animation */
	cursor: pointer; /* Indicate clickability */
	font-size: 2rem; /* Adjust icon size */
	color: #ffffff; /* Icon color */
	z-index: 9999; /* Ensure it's above other content */
}

@keyframes bounce-up {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.scroll-up:hover {
	color: #c49719; /* Slightly darker color on hover */
}


/* Vertical Scroll Layout */
.vertical-scroll-container {
	display: block;
	height: 100vh;
	overflow-y: scroll;
	scroll-snap-type: y mandatory; /* Ensures smooth vertical scrolling */
}

.vertical-scroll-container section {
	height: 100vh; /* Full height for each section */
	scroll-snap-align: start; /* Snaps each section to the start */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	background-color: lightgrey; /* Background color for visibility */
}


.language-selector {
	display: flex;
	justify-content: center; /* Center-align the flags horizontally */
	gap: 10px; /* Space between flags */
	position: fixed;

	right: 80px;
	top: 10px; /* Distance from the top */
	z-index: 100; /* Ensure it appears above other elements */
	padding: 10px; /* Padding for better appearance */
	border-radius: 10px 0 0 10px; /* Rounded corners on the left */
}

.language-selector img {
	width: 20px; /* Adjust flag size */
	height: 20px;
	cursor: pointer; /* Indicate clickability */
	transition: transform 0.2s;

	border-radius: 50%; /* Makes the image circular */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Optional: Add a subtle shadow */
}

.language-selector img:hover {
	transform: scale(1.2); /* Slight zoom effect on hover */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Enhance shadow on hover */
}




.navbar {
	height: fit-content;
	color: white;
	display: flex;
	justify-content: space-between; /* Important */
	align-items: center;
	z-index: 100;
	flex-direction: column;
	position: fixed;
	right: 0;
	top: 50px;
	bottom: 0;
}

.navbar a {
	color: white;
	text-decoration: none;
	padding: 15px 20px;
	/* border-bottom: 1px solid #444; */
	border-right: 2px solid #444;
	position: relative;
	transition: background 0.3s;
	text-align: right;
	right: 50px;
}

.navbar a.active::after {
	content: '\00354';
	font-size: 5rem;
	position: absolute;
	right: -20px;
	top: -20%;
	transform: translateY(-50%);
	color: #c49719;
}


/* Hide burger icon by default */
.burger {
	display: none;
	font-size: 2rem;
	cursor: pointer;
	margin-bottom: 10px;
	color: white;
}

/* Hide nav links in mobile by default */
.nav-links {
	display: flex;
	flex-direction: column;
}

.mobile-language-selector {
	display: none;
}






/* General Section Styling */
section {
	justify-content: center;
	align-items: center;
}

/* Horizontal Container */
.horizontal-container {
	display: flex;
	flex-direction: row;
	overflow-x: hidden;
	width: 300vw;
	height: 100vh;
}

.horizontal-container section {
	flex: none;
	width: 100vw;
	height: 100vh;
}


@media (max-width: 768px) {

	.scroll-down {
		bottom: 50px;
	}


	.navbar {
		width: 100%;
		max-width: 100vw;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 10px 25px;
		display: flex;
		z-index: 100;
	}

	.logo-container {
		left: 5%;
		flex: 1;
	}

	.logo-container img {
		width: 150px;
		height: auto; /* preserves aspect ratio */
		object-fit: contain; /* just in case */
	}

	.language-selector {
		display: none; /* optional: hide on mobile */
	}

	.burger {
		
		display: block;
		font-size: 2rem;
		cursor: pointer;
		color: white;
		z-index: 110;

		display: block;
		font-size: 2rem;
		cursor: pointer;
		z-index: 110;
		position: relative;

		/* margin-left: 280px; */
		margin-left: auto;
		margin-top: 15px;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		align-items: center;
		display: none;
		opacity: 0;
		transition: opacity 0.3s ease;

		height: 80vh;

		background: rgba(0, 0, 0, 0.6); /* semi-transparent dark */
		backdrop-filter: blur(8px); /* ✨ Blur effect */
		-webkit-backdrop-filter: blur(8px); /* for Safari */
	}

	.nav-links.show {
		display: flex;
		opacity: 1;
	}

	.nav-links a {
		width: 100%;
		/* padding: 15px; */
		border: none;
		text-align: center;
		border-top: 1px solid #444;
		padding-left: 110px;
		top: 10%;
	}

	.navbar a.active::after {
		content: none;
	}

	.language-selector {
		display: none;
	}


	.mobile-language-selector {
		display: flex;
		justify-content: center;
		gap: 10px;
		padding: 20px 0;
	}
	
	.mobile-language-selector img {
		width: 24px;
		height: 24px;
		cursor: pointer;
		border-radius: 50%;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		transition: transform 0.2s;
	}
	
	.mobile-language-selector img:hover {
		transform: scale(1.2);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	}



	.section-container {
		display: flex;
		flex-direction: row;
		width: 100vw;
		height: 100dvh;
		overflow: hidden;
		position: relative;
		transition: transform 0.5s ease;

		overflow-y: auto;
	}

	.section-container,
	.section-container .main-page,
	.section-container .right-page {
		height: 100dvh;
	}

	.scroll-up {
		top: 70px;
	}
}





.services {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/pictures/background/DSC09606.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed; 
	background-size: 100% 100%;
	color: #ffffff;
	overflow-y: auto;
}

.home {
	background-color: rgb(0, 0, 0);
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url("/pictures/background/4.jpg");
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment: fixed; 
	background-position: 0 65%;
	color: #ffffff;
	overflow-y: auto;
}

.welcome-title {
	margin-top: 200px;
	margin-left: 200px;
	font-size: 40pt;
	font-weight: bolder;
	color: #c49719;
}

.biography-title {
	margin-top: 20px;
	margin-left: 200px;

	font-size: 30pt;
	font-weight: bold;
}

.biography {
	/* width: 1000px; */
	width: 67%;
	text-align: left;
	margin-left: 200px;
	font-size: 20pt;
	margin-top: 50px;
}





.horizontal-screen {
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
}



#hor-home img {
	height: 60%;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	display: block;
	/* padding-top: 100px; */
	margin-top: 10px;
	margin-left: 10%;
}

.img_bio {
	margin-left: 50px;
	color: white;
}

.img_bio h3{
	font-size: 30pt;
	color: bisque;
	margin-top: 10px;
}

.img_bio p {
	width: 69%;
	margin-top: 40px;
	text-align: left;
	font-size: 18pt;
}


@media (max-width: 768px) {
	.home {
		background-position: center;
		background-size: cover;
		padding: 100px 50px;
	}

	.welcome-title,
	.biography-title {
		margin: 20px 0 10px;
		font-size: 24pt;
		margin-left: 0;
	}

	.biography-title {
		font-size: 20pt;
	}

	.biography {
		width: 100%;
		margin: 20px 0;
		font-size: 14pt;
		margin-left: 0;
	}

	#hor-home {
		flex-direction: column;
		padding: 20px;
		/* height: auto; */
		height: 100vdh;
		padding-top: 80px;
		padding-left: 60px;
		padding-right: 60px;

		overflow-y: auto;
	}

	#hor-home img {
		/* width: 20%;
		height: auto;
		margin: 0 auto 20px; */
		display: none;
	}

	#horbiopar {
		font-size: 12pt;
	}

	.img_bio {
		margin: 0;
		padding: 0 10px;
	}

	.img_bio h3 {
		font-size: 20pt;
		color: bisque;
		text-align: center;
	}

	.img_bio p {
		width: 100%;
		font-size: 14pt;
		text-align: left;
		margin-top: 20px;
	}

	.services {
		background-size:cover;
		/* background-size: 40% 60%; */
  		background-position: center center;
	}
}





.section-container {
	display: flex;
	width: 200vw; /* Each container holds 2 screens */
	transition: transform 0.5s ease-in-out;
}

section, .horizontal-screen {
	width: 100vw;
	position: relative;
}

#hor-home {
	background: linear-gradient(to bottom, rgb(39, 31, 13) 0%,rgb(108, 85, 36) 100%);
}



.scroll-right, .scroll-left {
	position: absolute;
	top: 50%;
	font-size: 2rem;
	cursor: pointer;
	bottom: 20px;
	color: #ffffff;
}    

.scroll-right {
	right: 20px;
	animation: pulse-right 1.5s infinite; /* Motion animation */
}

/* Pulsing animation for the chevron-right */
@keyframes pulse-right {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
}

.scroll-right:hover {
	color: #c49719; /* Slightly darker color on hover */
}


.scroll-left {
	left: 20px;
	animation: pulse-left 1.5s infinite; /* Motion animation */
}


/* Pulsing animation for the chevron-right */
@keyframes pulse-left {
	0%, 100% {
		transform: translateX(10px);
	}
	50% {
		transform: translateX(0);
	}
}

.scroll-left:hover {
	color: #c49719; /* Slightly darker color on hover */
}


.section-container {
	display: flex;
	width: 200vw; /* Allow space for horizontal scrolling */
	transition: transform 0.5s ease-in-out;
	overflow: hidden; /* Prevent unwanted scrolling */
}



#products-hor-screen,
.categories {
	background: linear-gradient(to bottom, rgb(39, 31, 13) 0%, rgb(108, 85, 36) 20%, rgb(108, 85, 36) 70%,rgb(39, 31, 13) 100%);
}
.categories {
	text-align: center;
}

.categ_title {
	width: fit-content;
	height: fit-content;
	font-size: 20pt;
	color: bisque;

	margin-left: 80px;
	margin-top: 100px;
}


.services h2 {
	font-size: 30pt;
	margin-top: 150px;
	margin-left: 200px;
	color: bisque;
}


.services p {
	margin-left: 200px;
	text-align: center;
	width: 50%;
	text-align: left;

	margin-top: 50px;
	font-size: 20pt;

	margin-bottom: 50px;
}

.services .infomail {
	font-weight: bold;
	font-size: 20pt;
}

.services a {
	text-decoration: none;
}


.services button {
	font-family: inherit;
	font-size: 18px;
	/* background: linear-gradient(to bottom, #4d0303 0%,#ac1616 100%); */
	/* background-color: #c49719; */
	background: linear-gradient(to bottom, #8f6e12 0%,#c49719 100%);

	color: white;
	padding: 0.8em 1.2em;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 25px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;

	margin-left: 200px;
}
  
.services button:hover {
	transform: translateY(-3px);
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}
  
.services button:active {
	transform: scale(0.95);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
  
.services button span {
	display: block;
	margin-left: 0.4em;
	transition: all 0.3s;
}
  
.services button svg {
	width: 18px;
	height: 18px;
	fill: white;
	transition: all 0.3s;
}
  
.services button .svg-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	margin-right: 0.5em;
	transition: all 0.3s;
}
  
.services button:hover .svg-wrapper {
	background-color: rgba(255, 255, 255, 0.5);
}
  
.services button:hover svg {
	transform: rotate(45deg);
}


.services span {
	font-size: 22px;
	font-weight: bolder;
}



@media (max-width: 768px) {

	.categ_title {
		margin-right: 80px;
		text-align: center;
	}

	.services {
		padding: 20px;
		text-align: center;
	}

	.services h2 {
		font-size: 24pt;
		margin-left: 0;
		margin-top: 100px;
	}

	.services p {
		margin: 20px auto;
		width: 90%;
		font-size: 16pt;
		text-align: center;
	}

	.services button {
		margin: 0 auto;
		margin-top: 20px;
		padding: 0.6em 1em;
		font-size: 16px;
		border-radius: 20px;
	}

	.services button span {
		font-size: 18px;
	}

	.services span {
		font-size: 18px;
	}

	.scroll-up,
	.scroll-down {
		margin: 10px auto;
		font-size: 24px;
	}

	.services button .svg-wrapper {
		width: 26px;
		height: 26px;
	}

	.services button svg {
		width: 16px;
		height: 16px;
	}

	.services .infomail {
		font-size: 16pt;
	}
}




.contact {
	/* background-color: rgb(0, 0, 0); */
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url("/pictures/background/IMG_2366.JPG");
	background-repeat: no-repeat;
	background-attachment: fixed; 
	background-size: 100% 100%;
}

.contact-container {
	padding: 20px;
	max-width: 60%;
	margin-left: 20%;
	margin-top: 5%;
	border-radius: 15px;
	/* box-shadow: 2px 2px 4px 2px rgb(179, 179, 179); */
	-webkit-box-shadow: 0 0 15px rgb(179, 179, 179);
	max-height: fit-content;
	text-align: center;
}

.contact-container h2, .store-info-container h2 {
	text-align: center;
	color: white;
	margin-bottom: 20px;
}


.form-row {
	display: flex;
	gap: 20px;
}

.contact-container input {
	flex: 1;
	padding: 12px;

	border: 1px solid #ccc;
	border-radius: 8px;
	margin-bottom: 20px;
	/* margin-right: 10px; */
	max-height: 30px;
}

.contact-container textarea {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 12px;
	max-height: 60px;

	font-family: Arial, sans-serif;;
}

.contact-container button {
	width: 30%;
	padding: 10px;
	/* background-color: #af2f2f; */
	background-color: #c49719;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 20px;
}

.contact-container button:hover {
	background-color: #8f6e12;
}




.store-info-container {
	/* padding: 20px; */
	max-width: 60%;
	/* margin: auto; */
	margin-left: 20%;
	margin-top: 30px;
	padding: 20px;
	border-radius: 15px;
	/* box-shadow: 2px 2px 2px 2px rgb(179, 179, 179); */
	-webkit-box-shadow: 0 0 15px rgb(179, 179, 179);
}


.store-info-container b {
	color: white;
	font-size: 1.17em;
}

.store-info-container p, .timeslot p {
	color: white;
	padding-top: 5px;
}



.timeslot h3 {
	color: white;
	font-weight: bold;
	margin-top: 20px;
}


.info-map-wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start; /* Keeps the top aligned */
	flex-wrap: wrap; /* Allows wrapping on small screens */
}
  
.store-text {
	flex: 1;
	margin-left: 10px;
}


.info-map-wrapper iframe {
	flex: 1;
	max-width: 280px;
	/* height: 160px; */
	border: 0;
	border-radius: 10px;
	margin-top: 5px;
	margin-right: 30px;
}



@media (max-width: 768px) {
	.contact {
		background-attachment: scroll;
		background-size: cover;
		background-position: center;
		padding: 15px 10px;

		overflow-y: auto;
		padding-top: 100px;
	}

	.contact-container,
	.store-info-container {
		max-width: 100%;
		margin: 15px auto;
		padding: 10px;
	}

	.contact-container h2,
	.store-info-container h2 {
		font-size: 18pt;
		margin-bottom: 10px;
	}

	.form-row {
		flex-direction: column;
		gap: 0;
	}

	.contact-container input,
	.contact-container textarea {
		width: 100%;
		font-size: 14px;
		padding: 10px;
		border-radius: 6px;
	}

	.contact-container textarea {
		height: 100px;
	}

	.contact-container button {
		width: 100%;
		font-size: 14px;
		padding: 10px;
		margin-top: 15px;
	}

	.info-map-wrapper {
		flex-direction: column;
		gap: 15px;
	}

	.store-text {
		margin-left: 0;
		font-size: 14px;
	}

	/* Center info-map-wrapper */
	.info-map-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center; /* Center horizontally */
		justify-content: center; /* Center vertically */
		gap: 15px;
	}

	.store-info-container p,
	.store-info-container b,
	.timeslot p,
	.timeslot h3 {
		font-size: 14px;
		text-align: center;
	}

	.info-map-wrapper iframe {
		width: 100%;
		max-width: 100%;
		height: 200px;
		border-radius: 8px;
		margin: 0 auto;
	}
}



.toast {
	visibility: hidden;
	min-width: 250px;
	max-width: 90vw;
	background-color: #3b6e42;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 16px 24px;
	position: fixed;
	z-index: 9999;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	font-size: 16px;
	pointer-events: none;
	transition: transform 0.3s ease;
}



.toast.show {
	visibility: visible;
	animation: fadein 0.5s, fadeout 0.5s 3s;
}


@keyframes fadein {
	from { bottom: 0; opacity: 0; }
	to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
	from { bottom: 30px; opacity: 1; }
	to { bottom: 0; opacity: 0; }
}


.section-container {
	display: flex;
	flex-wrap: wrap;
}



.swiper {
	width: 80%;
	width: 90vw;
	max-width: 1600px;
	margin: 0 auto;
}

.swiper img {
	width: 100%;
	max-width: 300px;
	height: auto;
	object-fit: contain;
	margin: auto;
	overflow: auto;
}



.swiper-wrapper {
	padding-top: 8%;

	position: relative;
  	overflow: visible; /* important! */
}


.swiper-slide {
	/* width: 100%; */
	transition: transform 0.3s;
	justify-content: center;
	align-items: center;

	width: 33.3333vw; /* 3 slides per 100vw */
	max-width: 500px;	
}



.swiper-button-next,
.swiper-button-prev {
	color: white;
	background: rgba(0, 0, 0, 0.5);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	top: 70%;
	/* transform: translateY(-50%); */
	z-index: 10;
	transition: background 0.3s, transform 0.3s;

}


.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {

	/* #c49719 */
	background: #c49719;
	/* transform: translateY(-50%) scale(1.1); */
	color: black;
}


.swiper-button-next::after {
	content: '→';
}
  
.swiper-button-prev::after {
	content: '←';
}
  


.swiper img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);

	width: 300px;
	height: 300px;
	object-fit: contain;
}


  
.swiper-slide .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 2;
}

.swiper-slide:not(.swiper-slide-active) .overlay {
	opacity: 0.8;
}



.swiper-slide-active {
	cursor: pointer;
}


.category-name {
	padding-top: 10px;
	color: #fff;
	font-weight: bold;
	font-size: 20pt;
}


#products-hor-screen {

	display: block;
	padding-top: 120px;
	height: 100vh;
	padding-bottom: 150px;
}

.content-wrapper {
	width: 300px;
	margin: 0 auto;
	padding: 0 20px;
}


#products-hor-screen a {
	all: unset;
	width: fit-content;
	text-decoration: underline;
}

#products-hor-screen a:hover {
	text-decoration: underline;
	cursor: pointer;
	color: #c49719;
}


#products-hor-screen h4 {
	padding-left: 100px;
	width: 330px;
}


#products-hor-screen h2 {
	text-align: center;
	color: bisque;
	font-size: 20pt;
	margin-bottom: 20px;
}




.product-grid {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	margin: 0 auto;
	padding: 20px;
	width: fit-content;
	flex-grow: 1;
	max-height: 65vh;
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.product-grid img {

	width: 100%;
}

.arrow-button {
	position: relative;
	padding: 10px 20px 10px 40px;
	border: none;
	border-radius: 25px;
	font-size: 16px;
	cursor: pointer;
	background: linear-gradient(to bottom, #2c1902 0%,#4a2a03 100%);
	color: bisque;
	font-weight: bold;

	margin-left: 100px;
}
  
.arrow-button::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 12px solid bisque;
}
  
.arrow-button:hover {
	color: #c49719;
	transform: scale(1.2);
}






.product-grid.overflowing {
	border: 2px solid #ccc;
	border-radius: 8px;
	padding: 10px;
	padding-bottom: 50px;
}


.product-card {
	min-width: 200px;
	max-width: 220px;
	width: 100%;
	color: bisque;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	align-items: center;
	transition: transform 0.2s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	height: fit-content;
}

.product-card img {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	width: fit-content;
	max-height: 180px;
	border-radius: 8px;

	width: 100%;
	height: auto; 
	object-fit: contain;
}
  
  
.product-card:hover {
	transform: scale(1.03);
}
  
.modal.hidden {
	display: none;
}


.modal {
	position: fixed;
	top: 0;
	/* left: 0; */
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex; /* for centering modal-content */
	align-items: center;
	justify-content: center;
	z-index: 1001; /* higher than any other element */
}




.close {
	position: absolute;
	font-size: 34px;
	cursor: pointer;
	top: 0;
	right: 20px;
}

.close:hover {
	color: #c49719;
}


.modal-content {
	position: relative;
	/* background: white; */
	background: rgba(28, 26, 26, 0.95);
	color: #fff;
	width: 90%;
	height: 90%;
	border-radius: 10px;
}
  
.modal-content img {
	width: 100%;
	border-radius: 8px;
}
  

.modal-body {
	display: flex;
	gap: 20px;
	padding: 20px;
	height: 80%;
	width: 100%;
}

.main-image-container {
	flex: 1;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	margin-top: 20px;
	width: 67%;
	height: 100%;
}

.main-image-container img {
	object-fit: contain;
	/* object-fit: cover; */
	transition: transform 0.3s ease;
	cursor: zoom-in;
	height: 100%;
	width: 100%;
	object-position: center;
}



.main-image-container img.zoomed {
	transform: scale(3); /* Adjust zoom level */
	cursor: zoom-out;
}

.main-image-container.zoom-enabled img {
	transform: scale(3); /* Adjust for desired zoom */
	transform-origin: var(--x) var(--y);
	cursor: zoom-out;
	transition: transform 0.2s ease;

	width: 67%;
}


.thumbnail-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 columns */
	gap: 10px;
	width: 25%;
	height: fit-content;
	overflow-y: auto;
	margin-top: 20px;

	/* padding-left: 20%; */
}

.thumbnail-gallery img {
	width: 100%;
	height: auto;
	max-height: 250px;
	border-radius: 5px;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s;
}


.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
	opacity: 1;
	border: 2px solid #555;
}



#modal-name {
	margin-top: 40px;
	/* padding-left: 40px; */
}


#modal-name,
#modal-desc {
	width: 67%;
	text-align: center;
}




.main-image-container img {
	object-fit: contain;
	transition: transform 0.3s ease;
	cursor: zoom-in;
	width: 100%;
	height: 100%;
	object-position: center;
}

.main-image-container img.zoomed {
	transform: scale(3);
	transform-origin: var(--x, 50%) var(--y, 50%);
	cursor: zoom-out;
}




@media (max-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 10px;
		width: 100%;
		max-height: 60vh;

		padding-top: 10px;
	}

	.product-card img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.product-card {
		width: 100%;
	}

	#products-hor-screen {
		padding-top: 90px;
		padding-bottom: 100px;
	}

	#products-hor-screen h2 {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.arrow-button {
		margin: 30px 0 0 10px;
		text-align: left;
	}

	.form-row {
		flex-direction: column;
	}

	#email {
		order: 1;
	}
	#confirmEmail {
		order: 2;
	}
	#tel {
		order: 3;
	}


	.modal {
		position: fixed;
		/* top: 0; */
		/* left: 0; */
		width: 100vw;
		height: 100dvh;
		background-color: rgba(0, 0, 0, 0.6); /* backdrop */
		/* display: flex; */
		align-items: center;
		justify-content: center;
		z-index: 1005;
	}

	.modal-content {
		width: 95%;
		max-width: 100vw;
		height: 95dvh;
		overflow-y: auto;
	}

	.modal-body {
		flex-direction: column;
		height: auto;
		gap: 10px;
	}

	.main-image-container {
		width: 100%;
		height: 300px;
	}

	.main-image-container img {
		max-height: 250px;
	}

	.thumbnail-gallery {
		width: 100%;
		grid-template-columns: repeat(4, 1fr);
		gap: 5px;
	}


	.thumbnail-gallery img {
		max-height: 100px;
		width: auto;
	}

	#modal-name,
	#modal-desc {
		width: 100%;
		padding: 0 10px;
	}


	.welcome-title {
	  font-size: 1.5rem;
	}
  
	.biography-title,
	.biography {
	  font-size: 1rem;
	}
  
	.horizontal-screen img {
	  width: 100%;
	  height: auto;
	}
  
	.img_bio {
	  padding: 1rem;
	}


	.swiper-slide {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		/* height: 100%; */
		box-sizing: border-box;
		
		position: relative;
		overflow: hidden;
	}

	.swiper-slide img {
		max-height: 75vh; /* Constrain image height */
		width: auto;
		max-width: 100%;
		object-fit: contain; /* Keeps image aspect ratio */
	}

	.category-name {
		margin-top: 1rem;
		font-size: 1.2rem;
		text-align: center;
		color: white;
		z-index: 2;
		position: relative;
	}

	.swiper-button-next,
	.swiper-button-prev {
		top: 60%;
	}




  
	.navbar .nav-links {
	  flex-direction: column;
	  gap: 1rem;
	}
}

html, body {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

section {
	min-height: 100vh;
	position: relative;
	scroll-snap-align: start;
}