/* Phantom Shop Teması v1.1.0 — Zohi (zohi.net) */

:root {
	--pst-zemin: #f6f4ef;
	--pst-kart: rgba(255, 255, 255, 0.72);
	--pst-kenar: rgba(255, 255, 255, 0.6);
	--pst-metin: #17181c;
	--pst-soluk: #6b6e78;
	--pst-vurgu: #b8934a;
	--pst-vurgu-koyu: #96773a;
	--pst-golge: 0 12px 40px rgba(23, 24, 28, 0.08);
}
.ps-koyu {
	--pst-zemin: #0f1013;
	--pst-kart: rgba(28, 29, 34, 0.72);
	--pst-kenar: rgba(255, 255, 255, 0.08);
	--pst-metin: #f2f0ea;
	--pst-soluk: #9a9ca6;
	--pst-vurgu: #d4af61;
	--pst-vurgu-koyu: #b8934a;
	--pst-golge: 0 12px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--pst-metin);
	background:
		radial-gradient(900px 500px at 100% -5%, rgba(184, 147, 74, 0.10), transparent 55%),
		radial-gradient(700px 500px at -10% 40%, rgba(184, 147, 74, 0.06), transparent 55%),
		var(--pst-zemin);
	background-attachment: fixed;
	transition: background-color .3s, color .3s;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
a { color: var(--pst-vurgu); }
img { max-width: 100%; height: auto; }

/* ---------- Üst bar ---------- */
.pst-ust {
	position: sticky; top: 0; z-index: 999;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: color-mix(in srgb, var(--pst-zemin) 72%, transparent);
	border-bottom: 1px solid var(--pst-kenar);
	transition: box-shadow .25s;
}
.pst-ust.pst-kaydi { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.pst-ust-ic {
	max-width: 1180px; margin: 0 auto;
	padding: 14px 16px;
	display: flex; align-items: center; gap: 24px;
}
.pst-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--pst-metin); }
.pst-logo img { max-height: 44px; width: auto; }
.pst-logo-ikon { font-size: 26px; }
.pst-logo-metin { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 600; }

.pst-menu { flex: 1; }
.pst-menu-liste { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.pst-menu-liste a {
	display: block; padding: 9px 16px;
	font-size: 15px; font-weight: 500;
	color: var(--pst-metin); text-decoration: none;
	border-radius: 999px;
	transition: background .2s, color .2s;
}
.pst-menu-liste a:hover { background: rgba(184, 147, 74, 0.12); color: var(--pst-vurgu); }
.pst-menu-liste .current-menu-item > a { background: rgba(184, 147, 74, 0.16); color: var(--pst-vurgu); font-weight: 600; }

.pst-ust-aksiyon { display: flex; align-items: center; gap: 8px; }
.pst-sepet-btn, .pst-profil-btn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	font-size: 19px; text-decoration: none;
	border-radius: 50%;
	background: var(--pst-kart);
	border: 1px solid var(--pst-kenar);
	transition: transform .18s, border-color .18s;
}
.pst-sepet-btn:hover, .pst-profil-btn:hover { transform: translateY(-2px); border-color: var(--pst-vurgu); }
.pst-sepet-sayi {
	position: absolute; top: -4px; right: -4px;
	min-width: 19px; height: 19px; padding: 0 5px;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 700;
	color: #fff; background: linear-gradient(135deg, var(--pst-vurgu), var(--pst-vurgu-koyu));
	border-radius: 999px;
}

