/* =========================================================
   Dekorlayıcı — Site Stilleri
   Palet: Krem · Keten · Kum · Kil (terracotta) · Zeytin · Mürekkep
   ========================================================= */
:root {
  --cream: #F8F4EE;
  --linen: #EFE7DC;
  --sand: #DCCBB5;
  --clay: #B8673F;
  --clay-dark: #95502F;
  --clay-soft: #F1DFD3;
  --olive: #3E4A3D;
  --olive-dark: #2C352B;
  --olive-soft: #E3E6DC;
  --ink: #2A2520;
  --muted: #736A60;
  --paper: #FFFDF9;

  --wa: #25D366;
  --wa-dark: #128C7E;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(42, 37, 32, .06), 0 2px 8px rgba(42, 37, 32, .04);
  --shadow: 0 10px 30px -12px rgba(42, 37, 32, .22);
  --shadow-lg: 0 24px 60px -20px rgba(42, 37, 32, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1240px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--clay-soft); color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--olive); color: var(--paper); padding: 10px 16px; border-radius: var(--radius-sm); }
.skip-link:focus { top: 16px; }
.muted { color: var(--muted); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; line-height: 1.2;
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--clay); color: var(--paper); box-shadow: 0 8px 20px -10px rgba(184, 103, 63, .8); }
.btn--primary:hover { background: var(--clay-dark); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: var(--cream); color: var(--olive-dark); }
.btn--light:hover { background: var(--paper); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .9); }
.btn--wa:hover { background: var(--wa-dark); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.icon-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: transparent; cursor: pointer; transition: background .2s;
}
.icon-btn:hover { background: var(--linen); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--clay-dark); border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--paper); color: var(--olive); font-size: 12px; font-weight: 700; letter-spacing: .02em; box-shadow: var(--shadow-sm); }
.badge--clay { background: var(--clay); color: var(--paper); }
.badge--muted { background: var(--ink); color: var(--paper); }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-dark); margin-bottom: 16px; }
.eyebrow__line { width: 32px; height: 1.5px; background: currentColor; }
.eyebrow--light { color: var(--sand); }

.section { padding: 96px 0; }
.section--compact { padding: 56px 0; }
.section--tint { background: var(--linen); }
.section--flush-top { padding-top: 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.01em; }

/* ---------- Duyuru şeridi (topbar) ---------- */
.announce { background: var(--olive-dark); color: var(--linen); font-size: 13px; }
.announce__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.announce__text { display: inline-flex; align-items: center; gap: 8px; }
.announce__text svg { color: var(--sand); flex: none; }
.announce__links { display: flex; gap: 22px; }
.announce__links a { opacity: .85; transition: opacity .2s; }
.announce__links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 238, .88);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--linen); box-shadow: 0 8px 24px -18px rgba(42, 37, 32, .4); }
.site-header__inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--olive); }
.logo__mark { width: 34px; height: 34px; color: var(--clay); }
.logo__text { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: .01em; color: var(--olive-dark); }
.logo--light .logo__text { color: var(--cream); }
.logo--light .logo__mark { color: var(--sand); }

.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav > a, .main-nav__drop > a {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: 15px; font-weight: 500; color: var(--ink); border-radius: 999px; transition: color .2s;
}
.main-nav > a::after, .main-nav__drop > a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px; background: var(--clay);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--clay-dark); }
.main-nav__drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; padding: 10px;
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--linen);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .25s var(--ease);
}
.main-nav__drop::before { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.main-nav__drop:hover .dropdown, .main-nav__drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); font-size: 14.5px; transition: background .2s, color .2s; }
.dropdown a:hover { background: var(--linen); color: var(--clay-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; }

.site-search { border-top: 1px solid var(--linen); background: var(--cream); }
.site-search__form { display: flex; align-items: center; gap: 12px; padding-top: 14px; padding-bottom: 14px; color: var(--muted); }
.site-search__form input { flex: 1; border: 0; background: transparent; font-size: 18px; padding: 8px 0; color: var(--ink); outline: none; }

.mobile-nav { position: fixed; inset: 0; z-index: 100; background: rgba(42, 37, 32, .45); }
.mobile-nav__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(340px, 88vw); background: var(--cream);
  padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto;
  animation: slideIn .3s var(--ease);
}
@keyframes slideIn { from { transform: translateX(-100%); } }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav > a { padding: 14px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--linen); }
.mobile-nav__sub { display: flex; flex-direction: column; padding: 6px 0 10px 14px; border-bottom: 1px solid var(--linen); }
.mobile-nav__sub a { padding: 7px 0; color: var(--muted); }
.mobile-nav .btn { margin-top: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 56px 0 96px; }
.hero::before {
  content: ''; position: absolute; right: -10%; top: -30%; width: 60%; height: 140%;
  background: radial-gradient(closest-side, rgba(220, 203, 181, .55), transparent 70%); pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(44px, 6vw, 80px); line-height: 1.02; letter-spacing: -.02em; color: var(--olive-dark); margin-bottom: 24px; }
