/* =====================================================================
   NORS Luxe — Ana Stil
   İskandinav lüksü: derin çam yeşili, krem kâğıt, adaçayı ve pirinç.
   ===================================================================== */

/* ---------- 1. Tasarım Değişkenleri ---------- */
:root {
	/* Renk */
	--nors-ink: #0e120f;
	--nors-pine: #16201a;
	--nors-pine-2: #1f2b23;
	--nors-pine-3: #27352c;
	--nors-sage: #bdecb6;
	--nors-sage-soft: #d8f3d3;
	--nors-sage-ink: #3e6b47;
	--nors-brass: #b9975b;
	--nors-brass-soft: #d3b98a;
	--nors-cream: #f6f2e9;
	--nors-linen: #ede7da;
	--nors-paper: #fbf9f4;
	--nors-text: #23281f;
	--nors-text-soft: #5c6357;
	--nors-text-light: #e9ede6;
	--nors-text-light-soft: #a7b0a2;
	--nors-line: rgba(35, 40, 31, 0.14);
	--nors-line-light: rgba(233, 237, 230, 0.16);
	--nors-danger: #a4442e;
	--nors-on-dark: #f6f2e9; /* Kalıcı koyu yüzeylerdeki metin — şemayla DEĞİŞMEZ */

	/* Tipografi */
	--ff-display: "Cormorant Garamond", "Times New Roman", serif;
	--ff-sans: "Jost", "Helvetica Neue", sans-serif;

	/* Ölçüler */
	--nors-header-h: 78px;
	--nors-container: 1240px;
	--nors-gutter: clamp(1.25rem, 4vw, 2.5rem);
	--nors-section: clamp(4.5rem, 9vw, 7.5rem);
	--nors-radius: 3px;

	/* Hareket */
	--nors-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--nors-dur: 0.55s;

	color-scheme: light dark;
}

/* ---------- 2. Taban ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nors-cream);
	color: var(--nors-text);
	font-family: var(--ff-sans);
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--nors-ease);
}

p {
	margin: 0 0 1.2em;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-display);
	font-weight: 550;
	line-height: 1.12;
	margin: 0 0 0.5em;
	color: inherit;
	letter-spacing: 0.005em;
}

::selection {
	background: var(--nors-sage);
	color: var(--nors-ink);
}

body.nors-lock {
	overflow: hidden;
}

/* Erişilebilirlik */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 0.8em 1.4em;
	background: var(--nors-pine);
	color: var(--nors-sage);
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	clip: auto;
	width: auto;
	height: auto;
}

:focus-visible {
	outline: 2px solid var(--nors-sage-ink);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- 3. Yardımcılar ---------- */
.nors-container {
	width: 100%;
	max-width: calc(var(--nors-container) + 2 * var(--nors-gutter));
	margin-inline: auto;
	padding-inline: var(--nors-gutter);
}

.nors-eyebrow {
	font-family: var(--ff-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--nors-sage-ink);
	margin: 0 0 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nors-eyebrow::before {
	content: "";
	width: 2.2rem;
	height: 1px;
	background: var(--nors-brass);
	flex: none;
}

.nors-eyebrow--light {
	color: var(--nors-sage);
}

.nors-section-title {
	font-size: clamp(2rem, 4vw, 3.1rem);
	max-width: 22ch;
}

.nors-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.nors-section-head .nors-section-title {
	margin-bottom: 0;
}

/* Butonlar */
.nors-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	padding: 1.02rem 2.1rem 0.95rem;
	font-family: var(--ff-sans);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1;
	border-radius: var(--nors-radius);
	border: 1px solid transparent;
	transition: all 0.35s var(--nors-ease);
	white-space: nowrap;
}

.nors-btn .nors-icon {
	transition: transform 0.35s var(--nors-ease);
}

.nors-btn:hover .nors-icon--arrow {
	transform: translateX(4px);
}

.nors-btn--sage {
	background: var(--nors-sage);
	color: var(--nors-ink);
	border-color: var(--nors-sage);
}

.nors-btn--sage:hover {
	background: var(--nors-paper);
	border-color: var(--nors-paper);
	color: var(--nors-ink);
}

.nors-btn--ink {
	background: var(--nors-pine);
	color: var(--nors-on-dark);
	border-color: var(--nors-pine);
}

.nors-btn--ink:hover {
	background: var(--nors-sage-ink);
	border-color: var(--nors-sage-ink);
	color: #fff;
}

.nors-btn--ghost {
	background: transparent;
	color: var(--nors-on-dark);
	border-color: rgba(246, 242, 233, 0.55);
}

.nors-btn--ghost:hover {
	border-color: var(--nors-sage);
	color: var(--nors-sage);
}

.nors-btn--ghost-dark {
	background: transparent;
	color: var(--nors-text);
	border-color: var(--nors-line);
}

.nors-btn--ghost-dark:hover {
	border-color: var(--nors-sage-ink);
	color: var(--nors-sage-ink);
}

/* Linkler */
.nors-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nors-text);
	border-bottom: 1px solid var(--nors-brass);
	padding-bottom: 0.4rem;
	transition: color 0.3s var(--nors-ease), gap 0.3s var(--nors-ease);
}

.nors-link-arrow:hover {
	color: var(--nors-sage-ink);
	gap: 0.9rem;
}

.nors-link-underline {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nors-text);
	background-image: linear-gradient(var(--nors-brass), var(--nors-brass));
	background-size: 100% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	padding-bottom: 0.35rem;
	transition: color 0.3s;
}

.nors-link-underline:hover {
	color: var(--nors-sage-ink);
}

/* Reveal animasyonu */
.nors-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s var(--nors-ease), transform 0.8s var(--nors-ease);
}

.nors-reveal.is-visible,
.no-js .nors-reveal {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.nors-reveal {
		opacity: 1;
		transform: none;
	}
}

/* ---------- 4. Duyuru Barı ---------- */
.nors-topbar {
	background: var(--nors-ink);
	color: var(--nors-text-light-soft);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	border-bottom: 1px solid rgba(189, 236, 182, 0.08);
}

.nors-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 42px;
}

.nors-topbar__msg {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0;
	color: var(--nors-sage);
}

.nors-topbar__msg a {
	color: var(--nors-sage);
}

.nors-topbar__msg a:hover {
	color: #fff;
}

.nors-topbar__meta {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.nors-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--nors-text-light-soft);
}

.nors-topbar__phone:hover,
.nors-topbar__ig:hover {
	color: var(--nors-sage);
}

.nors-topbar__ig {
	display: inline-flex;
	color: var(--nors-text-light-soft);
}

/* ---------- 5. Header ---------- */
.nors-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--nors-pine);
	color: var(--nors-text-light);
	border-bottom: 1px solid var(--nors-line-light);
	transition: background 0.4s var(--nors-ease), box-shadow 0.4s var(--nors-ease), border-color 0.4s var(--nors-ease);
}

.admin-bar .nors-header {
	top: 32px;
}

.nors-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: var(--nors-header-h);
	gap: 1.5rem;
}

/* Şeffaf varyant (ana sayfa hero üzeri) */
.nors-header-transparent .nors-header {
	background: transparent;
	border-bottom-color: rgba(233, 237, 230, 0.12);
	margin-bottom: calc(-1 * var(--nors-header-h));
}

.nors-header-transparent .nors-header.is-stuck {
	background: rgba(14, 18, 15, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 40px rgba(8, 11, 9, 0.35);
}

.nors-header-solid .nors-header.is-stuck {
	background: rgba(22, 32, 26, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 40px rgba(8, 11, 9, 0.28);
}

/* Marka */
.nors-header__brand {
	justify-self: center;
	display: flex;
	align-items: center;
}

.nors-header__brand .custom-logo-link {
	display: block;
	line-height: 0;
}

.nors-header__brand .custom-logo {
	max-height: 40px;
	width: auto;
}

.nors-wordmark {
	font-family: var(--ff-display);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: currentColor;
}

.nors-wordmark span {
	color: var(--nors-sage);
}

/* Bölünmüş nav: logo solu ve sağı */
.nors-nav--left {
	justify-self: start;
	min-width: 0;
}

.nors-header__end {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: clamp(0.9rem, 1.6vw, 1.6rem);
	min-width: 0;
}

.nors-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.95rem, 1.6vw, 1.7rem);
	list-style: none;
	white-space: nowrap;
}