.pst-mobil-btn {
	display: none;
	flex-direction: column; justify-content: center; gap: 5px;
	width: 42px; height: 42px;
	background: var(--pst-kart); border: 1px solid var(--pst-kenar); border-radius: 50%;
	cursor: pointer; padding: 0 11px;
}
.pst-mobil-btn span { height: 2px; background: var(--pst-metin); border-radius: 2px; transition: transform .25s, opacity .25s; }
.pst-mobil-btn.acik span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pst-mobil-btn.acik span:nth-child(2) { opacity: 0; }
.pst-mobil-btn.acik span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- İçerik ---------- */
.pst-icerik { min-height: 70vh; padding-top: 26px; }
.pst-govde { max-width: 820px; margin: 0 auto; padding: 0 16px 64px; }
.pst-govde.pst-genis { max-width: 1212px; }
.pst-sayfa-baslik { font-size: clamp(28px, 4vw, 40px); margin: 12px 0 24px; }

.pst-yazi {
	background: var(--pst-kart);
	border: 1px solid var(--pst-kenar);
	border-radius: 20px;
	padding: 28px 32px;
	margin-bottom: 22px;
	box-shadow: var(--pst-golge);
}
.pst-yazi-baslik { margin: 0 0 8px; font-size: 24px; }
.pst-yazi-baslik a { color: var(--pst-metin); text-decoration: none; }
.pst-yazi-baslik a:hover { color: var(--pst-vurgu); }
.pst-yazi-ozet { color: var(--pst-soluk); }

.pst-sayfalama { text-align: center; }
.pst-sayfalama .nav-links { display: inline-flex; gap: 8px; }
.pst-sayfalama a, .pst-sayfalama .current {
	display: inline-block; padding: 9px 16px;
	border-radius: 999px; text-decoration: none;
	background: var(--pst-kart); border: 1px solid var(--pst-kenar);
	color: var(--pst-metin); font-weight: 500;
}
.pst-sayfalama .current { background: linear-gradient(135deg, var(--pst-vurgu), var(--pst-vurgu-koyu)); color: #fff; border-color: transparent; }

/* Boş / 404 */
.pst-bos { text-align: center; padding: 90px 20px; }
.pst-bos-ikon { font-size: 72px; display: inline-block; margin-bottom: 18px; animation: pst-suzul 4s ease-in-out infinite; }
@keyframes pst-suzul { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
.pst-bos h1 { margin: 0 0 10px; }
.pst-bos p { color: var(--pst-soluk); margin-bottom: 24px; }
.pst-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 13px 28px;
	font-size: 15px; font-weight: 600;
	color: #fff !important; text-decoration: none;
	background: linear-gradient(135deg, var(--pst-vurgu), var(--pst-vurgu-koyu));
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(184, 147, 74, 0.32);
	transition: transform .18s, box-shadow .18s;
}
.pst-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(184, 147, 74, 0.42); }

/* ---------- Alt bilgi ---------- */
.pst-alt {
	border-top: 1px solid var(--pst-kenar);
	background: color-mix(in srgb, var(--pst-zemin) 60%, transparent);
	backdrop-filter: blur(14px);
	padding: 42px 16px 32px;
	text-align: center;
}
.pst-alt-ic { max-width: 720px; margin: 0 auto; }
.pst-alt-marka { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 12px; }
.pst-alt-not { font-size: 13px; color: var(--pst-soluk); line-height: 1.6; margin: 0 0 14px; }
.pst-alt-imza { font-size: 13px; color: var(--pst-soluk); margin: 0; }
.pst-alt-imza a { color: var(--pst-vurgu); text-decoration: none; font-weight: 600; }

/* ---------- Duyarlılık ---------- */
@media (max-width: 820px) {
	.pst-mobil-btn { display: flex; }
	.pst-menu {
		position: fixed; inset: 71px 0 auto 0;
		background: color-mix(in srgb, var(--pst-zemin) 92%, transparent);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--pst-kenar);
		padding: 12px 16px 20px;
		transform: translateY(-12px); opacity: 0; pointer-events: none;
		transition: transform .25s, opacity .25s;
	}
	.pst-menu.acik { transform: none; opacity: 1; pointer-events: auto; }
	.pst-menu-liste { flex-direction: column; }
	.pst-menu-liste a { padding: 13px 18px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	*, .pst-bos-ikon { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}