.hero__text { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; margin: 40px 0 0; padding: 0; font-size: 14px; font-weight: 600; color: var(--olive); }
.hero__points li { display: inline-flex; align-items: center; gap: 8px; }
.hero__points svg { color: var(--clay); }

.hero__visual { position: relative; height: 580px; }
.hero__sun { position: absolute; width: 160px; height: 160px; border-radius: 50%; background: var(--clay); opacity: .9; top: 24px; right: 36px; }
.hero__arch {
  position: absolute; right: 70px; bottom: 0; width: 360px; height: 520px; overflow: hidden;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg); background: var(--sand); box-shadow: var(--shadow-lg);
}
.hero__arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__arch--small { right: auto; left: 0; bottom: 48px; width: 210px; height: 300px; border: 8px solid var(--cream); }
.hero__arch-fill { display: block; width: 100%; height: 100%; background: linear-gradient(160deg, var(--sand) 0%, var(--clay-soft) 45%, var(--linen) 100%); }
.hero__arch-fill::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 55%; height: 60%; transform: translateX(-50%); border-radius: 999px 999px 0 0; background: var(--olive); opacity: .85; }
.hero__arch-fill--alt { background: linear-gradient(180deg, var(--olive-soft), var(--linen)); }
.hero__arch-fill--alt::after { background: var(--clay); width: 40%; height: 40%; border-radius: 50%; bottom: 20%; opacity: .75; }
.hero__note {
  position: absolute; left: 4%; top: 72px; display: flex; align-items: center; gap: 12px; z-index: 2;
  padding: 14px 20px 14px 14px; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.hero__note strong { display: block; font-size: 15px; }
.hero__note small { color: var(--muted); font-size: 13px; }
.hero__note-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--clay-soft); color: var(--clay-dark); }
@keyframes float { 50% { transform: translateY(-10px); } }

/* ---------- Özellik şeridi ---------- */
.features { border-block: 1px solid var(--linen); background: var(--paper); }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { display: flex; gap: 16px; align-items: flex-start; padding: 32px 24px; }
.feature + .feature { border-left: 1px solid var(--linen); }
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature p { font-size: 14px; color: var(--muted); margin: 0; }
.feature__icon { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--olive-soft); color: var(--olive); }

