/*
Theme Name: Ahmet Aksoy
Theme URI: https://ahmetaksoy.com.tr
Author: Ahmet Aksoy
Description: Minimalist kişisel blog teması.
Version: 2.0.0
Text Domain: ahmetaksoy
*/

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --black:  #0d0d0d;
  --white:  #f8f8f6;
  --gray:   #888;
  --light:  #e6e6e4;
  --navy:   #1a2744; /* admin panelinden değiştirilebilir */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'JetBrains Mono', monospace;
  --w:      1100px;
  --wn:     820px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 2px solid var(--black);
  padding-left: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin: 2rem 0;
}
code {
  font-family: var(--mono);
  font-size: .85em;
  background: var(--light);
  padding: .1em .4em;
  border-radius: 3px;
}
pre {
  font-family: var(--mono);
  font-size: .85rem;
  background: var(--light);
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w);
  margin: 0 auto;
  padding: 1.25rem 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.site-logo__icon svg {
  display: block;
  transition: transform .2s;
}
.site-logo:hover .site-logo__icon svg { transform: rotate(-4deg); }
.site-logo__text {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--black);
}
.site-logo__dot { color: var(--navy); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-menu li a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
  text-decoration: none;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: var(--black); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  margin: 5px 0;
  transition: .3s;
}

@media (max-width: 600px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-menu.is-open { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .65rem 1.3rem;
  border: 1.5px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover { background: transparent; color: var(--navy); text-decoration: none; }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  max-width: var(--w);
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.hero__content { flex: 1; }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--gray); }
.hero__desc {
  font-size: 1.05rem;
  color: #444;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero__links { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__avatar-wrap {
  flex-shrink: 0;
}
.hero__avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  border: 3px solid var(--light) !important;
  display: block;
  background: var(--light);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
    padding: 3.5rem 1.5rem 3rem;
  }
  .hero__avatar { width: 100px; height: 100px; }
}
@media (max-width: 600px) {
  .hero__avatar-wrap { display: block; }
  .hero__avatar { width: 90px; height: 90px; }
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--light);
  max-width: var(--w);
  margin: 0 auto;
}

/* ── SECTION ─────────────────────────────────────────────── */
.section {
  max-width: var(--w);
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section__label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section__label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--light);
}

/* ── POST THUMBNAIL ─────────────────────────────────────── */
.post-item__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--light);
  border-radius: 8px;
}
.post-item__thumb img,
.post-item__thumb img[src] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .5s ease, filter .5s ease;
  display: block;
}
.post-item:hover .post-item__thumb img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
/* Hero avatar - kesin grayscale */
.hero__avatar,
img.hero__avatar {
  filter: grayscale(100%);
  transition: filter .5s ease;
}
.hero__avatar-wrap:hover .hero__avatar,
.hero__avatar-wrap:hover img.hero__avatar {
  filter: grayscale(0%);
}
.post-item__thumb--placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light);
  margin-bottom: 1rem;
}

/* ── POST GRID ───────────────────────────────────────────── */
.posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-item {
  padding: 0;
  border: none;
  transition: transform .25s ease;
}
.post-item:hover { transform: translateY(-3px); }
.post-item:hover .post-item__more { letter-spacing: .14em; }

