@font-face {
	font-family: 'Comfortaa';
	src: url('../fonts/Comfortaa.ttf') format('truetype');
}

@font-face {
	font-family: 'Oswald';
	src: url('../fonts/Oswald.ttf') format('truetype');
}

@font-face {
	font-family: 'SmoochSans';
	src: url('../fonts/SmoochSans.ttf') format('truetype');
}

@font-face {
	font-family: 'Teko';
	src: url('../fonts/Teko.ttf') format('truetype');
}

@font-face {
	font-family: 'TitilliumWeb-Regular';
	src: url('../fonts/TitilliumWeb-Regular.ttf') format('truetype');
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background-color: rgb(250,250,200);
	/* background-image:
	radial-gradient(rgba(200,100,0,0.1) 1px, transparent 1px),
	linear-gradient(135deg, rgba(200,100,0,0.1) 1px, transparent 100px); */
	/* background-size: 20px 20px, 80px 80px; */
	font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
}

.top {
	width: 100%;
	height: 150px;
	background-color: rgb(250,250,200);
}

.medya {
	width: 100%;
	height: 50px;
	background-color: rgb(250,250,200);
}

.medya-ikon-alani {
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	background-color: #323232;
	border-radius: 15px 15px 0 0;
}

.medya-ikon-alani .sol-grup,
.medya-ikon-alani .sag-grup {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.medya-ikon-alani ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fafafa;
	font-size: 1.1rem;
	font-family: 'SmoochSans', sans-serif;
	transition: color 0.3s ease, transform 0.2s ease;
	text-decoration: none;
}

.medya-ikon-alani ul li a:hover {
	color: rgb(200,100,0);
	transform: scale(1.1);
}

nav {
	font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
	margin: 0 auto;
	padding: 1rem;
	height: 100px;
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: rgb(50,50,50);
	color: #649696;
	border-top: 1px solid #646464;
}

.nav-left {
	height: 100%;
	padding: 0.1rem;
	display: flex;
	align-items: center;
	gap: 1px;
}