/* ---------- Kategori kartları ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; gap: 20px; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); display: flex; align-items: flex-end; padding: 24px; grid-column: span 2; isolation: isolate; }
.cat-card:nth-child(1), .cat-card:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.cat-card--0 { background: var(--sand); }
.cat-card--1 { background: var(--olive-soft); }
.cat-card--2 { background: var(--clay-soft); }
.cat-card--3 { background: var(--linen); }
.cat-card--4 { background: var(--olive); color: var(--cream); }
.cat-card::before { content: ''; position: absolute; right: -40px; top: -40px; width: 180px; height: 220px; border-radius: 999px 999px 0 0; background: rgba(255, 253, 249, .35); z-index: -1; transition: transform .6s var(--ease); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.cat-card:has(img)::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(44, 53, 43, .75), transparent 60%); z-index: -1; }
.cat-card:has(img) { color: var(--cream); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card:hover::before { transform: translate(-16px, 16px) scale(1.1); }
.cat-card__body { display: flex; flex-direction: column; }
.cat-card__name { font-family: var(--font-display); font-size: 30px; font-weight: 600; line-height: 1.1; }
.cat-card__count { font-size: 13px; font-weight: 600; opacity: .8; margin-top: 4px; }

/* ---------- Ürün kartları ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
.card { display: flex; flex-direction: column; }
.card__media { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--linen); }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .5s var(--ease); }
.card__alt { opacity: 0; }
.card:hover .card__media img { transform: scale(1.04); }
.card:hover .card__alt { opacity: 1; }
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 1; }
.card__body { padding: 16px 4px 0; }
.card__cat { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.card__title { font-size: 17px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.card__title a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .35s var(--ease); }
.card:hover .card__title a { background-size: 100% 1px; }

.ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sand); background: linear-gradient(160deg, var(--linen), var(--cream)); }
.ph--lg { position: relative; aspect-ratio: 4 / 5; }

.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.price__now { font-weight: 700; font-size: 17px; color: var(--clay-dark); }
.price__old { color: var(--muted); font-size: 14px; }
.price__ask { font-size: 14px; font-weight: 600; color: var(--olive); }
.price--lg .price__now { font-size: 30px; }
.price--lg .price__old { font-size: 18px; }
.price--lg .price__ask { font-size: 18px; }

.empty { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 64px 24px; color: var(--muted); background: var(--paper); border: 1.5px dashed var(--sand); border-radius: var(--radius-lg); }
.empty svg { color: var(--sand); }

/* ---------- Kişiye özel bandı ---------- */
.custom-band { position: relative; overflow: hidden; background: var(--olive); color: var(--cream); padding: 104px 0; }
.custom-band::before { content: ''; position: absolute; left: -120px; bottom: -200px; width: 460px; height: 560px; border-radius: 999px 999px 0 0; border: 1.5px solid rgba(220, 203, 181, .25); }
.custom-band::after { content: ''; position: absolute; right: 8%; top: -80px; width: 220px; height: 220px; border-radius: 50%; background: var(--clay); opacity: .35; filter: blur(2px); }
.custom-band__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.custom-band .section-title { color: var(--cream); margin-bottom: 20px; }
.custom-band p { color: rgba(248, 244, 238, .8); font-size: 17px; margin-bottom: 32px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-radius: var(--radius); background: rgba(248, 244, 238, .07); border: 1px solid rgba(248, 244, 238, .12); transition: background .3s; }
.step:hover { background: rgba(248, 244, 238, .12); }
.step__no { font-family: var(--font-display); font-size: 36px; font-weight: 600; line-height: 1; color: var(--sand); }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.step p { margin: 0; font-size: 14.5px; }
.steps--cards { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps--cards .step { flex-direction: column; background: var(--paper); border-color: var(--linen); box-shadow: var(--shadow-sm); }
.steps--cards .step:hover { background: var(--paper); transform: translateY(-4px); box-shadow: var(--shadow); }
.steps--cards .step { transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.steps--cards .step__no { color: var(--clay); }
.steps--cards .step p { color: var(--muted); }

/* ---------- Instagram bandı ---------- */
.ig-band { display: flex; align-items: center; gap: 28px; padding: 36px 40px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--linen); box-shadow: var(--shadow-sm); }
.ig-band__icon { flex: none; display: grid; place-items: center; width: 68px; height: 68px; border-radius: 20px; background: var(--clay-soft); color: var(--clay-dark); }
.ig-band__text { flex: 1; }
.ig-band h2 { font-family: var(--font-display); font-size: 30px; font-weight: 600; margin-bottom: 4px; }
.ig-band p { margin: 0; color: var(--muted); }

/* ---------- Sayfa başlığı ---------- */
.page-hero { padding: 48px 0 56px; }
.page-hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5vw, 64px); letter-spacing: -.015em; color: var(--olive-dark); margin: 12px 0 12px; }
.page-hero__text { max-width: 620px; color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.page-hero--custom { background: linear-gradient(180deg, var(--cream), var(--linen)); padding-bottom: 80px; }
.page-hero__split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.idea-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.idea-list li { padding: 12px 20px; border-radius: 999px; background: var(--paper); border: 1px solid var(--sand); font-weight: 600; font-size: 15px; box-shadow: var(--shadow-sm); }
.idea-list li:nth-child(3n + 1) { background: var(--clay-soft); border-color: transparent; }
.idea-list li:nth-child(3n + 2) { background: var(--olive-soft); border-color: transparent; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.breadcrumb a:hover { color: var(--clay-dark); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Liste araçları ---------- */
.chips { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 20px; scrollbar-width: thin; }
.chip { flex: none; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--sand); font-size: 14px; font-weight: 600; transition: all .2s; }
.chip:hover { border-color: var(--olive); }
.chip.is-active { background: var(--olive); border-color: var(--olive); color: var(--cream); }

.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding: 14px; background: var(--paper); border: 1px solid var(--linen); border-radius: var(--radius); }
.toolbar__search { flex: 1 1 260px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border-radius: 999px; background: var(--cream); color: var(--muted); }
.toolbar__search input { flex: 1; border: 0; background: transparent; padding: 11px 0; outline: none; color: var(--ink); }
.toolbar select { padding: 10px 36px 10px 16px; border-radius: 999px; border: 1.5px solid var(--linen); background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23736A60' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; appearance: none; cursor: pointer; }
.result-count { margin: 22px 0 26px; font-size: 14px; color: var(--muted); }

.toggle { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; cursor: pointer; user-select: none; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle__track { position: relative; width: 40px; height: 22px; border-radius: 999px; background: var(--sand); transition: background .2s; }
.toggle__track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); transition: transform .25s var(--ease); box-shadow: var(--shadow-sm); }
.toggle input:checked + .toggle__track { background: var(--clay); }
.toggle input:checked + .toggle__track::after { transform: translateX(18px); }
.toggle input:focus-visible + .toggle__track { outline: 2px solid var(--clay); outline-offset: 2px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination a, .pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 999px; border: 1.5px solid var(--sand); font-weight: 600; }
.pagination a:hover { border-color: var(--olive); }
.pagination .is-active { background: var(--olive); border-color: var(--olive); color: var(--cream); }

/* ---------- Ürün detay ---------- */
.section--product { padding: 32px 0 96px; }
.section--product .breadcrumb { margin-bottom: 28px; }
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--linen); aspect-ratio: 4 / 5; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s; }
.gallery__main img.is-fading { opacity: 0; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 12px; margin-top: 14px; }
.gallery__thumb { padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; background: var(--linen); cursor: pointer; aspect-ratio: 1; transition: border-color .2s; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active, .gallery__thumb:hover { border-color: var(--clay); }

.product__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(36px, 4vw, 52px); letter-spacing: -.01em; color: var(--olive-dark); margin: 4px 0 18px; }
.product__lead { font-size: 17px; color: var(--muted); margin: 22px 0; }
.product__meta { list-style: none; margin: 24px 0; padding: 20px 0; border-block: 1px solid var(--linen); display: grid; gap: 12px; font-size: 15px; }
.product__meta li { display: flex; align-items: center; gap: 12px; }
.product__meta svg { color: var(--olive); flex: none; }
.product__meta .is-warn svg { color: var(--clay); }
.product__actions { display: grid; gap: 12px; }
.product__note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.product__desc { margin-top: 40px; }
.product__desc h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin-bottom: 14px; }
.prose { white-space: pre-line; color: var(--ink); }
.prose--lg { font-size: 18px; line-height: 1.8; }