.nors-nav__list > li {
	position: relative;
}

.nors-nav__list > li > a {
	display: inline-block;
	padding: 0.6rem 0;
	font-size: 0.8rem;
	font-weight: 450;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--nors-text-light);
	background-image: linear-gradient(var(--nors-sage), var(--nors-sage));
	background-size: 0 1px;
	background-position: 0 calc(100% - 2px);
	background-repeat: no-repeat;
	transition: background-size 0.35s var(--nors-ease), color 0.3s;
}

.nors-nav__list > li > a:hover,
.nors-nav__list > li.current-menu-item > a,
.nors-nav__list > li.current-menu-ancestor > a {
	color: var(--nors-sage);
	background-size: 100% 1px;
}

/* Açılır alt menü */
.nors-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	transform: translate(-50%, 10px);
	min-width: 230px;
	list-style: none;
	background: var(--nors-paper);
	color: var(--nors-text);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	box-shadow: 0 24px 60px rgba(14, 18, 15, 0.18);
	padding: 0.7rem 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--nors-ease), transform 0.3s var(--nors-ease), visibility 0.3s;
	z-index: 5;
}

.nors-nav__list li:hover > .sub-menu,
.nors-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.nors-nav__list .sub-menu a {
	display: block;
	padding: 0.55rem 1.4rem;
	font-size: 0.86rem;
	letter-spacing: 0.04em;
	color: var(--nors-text);
}

.nors-nav__list .sub-menu a:hover {
	color: var(--nors-sage-ink);
	background: var(--nors-linen);
}

/* Sağ aksiyonlar */
.nors-header__actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.nors-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--nors-text-light);
	transition: color 0.3s, background 0.3s;
}

.nors-action:hover {
	color: var(--nors-sage);
	background: rgba(189, 236, 182, 0.08);
}

.nors-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nors-brass);
	color: var(--nors-ink);
	font-size: 0.64rem;
	font-weight: 600;
	border-radius: 999px;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.3s, transform 0.3s var(--nors-ease);
}

.nors-cart-count.has-items {
	opacity: 1;
	transform: scale(1);
}

.nors-header__burger {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	color: var(--nors-text-light);
}

/* ---------- 6. Overlay temelleri ---------- */
.nors-overlay-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: currentColor;
	transition: color 0.3s, transform 0.3s var(--nors-ease);
}

.nors-overlay-close:hover {
	color: var(--nors-sage);
	transform: rotate(90deg);
}

/* Mobil menü */
.nors-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: var(--nors-ink);
	color: var(--nors-text-light);
	display: flex;
	flex-direction: column;
	padding: 1.2rem var(--nors-gutter) 2rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-2%);
	transition: opacity 0.45s var(--nors-ease), transform 0.45s var(--nors-ease), visibility 0.45s;
	overflow-y: auto;
}

.nors-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.nors-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
}

.nors-mobile-menu__head .custom-logo {
	max-height: 36px;
	width: auto;
}

.nors-mobile-menu__nav {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 2.5rem 0;
}

.nors-mobile-menu__list {
	list-style: none;
	width: 100%;
}

.nors-mobile-menu__list > li {
	overflow: hidden;
}

.nors-mobile-menu__list > li > a {
	display: block;
	font-family: var(--ff-display);
	font-size: clamp(2rem, 7vw, 3rem);
	font-weight: 550;
	line-height: 1.35;
	padding: 0.25rem 0;
	color: var(--nors-on-dark);
	transition: color 0.3s, padding-left 0.35s var(--nors-ease);
}

.nors-mobile-menu__list > li > a:hover,
.nors-mobile-menu__list > li.current-menu-item > a {
	color: var(--nors-sage);
	padding-left: 0.6rem;
}

.nors-mobile-menu__list .sub-menu {
	list-style: none;
	padding-left: 1.2rem;
	margin: 0.2rem 0 0.8rem;
}

.nors-mobile-menu__list .sub-menu a {
	display: block;
	padding: 0.3rem 0;
	font-size: 1.05rem;
	color: var(--nors-text-light-soft);
}

.nors-mobile-menu__list .sub-menu a:hover {
	color: var(--nors-sage);
}

.nors-mobile-menu__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	border-top: 1px solid var(--nors-line-light);
	padding-top: 1.5rem;
}

.nors-mobile-menu__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--nors-text-light);
	letter-spacing: 0.06em;
}

.nors-mobile-menu__phone:hover {
	color: var(--nors-sage);
}

/* Arama overlay */
.nors-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: rgba(14, 18, 15, 0.97);
	backdrop-filter: blur(8px);
	color: var(--nors-text-light);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s var(--nors-ease), visibility 0.4s;
}

.nors-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.nors-search-overlay .nors-overlay-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
}

.nors-search-overlay__inner {
	width: min(680px, 88vw);
	transform: translateY(14px);
	transition: transform 0.45s var(--nors-ease);
}

.nors-search-overlay.is-open .nors-search-overlay__inner {
	transform: none;
}

.nors-search-overlay .nors-searchform {
	border-bottom: 1px solid var(--nors-line-light);
}

.nors-search-overlay .nors-searchform__input {
	background: transparent;
	border: 0;
	width: 100%;
	font-family: var(--ff-display);
	font-size: clamp(1.8rem, 5vw, 3rem);
	font-weight: 500;
	color: var(--nors-on-dark);
	padding: 0.4em 3rem 0.4em 0;
	outline: none;
}

.nors-search-overlay .nors-searchform__input::placeholder {
	color: rgba(233, 237, 230, 0.35);
}

.nors-search-overlay__hint {
	margin-top: 1.2rem;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	color: var(--nors-text-light-soft);
}

.nors-searchform {
	position: relative;
	display: flex;
	align-items: center;
}

.nors-searchform__submit {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	color: currentColor;
	opacity: 0.75;
	transition: opacity 0.3s;
}

.nors-searchform__submit:hover {
	opacity: 1;
	color: var(--nors-sage);
}

/* ---------- 7. Hero ---------- */
.nors-hero {
	position: relative;
	min-height: min(94vh, 900px);
	display: flex;
	align-items: flex-end;
	background: var(--nors-pine);
	color: #f6f2e9;
	overflow: hidden;
}

.nors-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nors-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(14, 18, 15, 0.55) 0%, rgba(14, 18, 15, 0.15) 40%, rgba(14, 18, 15, 0.78) 100%),
		radial-gradient(120% 90% at 15% 100%, rgba(14, 18, 15, 0.55) 0%, transparent 55%);
}

.nors-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: calc(var(--nors-header-h) + 6rem);
	padding-bottom: clamp(4rem, 10vh, 7.5rem);
	max-width: calc(var(--nors-container) + 2 * var(--nors-gutter));
}

.nors-hero__eyebrow {
	animation: nors-fade-up 0.9s var(--nors-ease) 0.1s both;
}

.nors-hero__title {
	font-size: clamp(2.9rem, 7.2vw, 5.6rem);
	font-weight: 530;
	line-height: 1.04;
	letter-spacing: 0.005em;
	max-width: 15ch;
	margin-bottom: 0.4em;
	animation: nors-fade-up 0.9s var(--nors-ease) 0.22s both;
}

.nors-hero__subtitle {
	font-size: clamp(1.02rem, 1.6vw, 1.2rem);
	font-weight: 300;
	letter-spacing: 0.02em;
	color: rgba(246, 242, 233, 0.85);
	max-width: 52ch;
	margin-bottom: 2.4rem;
	animation: nors-fade-up 0.9s var(--nors-ease) 0.34s both;
}