.post-item__meta {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.post-item__read-time::before { content: '· '; }

.post-item__title {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .6rem;
  color: var(--navy);
}
.post-item__title a { transition: opacity .2s, color .2s; color: var(--navy); }
.post-item__title a:hover { opacity: 1; color: var(--black); }
.post-item__title a:hover { opacity: .5; text-decoration: none; }

.post-item__excerpt {
  font-size: .875rem;
  color: #555;
  margin-bottom: .9rem;
  line-height: 1.65;
}
.post-item__more {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
  color: var(--navy);
  transition: letter-spacing .2s;
}
.post-item__more:hover { text-decoration: none; }

@media (max-width: 900px) {
  .posts-list { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (max-width: 600px) {
  .posts-list { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── SINGLE POST ─────────────────────────────────────────── */
.post-header {
  max-width: var(--wn);
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
}
.post-header__cat {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .75rem;
}
.post-header__title { margin-bottom: .75rem; }
.post-header__meta {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--gray);
  letter-spacing: .08em;
}
.post-thumb {
  max-width: var(--wn);
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.post-thumb img { width: 100%; filter: grayscale(30%); border-radius: 8px; }
.post-content {
  max-width: var(--wn);
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
}
.post-content h2,
.post-content h3 { margin: 2rem 0 .75rem; }
.post-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; list-style: disc; }
.post-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; list-style: decimal; }
.post-content li { margin-bottom: .3rem; }
.post-content img { margin: 2rem auto; }
.post-nav {
  max-width: var(--wn);
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--light);
}
.post-nav__label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .3rem;
}
.post-nav__title { font-family: var(--serif); font-size: 1rem; font-weight: 700; }
.post-nav__item--next { text-align: right; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter .5s ease;
  border: 3px solid var(--light);
}
.about-photo:hover img { filter: grayscale(0%); }
.about-content h2 { margin: 1.75rem 0 .6rem; }
.about-content h2:first-child { margin-top: 0; }
@media (max-width: 700px) {
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo img { aspect-ratio: 3/2; }
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: .75rem; }
.contact-info p { font-size: .95rem; color: #555; }
.contact-links { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.contact-link-item { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: #555; }
.contact-link-item strong {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--black);
  min-width: 64px;
}
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--light);
  padding: .7rem 1rem;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group textarea { min-height: 140px; }
.alert { padding: 1rem 1.25rem; font-size: .875rem; margin-bottom: 2rem; }
.alert--success { background: var(--black); color: var(--white); }
.alert--error   { border: 1.5px solid var(--black); }
@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row        { grid-template-columns: 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--light); padding: 2.5rem 2rem; }
.site-footer__inner {
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__copy { font-size: .72rem; color: var(--gray); letter-spacing: .04em; }
.site-footer__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  align-items: center;
}
.site-footer__nav a,
.site-footer__nav li a {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
  white-space: nowrap;
}
.site-footer__nav a:hover,
.site-footer__nav li a:hover { color: var(--black); text-decoration: none; }
.site-footer__nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  list-style: none;
  margin: 0; padding: 0;
}
.site-footer__nav li { display: inline-flex; }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: .5rem; padding: 3rem 0; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--light);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  transition: .2s;
  text-decoration: none;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { border-color: var(--black); color: var(--black); }
.pagination .prev, .pagination .next { width: auto; padding: 0 .75rem; }

/* ── COMMENTS ────────────────────────────────────────────── */
.comments-area {
  max-width: var(--wn);
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  border-top: 1px solid var(--light);
}
.comments-title {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.comment-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 1rem;
}
.comment-item img { border-radius: 50%; filter: grayscale(100%); flex-shrink: 0; }
.comment-author-name { font-size: .85rem; font-weight: 600; margin-bottom: .15rem; }
.comment-date { font-size: .68rem; font-family: var(--mono); color: var(--gray); margin-bottom: .5rem; }
.comment-body p { font-size: .9rem; color: #444; }
#commentform { margin-top: 2rem; }
#commentform label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .35rem;
}
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--light);
  padding: .7rem 1rem;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
  margin-bottom: 1rem;
}
#commentform input:focus,
#commentform textarea:focus { border-color: var(--black); }
#commentform textarea { min-height: 120px; resize: none; }

/* ── WIDGETS ─────────────────────────────────────────────── */
.widget { margin-bottom: 2.5rem; }
.widget-title {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--light);
}
.widget ul li { padding: .3rem 0; border-bottom: 1px solid var(--light); font-size: .875rem; }
.widget ul li:last-child { border-bottom: none; }

/* ── UTILITIES ───────────────────────────────────────────── */
.muted { color: var(--gray); font-size: .9rem; }