/* ---------- Formlar ---------- */
.form-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.form-layout__aside p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; font-weight: 600; }
.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list svg { color: var(--clay); }
.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--linen); background: var(--cream);
  transition: border-color .2s, background .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--clay); background: var(--paper); box-shadow: 0 0 0 4px var(--clay-soft); }
.field textarea { resize: vertical; min-height: 140px; }
.field.has-error input, .field.has-error textarea { border-color: var(--clay-dark); }
.field__error { color: var(--clay-dark); font-weight: 600; font-size: 13px; }
.form-hint { font-size: 13px; color: var(--muted); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; font-size: 14.5px; }
.alert--error { background: var(--clay-soft); color: var(--clay-dark); }
.alert--success { background: var(--olive-soft); color: var(--olive-dark); }
.success-box { text-align: center; padding: 24px 8px; }
.success-box__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--olive-soft); color: var(--olive); margin-bottom: 16px; }
.success-box h3 { font-family: var(--font-display); font-size: 30px; font-weight: 600; margin-bottom: 8px; }
.success-box p { color: var(--muted); }

/* ---------- Hakkımızda ---------- */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start; }
.about .hero__actions { margin-top: 32px; }
.values { display: grid; gap: 18px; }
.value { padding: 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--linen); }
.value h3 { font-size: 18px; margin: 14px 0 6px; }
.value p { margin: 0; color: var(--muted); font-size: 15px; }

.error-page { max-width: 560px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.error-page__code { font-family: var(--font-display); font-size: 120px; line-height: 1; color: var(--clay); font-weight: 600; }
.error-page .section-title { margin: 8px 0 12px; }
.error-page p { color: var(--muted); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-dark); color: rgba(248, 244, 238, .78); padding-top: 80px; font-size: 15px; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; }
.site-footer__brand p { margin: 18px 0 22px; max-width: 300px; }
.site-footer__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer ul a { transition: color .2s; }
.site-footer ul a:hover { color: var(--sand); }
.site-footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.site-footer__contact svg { flex: none; margin-top: 3px; color: var(--sand); }
.social { display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(248, 244, 238, .2); transition: all .25s; }
.social a:hover { background: var(--clay); border-color: var(--clay); color: var(--paper); }
.site-footer__bottom { border-top: 1px solid rgba(248, 244, 238, .1); font-size: 13.5px; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 22px; padding-bottom: 22px; }