.nors-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	animation: nors-fade-up 0.9s var(--nors-ease) 0.46s both;
}

.nors-hero__scroll {
	position: absolute;
	right: clamp(1.5rem, 4vw, 3rem);
	bottom: 0;
	z-index: 1;
	height: 110px;
	display: flex;
	justify-content: center;
}

.nors-hero__scroll-line {
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent, var(--nors-sage));
	animation: nors-line-drop 2.2s var(--nors-ease) infinite;
	transform-origin: top;
}

@keyframes nors-fade-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes nors-line-drop {
	0% {
		transform: scaleY(0);
	}
	55% {
		transform: scaleY(1);
	}
	100% {
		transform: scaleY(1);
		opacity: 0;
	}
}

/* ---------- 8. Vaat Şeridi ---------- */
.nors-ribbon {
	background: var(--nors-paper);
	border-bottom: 1px solid var(--nors-line);
}

.nors-ribbon__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding: 1.8rem 0;
}

.nors-ribbon__list li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	font-size: 0.86rem;
	font-weight: 450;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nors-text-soft);
	text-align: center;
}

.nors-ribbon__list .nors-icon {
	color: var(--nors-brass);
	flex: none;
}

/* ---------- 9. Hikâye ---------- */
.nors-story {
	padding: var(--nors-section) 0;
	overflow: hidden;
}

.nors-story__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}

.nors-story__media {
	position: relative;
	padding-bottom: 3.5rem;
	padding-right: 3.5rem;
}

.nors-story__img-main {
	margin: 0;
	overflow: hidden;
	border-radius: var(--nors-radius);
}

.nors-story__img-main img {
	aspect-ratio: 4 / 4.6;
	object-fit: cover;
	width: 100%;
	transition: transform 1.2s var(--nors-ease);
}

.nors-story__media:hover .nors-story__img-main img {
	transform: scale(1.035);
}

.nors-story__img-small {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 46%;
	margin: 0;
	border: 6px solid var(--nors-cream);
	border-radius: var(--nors-radius);
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(14, 18, 15, 0.22);
}

.nors-story__img-small img {
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	width: 100%;
}

.nors-story__stamp {
	position: absolute;
	top: -1.6rem;
	left: -1.6rem;
	width: 92px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nors-pine);
	color: var(--nors-sage);
	border-radius: 50%;
	box-shadow: 0 18px 44px rgba(14, 18, 15, 0.25);
}

.nors-story__text {
	font-size: 1.08rem;
	color: var(--nors-text-soft);
	max-width: 46ch;
	margin-bottom: 2.2rem;
}

/* ---------- 10. Ürün Vitrini ---------- */
.nors-showcase {
	padding: var(--nors-section) 0;
	background: var(--nors-linen);
	border-block: 1px solid var(--nors-line);
}

.nors-showcase__scroller-wrap {
	position: relative;
}

.nors-showcase__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: clamp(240px, 26vw, 320px);
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 0.5rem 0.25rem 1.5rem;
	list-style: none;
	scrollbar-width: thin;
	scrollbar-color: var(--nors-brass) transparent;
}

.nors-showcase__track > li {
	scroll-snap-align: start;
}

.nors-showcase__nav {
	display: flex;
	justify-content: flex-end;
	gap: 0.6rem;
	margin-top: 0.5rem;
}

.nors-scroll-btn {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--nors-line);
	border-radius: 50%;
	color: var(--nors-text);
	transition: all 0.3s var(--nors-ease);
	background: var(--nors-paper);
}

.nors-scroll-btn:hover {
	background: var(--nors-pine);
	border-color: var(--nors-pine);
	color: var(--nors-sage);
}

.nors-scroll-btn[disabled] {
	opacity: 0.35;
	pointer-events: none;
}

/* ---------- 11. Deneyim Karoları ---------- */
.nors-experience {
	padding: var(--nors-section) 0;
}

.nors-experience__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.nors-tile {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--nors-radius);
	background: var(--nors-pine-2);
	color: var(--nors-on-dark);
}

.nors-tile__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--nors-ease);
}

.nors-tile:hover .nors-tile__img {
	transform: scale(1.06);
}

.nors-tile__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(200deg, rgba(14, 18, 15, 0.05) 30%, rgba(14, 18, 15, 0.82) 100%);
	transition: background 0.5s;
}

.nors-tile__body {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 1.8rem;
	display: grid;
	gap: 0.35rem;
}

.nors-tile__title {
	font-family: var(--ff-display);
	font-size: 1.7rem;
	font-weight: 570;
	line-height: 1.15;
}

.nors-tile__text {
	font-size: 0.9rem;
	font-weight: 300;
	letter-spacing: 0.03em;
	color: rgba(246, 242, 233, 0.82);
	max-width: 30ch;
}

.nors-tile__cta {
	margin-top: 0.7rem;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(246, 242, 233, 0.4);
	border-radius: 50%;
	color: var(--nors-on-dark);
	transition: all 0.35s var(--nors-ease);
}

.nors-tile:hover .nors-tile__cta {
	background: var(--nors-sage);
	border-color: var(--nors-sage);
	color: var(--nors-ink);
	transform: translateX(4px);
}

/* ---------- 12. Franchise Bandı ---------- */
.nors-franchise {
	position: relative;
	padding: clamp(5rem, 12vw, 9rem) 0;
	background: var(--nors-pine) center/cover no-repeat fixed;
	color: var(--nors-on-dark);
	overflow: hidden;
}

.nors-franchise__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(14, 18, 15, 0.88) 0%, rgba(14, 18, 15, 0.55) 60%, rgba(14, 18, 15, 0.35) 100%);
}

.nors-franchise__inner {
	position: relative;
	z-index: 1;
	max-width: calc(var(--nors-container) + 2 * var(--nors-gutter));
}

.nors-franchise__title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	max-width: 18ch;
}

.nors-franchise__text {
	font-size: 1.06rem;
	font-weight: 300;
	color: rgba(246, 242, 233, 0.85);
	max-width: 52ch;
	margin-bottom: 2.4rem;
}

/* ---------- 13. Blog / Kartlar ---------- */
.nors-journal {
	padding: var(--nors-section) 0;
}

.nors-journal__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.nors-post-card {
	display: flex;
	flex-direction: column;
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	overflow: hidden;
	transition: transform 0.5s var(--nors-ease), box-shadow 0.5s var(--nors-ease);
}

.nors-post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px rgba(14, 18, 15, 0.12);
}

.nors-post-card__media {
	display: block;
	overflow: hidden;
	background: var(--nors-linen);
}

.nors-post-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10.5;
	object-fit: cover;
	transition: transform 1s var(--nors-ease);
}

.nors-post-card:hover .nors-post-card__media img {
	transform: scale(1.05);
}

.nors-post-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10.5;
	color: var(--nors-brass);
}

.nors-post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.7rem 1.7rem 1.9rem;
}

.nors-post-card__meta {
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--nors-brass);
	margin-bottom: 0.7rem;
}

.nors-post-card__title {
	font-size: 1.45rem;
	line-height: 1.25;
	margin-bottom: 0.6rem;
}

.nors-post-card__title a:hover {
	color: var(--nors-sage-ink);
}

.nors-post-card__excerpt {
	color: var(--nors-text-soft);
	font-size: 0.95rem;
	margin-bottom: 1.4rem;
	flex: 1;
}

/* ---------- 14. İç Sayfa Hero + İçerik ---------- */
.nors-page-hero {
	background: var(--nors-pine);
	color: var(--nors-on-dark);
	padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.8rem, 6vw, 4.5rem);
	position: relative;
	overflow: hidden;
}

.nors-page-hero::after {
	content: "";
	position: absolute;
	right: -8%;
	bottom: -55%;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(189, 236, 182, 0.14);
	border-radius: 50%;
	pointer-events: none;
}