/* ── FADE IN ─────────────────────────────────────────────── */
.post-item { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.post-item.visible { opacity: 1; transform: none; }

/* ── ABOUT SOCIAL LINKS ──────────────────────────────────── */
.about-social {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.social-link {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
  text-decoration: none;
}
.social-link::before { content: '↗ '; }
.social-link:hover { color: var(--black); text-decoration: none; }

/* ══ ÜRÜNLER ════════════════════════════════════════════════ */

/* Filtre */
.urun-filtre {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filtre-btn {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border: 1.5px solid var(--light);
  color: var(--gray);
  transition: .2s;
  text-decoration: none;
}
.filtre-btn:hover,
.filtre-btn--aktif {
  border-color: var(--navy);
  color: var(--navy);
  text-decoration: none;
}

/* Grid */
.urun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .urun-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .urun-grid { grid-template-columns: 1fr; } }

/* Kart */
.urun-kart {
  border: 1.5px solid var(--light);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.urun-kart:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
}

.urun-kart__rozet {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
}

.urun-kart__gorsel {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light);
  border-radius: 8px 8px 0 0;
}
.urun-kart__gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .5s ease, filter .5s ease;
}
.urun-kart:hover .urun-kart__gorsel img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.urun-kart__icerik {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.urun-kart__tur {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .5rem;
}
.urun-kart__baslik {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.urun-kart__baslik a { color: var(--navy); transition: opacity .2s; }
.urun-kart__baslik a:hover { opacity: .7; text-decoration: none; }
.urun-kart__ozet {
  font-size: .875rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.urun-kart__alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--light);
}
.urun-kart__fiyat { display: flex; flex-direction: column; }
.urun-kart__fiyat-rakam {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.urun-kart__fiyat-not {
  font-family: var(--mono);
  font-size: .62rem;
  color: var(--gray);
  letter-spacing: .06em;
  margin-top: .2rem;
}
.urun-kart__butonlar {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.urun-kart__satin {
  font-size: .7rem;
  padding: .5rem 1rem;
  background: var(--navy);
  border-color: var(--navy);
}
.urun-kart__satin:hover { background: transparent; color: var(--navy); }
.urun-kart__demo {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}
.urun-kart__demo:hover { color: var(--navy); text-decoration: none; }
.urun-kart__yakin {
  font-size: .7rem;
  padding: .5rem 1rem;
  cursor: default;
  opacity: .6;
}

/* ── ÜRÜN DETAY SAYFASI ─────────────────────────────────── */
.urun-detay__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.urun-detay__baslik {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.urun-detay__icerik { margin-top: 1.5rem; }
.urun-detay__icerik h2,
.urun-detay__icerik h3 { margin: 2rem 0 .75rem; color: var(--navy); }
.urun-detay__icerik ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.2rem; }
.urun-detay__icerik li { margin-bottom: .4rem; font-size: .95rem; }

/* Satın alma kutusu */
.urun-detay__kutu {
  position: sticky;
  top: 5rem;
  border: 1.5px solid var(--light);
  border-radius: 10px;
  padding: 1.75rem;
}
.urun-detay__gorsel {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
}
.urun-detay__gorsel img { width: 100%; filter: grayscale(15%); }
.urun-detay__fiyat {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.urun-detay__fiyat-rakam {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1;
}
.urun-detay__satin-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--navy);
  border-color: var(--navy);
  font-size: .8rem;
  padding: .85rem;
  margin-bottom: .75rem;
}
.urun-detay__satin-btn:hover { background: transparent; color: var(--navy); }
.urun-detay__demo-btn {
  display: block;
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  padding: .6rem;
  border: 1.5px solid var(--light);
  margin-bottom: 1.5rem;
  transition: .2s;
}
.urun-detay__demo-btn:hover { border-color: var(--navy); color: var(--navy); text-decoration: none; }
.urun-detay__bilgi {
  border-top: 1px solid var(--light);
  padding-top: 1rem;
}
.urun-detay__bilgi p {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: .4rem;
}

@media (max-width: 900px) {
  .urun-detay__layout { grid-template-columns: 1fr; }
  .urun-detay__kutu   { position: static; }
}