/* ---------- Sabit WhatsApp & Instagram butonları ---------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.float-btn {
  position: relative; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-btn svg { position: relative; z-index: 1; }
.float-btn::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: inherit; z-index: 0; animation: pulse 2.4s ease-out infinite; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn--wa { background: linear-gradient(145deg, #3BE27A, var(--wa) 55%, #1DB954); box-shadow: 0 0 0 3px rgba(255, 255, 255, .9), 0 10px 30px rgba(37, 211, 102, .65), 0 0 24px rgba(37, 211, 102, .55); }
.float-btn--wa:hover { box-shadow: 0 0 0 3px #fff, 0 14px 36px rgba(37, 211, 102, .8), 0 0 36px rgba(37, 211, 102, .7); }
.float-btn--ig { width: 54px; height: 54px; background: radial-gradient(circle at 30% 110%, #FFDB6E 0%, #FF9A3C 22%, #F2335B 48%, #D2297F 68%, #8A3AB9 100%); box-shadow: 0 0 0 3px rgba(255, 255, 255, .9), 0 10px 28px rgba(225, 48, 108, .6), 0 0 22px rgba(225, 48, 108, .45); }
.float-btn--ig::before { animation-delay: 1.2s; }
.float-btn--ig:hover { box-shadow: 0 0 0 3px #fff, 0 14px 34px rgba(225, 48, 108, .75), 0 0 32px rgba(225, 48, 108, .6); }
.float-btn__label {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translate(8px, -50%); white-space: nowrap;
  padding: 7px 14px; border-radius: 999px; background: var(--ink); color: var(--cream); font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: all .25s var(--ease);
}
.float-btn:hover .float-btn__label, .float-btn:focus-visible .float-btn__label { opacity: 1; transform: translate(0, -50%); }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Duyarlı tasarım ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { gap: 40px; }
  .hero__arch { width: 300px; height: 440px; right: 40px; }
  .hero__visual { height: 500px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .steps--cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-grid; margin-left: -10px; }
  .site-header__inner { gap: 8px; justify-content: space-between; }
  .logo { margin-right: auto; }
  .logo__text { font-size: 24px; }
  .announce__links { display: none; }
  .announce__inner { justify-content: center; text-align: center; }

  .hero { padding: 32px 0 72px; }
  .hero__grid, .custom-band__grid, .product, .form-layout, .about, .page-hero__split { grid-template-columns: 1fr; }
  .hero__visual { height: 440px; max-width: 460px; width: 100%; margin: 0 auto; }
  .hero__arch { width: 62%; height: 400px; right: 6%; }
  .hero__arch--small { width: 40%; height: 240px; bottom: 30px; }
  .hero__sun { width: 110px; height: 110px; right: 0; }
  .hero__note { top: 24px; left: 0; }

  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(3) { border-left: 0; }
  .feature:nth-child(n + 3) { border-top: 1px solid var(--linen); }

  .cat-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .cat-card, .cat-card:nth-child(1), .cat-card:nth-child(2) { grid-column: span 1; }
  .cat-card:nth-child(1) { grid-column: span 2; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .gallery { position: static; }
  .section { padding: 72px 0; }
  .custom-band { padding: 80px 0; }
  .custom-band__grid { gap: 40px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .ig-band { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 44px; }
  .hero__actions .btn { width: 100%; }
  .features__grid { grid-template-columns: 1fr; }
  .feature + .feature { border-left: 0; border-top: 1px solid var(--linen); }
  .feature { padding: 20px 8px; }
  .product-grid { gap: 24px 12px; }
  .card__title { font-size: 15px; }
  .price__now { font-size: 15px; }
  .card__badges .badge { font-size: 11px; padding: 3px 8px; }
  .form-card { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .steps--cards { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .float-actions { right: 16px; bottom: 16px; }
  .float-btn { width: 54px; height: 54px; }
  .float-btn--ig { width: 48px; height: 48px; }
  .toolbar > .btn { width: 100%; }
}

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