.nors-page-hero .nors-eyebrow {
	color: var(--nors-sage);
}

.nors-page-hero__title {
	font-size: clamp(2.3rem, 5.4vw, 4rem);
	max-width: 20ch;
	margin-bottom: 0.2em;
}

.nors-page-hero__lead {
	font-weight: 300;
	color: rgba(246, 242, 233, 0.8);
	max-width: 58ch;
	margin: 0.8rem 0 0;
}

.nors-page-content {
	padding: clamp(3rem, 7vw, 5rem) 0 var(--nors-section);
}

/* Düzyazı */
.nors-prose {
	max-width: 760px;
	margin-inline: auto;
	font-size: 1.05rem;
	line-height: 1.85;
}

.nors-prose h2 {
	font-size: 1.9rem;
	margin-top: 2em;
}

.nors-prose h3 {
	font-size: 1.5rem;
	margin-top: 1.8em;
}

.nors-prose a:where(:not(.nors-btn)):where(:not(.button)) {
	color: var(--nors-sage-ink);
	background-image: linear-gradient(var(--nors-brass), var(--nors-brass));
	background-size: 100% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
}

.nors-prose a:where(:not(.nors-btn)):where(:not(.button)):hover {
	color: var(--nors-ink);
}

.nors-prose blockquote {
	margin: 2.2em 0;
	padding: 0.4em 0 0.4em 1.8em;
	border-left: 2px solid var(--nors-brass);
	font-family: var(--ff-display);
	font-size: 1.45rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--nors-text);
}

.nors-prose img {
	border-radius: var(--nors-radius);
	margin: 1.6em auto;
}

.nors-prose ul,
.nors-prose ol {
	padding-left: 1.3em;
	margin-bottom: 1.4em;
}

.nors-prose li {
	margin-bottom: 0.45em;
}

.nors-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.8em 0;
	font-size: 0.95rem;
}

.nors-prose th,
.nors-prose td {
	border-bottom: 1px solid var(--nors-line);
	padding: 0.7em 0.8em;
	text-align: left;
}

.nors-prose th {
	font-family: var(--ff-sans);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: var(--nors-text-soft);
}

/* Hizalamalar */
.alignwide {
	max-width: var(--nors-container);
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-inline: calc(50% - 50vw);
}

.aligncenter {
	margin-inline: auto;
}

/* ---------- 15. Makale ---------- */
.nors-article__hero {
	background: var(--nors-pine);
	color: var(--nors-on-dark);
	padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4.5rem, 9vw, 7rem);
	text-align: center;
}

.nors-article__hero .nors-eyebrow {
	justify-content: center;
}

.nors-article__hero .nors-eyebrow::before {
	display: none;
}

.nors-article__title {
	font-size: clamp(2.1rem, 5vw, 3.6rem);
	max-width: 24ch;
	margin-inline: auto;
}

.nors-article__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nors-text-light-soft);
	margin: 1rem 0 0;
}

.nors-article__meta .dot,
.nors-card__cats .dot,
.nors-product-eyebrow .dot {
	color: var(--nors-brass);
}

.nors-article__cover {
	margin-top: clamp(-3.5rem, -6vw, -2.5rem);
	position: relative;
	z-index: 1;
}

.nors-article__cover img {
	width: 100%;
	border-radius: var(--nors-radius);
	box-shadow: 0 30px 80px rgba(14, 18, 15, 0.25);
}

.nors-article__body {
	padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.nors-taglist {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	max-width: 760px;
	margin: 0 auto 3rem;
}

.nors-taglist a {
	display: inline-block;
	padding: 0.35em 0.9em;
	border: 1px solid var(--nors-line);
	border-radius: 999px;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	color: var(--nors-text-soft);
}

.nors-taglist a:hover {
	border-color: var(--nors-sage-ink);
	color: var(--nors-sage-ink);
}

.nors-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--nors-line);
	border-block: 1px solid var(--nors-line);
	margin: 0 auto 3rem;
	max-width: 760px;
}

.nors-post-nav > div {
	background: var(--nors-cream);
	padding: 1.5rem;
}

.nors-post-nav__next {
	text-align: right;
}

.nors-post-nav a {
	display: grid;
	gap: 0.3rem;
}

.nors-post-nav .label {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--nors-brass);
}

.nors-post-nav .title {
	font-family: var(--ff-display);
	font-size: 1.2rem;
	line-height: 1.3;
	color: var(--nors-text);
}

.nors-post-nav a:hover .title {
	color: var(--nors-sage-ink);
}

/* ---------- 16. Arşiv / Arama / 404 ---------- */
.nors-archive {
	padding: clamp(3rem, 7vw, 5rem) 0 var(--nors-section);
}

.nors-search-results {
	max-width: 760px;
	margin-inline: auto;
	display: grid;
	gap: 1px;
	background: var(--nors-line);
	border-block: 1px solid var(--nors-line);
}

.nors-search-item {
	background: var(--nors-cream);
	padding: 1.8rem 0.5rem;
}

.nors-search-item__type {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nors-brass);
	margin-bottom: 0.4rem;
}

.nors-search-item__title {
	font-size: 1.6rem;
	margin-bottom: 0.4rem;
}

.nors-search-item__title a:hover {
	color: var(--nors-sage-ink);
}

.nors-search-item__excerpt {
	color: var(--nors-text-soft);
	margin: 0;
}

.nors-404 {
	padding: var(--nors-section) 0;
	text-align: center;
}

.nors-404__inner {
	max-width: 620px;
}

.nors-404__inner .nors-icon {
	color: var(--nors-brass);
}

.nors-404__code {
	font-family: var(--ff-display);
	font-size: clamp(6rem, 18vw, 11rem);
	font-weight: 300;
	line-height: 1;
	color: var(--nors-linen);
	-webkit-text-stroke: 1px var(--nors-brass);
	margin: 0 0 0.5rem;
}

.nors-404__title {
	font-size: clamp(1.7rem, 4vw, 2.4rem);
	margin-top: 1rem;
}

.nors-404__text {
	color: var(--nors-text-soft);
}

.nors-404__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0 2.5rem;
}

.nors-404__search .nors-searchform,
.nors-none .nors-searchform {
	max-width: 420px;
	margin-inline: auto;
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	background: var(--nors-paper);
}

.nors-404__search .nors-searchform__input,
.nors-none .nors-searchform__input {
	border: 0;
	background: transparent;
	width: 100%;
	padding: 0.9rem 3.2rem 0.9rem 1.2rem;
	font-family: var(--ff-sans);
	font-size: 0.95rem;
	outline: none;
	color: var(--nors-text);
}

.nors-404__search .nors-searchform__submit,
.nors-none .nors-searchform__submit {
	right: 0.9rem;
	color: var(--nors-text-soft);
}

.nors-none {
	text-align: center;
	padding: 3rem 0;
}

.nors-none .nors-icon {
	color: var(--nors-brass);
}

.nors-none__title {
	font-size: 2rem;
	margin-top: 1rem;
}

.nors-none__text {
	color: var(--nors-text-soft);
	margin-bottom: 2rem;
}

/* ---------- 17. Sayfalama ---------- */
.nors-pagination {
	margin-top: clamp(2.5rem, 6vw, 4rem);
}

.nors-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.nors-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 0.6rem;
	border: 1px solid var(--nors-line);
	border-radius: 50%;
	font-size: 0.9rem;
	color: var(--nors-text);
	transition: all 0.3s var(--nors-ease);
}

.nors-pagination .page-numbers.current,
.nors-pagination .page-numbers:hover {
	background: var(--nors-pine);
	border-color: var(--nors-pine);
	color: var(--nors-sage);
}

.nors-pagination .page-numbers.dots {
	border: 0;
}

