/* ============================================================
   GARDEN MOBİLYA — Modern e-ticaret (Shopify-tarzı)
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-soft:   #F5F4EF;   /* sıcak açık nötr */
  --bg-dark:   #18211C;   /* koyu yeşil-siyah */
  --green:     #2D5A45;   /* doğal yeşil */
  --green-soft:#E9F0EB;
  --ink:       #1A1C19;
  --muted:     #74776E;
  --line:      #E8E6DF;
  --line-2:    #DEDBD2;

  --brand:     #EC7A1B;   /* logo turuncusu */
  --brand-d:   #CB6310;
  --slate:     #5C6770;   /* logo grisi */

  --radius:    16px;
  --radius-lg: 26px;
  --shadow:    0 18px 50px -24px rgba(20,28,20,.30);
  --shadow-sm: 0 8px 24px -14px rgba(20,28,20,.24);

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --sans:    "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1340px;
  --head-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -.025em; }
.display { font-size: clamp(2.6rem, 6.2vw, 5.6rem); letter-spacing: -.035em; line-height: .98; }

.kicker {
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); display: inline-flex; align-items: center; gap: .6em;
}
.kicker.dot::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 54ch; line-height: 1.65; }

.wrap { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.bg-soft { background: var(--bg-soft); }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin-top: .8rem; }
.sec-head p { color: var(--muted); margin-top: .6rem; max-width: 46ch; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.5em; font-weight: 600; font-size: .94rem;
  border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -12px rgba(236,122,27,.7); }
.btn-brand:hover { background: var(--brand-d); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2c2f29; }
.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-soft); }

/* ============================================================
   HEADER
   ============================================================ */
