/* Ko-fi widget responsive styles */
.kofi-widget-container {
	margin-top: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.kofi-widget-container iframe {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
@media (max-width: 600px) {
	.kofi-widget-container {
		max-width: none;
		margin: 0;
		padding: 0;
		width: 100vw;
		overflow-x: auto;
	}
	.kofi-widget-container iframe {
		width: 100vw;
		min-width: 0;
		border-radius: 0;
		display: block;
	}
}
/* Responsive header and mobile menu */
.menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1002;
}
.menu-btn span {
	display: block;
	width: 28px;
	height: 3px;
	margin: 4px 0;
	background: #fff;
	border-radius: 2px;
	transition: 0.3s;
}
.menu-btn.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
	opacity: 0;
}
.menu-btn.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: -260px;
	width: 240px;
	height: 100vh;
	background: #18181a;
	box-shadow: -2px 0 12px #0008;
	display: flex;
	flex-direction: column;
	padding: 80px 30px 30px 30px;
	gap: 20px;
	transition: right 0.3s cubic-bezier(.4,0,.2,1);
	z-index: 1001;
}
.mobile-nav a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	padding: 10px 0;
	border-bottom: 1px solid #232326;
}
.mobile-nav.open {
	right: 0;
}

@media (max-width: 900px) {
	header {
		padding: 16px 18px;
	}
	.desktop-nav {
		display: none;
	}
	.menu-btn {
		display: flex;
	}
	.logo img {
		height: 32px;
	}
}
@media (max-width: 700px) {
	.hero h1 {
		font-size: 32px;
	}
	.product-section {
		flex-direction: column;
		gap: 30px;
		padding: 40px 10px;
	}
	.product-image img {
		width: 100%;
		max-width: 320px;
	}
	.page {
		padding: 30px 10px;
	}
}

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

body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
background:#0a0a0a;
color:#f5f5f7;
line-height:1.6;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#111;
border-bottom:1px solid #222;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo img {
	height: 40px;
	width: auto;
	display: block;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#d2d2d7;
font-size:14px;
}

nav a:hover{color:white}

.hero{
height:85vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{font-size:56px;margin-bottom:20px}

.hero p{max-width:650px;font-size:20px;color:#a1a1a6}

.button{
display:inline-block;
margin-top:30px;
padding:14px 28px;
border-radius:10px;
background:#0071e3;
color:white;
text-decoration:none;
}

.product-section{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
padding:120px 80px;
border-top:1px solid #1d1d1f;
}

.product-image img{width:420px;border-radius:12px}

.product-text{max-width:500px}

.gallery{
padding:80px;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:30px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
}

.page{
padding:100px;
max-width:900px;
margin:auto;
}

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
margin-top:30px;
}

input,select,textarea{
padding:12px;
border-radius:6px;
border:none;
}

footer{
text-align:center;
padding:40px;
border-top:1px solid #222;
color:#86868b;
margin-top:80px;
}