/* ---------- 18. Formlar (genel) ---------- */
.nors-main input[type="text"],
.nors-main input[type="email"],
.nors-main input[type="tel"],
.nors-main input[type="url"],
.nors-main input[type="password"],
.nors-main input[type="number"],
.nors-main input[type="search"],
.nors-main select,
.nors-main textarea {
	width: 100%;
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	padding: 0.85rem 1.1rem;
	font-family: var(--ff-sans);
	font-size: 0.98rem;
	color: var(--nors-text);
	transition: border-color 0.3s, box-shadow 0.3s;
}

.nors-main input:focus,
.nors-main select:focus,
.nors-main textarea:focus {
	outline: none;
	border-color: var(--nors-sage-ink);
	box-shadow: 0 0 0 3px rgba(62, 107, 71, 0.12);
}

.nors-main label {
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nors-text-soft);
}

.nors-main input[type="submit"],
.nors-main button[type="submit"] {
	background: var(--nors-pine);
	color: var(--nors-on-dark);
	border: 1px solid var(--nors-pine);
	border-radius: var(--nors-radius);
	padding: 1rem 2.2rem;
	font-family: var(--ff-sans);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.35s var(--nors-ease);
}

.nors-main input[type="submit"]:hover,
.nors-main button[type="submit"]:hover {
	background: var(--nors-sage-ink);
	border-color: var(--nors-sage-ink);
}

/* ---------- 19. Yorumlar ---------- */
.nors-comments {
	max-width: 760px;
	margin: 0 auto;
	padding-bottom: var(--nors-section);
}

.nors-comments__title,
.nors-comments__reply-title {
	font-size: 1.8rem;
}

.nors-comments__list {
	list-style: none;
	margin: 0 0 2.5rem;
}

.nors-comments__list .comment-body {
	border-bottom: 1px solid var(--nors-line);
	padding: 1.4rem 0;
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 1.1rem;
}

.nors-comments__list .avatar {
	border-radius: 50%;
}

.nors-comments__list .comment-meta {
	grid-column: 2;
}

.nors-comments__list .comment-author .fn {
	font-family: var(--ff-display);
	font-style: normal;
	font-size: 1.15rem;
	font-weight: 600;
}

.nors-comments__list .comment-metadata {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nors-comments__list .comment-metadata a {
	color: var(--nors-brass);
}

.nors-comments__list .comment-content {
	grid-column: 2;
	color: var(--nors-text-soft);
}

.nors-comments__list .reply a {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nors-sage-ink);
}

.comment-form {
	display: grid;
	gap: 1.1rem;
}

.comment-form label {
	display: block;
	margin-bottom: 0.4rem;
}

.comment-form-comment textarea {
	min-height: 150px;
	resize: vertical;
}

/* ---------- 20. Footer ---------- */
.nors-footer-cta {
	position: relative;
	background: var(--nors-pine-2) center/cover no-repeat;
	color: var(--nors-on-dark);
	text-align: center;
	padding: clamp(4.5rem, 10vw, 7.5rem) 0;
	overflow: hidden;
}

.nors-footer-cta__scrim {
	position: absolute;
	inset: 0;
	background: rgba(14, 18, 15, 0.72);
}

.nors-footer-cta__inner {
	position: relative;
	z-index: 1;
}

.nors-footer-cta__title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.nors-footer-cta__text {
	font-weight: 300;
	color: rgba(246, 242, 233, 0.85);
	max-width: 52ch;
	margin: 0 auto 2.2rem;
}

.nors-footer__main {
	position: relative;
	background: var(--nors-ink);
	color: var(--nors-text-light-soft);
	padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
	overflow: hidden;
}

.nors-footer__watermark {
	position: absolute;
	left: 50%;
	bottom: -0.32em;
	transform: translateX(-50%);
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: clamp(11rem, 30vw, 26rem);
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(189, 236, 182, 0.07);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}

.nors-footer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: clamp(2rem, 5vw, 4rem);
}

.nors-footer__logo .custom-logo {
	max-height: 44px;
	width: auto;
}

.nors-footer__logo .nors-wordmark {
	color: var(--nors-on-dark);
}

.nors-footer__about {
	margin: 1.4rem 0 1.6rem;
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.8;
	max-width: 34ch;
}

.nors-social {
	list-style: none;
	display: flex;
	gap: 0.7rem;
}

.nors-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--nors-line-light);
	border-radius: 50%;
	color: var(--nors-text-light-soft);
	transition: all 0.35s var(--nors-ease);
}

.nors-social a:hover {
	background: var(--nors-sage);
	border-color: var(--nors-sage);
	color: var(--nors-ink);
	transform: translateY(-3px);
}

.nors-footer__heading {
	font-family: var(--ff-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--nors-brass-soft);
	margin-bottom: 1.4rem;
}

.nors-footer__links,
.nors-footer .nors-nav__list {
	list-style: none;
	display: grid;
	gap: 0.65rem;
}

.nors-footer__links a,
.nors-footer .nors-nav__list a {
	font-size: 0.95rem;
	font-weight: 300;
	color: var(--nors-text-light-soft);
	background: none;
	padding: 0;
	text-transform: none;
	letter-spacing: 0.03em;
}

.nors-footer__links a:hover,
.nors-footer .nors-nav__list a:hover {
	color: var(--nors-sage);
	padding-left: 0.4rem;
	transition: all 0.3s var(--nors-ease);
}

.nors-footer__contact-list {
	list-style: none;
	display: grid;
	gap: 0.9rem;
}

.nors-footer__contact-list li {
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
	font-size: 0.95rem;
	font-weight: 300;
}

.nors-footer__contact-list .nors-icon {
	color: var(--nors-brass);
	flex: none;
	margin-top: 0.25em;
}

.nors-footer__contact-list a:hover {
	color: var(--nors-sage);
}

.nors-footer__bottom {
	background: var(--nors-ink);
	border-top: 1px solid rgba(233, 237, 230, 0.08);
	padding: 1.3rem 0;
	position: relative;
	z-index: 1;
}

.nors-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.nors-footer__copy {
	margin: 0;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	color: rgba(167, 176, 162, 0.75);
}

.nors-footer__legal-list {
	list-style: none;
	display: flex;
	gap: 1.4rem;
}

.nors-footer__legal-list a {
	font-size: 0.8rem;
	color: rgba(167, 176, 162, 0.75);
}

.nors-footer__legal-list a:hover {
	color: var(--nors-sage);
}

.nors-payments {
	list-style: none;
	display: flex;
	gap: 0.5rem;
}

.nors-pay {
	display: inline-block;
	padding: 0.3em 0.7em;
	border: 1px solid rgba(233, 237, 230, 0.14);
	border-radius: 3px;
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: rgba(233, 237, 230, 0.6);
}

/* ---------- 21. Sepet Çekmecesi kabuğu ---------- */
.nors-drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(14, 18, 15, 0.55);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity 0.4s var(--nors-ease);
}

.nors-drawer-backdrop.is-open {
	opacity: 1;
}

.nors-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 115;
	width: min(430px, 94vw);
	background: var(--nors-cream);
	color: var(--nors-text);
	display: flex;
	flex-direction: column;
	transform: translateX(102%);
	transition: transform 0.5s var(--nors-ease);
	box-shadow: -30px 0 80px rgba(14, 18, 15, 0.3);
}

.nors-cart-drawer.is-open {
	transform: none;
}

.nors-cart-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.3rem var(--nors-gutter);
	border-bottom: 1px solid var(--nors-line);
	background: var(--nors-paper);
}

.nors-cart-drawer__title {
	font-size: 1.5rem;
	margin: 0;
}

.nors-cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 1.4rem var(--nors-gutter);
}

.nors-cart-drawer__note {
	margin: 0;
	padding: 0.9rem var(--nors-gutter);
	border-top: 1px solid var(--nors-line);
	background: var(--nors-linen);
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	color: var(--nors-text-soft);
}

