:root {
	--container-width: 1250px;
	--brown: #2a0f06;
	--brown2: #3b1809;
	--cream: #fff8e9;
	--gold: #f3ad06;
	--gold2: #ffd258;
	--green: #295f25;
	--text: #27140c;
	--muted: #75675f;
	--line: #eadbc0;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: #fffaf0;
	font-family: "Nunito Sans", sans-serif;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	-webkit-tap-highlight-color: transparent;
}

.container {
	width: calc(100% - 60px);
	max-width: var(--container-width);
	margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	border-bottom: 1px solid rgba(255, 204, 71, 0.18);
	background: rgba(39, 14, 5, 0.96);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.header-inner {
	position: relative;
	display: flex;
	height: 82px;
	align-items: center;
	gap: 28px;
}

.brand {
	display: block;
	flex: 0 0 auto;
	width: 190px;
}

.brand img {
	width: 100%;
	height: 62px;
	object-fit: contain;
	object-position: left center;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
}

.main-nav a {
	position: relative;
	display: block;
	padding: 8px 0;
	color: #fff5dd;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.main-nav a::after {
	content: "";
	position: absolute;
	right: 100%;
	bottom: -10px;
	left: 0;
	height: 3px;
	background: var(--gold);
	transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	right: 0;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: auto;
	padding: 8px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px auto;
	border-radius: 10px;
	background: #ffffff;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
	overflow: hidden;
	background: linear-gradient(90deg, #fffaf0 0%, #fffaf0 39%, rgba(255, 250, 240, 0.78) 50%, rgba(255, 250, 240, 0.08) 74%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 43%) minmax(0, 57%);
	min-height: 680px;
	align-items: stretch;
	gap: 42px;
}

.hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	min-width: 0;
	padding: 54px 0;
	flex-direction: column;
	justify-content: center;
}

.eyebrow,
.section-kicker {
	margin: 0 0 4px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.eyebrow {
	font-size: 36px;
}

.hero h1 {
	margin: 0;
	color: #2c1006;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 104px;
	font-weight: 800;
	line-height: 0.8;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-shadow: 0 3px 0 #ffffff;
}

.ribbon {
	display: inline-block;
	align-self: flex-start;
	margin: 24px 0 18px;
	padding: 7px 28px;
	clip-path: polygon(0 14%, 10% 14%, 13% 0, 87% 0, 90% 14%, 100% 14%, 94% 50%, 100% 86%, 90% 86%, 87% 100%, 13% 100%, 10% 86%, 0 86%, 6% 50%);
	color: #ffffff;
	background: var(--brown);
	font-size: 28px;
	font-style: italic;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.lead {
	max-width: 500px;
	margin: 0;
	font-size: 19px;
	line-height: 1.55;
}

.hero-badges {
	display: flex;
	margin: 25px 0 28px;
	align-items: flex-start;
	gap: 26px;
}

.hero-badges > div {
	min-width: 82px;
	color: var(--text);
	font-size: 12px;
	line-height: 1.35;
	text-align: center;
}

.hero-badges span {
	display: grid;
	width: 58px;
	height: 58px;
	margin: 0 auto 9px;
	place-items: center;
	border-radius: 50%;
	color: #ffffff;
	background: var(--brown);
	font-size: 25px;
	box-shadow: 0 8px 20px rgba(42, 15, 6, 0.16);
}

.hero-badges span i {
	color: #ffffff;
	font-size: 25px;
	line-height: 1;
}

.hero-badges b {
	display: block;
	font-weight: 900;
}

.btn {
	display: inline-flex;
	align-self: flex-start;
	padding: 14px 32px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 7px;
	color: #2d1708;
	background: linear-gradient(135deg, var(--gold2), var(--gold));
	box-shadow: 0 8px 24px rgba(185, 111, 0, 0.22);
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(185, 111, 0, 0.28);
}

.hero-visual {
	position: relative;
	align-self: center;
	min-width: 0;
	height: auto;
	overflow: hidden;
	border-radius: 34px;
	box-shadow: 0 30px 80px rgba(57, 27, 9, 0.18);
}

.hero-visual img {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */

.feature-strip {
	color: #ffffff;
	background: linear-gradient(90deg, #281006, #3d1a0b, #281006);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 24px 0;
}

.feature-grid article {
	display: flex;
	min-width: 0;
	padding: 0 28px;
	align-items: center;
	gap: 14px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-grid article:first-child {
	padding-left: 0;
}

.feature-grid article:last-child {
	padding-right: 0;
	border-right: 0;
}

.feature-grid article > span {
	display: grid;
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 1px solid rgba(255, 210, 88, 0.42);
	border-radius: 50%;
	color: #ffffff;
	font-size: 25px;
}

.feature-grid article > span i {
	color: #ffffff;
}

.feature-grid article > div {
	min-width: 0;
}

.feature-grid h3 {
	margin: 0 0 3px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
}

.feature-grid p {
	margin: 0;
	color: #e6d7cb;
	font-size: 12px;
	line-height: 1.45;
}

/* =========================================================
   GENEL BÖLÜMLER
   ========================================================= */

.section {
	padding: 88px 0;
}

.section-kicker {
	color: #7a3f0e;
	font-size: 19px;
}

.section h2 {
	margin: 0 0 18px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 54px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.section p {
	line-height: 1.7;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
}

.section-heading > p:last-child {
	margin: 0;
}

/* =========================================================
   HAKKIMIZDA
   ========================================================= */

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	align-items: center;
	gap: 55px;
}

.about-copy {
	min-width: 0;
}

.about-copy > p:not(.section-kicker) {
	margin: 0 0 15px;
}

.about-image {
	min-width: 0;
	overflow: hidden;
	padding: 0;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 30px 80px rgba(55, 27, 10, 0.14);
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	object-fit: cover;
	object-position: center;
}

.certs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 28px 0;
	gap: 12px;
}

.certs .cert-item {
	display: flex;
	min-width: 0;
	min-height: 125px;
	padding: 14px 8px 12px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	overflow: hidden;
	border: 1px solid #d7c49e;
	border-radius: 14px;
	background: #fffdf7;
	box-shadow: 0 8px 24px rgba(55, 27, 10, 0.07);
	text-align: center;
}

.certs .cert-item img {
	display: block;
	width: 76px;
	max-width: 100%;
	height: 68px;
	flex: 0 0 auto;
	object-fit: contain;
	object-position: center;
}

.certs .cert-item strong {
	display: block;
	width: 100%;
	color: var(--text);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
	overflow-wrap: break-word;
}

.btn-outline {
	border: 2px solid var(--gold);
	background: transparent;
	box-shadow: none;
}

.btn-outline:hover {
	color: var(--brown);
	background: var(--gold);
}

/* =========================================================
   ÜRÜN
   ========================================================= */

.product {
	background: #f6ead5;
}

.product-card {
	display: grid;
	grid-template-columns: minmax(0, 58%) minmax(0, 42%);
	align-items: stretch;
	overflow: hidden;
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 28px 70px rgba(69, 35, 13, 0.14);
}

.product-card > img {
	width: 100%;
	height: 100%;
	min-height: 410px;
	object-fit: cover;
	object-position: center;
}

.product-facts {
	display: flex;
	min-width: 0;
	padding: 46px;
	flex-direction: column;
	justify-content: center;
}

.product-facts h3 {
	display: flex;
	margin: 0 0 15px;
	align-items: center;
	gap: 10px;
	font-size: 28px;
}

.product-facts h3 i {
	color: var(--green);
}

.product-facts p {
	margin: 0 0 14px;
}

.product-facts ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-facts li {
	display: flex;
	padding: 12px 0;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--line);
	font-weight: 800;
}

.product-facts li:last-child {
	border-bottom: 0;
}

.product-facts li::before {
	display: none;
}

.product-facts li i {
	flex: 0 0 auto;
	width: 20px;
	color: #2f772e;
	text-align: center;
}

/* =========================================================
   BESİN DEĞERLERİ
   ========================================================= */

.nutrition {
	color: #ffffff;
	background: var(--brown);
}

.nutrition-grid {
	display: grid;
	grid-template-columns: minmax(0, 36%) minmax(0, 64%);
	align-items: center;
	gap: 80px;
}

.nutrition .section-kicker {
	color: var(--gold2);
}

.nutrition h2 {
	color: #ffffff;
}

.muted {
	color: #d9c8bc;
}

.muted i {
	margin-right: 6px;
	color: var(--gold2);
}

.nutrition-table {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.13);
}

.nutrition-table div {
	display: flex;
	padding: 16px 20px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #321409;
}

.nutrition-table span {
	display: flex;
	align-items: center;
	gap: 9px;
}

.nutrition-table span i {
	width: 18px;
	color: #ffffff;
	text-align: center;
}

.nutrition-table b {
	flex: 0 0 auto;
	color: var(--gold2);
	text-align: right;
}

/* =========================================================
   TÜKETİM ÖNERİLERİ
   ========================================================= */

.usage-image {
	width: 100%;
	height: auto;
	border-radius: 22px;
	object-fit: contain;
	object-position: center;
	box-shadow: 0 24px 60px rgba(57, 30, 12, 0.14);
}

/* =========================================================
   KAMPANYA
   ========================================================= */

.campaign {
	background: #f7e7bf;
}

.campaign-grid {
	display: grid;
	grid-template-columns: minmax(0, 46%) minmax(0, 54%);
	align-items: center;
	gap: 75px;
}

.campaign-grid > img {
	width: 100%;
	max-height: 760px;
	margin: 0 auto;
	border-radius: 26px;
	object-fit: cover;
	object-position: top center;
	box-shadow: 0 25px 60px rgba(61, 34, 15, 0.2);
}

.campaign-copy {
	min-width: 0;
}

.campaign-copy > p:not(.section-kicker) {
	margin: 0;
}

.check-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 25px;
	gap: 12px;
}

.check-list span {
	display: flex;
	padding: 13px 15px;
	align-items: center;
	gap: 9px;
	border-radius: 8px;
	background: #fff6df;
	font-weight: 900;
	line-height: 1.4;
}

.check-list span i {
	flex: 0 0 auto;
	color: var(--green);
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
	overflow: hidden;
	padding: 58px 0 20px;
	color: #fff5e6;
	background: #281006;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 0.65fr;
	align-items: start;
	gap: 55px;
}

.footer-grid > div {
	min-width: 0;
}

.footer-logo {
	width: 220px;
	max-width: 100%;
	margin-bottom: 18px;
}

.footer-grid > div:first-child p {
	max-width: 340px;
	margin: 0;
	color: #d9c8bc;
	font-size: 14px;
	line-height: 1.7;
}

.footer-grid h4 {
	margin: 5px 0 18px;
	color: var(--gold2);
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer-grid > div:nth-child(2) > a {
	display: block;
	width: fit-content;
	margin: 9px 0;
	color: #fff5e6;
	font-size: 14px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid > div:nth-child(2) > a:hover {
	color: var(--gold2);
	transform: translateX(4px);
}

.footer-grid > div:nth-child(3) p {
	display: flex;
	margin: 0 0 13px;
	align-items: flex-start;
	gap: 10px;
	color: #fff5e6;
	font-size: 14px;
	line-height: 1.5;
}

.footer-grid > div:nth-child(3) p i {
	flex: 0 0 auto;
	width: 17px;
	margin-top: 3px;
	color: var(--gold2);
	text-align: center;
}

.footer-grid > div:nth-child(3) p a {
	display: inline;
	margin: 0;
	overflow-wrap: anywhere;
}

.footer-grid > div:nth-child(3) p a:hover {
	color: var(--gold2);
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.socials a {
	display: grid;
	width: 40px;
	height: 40px;
	margin: 0;
	place-items: center;
	border: 1px solid #8e725e;
	border-radius: 50%;
	color: #ffffff;
	background: transparent;
	font-size: 16px;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
	border-color: var(--gold);
	color: var(--brown);
	background: var(--gold);
	transform: translateY(-2px);
}

.footer-bottom {
	display: flex;
	margin-top: 35px;
	padding-top: 20px;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #6a4a37;
	color: #cdbdaf;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.footer-bottom span {
	display: block;
	width: 100%;
	text-align: center;
}

/* =========================================================
   1200 PX
   ========================================================= */

@media (max-width: 1200px) {
	.container {
		width: calc(100% - 48px);
	}

	.main-nav {
		gap: 22px;
	}

	.main-nav a {
		font-size: 12px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 44%) minmax(0, 56%);
		gap: 32px;
	}

	.hero h1 {
		font-size: 92px;
	}

	.about-grid {
		grid-template-columns: minmax(0, 45%) minmax(0, 55%);
		gap: 38px;
	}

	.certs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feature-grid article {
		padding: 0 18px;
	}

	.feature-grid article:first-child {
		padding-left: 0;
	}

	.feature-grid article:last-child {
		padding-right: 0;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 0.75fr 1fr 0.65fr;
		gap: 32px;
	}
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
	.container {
		width: calc(100% - 40px);
	}

	.nav-toggle {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: 82px;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 82px);
		margin: 0;
		padding: 14px 20px 20px;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow-y: auto;
		background: #2b1006;
		box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
	}

	.main-nav.open {
		display: flex;
	}

	.main-nav a {
		padding: 15px 10px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 14px;
	}

	.main-nav a:last-child {
		border-bottom: 0;
	}

	.main-nav a::after {
		right: auto;
		bottom: 0;
		width: 0;
	}

	.main-nav a:hover::after,
	.main-nav a.active::after {
		right: auto;
		width: 55px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 0;
	}

	.hero-copy {
		padding: 48px 0 34px;
	}

	.hero-visual {
		width: 100%;
		height: 520px;
		margin-bottom: 34px;
		border-radius: 26px;
	}

	.hero-visual img {
		width: 100%;
		height: 100%;
		transform: none;
	}

	.hero h1 {
		font-size: 84px;
	}

	.feature-grid {
		grid-template-columns: 1fr 1fr;
		padding: 14px 0;
		row-gap: 0;
	}

	.feature-grid article {
		padding: 18px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.feature-grid article:first-child {
		padding-left: 20px;
	}

	.feature-grid article:nth-child(2) {
		padding-right: 20px;
		border-right: 0;
	}

	.feature-grid article:nth-child(3) {
		border-bottom: 0;
	}

	.feature-grid article:last-child {
		padding-right: 20px;
		border-bottom: 0;
	}

	.about-grid,
	.nutrition-grid,
	.campaign-grid {
		grid-template-columns: 1fr;
	}

	.about-grid {
		gap: 35px;
	}

	.certs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.nutrition-grid {
		gap: 38px;
	}

	.campaign-grid {
		gap: 38px;
	}

	.campaign-grid > img {
		max-width: 620px;
	}

	.product-card {
		grid-template-columns: 1fr;
	}

	.product-card > img {
		height: auto;
		min-height: 0;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 42px 55px;
	}

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

	.footer-grid > div:first-child p {
		max-width: 520px;
	}
}

/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 600px) {
	.container {
		width: calc(100% - 28px);
	}

	.site-header .brand {
		width: 145px;
	}

	.header-inner {
		height: 70px;
		gap: 15px;
	}

	.brand img {
		height: 52px;
	}

	.main-nav {
		top: 70px;
		max-height: calc(100vh - 70px);
		padding-right: 14px;
		padding-left: 14px;
	}

	.hero {
		background: linear-gradient(180deg, #fffaf0 0%, #fffaf0 48%, rgba(255, 250, 240, 0.68) 68%, rgba(255, 250, 240, 0.18));
	}

	.hero-copy {
		padding: 42px 0 30px;
	}

	.eyebrow {
		font-size: 27px;
	}

	.hero h1 {
		font-size: 68px;
	}

	.ribbon {
		margin: 19px 0 16px;
		padding: 7px 23px;
		font-size: 23px;
	}

	.lead {
		font-size: 16px;
	}

	.hero-badges {
		width: 100%;
		justify-content: space-between;
		gap: 8px;
	}

	.hero-badges > div {
		flex: 1 1 0;
		min-width: 0;
		font-size: 11px;
	}

	.hero-badges span {
		width: 50px;
		height: 50px;
	}

	.hero-badges span i {
		font-size: 21px;
	}

	.btn {
		width: 100%;
		padding: 14px 20px;
	}

	.hero-visual {
		height: 410px;
		margin: 0 0 24px;
		border-radius: 20px;
	}

	.hero-visual img {
		width: 100%;
		height: 100%;
		object-position: center;
		transform: none;
	}

	.feature-grid {
		grid-template-columns: 1fr;
		padding: 10px 0;
		row-gap: 0;
	}

	.feature-grid article {
		padding: 16px 5px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.feature-grid article:first-child {
		padding-left: 5px;
	}

	.feature-grid article:nth-child(2) {
		padding-right: 5px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.feature-grid article:nth-child(3) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.feature-grid article:last-child {
		padding-right: 5px;
		border-bottom: 0;
	}

	.feature-grid article > span {
		width: 48px;
		height: 48px;
		font-size: 21px;
	}

	.section {
		padding: 62px 0;
	}

	.section-kicker {
		font-size: 17px;
	}

	.section h2 {
		font-size: 42px;
	}

	.section-heading {
		margin-bottom: 28px;
	}

	.about-grid {
		gap: 28px;
	}

	.certs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.certs .cert-item {
		min-height: 115px;
		padding: 12px 8px 10px;
	}

	.certs .cert-item img {
		width: 70px;
		height: 62px;
	}

	.certs .cert-item strong {
		font-size: 10px;
	}

	.product-card {
		border-radius: 20px;
	}

	.product-facts {
		padding: 26px 22px;
	}

	.product-facts h3 {
		font-size: 25px;
	}

	.nutrition-table div {
		padding: 14px 15px;
		gap: 12px;
		font-size: 13px;
	}

	.nutrition-table span {
		gap: 7px;
	}

	.campaign-grid {
		gap: 28px;
	}

	.campaign-grid > img {
		width: 100%;
		max-height: none;
		border-radius: 20px;
	}

	.check-list {
		grid-template-columns: 1fr;
	}

	.usage-image {
		height: auto;
		border-radius: 17px;
		object-fit: contain;
	}

	footer {
		padding: 48px 0 18px;
	}

	.footer-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.footer-grid > div {
		width: 100%;
		padding: 24px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.11);
	}

	.footer-grid > div:first-child {
		grid-column: auto;
		padding-top: 0;
	}

	.footer-grid > div:last-child {
		border-bottom: 0;
	}

	.footer-logo {
		width: 185px;
		margin-bottom: 16px;
	}

	.footer-grid > div:first-child p {
		max-width: 100%;
		font-size: 14px;
	}

	.footer-grid h4 {
		margin: 0 0 15px;
		font-size: 13px;
	}

	.footer-grid > div:nth-child(2) > a {
		width: 100%;
		margin: 0;
		padding: 8px 0;
	}

	.footer-grid > div:nth-child(3) p {
		width: 100%;
		margin-bottom: 14px;
	}

	.footer-grid > div:nth-child(3) p:last-child {
		margin-bottom: 0;
	}

	.socials {
		gap: 12px;
	}

	.socials a {
		width: 42px;
		height: 42px;
	}

	.footer-bottom {
		margin-top: 8px;
		padding-top: 20px;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.footer-bottom span {
		width: 100%;
		color: #a99485;
		text-align: center;
	}
}

/* =========================================================
   ÇOK KÜÇÜK EKRANLAR
   ========================================================= */

@media (max-width: 390px) {
	.container {
		width: calc(100% - 22px);
	}

	.site-header .brand {
		width: 132px;
	}

	.hero h1 {
		font-size: 60px;
	}

	.eyebrow {
		font-size: 24px;
	}

	.hero-badges > div {
		font-size: 10px;
	}

	.hero-badges span {
		width: 46px;
		height: 46px;
	}

	.hero-visual {
		height: 350px;
	}

	.section h2 {
		font-size: 37px;
	}

	.certs .cert-item {
		min-height: 108px;
	}

	.certs .cert-item img {
		width: 62px;
		height: 56px;
	}

	.certs .cert-item strong {
		font-size: 9px;
	}

	.product-facts {
		padding: 23px 18px;
	}

	.nutrition-table div {
		font-size: 12px;
	}

	.footer-logo {
		width: 170px;
	}
}