/* ============================================================
   PALMIRA ÇİÇEKÇİLİK — Ana Stil Dosyası
   Editorial / luxury florist estetiği
   ============================================================ */

/* ---------- Değişkenler ---------- */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --bg:          #F7F3EC;
  --surface:     #FFFFFF;
  --surface-2:   #F1EADF;
  --ink:         #1E2A24;
  --ink-soft:    #5C6A60;
  --ink-faint:   #8A968C;

  --primary:     #1F3A2E;
  --primary-hover:#16291F;
  --on-primary:  #F8F4EC;

  --accent:      #C09A66;
  --accent-soft: #E7D8BF;

  --line:        #E5DBCB;
  --line-soft:   #EFE8DA;
  --deep:        #16281F;

  --shadow-sm:   0 2px 10px rgba(30, 42, 36, .06);
  --shadow-md:   0 14px 40px rgba(30, 42, 36, .10);
  --shadow-lg:   0 30px 70px rgba(30, 42, 36, .16);

  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;

  --container:   1200px;
  --header-h:    76px;

  --ease:        cubic-bezier(.22, .61, .36, 1);
}

[data-theme="dark"] {
  --bg:          #0F1712;
  --surface:     #16211A;
  --surface-2:   #1B2921;
  --ink:         #EFE9DC;
  --ink-soft:    #AEBBAF;
  --ink-faint:   #7E8C81;

  --primary:     #D9C49C;
  --primary-hover:#E6D5B3;
  --on-primary:  #16211A;

  --accent:      #D2B383;
  --accent-soft: #3A3222;

  --line:        #28362C;
  --line-soft:   #202D24;
  --deep:        #0B120E;

  --shadow-sm:   0 2px 10px rgba(0, 0, 0, .3);
  --shadow-md:   0 16px 44px rgba(0, 0, 0, .4);
  --shadow-lg:   0 34px 80px rgba(0, 0, 0, .55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* yatay taşmayı önle */
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

/* Uzun slug/başlıklarda taşmayı önle */
.hero-title, .page-title, .section-title, .product-title, .cta-title, .prose, .product-name {
  overflow-wrap: break-word;
  word-break: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: var(--on-primary); padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section-soft { background: var(--surface-2); }
.section-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 62px); text-align: center; }

/* ---------- Tipografi yardımcıları ---------- */
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.kicker-light { color: var(--accent-soft); }
.section-title { font-size: clamp(28px, 4.4vw, 46px); color: var(--ink); }
.page-title { font-size: clamp(32px, 5.4vw, 58px); color: var(--ink); margin-bottom: 14px; }
.page-lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-soft); max-width: 620px; }
.block-title { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 14px; }

.prose { color: var(--ink-soft); font-size: 16.5px; line-height: 1.85; }
.prose p { margin: 0 0 1.1em; }
.prose p:last-child { margin-bottom: 0; }