.nav-logo {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.nav-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo {
	height: 60px;
	width: auto;
	padding: 1px;
	object-fit: contain;
	cursor: pointer;
}

.baslik {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.5rem;
	font-size: 3em;
	font-weight: 400;
	color: #fafac8;
	white-space: nowrap;
	font-family: 'Teko', sans-serif;
}

nav .filters {	
	gap: 0.2rem;
	flex-direction: column;
	align-items: center;
}

nav .filters button {
	padding: 0.5rem 0.2rem;
	background-color: #323232;
	color: #c86400;
	border: none;
	cursor: pointer;
}

nav .filters button.active {
	color: #fafafa;
	border: none;
	border-color: #646464;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span {
	height: 3px;
	width: 25px;
	background-color: #c86400;
	border-radius: 5px;
	transition: 0.3s;
}

nav ul {
	list-style: none;
}

.nav-links {
	position: absolute;
}

.filters-mobile {
	display: none;
}

main {
	margin: 0 auto;
	padding: 1rem;
	max-width: 1200px;
	background-color: #323232;
	border-top: 1px solid #646464;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
	gap: 0.1rem;
}

.card {
	padding: 0.075rem;
	background: #fafafa;
	box-shadow: 0 1px 8px rgba(150,150,150,0.3);
	border-radius: 0.25rem;
	transition: transform 0.3s ease;
	overflow: hidden;
}

.card:hover {
	/* transform: translateY(-1px); */
	box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card img {
	height: 250px;
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 0.25rem 0.25rem 0 0;
	cursor: pointer;
}

.card h3 {
	margin: 0.5rem;
	color: #323232;
	font-size: 1rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 250;
}

.card button {
	margin: 0.25rem;
	background: none;
	color: #323232;
	border: none;
	cursor: pointer;
	font-size: 0.80rem;
}

.card button:hover {
	text-decoration: underline;
}

.pagination {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.pagination button {
	padding: 0.5rem 1rem;
	background-color: white;
	border: 1px solid #326496;
	border-radius: 0.25rem;
	cursor: pointer;
}

.pagination button.active {
	background-color: #326496;
	color: white;
}

.bottom1 {
	width: 100%;
	background-color: rgb(250,250,200);
}

.bottom1-ic {
	margin: 0 auto;
	padding: 40px 10px;
	max-width: 1200px;
	background-color: rgb(50,50,50);
	border-top: 1px solid #646464;
}

.bottom1-ic h1 {
	font-size: 3.5rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 200;
	text-align: center;
	color: #fafafa;
	padding: 5px 50px;
}

.avantajlar {
	margin: auto;
	max-width: 1120px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.1rem;
}

.avantaj {
	padding: 1rem;
	width: 95px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #ffffff;
	border-radius: 0.25rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avantaj i {
	font-size: 1.5rem;
	color: #c86400;
	margin-bottom: 0.25rem;
}

.avantaj span {
	font-size: 1rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 250;
	color: #323232;
	text-align: center;
}

.bottom2 {
	margin: 0 auto;
	width: 100%;
	background-color: rgb(250,250,200);
}

.bottom2-ic {
	margin: 0 auto;
	padding: 10px 20px;
	max-width: 1200px;
	background-color: rgb(50,50,50);
	border-top: 1px solid #646464;
}

.iletisim-bilgileri {
	margin: auto;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.iletisim {
	font-size: 0.75rem;
	font-family: 'Comfortaa', sans-serif;
	color: #fafafa;
	padding: 0.5rem;
}

.iletisim a {
	color: #fafafa;
	text-decoration: none;
}

footer {
	background: rgb(250,250,200);
}

.footer-ic {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 10px 20px;
	max-width: 1200px;
	background-color: rgb(50,50,50);
	align-items: center;
	color: #c8c8c8;
	font-size: 0.70rem;
	font-family: 'TitilliumWeb-Regular', sans-serif;
	border-radius: 0 0 15px 15px;
}

.modal {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	font-size: 0.9rem;
}

.modal-content {
	padding: 0.25rem;
	max-height: 99vh;
	max-width: 600px;
	width: 90%;
	background: white;
	overflow-y: auto;
	border-radius: 0.5rem;
	position: relative;
}

.modal img {
	height: auto;
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	margin-bottom: 0.5rem;
	border-radius: 0.5rem;
}

.close-btn {
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	background: #ffffff;
	color: #323232;
	border: 1px solid #646464;
	border-radius: 5px;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
}

#modalTitle {
	text-align: left;
	margin-left: 22px;
}

#modalSpecs {
	text-align: left;
}

.nav-btns {
	margin: 0.5rem 0;
	display: flex;
	justify-content: space-between;
}

.nav-btns button {
	padding: 0.5rem 1rem;
	background: #326496;
	color: white;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
}

@media (max-width: 1024px) {
	nav {
		padding: 0.25rem;
		flex-direction: row;
		position: relative;
	}

	.logo {
		height: 50px;
		padding-left: 15px;
	}

	.baslik {
		height: 42px;
		font-size: 2.5em;
	}

	.hamburger {
		display: flex;
		position: absolute;
		right: 1.25rem;
		top: 50%;
		transform: translateY(-50%);
	}

	nav ul {
		font-size: 15px;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		text-align: center;
		background-color: rgb(250,250,250);
		position: absolute;
		top: 85px;
		left: 0;
		gap: 0;
		padding: 0;
		z-index: 999;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		margin: 1rem 0;
	}

	.filters {
		display: none;
	}

	.filters-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: #fafafa;
		padding: 1rem;
		gap: 0.5rem;
		border-top: 2px solid #c86400;
		border-bottom: 2px solid #c86400;
	}

	.filters-mobile button {
		width: 90%;
		max-width: 300px;
		padding: 0.6rem;
		border: 1px solid #c86400;
		border-radius: 6px;
		background: #fff;
		color: #c86400;
		font-weight: 500;
		font-size: 1rem;
		transition: all 0.2s ease;
	}

	.filters-mobile button:hover {
		background-color: #c86400;
		color: #fff;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bottom1-ic h1 {
		font-size: 1.75rem;
		padding: 5px 20px;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 0.25rem;
		flex-direction: row;
		position: relative;
	}

	.logo {
		height: 50px;
		padding-left: 15px;
	}

	.baslik {
		height: 42px;
	}

	.hamburger {
		display: flex;
		position: absolute;
		right: 1.25rem;
		top: 50%;
		transform: translateY(-50%);
	}

	nav ul {
		font-size: 15px;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		text-align: center;
		background-color: rgb(250,250,250);
		position: absolute;
		top: 85px;
		left: 0;
		gap: 0;
		padding: 0;
		z-index: 999;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		margin: 1rem 0;
	}

	.filters {
		display: none;
	}

	.filters-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: #fafafa;
		padding: 1rem;
		gap: 0.5rem;
		border-top: 2px solid #c86400;
		border-bottom: 2px solid #c86400;
	}

	.filters-mobile button {
		width: 90%;
		max-width: 300px;
		padding: 0.6rem;
		border: 1px solid #c86400;
		border-radius: 6px;
		background: #fff;
		color: #c86400;
		font-weight: 500;
		font-size: 1rem;
		transition: all 0.2s ease;
	}

	.filters-mobile button:hover {
		background-color: #c86400;
		color: #fff;
	}

	.product-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.bottom1-ic h1 {
		font-size: 1.5rem;
		padding: 5px 20px;
	}

	.avantaj {
		padding: 0.25rem;
		width: 72px;
	}

	.avantaj i {
		font-size: 1rem;
	}

	.avantaj span {
		font-weight: 300;
	}

	.iletisim {
		font-size: 0.65rem;
	}
}

@media (max-width: 480px) {
	.filters button {
		width: 150px;
		font-size: 0.75rem;
	}

	.product-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.modal-content {
		max-height: 90vh;
		max-width: 95%;
	}
}