/* ============================================================
   ASYA ÇİÇEKÇİLİK — Tasarım Sistemi
   Marmaraçiçek düzeni · saf CSS · tek dosya
   ============================================================ */

:root {
  --ink:    #20242e;   /* başlıklar */
  --text:   #515661;   /* gövde metni */
  --muted:  #9398a3;
  --line:   #ededf0;
  --bg:     #ffffff;
  --soft:   #f7f8fa;

  /* pastel afiş tonları */
  --blue-bg-1:#dceffb; --blue-bg-2:#eef7fd; --blue-btn:#38a3e6;
  --yel-bg-1: #fdf5d6; --yel-bg-2: #fefbec; --yel-btn:#f2c94c;
  --pink-bg-1:#fbe2e8; --pink-bg-2:#fdeef1; --pink-btn:#ef6c57;

  --green:  #2e9e5b;   /* teslimat yazısı */
  --star:   #f5b301;
  --sale:   #ef6c57;

  /* logo nokta kümesi */
  --dot-pink:#e94b8a; --dot-orange:#f5a623; --dot-blue:#2d9cdb; --dot-yellow:#f2c94c;

  --radius: 16px;
  --shadow: 0 6px 24px rgba(28,32,45,.06);
  --shadow-hover: 0 14px 36px rgba(28,32,45,.12);
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.2; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(28,32,45,.06); }

.nav-inner {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 20px; flex-wrap: wrap;
}

.burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  color: var(--ink); align-items: center; justify-content: center;
}
.burger svg { width: 26px; height: 26px; }

/* logo (kelime markası + nokta kümesi) */
.logo {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  line-height: 1;
}
.logo .word {
  display: inline-flex; align-items: flex-start; gap: 3px;
  font-size: 27px; font-weight: 600; letter-spacing: .2px; color: var(--ink);
}
.logo .word .accent { color: var(--dot-pink); }
.logo .dots {
  position: relative; width: 22px; height: 22px; margin-left: 1px;
  flex: none;
}
.logo .dots i {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
}
.logo .dots i:nth-child(1){ background: var(--dot-blue);   top: 0;    left: 7px; }
.logo .dots i:nth-child(2){ background: var(--dot-orange); top: 5px;  left: 0; }
.logo .dots i:nth-child(3){ background: var(--dot-pink);   top: 5px;  left: 14px; }
.logo .dots i:nth-child(4){ background: var(--dot-yellow); top: 12px; left: 7px; }
.logo .logo-mark { height: 36px; width: auto; margin-left: 7px; align-self: center; flex: none; }
.logo .tag {
  font-size: 11px; color: var(--muted); font-weight: 400;
  letter-spacing: .3px; margin-top: 4px;
}

