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

body {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.8;
	color: #1a1a1a;
	background: #ffffff;
}

header {
	background: #000000;
	color: white;
	padding: 1rem 0;
	text-align: center;
}

.logo {
	font-size: clamp(2rem, 2rem, 3rem);
	font-weight: 300;
	letter-spacing: clamp(0.2rem, 0.2rem, 0.5rem);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	white-space: nowrap;
	width: 100%;
	display: block;
	line-height: 1;
}

.tagline {
	font-size: 0.9rem;
	font-weight: 300;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	opacity: 0.8;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.section-title {
	text-align: center;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	margin-bottom: 3rem;
	color: #000;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: #000;
	margin: 1rem auto 0;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /*old: 320px*/
	gap: 3rem;
	margin-top: 3rem;
}

.product-card {
	background: white;
	border: 1px solid #e8e8e8;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.product-card:hover {
	border-color: #000;
	transform: translateY(-3px);
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	animation: fadeIn 0.3s ease;
}

.modal-content {
	background: white;
	margin: 2% auto;
	padding: 0;
	width: 90%;
	max-width: 800px;
	position: relative;
	animation: slideIn 0.3s ease;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-header {
	background: #000;
	color: white;
	padding: 1rem;
	text-align: center;
	position: relative;
}

.modal-title {
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
}

.close {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	font-weight: 300;
	cursor: pointer;
	color: white;
	transition: opacity 0.3s ease;
}

.close:hover {
	opacity: 0.7;
}

.modal-body {
	padding: 2rem;
}

.modal-images {
	position: relative;
	margin-bottom: 2rem;
}

.carousel-container {
	position: relative;
	height: 250px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
}

 @media (min-width: 1024px) {
	.carousel-container {
		height: 350px;
		width:80%;
		margin:0 auto;
	}   
 }

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
	opacity: 1;
}

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

.carousel-slide .image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	background: #f8f8f8;
}

.carousel-slide .image-placeholder::before {
	content: "📸";
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.3;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 1.2rem;
	transition: background 0.3s ease;
	z-index: 10;
}

.carousel-nav:hover {
	background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
	left: 10px;
}

.carousel-next {
	right: 10px;
}

.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.3s ease;
}

.carousel-dot.active {
	background: #000;
}

.carousel-counter {
	display:none;
	/*
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.5rem 0.8rem;
	font-size: 0.75rem;
	letter-spacing: 0.05rem;
	*/
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.carousel-container {
		height: 240px;
	}
	
	.carousel-nav {
		display:none;
		/*
		width: 35px;
		height: 35px;
		font-size: 1rem;
		*/
	}
}

.modal-details {
	border-top: 1px solid #e8e8e8;
	padding-top: 1rem;
}

.modal-description {
	color:#666;
	margin-bottom: 1rem;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.detail-label {
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	padding-right:10px;
}

.detail-value {
	color: #666;
}

.modal-price {
	font-size: 2rem;
	font-weight: 300;
	text-align: center;
	margin: 1rem 0;
	letter-spacing: 0.1rem;
}

.order-button {
	background: #000;
	color: white;
	border: none;
	padding: 1rem 3rem;
	font-size: 0.9rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	cursor: pointer;
	display: block;
	margin: 0 auto 1.5rem;
	transition: background 0.3s ease;
}

.order-button:hover {
	background: #333;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from { transform: translateY(-50px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
	.modal-images {
		grid-template-columns: 1fr;
	}
	
	.modal-body {
		padding: 2rem;
	}
}

.product-image {
	width: 100%;
	height: 240px;
	background: #f8f8f8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	border-bottom: 1px solid #e8e8e8;
}

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

.product-info {
	padding: 1rem;
	text-align: center;
}

.product-name {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.1rem;
	line-height: 1.4;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.product-description {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	line-height: 1.6;
	font-weight: 300;
}

.product-price {
	font-size: 1.3rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.product-tag {
	display: inline-block;
	border: 1px solid #000;
	padding: 0.3rem 1rem;
	font-size: 0.7rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	margin-top: 1rem;
}

footer {
	background: #000000;
	color: white;
	text-align: center;
	padding: 3rem 2rem;
	margin-top: 5rem;
}

.contact-title {
	font-size: 0.9rem;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	margin-bottom: 2rem;
	font-weight: 300;
}

.contact-info a {
	color:#ccc;
	font-weight: bold;
	text-decoration: none;

}
.contact-info p {
	margin: 1rem 0;
	font-size: 0.9rem;
	font-weight: 300;
	opacity: 0.9;
}

.divider {
	width: 60px;
	height: 1px;
	background: rgba(255,255,255,0.3);
	margin: 2rem auto;
}