.nors-cart-drawer__note .nors-icon {
	color: var(--nors-brass);
}

/* ---------- 22. Duyarlılık ---------- */
@media (max-width: 1080px) {
	.nors-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1160px) {
	.nors-nav--left,
	.nors-nav--right {
		display: none;
	}

	.nors-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.nors-header__burger {
		display: inline-flex;
		justify-self: start;
	}

	.nors-header__brand {
		justify-self: center;
	}
}

@media (max-width: 960px) {
	:root {
		--nors-header-h: 64px;
	}

	.nors-action--account {
		display: none;
	}

	.nors-topbar__meta {
		display: none;
	}

	.nors-topbar__inner {
		justify-content: center;
	}

	.nors-ribbon__list {
		grid-template-columns: 1fr 1fr;
		gap: 1rem 1.5rem;
		padding: 1.4rem 0;
	}

	.nors-story__grid {
		grid-template-columns: 1fr;
	}

	.nors-experience__grid {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.nors-tile {
		aspect-ratio: 16 / 10;
	}

	.nors-journal__grid {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin-inline: auto;
	}

	.nors-franchise {
		background-attachment: scroll;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 1rem;
	}

	.nors-hero {
		min-height: 88vh;
	}

	.nors-hero__actions .nors-btn {
		width: 100%;
	}

	.nors-section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.2rem;
	}

	.nors-post-nav {
		grid-template-columns: 1fr;
	}

	.nors-post-nav__next {
		text-align: left;
	}

	.nors-footer__grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}

	.nors-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.admin-bar .nors-header {
		top: 0;
	}
}

/* ---------- 23. Karanlık Mod (işletim sistemi tercihi) ----------
   Zorla karartma (Chrome Auto-Dark vb.) yerine markanın kendi gece paleti.
   Header/footer zaten koyu; zemin gece çamına döner, metinler krem olur. */
@media (prefers-color-scheme: dark) {
	:root {
		--nors-cream: #101511;
		--nors-paper: #1a221b;
		--nors-linen: #1f2a21;
		--nors-text: #e9ede6;
		--nors-text-soft: #a8b1a1;
		--nors-sage-ink: #9fce98;
		--nors-brass: #cbaa6e;
		--nors-brass-soft: #d9bf8d;
		--nors-line: rgba(233, 237, 230, 0.15);
		--nors-danger: #e09880;
	}

	/* Koyu zeminde çam butonlar kaybolur → adaçayı dolgu */
	.nors-btn--ink,
	.nors-main input[type="submit"],
	.nors-main button[type="submit"] {
		background: var(--nors-sage);
		border-color: var(--nors-sage);
		color: var(--nors-ink);
	}

	.nors-btn--ink:hover,
	.nors-main input[type="submit"]:hover,
	.nors-main button[type="submit"]:hover {
		background: var(--nors-sage-soft);
		border-color: var(--nors-sage-soft);
		color: var(--nors-ink);
	}

	.nors-btn--ghost-dark:hover {
		border-color: var(--nors-sage);
		color: var(--nors-sage);
	}

	.nors-link-arrow {
		color: var(--nors-text);
	}

	.nors-link-arrow:hover,
	.nors-link-underline:hover {
		color: var(--nors-sage);
	}

	.nors-pagination .page-numbers.current,
	.nors-pagination .page-numbers:hover,
	.nors-scroll-btn:hover {
		background: var(--nors-sage);
		border-color: var(--nors-sage);
		color: var(--nors-ink);
	}

	.nors-404__code {
		color: transparent;
	}

	.nors-story__img-small {
		border-color: #101511;
	}

	.nors-post-card:hover,
	.nors-card:hover {
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	}

	.nors-prose a:where(:not(.nors-btn)):where(:not(.button)):hover {
		color: var(--nors-sage);
	}

	::selection {
		background: var(--nors-sage);
		color: #0e120f;
	}
}

/* ---------- 24. Doğal Sayfa Şablonları ---------- */

/* Breadcrumb iç yapısı (Rank Math dahil) */
.nors-breadcrumb p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
}

.nors-breadcrumb .separator {
	color: var(--nors-brass);
}

.nors-page-hero .nors-breadcrumb {
	margin-bottom: 1.4rem;
}

/* Kafe menüsü */
.nors-menu-page .nors-container {
	max-width: calc(1080px + 2 * var(--nors-gutter));
}

.nors-menu-note {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin: clamp(2.2rem, 5vw, 3.5rem) 0 0;
	padding: 1rem 1.3rem;
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	font-size: 0.92rem;
	color: var(--nors-text-soft);
}

.nors-menu-note .nors-icon {
	color: var(--nors-brass);
	flex: none;
}

.nors-menu-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 5rem);
	padding: clamp(2.5rem, 6vw, 4rem) 0 var(--nors-section);
}

.nors-menu-section__title {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	border-bottom: 1px solid var(--nors-brass);
	padding-bottom: 0.6rem;
	margin-bottom: 1.4rem;
}

.nors-menu-list {
	list-style: none;
	display: grid;
	gap: 1.15rem;
}

.nors-menu-item__row {
	display: flex;
	align-items: baseline;
	gap: 0.7rem;
}

.nors-menu-item__name {
	font-family: var(--ff-display);
	font-size: 1.22rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.nors-menu-item__leader {
	flex: 1;
	border-bottom: 1px dotted var(--nors-line);
	transform: translateY(-4px);
	min-width: 1.5rem;
}

.nors-menu-item__price {
	font-family: var(--ff-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--nors-brass);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.nors-menu-item__price small {
	font-size: 0.75em;
	margin-left: 1px;
}

.nors-menu-item__desc {
	margin: 0.15rem 0 0;
	font-size: 0.88rem;
	color: var(--nors-text-soft);
	max-width: 46ch;
}

.nors-menu-extra {
	padding-bottom: var(--nors-section);
}

/* Koyu CTA bandı (menü, hakkımızda, franchise, toptan) */
.nors-cta-band {
	position: relative;
	background: var(--nors-pine) center/cover no-repeat;
	color: var(--nors-on-dark);
	padding: clamp(3.5rem, 8vw, 5.5rem) 0;
	overflow: hidden;
}

.nors-cta-band__scrim {
	position: absolute;
	inset: 0;
	background: rgba(14, 18, 15, 0.82);
}

.nors-cta-band__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.nors-cta-band__title {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	margin-bottom: 0.2em;
	max-width: 22ch;
}

.nors-cta-band__text {
	margin: 0.4rem 0 0;
	font-weight: 300;
	color: rgba(246, 242, 233, 0.85);
	max-width: 56ch;
}

.nors-cta-band__text a {
	color: var(--nors-sage);
}

.nors-cta-band__text .dot {
	color: var(--nors-brass);
	margin: 0 0.4rem;
}

.nors-cta-band__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Manifesto + kolaj + alıntı (Hakkımızda) */
.nors-manifesto {
	padding: clamp(3rem, 7vw, 5rem) 0 0;
}

.nors-manifesto__text {
	font-family: var(--ff-display);
	font-size: clamp(1.5rem, 3.2vw, 2.3rem);
	font-weight: 500;
	line-height: 1.4;
	max-width: 34ch;
	margin: 0 auto;
	text-align: center;
	text-wrap: balance;
}

.nors-collage {
	padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}

.nors-collage__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 1.2rem;
	align-items: stretch;
}

.nors-collage__item {
	margin: 0;
	overflow: hidden;
	border-radius: var(--nors-radius);
}

.nors-collage__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	transition: transform 1.1s var(--nors-ease);
}

.nors-collage__item:first-child img {
	aspect-ratio: 16 / 10;
}

.nors-collage__item:hover img {
	transform: scale(1.04);
}

.nors-quote {
	padding: 0 0 var(--nors-section);
	text-align: center;
}