/* ---------- Duyuru çubuğu ---------- */
.announce { background: var(--green); color: #d8e6db; font-size: .81rem; }
.announce-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.announce .ann-left { display: inline-flex; align-items: center; gap: .55em; letter-spacing: .01em; }
.announce .ann-left svg { color: #ffcaa0; flex: none; }
.announce .ann-left .sep { opacity: .4; margin: 0 .4rem; }
.announce .ann-right { display: inline-flex; align-items: center; gap: 1.5rem; }
.announce .ann-right a { color: rgba(216,230,219,.82); transition: color .25s; }
.announce .ann-right a:hover { color: #fff; }
.announce .ann-phone { font-weight: 700; color: #fff !important; display: inline-flex; align-items: center; gap: .4em; }
.announce .ann-phone svg { color: #ffcaa0; }

/* ---------- Sticky başlık ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(16px) saturate(1.5); border-bottom: 1px solid var(--line); transition: box-shadow .35s; }
.site-header.scrolled { box-shadow: 0 12px 36px -24px rgba(20,28,20,.55); }

/* Ana satır: logo + arama + aksiyonlar (sayfa genişliğine hizalı) */
.header-row { display: flex; align-items: center; justify-content: space-between; gap: clamp(1rem, 3vw, 2.2rem); padding: 1rem 0; }
.brand { flex: none; display: flex; align-items: center; }
.brand .logo { height: 48px; width: auto; display: block; transition: height .35s var(--ease); }
.site-header.scrolled .brand .logo { height: 40px; }

/* Arama */
.search { flex: 1 1 auto; max-width: 540px; position: relative; display: flex; align-items: center; }
.search svg { position: absolute; left: 1.05rem; color: var(--muted); pointer-events: none; transition: color .25s; }
.search input { width: 100%; border: 1.5px solid var(--line-2); background: var(--bg-soft); border-radius: 999px; padding: .82rem 1.2rem .82rem 2.9rem; font: inherit; font-size: .92rem; color: var(--ink); transition: border-color .25s, background .25s, box-shadow .25s; }
.search input::placeholder { color: var(--muted); }
.search input:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(236,122,27,.13); }
.search:focus-within svg { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .95rem; white-space: nowrap; }
.header-phone svg { color: var(--brand); flex: none; }

/* Kategori çubuğu — kategoriler doğrudan görünür */
.header-cats { border-top: 1px solid var(--line); background: rgba(255,255,255,.6); }
.cats-row { display: flex; align-items: stretch; }
.cats-all { display: inline-flex; align-items: center; gap: .55em; font-weight: 700; font-size: .9rem; color: var(--ink); padding: .85rem 1.15rem .85rem 0; margin-right: .9rem; border-right: 1px solid var(--line); flex: none; transition: color .25s; }
.cats-all svg { color: var(--brand); }
.cats-all:hover { color: var(--brand); }
.cats-scroll { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; mask-image: linear-gradient(to right, #000 96%, transparent); }
.cats-scroll::-webkit-scrollbar { display: none; }
.cats-scroll a { position: relative; white-space: nowrap; font-size: .88rem; font-weight: 500; color: var(--ink); padding: .85rem .85rem; display: flex; align-items: center; transition: color .25s; flex: none; }
.cats-scroll a::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: 0; height: 2.5px; border-radius: 3px 3px 0 0; background: var(--brand); transform: scaleX(0); transition: transform .3s var(--ease); }
.cats-scroll a:hover { color: var(--brand); }
.cats-scroll a:hover::after, .cats-scroll a.active::after { transform: scaleX(1); }
.cats-scroll a.active { color: var(--brand); }

.menu-btn { display: none; background: none; border: none; color: var(--ink); }

/* Mobil menü */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: #fff; padding: 1.4rem; transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-menu.open { transform: none; }
.mobile-menu .mm-top { display:flex; align-items:center; justify-content: space-between; margin-bottom: 1.2rem; }
.mobile-menu .close { background: none; border: none; color: var(--ink); }
.mobile-menu .mm-search { position: relative; display: flex; align-items: center; margin-bottom: 1.4rem; }
.mobile-menu .mm-search svg { position: absolute; left: 1rem; color: var(--muted); }
.mobile-menu .mm-search input { width: 100%; border: 1.5px solid var(--line-2); background: var(--bg-soft); border-radius: 999px; padding: .8rem 1rem .8rem 2.8rem; font: inherit; font-size: .92rem; }
.mobile-menu .mm-search input:focus { outline: none; border-color: var(--brand); }
.mobile-menu .mm-nav a { font-family: var(--display); font-size: 1.6rem; font-weight: 700; padding: .5rem 0; display: block; border-bottom: 1px solid var(--line); }
.mobile-menu h6 { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); margin: 1.5rem 0 .6rem; }
.mobile-menu .mm-cats { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.mobile-menu .mm-cats a { padding: .7rem .9rem; background: var(--bg-soft); border-radius: 10px; font-weight: 600; font-size: .92rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(1.2rem, 3vw, 2rem) 0 clamp(2.5rem,5vw,4rem); }
.hero-stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: clamp(440px, 72vh, 720px); display: flex; align-items: flex-end; box-shadow: var(--shadow); }
.hero-stage img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-stage::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(105deg, rgba(16,22,16,.78) 0%, rgba(16,22,16,.42) 42%, rgba(16,22,16,.05) 75%); }
.hero-inner { padding: clamp(1.8rem, 4vw, 3.6rem); color: #fff; max-width: 760px; }
.hero-inner .kicker { color: #ffd9b0; }
.hero-inner h1 { color: #fff; margin: 1rem 0 1.2rem; }
.hero-inner p { color: rgba(255,255,255,.86); font-size: clamp(1rem,1.4vw,1.2rem); max-width: 50ch; }
.hero-actions { display: flex; gap: .8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-badges div { display: flex; align-items: center; gap: .5em; color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 500; }
.hero-badges svg { color: var(--brand); }

/* trust strip */
.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.5rem; }
.trust .t { display: flex; gap: .8rem; align-items: center; padding: 1.1rem 1.2rem; background: var(--bg-soft); border-radius: var(--radius); }
.trust .t .ic { width: 40px; height: 40px; flex:none; border-radius: 10px; background: #fff; display: grid; place-items: center; color: var(--green); }
.trust .t b { display: block; font-size: .95rem; }
.trust .t span { font-size: .8rem; color: var(--muted); }

/* ============================================================
   KATEGORİ IZGARASI
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/3.4;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate; background: var(--ink);
}
.cat-card.wide { grid-column: span 2; aspect-ratio: auto; }
.cat-card img { position: absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-2; transition: transform .8s var(--ease); }
.cat-card::before { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(to top, rgba(15,20,14,.85), rgba(15,20,14,.05) 70%); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card .ci { padding: 1.3rem; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.cat-card h3 { font-size: 1.35rem; }
.cat-card .meta { font-size: .8rem; opacity: .85; margin-top: .15rem; }
.cat-card .go { width: 40px; height: 40px; flex:none; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; transition: background .3s, transform .35s var(--ease); }
.cat-card:hover .go { background: var(--brand); transform: rotate(-45deg); }

/* ============================================================
   ÜRÜN KARTLARI
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px,1fr)); gap: 1.6rem 1.3rem; }
.prod-card { display: flex; flex-direction: column; background: var(--bg); border-radius: var(--radius); }
.prod-thumb { position: relative; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prod-card:hover .prod-thumb img { transform: scale(1.06); }
.prod-thumb .badge { position: absolute; top: .8rem; left: .8rem; background: rgba(255,255,255,.94); backdrop-filter: blur(4px); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .42em .8em; border-radius: 999px; color: var(--green); }
.prod-thumb .fav { position:absolute; top:.7rem; right:.7rem; width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.92); display:grid; place-items:center; opacity:0; transform: translateY(-6px); transition: opacity .3s, transform .3s var(--ease), color .3s; border:none; color: var(--ink); }
.prod-card:hover .fav { opacity: 1; transform: none; }
.prod-thumb .fav:hover { color: var(--brand); }
.prod-thumb .view { position:absolute; left:.7rem; right:.7rem; bottom:.7rem; background:#fff; color:var(--ink); border-radius:11px; padding:.75em; text-align:center; font-size:.85rem; font-weight:700; transform: translateY(140%); transition: transform .4s var(--ease); display:flex; align-items:center; justify-content:center; gap:.5em; box-shadow: var(--shadow-sm); }
.prod-card:hover .view { transform: none; }
.prod-info { padding: .9rem .2rem 0; }
.prod-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); font-weight: 700; }
.prod-name { font-family: var(--display); font-size: 1.08rem; font-weight: 600; margin: .3rem 0; line-height: 1.2; }
.prod-desc { font-size: .85rem; color: var(--muted); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .7rem; }
.prod-swatches { display: flex; gap: .35rem; }
.sw { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #fff; box-shadow: 0 0 0 1px var(--line-2); }
.prod-link { font-size: .82rem; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: .35em; }
.prod-link svg { transition: transform .3s var(--ease); }
.prod-card:hover .prod-link svg { transform: translateX(3px); }

/* ============================================================
   SPLIT / ÖZELLİK
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; aspect-ratio: 6/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .chip { position: absolute; bottom: 1.1rem; left: 1.1rem; background: #fff; border-radius: 12px; padding: .85rem 1.1rem; box-shadow: var(--shadow-sm); }
.split-media .chip b { font-family: var(--display); font-size: 1.1rem; display: block; }
.split-media .chip span { font-size: .8rem; color: var(--muted); }
.split h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); margin: 1rem 0 1.2rem; }
.feature-list { list-style: none; margin-top: 1.8rem; display: grid; gap: 1rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.feature-list .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; color: var(--green); }
.feature-list h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
.feature-list p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { background: var(--green); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem,6vw,5rem); position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content:""; position:absolute; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(236,122,27,.5), transparent 70%); top:-180px; right:-120px; }
.cta-band > * { position: relative; }
.cta-band .kicker { color: #ffd9b0; justify-content: center; }
.cta-band h2 { font-size: clamp(2rem,4.8vw,4rem); margin: 1rem 0; color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.8); margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
.cta-phone { display: inline-flex; align-items: center; gap: .5em; font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem,3.5vw,2.6rem); margin-top: 1.4rem; }
.cta-phone svg { color: var(--brand); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-dark); color: #d7ddd5; padding: clamp(3rem,6vw,5rem) 0 2rem; position: relative; overflow: hidden; }
.site-footer::before { content:""; position:absolute; top:-160px; right:-120px; width:460px; height:460px; border-radius:50%; background: radial-gradient(circle, rgba(45,90,69,.55), transparent 70%); }
.site-footer > .wrap { position: relative; }

/* özellik şeridi */
.foot-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; padding-bottom: 2.5rem; margin-bottom: 2.8rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-features .ff { display: flex; gap: .85rem; align-items: center; }
.foot-features .ic { width: 46px; height: 46px; flex:none; border-radius: 13px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--brand); }
.foot-features b { display: block; font-size: .92rem; color: #fff; }
.foot-features .ff span { font-size: .8rem; color: rgba(215,221,213,.55); }

.foot-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.25fr; gap: 2.5rem; }
.foot-brand .logo { height: 46px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .95; }
.foot-brand p { color: rgba(215,221,213,.6); max-width: 34ch; font-size: .92rem; }
.foot-social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.foot-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.foot-social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.foot-col h5 { font-size: .74rem; text-transform: uppercase; letter-spacing: .15em; color: var(--brand); margin-bottom: 1.2rem; font-weight: 700; }
.foot-col ul { list-style: none; display: grid; gap: .68rem; }
.foot-col a, .foot-col li { font-size: .92rem; color: rgba(215,221,213,.7); transition: color .25s; }
.foot-col a:hover { color: #fff; }
.foot-contact .big-phone { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: #fff; display: inline-flex; align-items: center; gap: .45em; margin-bottom: 1rem; }
.foot-contact .big-phone svg { color: var(--brand); }
.foot-contact .row { display: flex; gap: .6em; align-items: flex-start; font-size: .92rem; color: rgba(215,221,213,.7); margin-bottom: .6rem; }
.foot-contact .row svg { color: var(--brand); flex: none; margin-top: 2px; }

.foot-wordmark { text-align: center; overflow: hidden; margin: 2.8rem 0 .5rem; line-height: .8; }
.foot-wordmark span { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 14vw, 13rem); letter-spacing: -.04em; white-space: nowrap; background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.015)); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: rgba(215,221,213,.45); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.08); }
.foot-bottom a:hover { color: #fff; }

/* kategori toolbar notu */
.sort-note { font-size: .82rem; color: var(--muted); }

/* ============================================================
   İÇ SAYFA BAŞLIĞI
   ============================================================ */
.page-head { padding: clamp(2.5rem,5vw,4rem) 0 clamp(1.5rem,3vw,2.2rem); }
.breadcrumb { font-size: .82rem; color: var(--muted); display: flex; gap: .5rem; margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; }
.page-head h1 { font-size: clamp(2.2rem,5.5vw,4rem); }
.page-head .lead { margin-top: 1rem; }

/* Kategori araç çubuğu */
.cat-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 2.4rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { padding: .5em 1.05em; border-radius: 999px; border: 1.5px solid var(--line-2); font-size: .85rem; font-weight: 600; transition: all .25s var(--ease); background: #fff; color: var(--ink); }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.result-count { font-size: .85rem; color: var(--muted); }
.result-count b { color: var(--ink); }

/* Ürün detay */
.pd-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.pd-gallery { position: sticky; top: 130px; }
.pd-main { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-soft); }
.pd-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s; }
.pd-thumbs { display: flex; gap: .7rem; margin-top: .8rem; flex-wrap: wrap; }
.pd-thumbs button { width: 76px; height: 76px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; background: var(--bg-soft); padding: 0; transition: border-color .25s; }
.pd-thumbs button.active { border-color: var(--brand); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-size: clamp(1.9rem,4vw,3rem); margin: .8rem 0; }
.pd-short { font-size: 1.02rem; color: var(--ink); background: var(--bg-soft); border-radius: 12px; padding: 1rem 1.2rem; margin: 1.3rem 0; }
.pd-block { margin: 1.6rem 0; }
.pd-block h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: .8rem; }
.opt-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.opt { padding: .55em 1.05em; border-radius: 10px; border: 1.5px solid var(--line-2); font-size: .9rem; font-weight: 600; background: #fff; display: inline-flex; align-items: center; gap: .5em; }
.opt .swatch { width: 14px; height: 14px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line-2); }
.pd-actions { display: flex; gap: .8rem; margin: 1.6rem 0; flex-wrap: wrap; }
.pd-actions .btn { flex: 1 1 auto; justify-content: center; }
.pd-specs { list-style: none; border-top: 1px solid var(--line); margin-top: 1.6rem; }
.pd-specs li { display: flex; justify-content: space-between; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; gap: 1rem; }
.pd-specs li span:first-child { color: var(--muted); }
.pd-desc { line-height: 1.8; color: var(--ink); }
.pd-desc p { margin-bottom: 1rem; }
.pd-desc sup { font-size: .7em; }

/* Hakkımızda */
.about-quote { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem,3.6vw,2.8rem); line-height: 1.2; text-align: center; max-width: 24ch; margin: 0 auto; letter-spacing: -.02em; }
.about-quote .hl { color: var(--brand); }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; }
.value-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 1.2rem; }
.value-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.value-card p { font-size: .92rem; color: var(--muted); }
.process { display: grid; gap: 0; }
.process .step { display: grid; grid-template-columns: auto 1fr auto; gap: 1.8rem; align-items: center; padding: 1.8rem 0; border-top: 1px solid var(--line); }
.process .step:last-child { border-bottom: 1px solid var(--line); }
.process .step .idx { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem,4.5vw,3rem); color: var(--brand); }
.process .step h3 { font-size: clamp(1.3rem,3vw,2rem); }
.process .step p { color: var(--muted); max-width: 46ch; }
.process .step .tag { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat { padding: 1.6rem; background: var(--bg-soft); border-radius: var(--radius); }
.stat b { font-family: var(--display); font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); display: block; line-height: 1; }
.stat span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"]{ transition-delay:.07s } [data-reveal][data-delay="2"]{ transition-delay:.14s }
[data-reveal][data-delay="3"]{ transition-delay:.21s } [data-reveal][data-delay="4"]{ transition-delay:.28s }
@media (prefers-reduced-motion: reduce){ *,*::before,*::after{ animation:none!important; transition:none!important } [data-reveal]{ opacity:1!important; transform:none!important } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){ .cat-grid { grid-template-columns: repeat(2,1fr); } .cat-card.wide { grid-column: span 2; } }
@media (max-width: 960px){
  .split, .pd-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .pd-gallery { position: static; }
  .trust, .stats { grid-template-columns: repeat(2,1fr); }
  .foot-top, .foot-features { grid-template-columns: 1fr 1fr; }
  .foot-top .foot-brand { grid-column: 1 / -1; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 860px){ .search { display: none; } }
@media (max-width: 768px){
  .header-phone, .header-cats, .announce .ann-right { display: none; }
  .announce-in { justify-content: center; }
  .menu-btn { display: grid; place-items: center; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .process .step { grid-template-columns: auto 1fr; }
  .process .step .tag { display: none; }
  .foot-top { grid-template-columns: 1fr; }
  .pd-actions { flex-direction: column; }
}