.nav-links {
  display: flex; align-items: center; gap: 22px; margin-left: 8px;
}
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  text-transform: uppercase; letter-spacing: .3px; white-space: nowrap;
  padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--dot-pink); transition: width .25s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-search {
  display: flex; align-items: center; flex: 1; min-width: 180px; max-width: 360px;
  margin-left: auto; background: var(--soft); border: 1px solid var(--line);
  border-radius: 30px; padding: 0 6px 0 18px;
}
.nav-search input {
  flex: 1; border: none; background: none; outline: none;
  font: inherit; font-size: 14px; color: var(--ink); padding: 11px 0;
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search button {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.nav-search button svg { width: 20px; height: 20px; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s;
}
.nav-icon:hover { background: var(--soft); }
.nav-icon svg { width: 22px; height: 22px; }
.nav-icon.wa { color: #25d366; }

/* ============================================================
   MOBİL ÇEKMECE
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-bg {
  position: absolute; inset: 0; background: rgba(20,24,34,.45);
  opacity: 0; transition: opacity .3s;
}
.drawer.open .drawer-bg { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(82%, 320px);
  background: #fff; padding: 26px 24px;
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { font-size: 30px; color: var(--ink); align-self: flex-end; line-height: 1; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.drawer-links a {
  font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 13px 8px; border-bottom: 1px solid var(--line);
  text-transform: uppercase; letter-spacing: .3px;
}
.drawer-foot { margin-top: auto; color: var(--muted); font-size: 14px; padding-top: 20px; }
.drawer-foot a { color: var(--ink); font-weight: 600; }

/* ============================================================
   KATEGORİ HALKALARI (üst şerit)
   ============================================================ */
.cat-strip { padding: 22px 0 18px; border-bottom: 1px solid var(--line); }
.cat-rail {
  display: flex; gap: 5px; overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 6px; -webkit-overflow-scrolling: touch; justify-content: center;
}
.cat-rail::-webkit-scrollbar { height: 0; }
.cat-circle {
  flex: 0 0 auto; width: 94px; text-align: center; scroll-snap-align: start;
}
.cat-circle .ring {
  width: 82px; height: 82px; margin: 0 auto 8px; border-radius: 50%;
  overflow: hidden; background: #fff; border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(28,32,45,.06);
  transition: transform .25s, box-shadow .25s;
}
.cat-circle .ring img { width: 100%; height: 100%; object-fit: cover; }
.cat-circle:hover .ring { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.cat-circle span {
  display: block; font-size: 12.5px; color: var(--ink); font-weight: 500; line-height: 1.3;
}

/* 12 halka sığmazsa sola yaslı kaydır */
@media (max-width: 1180px) { .cat-rail { justify-content: flex-start; } }

/* ============================================================
   AFİŞLER (hero mozaik + promo şerit ortak)
   ============================================================ */
.banner {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: flex; align-items: center; isolation: isolate;
}
.banner.tone-blue   { --ov:#e8f4fd; background: var(--ov); }
.banner.tone-yellow { --ov:#fdf6df; background: var(--ov); }
.banner.tone-pink   { --ov:#fdecef; background: var(--ov); }

/* görsel tam kaplar, sol taraf tona doğru yumuşar */
.banner-img { position: absolute; inset: 0; z-index: 0; }
.banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.banner::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, var(--ov) 0%, var(--ov) 36%, rgba(255,255,255,0) 70%);
}

.banner-text {
  position: relative; z-index: 2; padding: 30px 30px; flex: 1; max-width: 56%;
}
.banner-text .b-kicker {
  display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); opacity: .65; margin-bottom: 6px;
}
.banner-text h3, .banner-text h2 {
  font-weight: 700; color: var(--ink); text-transform: uppercase;
  letter-spacing: .5px; line-height: 1.08;
}
.banner-text .b-sub {
  display: block; text-transform: none; font-weight: 400; color: var(--ink);
  opacity: .85;
}
.banner-btn {
  display: inline-block; margin-top: 16px; padding: 10px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  color: #fff; transition: transform .2s, filter .2s;
}
.banner-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.tone-blue   .banner-btn { background: var(--blue-btn); }
.tone-yellow .banner-btn { background: var(--yel-btn); color: #6a5410; }
.tone-pink   .banner-btn { background: var(--pink-btn); }

/* hero mozaik */
.hero { padding: 16px 0 8px; }
.hero-mosaic {
  display: grid; gap: 16px;
  grid-template-columns: 2fr 1fr;
}
.hero-main { min-height: 420px; }
.hero-main .banner-text h2 { font-size: clamp(26px, 3vw, 40px); }
.hero-main .banner-text { max-width: 48%; }
.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.hero-side .banner { min-height: 202px; }
.hero-side .banner-text h3 { font-size: clamp(22px, 2.4vw, 30px); }

/* promo şerit */
.promos { padding: 22px 0; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-grid .banner { min-height: 210px; }
.promo-grid .banner-text h3 { font-size: clamp(22px, 2.2vw, 30px); }

/* ============================================================
   BÖLÜM BAŞLIĞI
   ============================================================ */
.section { padding: 40px 0; }
.section-title {
  text-align: center; font-size: clamp(22px, 2.6vw, 30px); font-weight: 600;
  color: var(--ink); max-width: 760px; margin: 0 auto 30px;
}
.section-title.left { text-align: left; margin-left: 0; }

/* ============================================================
   SIRALAMA ÇUBUĞU
   ============================================================ */
.sort-bar {
  display: flex; justify-content: flex-end;
  margin: -10px 0 20px;
}
.sort-field {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 30px;
  padding: 8px 14px; background: #fff; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.sort-field:hover, .sort-field:focus-within { border-color: var(--dot-pink); box-shadow: var(--shadow); }
.sort-field svg { width: 18px; height: 18px; color: var(--dot-pink); flex: none; }
.sort-field .sort-label { font-size: 13px; font-weight: 500; color: var(--muted); }
.sort-field select {
  border: 0; background: transparent; outline: none; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 600; color: var(--ink);
  padding-right: 2px;
}
@media (max-width: 560px) {
  .sort-bar { justify-content: stretch; }
  .sort-field { width: 100%; justify-content: flex-start; }
  .sort-field select { flex: 1; }
}

/* ============================================================
   ÜRÜN GRİDİ + KART
   ============================================================ */
.product-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.pcard {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.pcard:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: #fff; }

.pcard-media { position: relative; aspect-ratio: 1 / 1; background: var(--soft); overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pcard:hover .pcard-media img { transform: scale(1.05); }

.pcard-watermark {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: .3px; text-shadow: 0 1px 4px rgba(0,0,0,.25); pointer-events: none;
}
.pcard-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--sale); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; letter-spacing: .3px;
}
.pcard-heart {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sale); background: rgba(255,255,255,.85);
}
.pcard-heart svg { width: 19px; height: 19px; fill: none; stroke: var(--sale); stroke-width: 1.8; }
.pcard-heart.on svg { fill: var(--sale); }
.pcard-heart:hover { background: #fff; }

.pcard-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-code { font-size: 12px; color: var(--muted); }
.pcard-name {
  font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard-rating { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--muted); }
.pcard-rating .stars { color: var(--star); letter-spacing: 1px; font-size: 13px; }

.pcard-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 4px; }
.pcard-price .now { font-size: 18px; font-weight: 600; color: var(--ink); }
.pcard-price .now small { font-size: 12px; font-weight: 500; }
.pcard-price .old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.pcard-price .note { font-size: 14px; font-weight: 600; color: var(--pink-btn); }
.pcard-deliver {
  font-size: 12.5px; color: var(--green); font-weight: 500;
  border-top: 1px solid var(--line); padding-top: 9px; margin-top: 2px;
}

.center-cta { text-align: center; margin-top: 36px; }
.btn-line {
  display: inline-block; padding: 13px 30px; border-radius: 30px;
  border: 1.5px solid var(--ink); color: var(--ink); font-weight: 600;
  font-size: 14px; letter-spacing: .4px; transition: all .2s;
}
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 30px; background: #25d366; color: #fff;
  font-weight: 600; font-size: 14px; transition: filter .2s, transform .2s;
}
.btn-wa:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   ÖZELLİK ŞERİDİ (neden biz)
   ============================================================ */
.features { background: var(--soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 20px; text-align: center;
}
.feature .ic {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-bg-2); color: var(--pink-btn);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h4 { font-size: 16px; margin-bottom: 4px; }
.feature p { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   HAKKIMIZDA / ATÖLYE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 18px; left: 18px; background: #fff; border-radius: 12px;
  padding: 12px 18px; box-shadow: var(--shadow); text-align: center;
}
.about-badge b { display: block; font-size: 26px; color: var(--dot-pink); }
.about-badge span { font-size: 12px; color: var(--muted); }
.about-text .b-kicker {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--dot-pink); font-weight: 600;
}
.about-text h2 { font-size: clamp(24px, 3vw, 34px); margin: 8px 0 14px; }
.about-text p { color: var(--text); margin-bottom: 12px; }
.about-list { display: grid; gap: 8px; margin: 16px 0 22px; }
.about-list li { position: relative; padding-left: 26px; color: var(--text); font-size: 14.5px; }
.about-list li::before {
  content: "✿"; position: absolute; left: 0; color: var(--dot-pink); font-size: 13px;
}

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */
.page-hero { text-align: center; padding: 46px 20px 10px; }
.page-hero .b-kicker {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--dot-pink); font-weight: 600;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 8px 0 8px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: stretch; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 22px; margin-bottom: 22px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { width: 22px; height: 22px; color: var(--dot-pink); flex: none; margin-top: 2px; }
.contact-row b { display: block; font-size: 13px; color: var(--muted); font-weight: 500; }
.contact-row span, .contact-row a { color: var(--ink); font-size: 15.5px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ============================================================
   ÜRÜNLER SAYFASI — KOLEKSİYON FİLTRESİ
   ============================================================ */
.collection-nav {
  display: flex; gap: 10px; overflow-x: auto; padding: 6px 0 16px;
  -webkit-overflow-scrolling: touch;
}
.collection-nav::-webkit-scrollbar { height: 0; }
.cnav-item {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 7px;
  width: 96px; color: var(--muted); transition: color .2s;
}
.cnav-thumb {
  width: 78px; height: 78px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--line); background: var(--soft); transition: border-color .2s;
}
.cnav-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cnav-label { font-size: 12.5px; font-weight: 500; line-height: 1.25; text-align: center; }
.cnav-item.active { color: var(--ink); }
.cnav-item.active .cnav-thumb { border-color: var(--dot-pink); }
.cnav-item:hover .cnav-thumb { border-color: var(--dot-pink); }

.collection-meta { display: flex; align-items: center; gap: 14px; margin: 8px 0 22px; flex-wrap: wrap; }
.cm-count { font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cm-line { flex: 1; height: 1px; background: var(--line); min-width: 30px; }
.cm-desc { font-size: 13.5px; color: var(--muted); }
.empty-note { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 40px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1c2029; color: #c8ccd4; margin-top: 50px; padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
.footer .logo .word { color: #fff; }
.footer .logo .tag { color: #969ba6; }
.footer-grid p { font-size: 14px; color: #969ba6; margin-top: 14px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-grid ul li { margin-bottom: 9px; }
.footer-grid ul a, .contact-li { font-size: 14px; color: #969ba6; transition: color .2s; }
.footer-grid ul a:hover { color: #fff; }
.contact-li { display: block; margin-bottom: 9px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: #7e838d;
}

/* ============================================================
   WHATSAPP SABİT BUTON
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25d366;
  animation: pulse 2.2s infinite; z-index: -1;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.6} 70%{transform:scale(1.6);opacity:0} 100%{opacity:0} }

/* ============================================================
   REVEAL ANİMASYONU
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }
.card-in { animation: cardIn .5s both; }
@keyframes cardIn { from{opacity:0; transform:translateY(18px)} to{opacity:1; transform:none} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1140px) { .product-grid { grid-template-columns: repeat(5, 1fr); } }

/* ── Ürün detay sayfası ─────────────────────────────────────── */
.product-page { padding: 26px 20px 64px; }
.pd-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pd-crumb a { color: var(--muted); }
.pd-crumb a:hover { color: var(--dot-pink); }
.pd-crumb b { color: var(--ink); font-weight: 500; }

.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.pd-media {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--soft);
}
.pd-media img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }

.pd-info { padding-top: 6px; }
.pd-info h1 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 8px; }
.pd-code { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.pd-deliver { display: inline-block; font-size: 13.5px; color: var(--green); font-weight: 500; margin-bottom: 16px; }
.pd-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 26px; }
.pd-price .now { font-size: 30px; font-weight: 700; color: var(--ink); }
.pd-price .now small { font-size: 15px; font-weight: 500; }
.pd-price .old { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.pd-price .note { font-size: 20px; font-weight: 700; color: var(--pink-btn); }

.pd-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 420px; padding: 16px 24px; border-radius: 14px;
  background: #25D366; color: #fff; font-size: 16px; font-weight: 600;
  box-shadow: 0 10px 24px rgba(37,211,102,.28); transition: transform .15s, box-shadow .2s;
}
.pd-order svg { width: 22px; height: 22px; fill: #fff; }
.pd-order:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.36); }
.pd-ordernote { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 420px; line-height: 1.6; }

.pd-section-title { font-size: 20px; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.pd-detail { margin-top: 52px; }
.pd-detail p { color: var(--text); line-height: 1.75; max-width: 820px; }
.pd-related { margin-top: 56px; }

.pd-empty { text-align: center; padding: 80px 20px; }
.pd-empty h1 { font-size: 28px; margin-bottom: 10px; }
.pd-empty p { color: var(--muted); margin-bottom: 24px; }

@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; gap: 24px; }
  .pd-order, .pd-ordernote { max-width: none; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-inner { gap: 10px; justify-content: space-between; }
  .logo { align-items: center; order: 0; }
  .nav-search { order: 5; flex-basis: 100%; max-width: none; margin-left: 0; }
  .nav-actions { order: 1; }

  .hero-mosaic { grid-template-columns: 1fr; }
  .hero-main { min-height: 340px; }
  .hero-side { grid-template-rows: none; }
  .promo-grid { grid-template-columns: 1fr; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 560px) {
  .banner-text { max-width: 62%; padding: 22px 20px; }
  .hero-main .banner-text { max-width: 64%; }
  .banner::before { background: linear-gradient(90deg, var(--ov) 0%, var(--ov) 46%, rgba(255,255,255,0) 86%); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cat-circle { width: 88px; }
  .cat-circle .ring { width: 80px; height: 80px; }
}

/* Web tasarım kredisi (footer) */
.web-credit { display:inline-flex; align-items:center; }
.web-credit a { display:inline-flex; align-items:center; gap:5px; color:inherit; font-weight:500; transition:color .2s; }
.web-credit a svg { width:15px; height:15px; }
.web-credit a:hover { color:var(--sale); }