.nors-quote__text {
	margin: 0 auto;
	font-family: var(--ff-display);
	font-size: clamp(1.6rem, 3.6vw, 2.6rem);
	font-style: italic;
	font-weight: 500;
	max-width: 26ch;
	line-height: 1.35;
}

.nors-quote__cite {
	margin: 1.2rem 0 0;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nors-brass);
}

/* Değer / avantaj kartları */
.nors-vals {
	padding: var(--nors-section) 0 0;
}

.nors-vals__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.nors-vals__grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.nors-val {
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	padding: 1.8rem 1.6rem 2rem;
	display: grid;
	gap: 0.6rem;
	align-content: start;
}

.nors-val__glyph {
	width: 48px;
	height: 48px;
	border: 1px solid var(--nors-brass);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--nors-brass);
	margin-bottom: 0.4rem;
}

.nors-val__title {
	font-size: 1.35rem;
	margin: 0;
}

.nors-val__text {
	margin: 0;
	font-size: 0.93rem;
	color: var(--nors-text-soft);
}

/* Süreç adımları */
.nors-process {
	padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.nors-steps {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	padding-bottom: var(--nors-section);
}

.nors-step {
	border-top: 1px solid var(--nors-brass);
	padding-top: 1.1rem;
	display: grid;
	gap: 0.4rem;
	align-content: start;
}

.nors-step__num {
	font-family: var(--ff-display);
	font-size: 2.2rem;
	font-weight: 300;
	color: var(--nors-brass);
	line-height: 1;
}

.nors-step__title {
	font-size: 1.3rem;
	margin: 0.2rem 0 0;
}

.nors-step__text {
	margin: 0;
	font-size: 0.92rem;
	color: var(--nors-text-soft);
}

/* Toptan avantajları */
.nors-advantages {
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 var(--nors-section);
}

.nors-advantages__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.nors-checklist {
	list-style: none;
	display: grid;
	gap: 1rem;
}

.nors-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	font-size: 1.02rem;
}

.nors-checklist .nors-icon {
	color: var(--nors-sage-ink);
	flex: none;
	margin-top: 0.3em;
}

.nors-advantages__media {
	margin: 0;
	border-radius: var(--nors-radius);
	overflow: hidden;
}

.nors-advantages__media img {
	width: 100%;
	aspect-ratio: 4 / 4.4;
	object-fit: cover;
}

/* İletişim */
.nors-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: clamp(2rem, 5vw, 4rem);
	padding: clamp(2.5rem, 6vw, 4rem) 0 var(--nors-section);
	align-items: start;
}

.nors-contact__info {
	display: grid;
	gap: 1rem;
}

.nors-info-card {
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	padding: 1.4rem 1.5rem;
	display: grid;
	gap: 0.3rem;
	justify-items: start;
}

.nors-info-card__glyph {
	width: 44px;
	height: 44px;
	border: 1px solid var(--nors-brass);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--nors-brass);
	margin-bottom: 0.5rem;
}

.nors-info-card__title {
	font-family: var(--ff-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nors-text-soft);
	margin: 0;
}

.nors-info-card p {
	margin: 0;
	font-size: 1.02rem;
}

.nors-info-card a:hover {
	color: var(--nors-sage-ink);
}

.nors-contact__form {
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: var(--nors-radius);
	padding: clamp(1.8rem, 4vw, 2.6rem);
}

.nors-contact__form-title {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	margin-bottom: 0.3rem;
}

.nors-contact__form-lead {
	color: var(--nors-text-soft);
	margin-bottom: 1.6rem;
}

/* CF7 zarif form */
.nors-contact__form .wpcf7-form p {
	margin: 0 0 1.1rem;
}

.nors-contact__form .wpcf7-form label {
	display: block;
	margin-bottom: 0.4rem;
}

.nors-contact__form .wpcf7-form .wpcf7-not-valid-tip {
	font-size: 0.8rem;
	color: var(--nors-danger);
	margin-top: 0.3rem;
}

.nors-contact__form .wpcf7-response-output {
	border: 1px solid var(--nors-line) !important;
	border-left: 3px solid var(--nors-brass) !important;
	border-radius: var(--nors-radius);
	padding: 0.9rem 1.2rem !important;
	margin: 1.2rem 0 0 !important;
	font-size: 0.9rem;
}

.nors-contact__form .wpcf7-spinner {
	display: block;
	margin: 0.6rem 0 0;
}

/* Responsive — doğal sayfalar */
@media (max-width: 1024px) {
	.nors-vals__grid,
	.nors-vals__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.nors-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.4rem;
	}
}

@media (max-width: 880px) {
	.nors-menu-grid {
		grid-template-columns: 1fr;
	}

	.nors-contact__grid,
	.nors-advantages__grid {
		grid-template-columns: 1fr;
	}

	.nors-collage__grid {
		grid-template-columns: 1fr 1fr;
	}

	.nors-collage__item:first-child {
		grid-column: 1 / -1;
	}

	.nors-cta-band__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 560px) {
	.nors-vals__grid,
	.nors-vals__grid--4,
	.nors-steps {
		grid-template-columns: 1fr;
	}

	.nors-collage__grid {
		grid-template-columns: 1fr;
	}

	.nors-menu-item__name {
		font-size: 1.12rem;
	}
}

/* ---------- 25. Responsive güvence ayarları ---------- */
@media (max-width: 1320px) and (min-width: 1161px) {
	.nors-nav__list {
		gap: 0.85rem;
	}

	.nors-nav__list > li > a {
		font-size: 0.74rem;
		letter-spacing: 0.09em;
	}

	.nors-header__end {
		gap: 0.8rem;
	}

	.nors-action {
		width: 38px;
		height: 38px;
	}
}