.result-count { display: inline-block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 18px; }
.empty-note { text-align: center; color: var(--ink-soft); padding: 40px 0; }
.empty-state { text-align: center; max-width: 520px; margin: 20px auto; padding: 40px 24px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline { background: transparent; color: var(--ink-soft); border-color: var(--line-soft); }
.btn-outline:hover { color: var(--ink); border-color: var(--line); }

.btn-light { background: #F8F4EC; color: #1E2A24; }
.btn-light:hover { background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.25); }

.btn-outline-light { background: transparent; color: #F3EEE4; border-color: rgba(243,238,228,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #F3EEE4; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--bg); }
}
.site-header.is-scrolled { border-bottom-color: var(--line-soft); box-shadow: var(--shadow-sm); }

.header-inner { display: flex; align-items: center; gap: 22px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--primary); }
.brand-mark { display: inline-flex; color: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 21px; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.brand-tagline { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.main-nav { display: flex; gap: 30px; margin-left: auto; }
.nav-link { position: relative; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding: 6px 0; transition: color .25s var(--ease); }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav + .header-actions { margin-left: 0; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid transparent; color: var(--ink-soft);
  transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}
.icon-btn:hover { color: var(--ink); background: var(--surface-2); }
.whatsapp-desktop:hover { color: #1FA855; }

.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Arama paneli */
.search-panel { border-top: 1px solid var(--line-soft); background: var(--surface); padding: 18px 0; animation: dropIn .3s var(--ease); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.search-form { display: flex; align-items: center; gap: 12px; width: 100%; }
.search-form svg { color: var(--ink-faint); flex-shrink: 0; }
.search-form input {
  flex: 1; border: 0; border-bottom: 1px solid var(--line); background: transparent;
  font-family: var(--font-sans); font-size: 17px; color: var(--ink); padding: 10px 2px; outline: none;
}
.search-form input:focus { border-color: var(--accent); }
.search-form-inline { max-width: 520px; margin-top: 22px; }
.search-form-inline input { border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; background: var(--surface); }
.search-form-inline input:focus { border-color: var(--accent); }

/* Mobil menü butonu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 0; }
.nav-toggle span { display: block; width: 22px; height: 1.6px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobil çekmece */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(15,23,18,.5); z-index: 190; animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-drawer {
  position: fixed; top: 0; right: 0; z-index: 200; width: min(86vw, 360px); height: 100dvh;
  background: var(--surface); padding: 24px; display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  font-family: var(--font-serif); font-size: 24px; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.drawer-nav a.is-active { color: var(--accent); }
.drawer-foot { margin-top: auto; padding-top: 24px; }
.drawer-phone { display: block; text-align: center; margin-top: 16px; color: var(--ink-soft); letter-spacing: .08em; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 800px); display: flex; align-items: center; overflow: hidden; background: var(--deep); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,18,.5) 0%, rgba(15,23,18,.28) 40%, rgba(15,23,18,.72) 100%);
}
.hero-content { position: relative; z-index: 2; color: #F6F1E7; max-width: 760px; padding-top: 40px; padding-bottom: 40px; }
.hero-title { font-size: clamp(31px, 7vw, 80px); color: #FBF7EF; margin-bottom: 20px; font-weight: 500; }
.hero-desc { font-size: clamp(16px, 1.9vw, 20px); color: rgba(246,241,231,.86); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 22px; height: 36px; border: 1.5px solid rgba(246,241,231,.5); border-radius: 20px; z-index: 2; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; border-radius: 3px; background: rgba(246,241,231,.85); transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0%,100% { opacity: 1; top: 8px; } 50% { opacity: .3; top: 18px; } }

/* ---------- Page head ---------- */
.page-head { padding: clamp(46px, 7vw, 86px) 0 clamp(26px, 3vw, 44px); text-align: left; }
.page-head .container { max-width: 880px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--ink-soft); }

/* ---------- Koleksiyon kartları ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.collection-media { position: absolute; inset: 0; }
.collection-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,18,0) 35%, rgba(15,23,18,.78) 100%); }
.collection-card:hover .collection-media img { transform: scale(1.06); }
.collection-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px; color: #F7F2E8; display: flex; flex-direction: column; gap: 3px; }
.collection-name { font-family: var(--font-serif); font-size: clamp(22px, 2.4vw, 30px); }
.collection-meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,242,232,.72); }
.collection-grid-lg .collection-card { aspect-ratio: 3 / 3.4; }

/* ---------- Ürün kartları ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.product-card { display: flex; flex-direction: column; }
.product-media { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 6; background: var(--surface-2); box-shadow: var(--shadow-sm); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(248,244,236,.92); color: #1F3A2E; font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; font-weight: 500;
}
.product-body { padding-top: 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-cat { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.product-name { font-size: clamp(19px, 1.9vw, 23px); }
.product-name a:hover { color: var(--accent); }
.product-desc { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.product-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }

/* ---------- Hakkımızda bölümü ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.about-grid-page { align-items: start; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/6; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-body .section-title { margin-bottom: 20px; }
.about-body .prose { margin-bottom: 28px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 28px; }
.value-index { font-family: var(--font-serif); font-size: 34px; color: var(--accent); display: block; margin-bottom: 12px; }
.value-card h3 { font-size: 22px; margin-bottom: 10px; }
.value-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary); color: var(--on-primary); padding: clamp(56px, 8vw, 110px) 0; position: relative; overflow: hidden; }
[data-theme="dark"] .cta-band { background: var(--deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
[data-theme="dark"] .cta-band .cta-title { color: #F3EEE4; }
[data-theme="dark"] .cta-band .cta-text { color: rgba(243,238,228,.72); }
.cta-band::before {
  content: ''; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,154,102,.28), transparent 65%);
}
.cta-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(30px, 4.6vw, 50px); color: #FBF7EF; margin-bottom: 16px; }
.cta-text { color: rgba(248,244,236,.82); font-size: 17px; margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line-soft); padding-top: clamp(48px, 6vw, 80px); }
[data-theme="dark"] .site-footer { background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.brand-footer { margin-bottom: 18px; }
.footer-text { color: var(--ink-soft); font-size: 15px; max-width: 340px; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 14px; margin-top: 12px; transition: color .25s var(--ease); }
.footer-social:hover { color: var(--accent); }
.footer-col h4 { font-size: 15px; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; margin-bottom: 18px; color: var(--ink); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { color: var(--ink-soft); font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-address, .footer-hours { line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 22px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--ink-faint); }
.footer-wa { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }

/* ---------- Ürün detay ---------- */
.product-page { padding-top: clamp(34px, 4vw, 56px); }
.product-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 5vw, 68px); margin-top: 26px; }
.product-gallery { display: flex; flex-direction: column; gap: 16px; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/6; background: var(--surface-2); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; flex-wrap: wrap; }
.gallery-thumb { width: 84px; height: 100px; border-radius: 12px; overflow: hidden; border: 1.5px solid transparent; background: var(--surface-2); padding: 0; transition: border-color .25s var(--ease), opacity .25s var(--ease); opacity: .72; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.is-active { border-color: var(--accent); opacity: 1; }

.product-info { padding-top: 6px; }
.product-info .product-cat { display: inline-block; margin-bottom: 14px; }
.product-title { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.product-lead { font-size: 17px; color: var(--ink-soft); margin-bottom: 24px; }
.product-price { font-family: var(--font-serif); font-size: 30px; color: var(--accent); margin-bottom: 22px; }
.product-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.product-description { border-top: 1px solid var(--line-soft); padding-top: 26px; margin-bottom: 28px; }
.product-facts { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-soft); }
.product-facts li { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.product-facts span { color: var(--ink-faint); letter-spacing: .04em; }
.product-facts strong { font-weight: 500; color: var(--ink); text-align: right; }

/* ---------- İletişim ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.contact-card-primary { background: #1FA855; border-color: transparent; color: #fff; }
.contact-card-primary:hover { border-color: transparent; }
.contact-card-primary .contact-card-body span { color: rgba(255,255,255,.85); }
.contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--surface-2); color: var(--primary); flex-shrink: 0; }
.contact-card-primary .contact-icon { background: rgba(255,255,255,.18); color: #fff; }
.contact-card-body { display: flex; flex-direction: column; }
.contact-card-body strong { font-weight: 500; font-size: 16px; }
.contact-card-body span { font-size: 14px; color: var(--ink-soft); }
.contact-arrow { margin-left: auto; font-size: 20px; }
.contact-card-static { cursor: default; }

.contact-form-wrap { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.form-hint { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }
.map-embed { margin-top: 26px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Formlar ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 18px; }
.alert-error { background: #fdecec; color: #8f2f2f; border: 1px solid #f3c9c9; }
.alert-success { background: #eaf6ee; color: #23603f; border: 1px solid #c2e3ce; }
[data-theme="dark"] .alert-error { background: #2a1616; color: #f0b4b4; border-color: #4a2424; }
[data-theme="dark"] .alert-success { background: #14241a; color: #9fdcb8; border-color: #244a33; }

/* ---------- Sayfalama ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 54px; flex-wrap: wrap; }
.page-link { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); transition: all .25s var(--ease); }
.page-link:hover { border-color: var(--accent); color: var(--accent); }
.page-link.is-current { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

/* ---------- 404 ---------- */
.error-page { padding: clamp(70px, 12vw, 160px) 0; }
.error-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.error-code { font-family: var(--font-serif); font-size: clamp(80px, 18vw, 170px); line-height: 1; color: var(--accent); display: block; margin-bottom: 10px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1FA855; color: #fff; padding: 14px 20px 14px 16px; border-radius: 999px;
  box-shadow: 0 12px 34px rgba(31,168,85,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(31,168,85,.5); }
.wa-float-label { font-size: 13px; font-weight: 500; letter-spacing: .04em; }

/* ---------- Reveal animasyonu ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .whatsapp-desktop { display: none; }
  .product-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 4/3; }
  .contact-layout { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-scroll { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .container { padding: 0 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .collection-overlay { padding: 18px; }
  .collection-name { font-size: 19px; }
  .value-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .btn { padding: 13px 22px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
  /* Mobilde animasyonları azalt */
  [data-reveal] { transform: none; transition: opacity .5s var(--ease); }
  .hero-media img { animation: none; }
  .wa-float { right: 14px; bottom: 14px; padding: 13px; }
  .wa-float-label { display: none; }
}

@media (max-width: 420px) {
  .collection-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .page-title { font-size: 30px; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