@media (max-width: 640px) {
	.nors-topbar__msg {
		min-width: 0;
	}

	.nors-topbar__msg span,
	.nors-topbar__msg a {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.nors-cta-band__actions .nors-btn,
	.nors-404__actions .nors-btn {
		width: 100%;
	}

	.nors-info-card {
		padding: 1.2rem 1.3rem;
	}
}

/* ---------- 26. Solo ekranlar (parola sıfırlama vb.) ---------- */
.nors-solo {
	display: grid;
	place-items: center;
	padding: clamp(2.5rem, 7vw, 5rem) 0 var(--nors-section);
}

.nors-solo__card {
	width: min(480px, 100%);
	background: var(--nors-paper);
	border: 1px solid var(--nors-line);
	border-radius: 6px;
	box-shadow: 0 34px 80px rgba(22, 32, 26, 0.14);
	padding: clamp(2rem, 5vw, 2.8rem);
	text-align: center;
}

.nors-solo__glyph {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.2rem;
	display: grid;
	place-items: center;
	border: 1px solid var(--nors-brass);
	border-radius: 50%;
	color: var(--nors-brass);
}

.nors-solo__glyph--success {
	background: var(--nors-sage);
	border-color: var(--nors-sage);
	color: var(--nors-ink);
}

.nors-solo__title {
	font-size: clamp(1.6rem, 3.4vw, 2.1rem);
	margin-bottom: 0.4em;
}

.nors-solo__text {
	color: var(--nors-text-soft);
	font-size: 0.96rem;
	max-width: 40ch;
	margin: 0 auto 1.6rem;
}

.nors-solo__field {
	text-align: left;
	width: 100% !important;
	float: none !important;
	margin: 0 0 1.1rem !important;
}

.nors-solo__field label {
	display: block;
	margin-bottom: 0.4rem;
}

.nors-solo__submit-row {
	margin: 1.4rem 0 0;
}

.nors-solo__back {
	margin: 1.4rem 0 0;
	font-size: 0.86rem;
}

.nors-solo__back a:not(.nors-btn) {
	color: var(--nors-sage-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nors-solo__back a:not(.nors-btn):hover {
	color: var(--nors-text);
}

/* ---------- 27. NORS Alert: toast + onay penceresi ---------- */
.nors-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.nors-toasts {
	position: fixed;
	top: calc(var(--nors-header-h) + 14px);
	right: 16px;
	z-index: 140;
	display: grid;
	gap: 10px;
	width: min(380px, calc(100vw - 32px));
	pointer-events: none;
}

.admin-bar .nors-toasts {
	top: calc(var(--nors-header-h) + 46px);
}

.nors-toast {
	pointer-events: auto;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.9rem;
	align-items: flex-start;
	background: var(--nors-pine);
	color: var(--nors-on-dark);
	border: 1px solid rgba(233, 237, 230, 0.12);
	border-radius: 6px;
	padding: 0.95rem 1rem 1.05rem;
	box-shadow: 0 24px 60px rgba(8, 11, 9, 0.4);
	overflow: hidden;
	animation: nors-toast-in 0.5s var(--nors-ease) both;
}

@keyframes nors-toast-in {
	from {
		opacity: 0;
		transform: translateX(24px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.nors-toast.is-leaving {
	transition: opacity 0.35s var(--nors-ease), transform 0.35s var(--nors-ease);
	opacity: 0;
	transform: translateX(24px);
}

.nors-toast__icon {
	width: 34px;
	height: 34px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 50%;
	margin-top: 1px;
}

.nors-toast__icon svg {
	width: 18px;
	height: 18px;
}

.nors-toast--success .nors-toast__icon {
	background: var(--nors-sage);
	color: var(--nors-ink);
}

.nors-toast--error .nors-toast__icon {
	background: #b0533c;
	color: #fff;
}

.nors-toast--info .nors-toast__icon {
	background: var(--nors-brass);
	color: var(--nors-ink);
}

.nors-toast__body {
	display: grid;
	gap: 1px;
	padding-top: 2px;
}

.nors-toast__title {
	font-family: var(--ff-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nors-toast--success .nors-toast__title {
	color: var(--nors-sage);
}

.nors-toast--error .nors-toast__title {
	color: #eba98f;
}

.nors-toast--info .nors-toast__title {
	color: var(--nors-brass-soft);
}

.nors-toast__msg {
	font-size: 0.88rem;
	font-weight: 300;
	line-height: 1.5;
	color: rgba(246, 242, 233, 0.88);
}

.nors-toast__close {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: rgba(246, 242, 233, 0.55);
	transition: color 0.25s, background 0.25s;
}

.nors-toast__close:hover {
	color: #fff;
	background: rgba(246, 242, 233, 0.1);
}

.nors-toast__close svg {
	width: 13px;
	height: 13px;
}

.nors-toast__bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(189, 236, 182, 0.55);
	transform-origin: left;
	transform: scaleX(1);
	transition-property: transform;
	transition-timing-function: linear;
}

.nors-toast--error .nors-toast__bar {
	background: rgba(235, 169, 143, 0.65);
}

.nors-toast--info .nors-toast__bar {
	background: rgba(211, 185, 138, 0.6);
}

/* Onay penceresi */
.nors-modal {
	position: fixed;
	inset: 0;
	z-index: 150;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	background: rgba(14, 18, 15, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s var(--nors-ease);
}

.nors-modal.is-open {
	opacity: 1;
}

.nors-modal.is-leaving {
	opacity: 0;
}

.nors-modal__card {
	width: min(420px, 100%);
	background: var(--nors-paper);
	color: var(--nors-text);
	border-radius: 6px;
	border: 1px solid var(--nors-line);
	box-shadow: 0 40px 100px rgba(8, 11, 9, 0.45);
	padding: 2rem;
	text-align: center;
	transform: translateY(14px) scale(0.98);
	transition: transform 0.35s var(--nors-ease);
}

.nors-modal.is-open .nors-modal__card {
	transform: none;
}

.nors-modal__glyph {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	border: 1px solid var(--nors-brass);
	border-radius: 50%;
	color: var(--nors-brass);
}

.nors-modal__glyph svg {
	width: 24px;
	height: 24px;
}

.nors-modal__title {
	font-size: 1.5rem;
	margin-bottom: 0.3em;
}

.nors-modal__msg {
	color: var(--nors-text-soft);
	font-size: 0.93rem;
	margin: 0 0 1.6rem;
}

.nors-modal__actions {
	display: flex;
	gap: 0.8rem;
	justify-content: center;
}

.nors-modal__btn {
	padding: 0.85rem 1.6rem;
	border-radius: var(--nors-radius);
	font-family: var(--ff-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s var(--nors-ease);
	border: 1px solid var(--nors-line);
	background: transparent;
	color: var(--nors-text);
}

.nors-modal__btn--confirm {
	background: var(--nors-pine);
	border-color: var(--nors-pine);
	color: var(--nors-on-dark);
}

.nors-modal__btn--confirm:hover {
	background: var(--nors-sage-ink);
	border-color: var(--nors-sage-ink);
}

.nors-modal__btn--cancel:hover {
	border-color: var(--nors-text-soft);
}

@media (prefers-color-scheme: dark) {
	.nors-modal__btn--confirm {
		background: var(--nors-sage);
		border-color: var(--nors-sage);
		color: var(--nors-ink);
	}

	.nors-modal__btn--confirm:hover {
		background: var(--nors-sage-soft);
	}
}

@media (max-width: 640px) {
	.nors-toasts {
		right: 8px;
		left: 8px;
		width: auto;
		top: calc(var(--nors-header-h) + 8px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nors-toast {
		animation: none;
	}
}

/* ---------- 28. Karanlık mod hover onarımı ----------
   Adaçayı butonların hover'ı açık temada kâğıt beyazına döner;
   karanlık modda o token koyulaştığı için buton okunmaz oluyordu. */
@media (prefers-color-scheme: dark) {
	.nors-btn--sage:hover {
		background: var(--nors-sage-soft);
		border-color: var(--nors-sage-soft);
		color: var(--nors-ink);
	}
}

/* ---------- 29. İç sayfa hero marka filigranı ---------- */
.nors-page-hero__mark {
	position: absolute;
	right: clamp(-60px, 2vw, 60px);
	top: 50%;
	transform: translateY(-50%);
	color: rgba(189, 236, 182, 0.12);
	line-height: 0;
	pointer-events: none;
}

.nors-page-hero__mark svg {
	width: clamp(220px, 24vw, 340px);
	height: auto;
}

.nors-page-hero {
	position: relative;
}

.nors-page-hero .nors-container {
	position: relative;
	z-index: 1;
}

@media (max-width: 720px) {
	.nors-page-hero__mark {
		right: -90px;
		opacity: 0.7;
	}
}

/* ---------- 30. Vitrin: fare ile sürükleme ---------- */
.nors-showcase__track {
	cursor: grab;
}

.nors-showcase__track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
	user-select: none;
}

.nors-showcase__track a,
.nors-showcase__track img {
	-webkit-user-drag: none;
	user-select: none;
}

/* ---------- 31. Yatay taşma güvenlik ağı ----------
   clip: kaydırma bağlamı OLUŞTURMAZ → sticky öğeler çalışmaya devam eder;
   viewport dışına sızan her piksel sessizce kırpılır. */
html,
body {
	overflow-x: clip;
}

/* Uzun kesintisiz içerik (link, e-posta, IBAN vb.) kutusunu taşırmasın */
.nors-prose,
.nors-menu-item__desc,
.woocommerce-tabs .panel,
.nors-info-card,
.nors-toast__msg {
	overflow-wrap: break-word;
}

.nors-prose pre,
.nors-prose code {
	background: var(--nors-linen);
	border-radius: 3px;
}

.nors-prose code {
	padding: 0.1em 0.4em;
	font-size: 0.9em;
}

.nors-prose pre {
	padding: 1.1em 1.3em;
	overflow-x: auto;
	max-width: 100%;
}

/* Tablolar hiçbir bağlamda sayfayı genişletmesin */
.nors-prose table,
.woocommerce-tabs .panel table {
	display: block;
	overflow-x: auto;
	white-space: normal;
}
