/* ==========================================================================
   GK Atölyem — STİL DOSYASI
   --------------------------------------------------------------------------
   İÇİNDEKİLER
     01. Tasarım değişkenleri (renk, tipografi, boşluk)   <- BURAYI DÜZENLEYİN
     02. Sıfırlama & temel elemanlar
     03. Yardımcı sınıflar (container, bölüm başlıkları, butonlar)
     04. Duyuru şeridi & Header
     05. Arama paneli
     06. Hero
     07. Kategori kartları
     08. Ürün ızgarası & kartlar
     09. Hakkımızda
     10. Avantaj şeridi (perks)
     11. Instagram ızgarası
     12. İletişim
     13. Footer
     14. Sepet çekmecesi & bildirim
     15. Animasyonlar
     16. Responsive (1024 / 900 / 640 / 420 px)
   ========================================================================== */


/* ==========================================================================
   01. TASARIM DEĞİŞKENLERİ
   Renk paletini değiştirmek için sadece aşağıdaki değerleri düzenleyin.
   ========================================================================== */
:root {
  /* --- Renkler --- */
  --cream:      #FDFAF5;   /* sayfa arka planı — sıcak beyaz */
  --cream-2:    #F8F2E9;   /* alternatif bölüm arka planı */
  --sand:       #F2E9DC;   /* kart / görsel zemini */
  --sand-deep:  #E6D8C6;   /* kenarlıklar */
  --clay:       #C08560;   /* ANA VURGU — terrakota */
  --clay-dark:  #A66C4A;   /* hover durumu */
  --blush:      #E7C3BC;   /* yumuşak pembe aksan */
  --sage:       #9DAF97;   /* pastel yeşil aksan */
  --ink:        #3B342D;   /* ana metin — sıcak koyu kahve */
  --ink-soft:   #6E6459;   /* ikincil metin */
  --muted:      #9A9086;   /* soluk metin */
  --white:      #FFFFFF;
  --sale:       #B4553F;   /* indirim rozeti */

  /* --- Tipografi --- */
  --font-head:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hand:  'Caveat', cursive;

  /* --- Ölçüler --- */
  --maxw:       1240px;    /* içerik genişliği */
  --gutter:     24px;      /* yan boşluk */
  --radius:     16px;      /* köşe yuvarlaklığı */
  --radius-sm:  10px;
  --radius-pill: 999px;

  /* --- Gölgeler & geçişler --- */
  --shadow-sm:  0 2px 10px rgba(59, 52, 45, .06);
  --shadow-md:  0 12px 30px rgba(59, 52, 45, .10);
  --shadow-lg:  0 24px 60px rgba(59, 52, 45, .16);
  --ease:       cubic-bezier(.22, .61, .36, 1);
  --t-fast:     .2s var(--ease);
  --t:          .35s var(--ease);
}


/* ==========================================================================
   02. SIFIRLAMA & TEMEL
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--clay); }

button { font-family: inherit; cursor: pointer; }

/* Tüm inline SVG ikonları tek yerden yönetilir */
svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Görünür klavye odağı — erişilebilirlik */
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 999;
  background: var(--clay); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius-sm);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; color: var(--white); }


/* ==========================================================================
   03. YARDIMCI SINIFLAR
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section       { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.eyebrow {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--clay);
  margin: 0 0 .2em;
  letter-spacing: .01em;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin: 0 0 .35em;
}
.section-title.small { font-size: clamp(1.6rem, 3vw, 2.1rem); }

.section-sub {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0;
}

.linklike {
  background: none; border: 0; padding: 0;
  color: var(--clay); font: inherit;
  text-decoration: underline; text-underline-offset: 3px;
}

/* --- Butonlar --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(192, 133, 96, .28);
}
.btn-primary:hover {
  background: var(--clay-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(192, 133, 96, .36);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand-deep);
}
.btn-ghost:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--clay);
}

.btn-block { width: 100%; }


/* ==========================================================================
   04. DUYURU ŞERİDİ & HEADER
   ========================================================================== */
.announcement {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: 9px var(--gutter);
}
.announcement p { margin: 0; }
.announcement strong { color: var(--blush); font-weight: 500; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, .88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--sand-deep);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

/* --- Marka --- */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand-mark svg {
  width: 34px; height: 34px;
  color: var(--clay);
  stroke-width: 1.3;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.28rem;
  letter-spacing: .01em;
}
.brand-tag {
  font-family: var(--font-hand);
  font-size: .95rem;
  color: var(--clay);
  margin-top: 1px;
}

/* --- Ana menü (masaüstü) --- */
.primary-nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-link {
  position: relative;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 0;
  color: var(--ink-soft);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

/* --- İkon butonları --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.icon-btn:hover { background: var(--sand); color: var(--clay); }

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 4px; right: 3px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  display: grid; place-items: center;
  background: var(--clay);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: scale(.5);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.cart-count.is-visible { opacity: 1; transform: scale(1); }

/* Hamburger — sadece mobilde görünür */
.nav-toggle { display: none; }
.nav-toggle.is-open { background: var(--sand); color: var(--clay); }


/* ==========================================================================
   05. ARAMA PANELİ
   ========================================================================== */
.search-panel {
  border-top: 1px solid var(--sand-deep);
  background: var(--cream);
  animation: slideDown .28s var(--ease);
}
.search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 14px;
}
.search-inner-icon { color: var(--muted); flex: none; }
.search-inner input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 8px 0;
}
.search-inner input:focus { outline: none; }
.search-inner input::placeholder { color: var(--muted); }


/* ==========================================================================
   06. HERO
   ========================================================================== */
.hero {
  background:
    radial-gradient(120% 90% at 12% 0%, var(--cream-2) 0%, transparent 62%),
    radial-gradient(90% 80% at 100% 20%, #F6EDE6 0%, transparent 60%),
    var(--cream);
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.1;
  margin: 0 0 .45em;
}
.hero-title em {
  font-style: italic;
  color: var(--clay);
}

.hero-text {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: .84rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blush);
}

/* --- Hero görselleri --- */
.hero-media { position: relative; }

.hero-img-main {
  margin: 0;
  border-radius: 280px 280px var(--radius) var(--radius); /* kemer formu */
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-sub {
  position: absolute;
  left: -46px; bottom: -34px;
  width: 176px;
  margin: 0;
  border: 7px solid var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}
.hero-img-sub img { width: 100%; height: 100%; object-fit: cover; }

.hero-note {
  position: absolute;
  right: -14px; top: 26px;
  margin: 0;
  font-family: var(--font-hand);
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--clay);
  transform: rotate(7deg);
  text-align: center;
}


/* ==========================================================================
   07. KATEGORİ KARTLARI
   ========================================================================== */
.categories { padding: 8px 0 40px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cat-card { display: block; text-align: center; }

.cat-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 5 / 4;
  margin-bottom: 16px;
  position: relative;
}
.cat-img::after {                      /* hover'da yumuşak sıcak katman */
  content: '';
  position: absolute; inset: 0;
  background: rgba(192, 133, 96, .16);
  opacity: 0;
  transition: opacity var(--t);
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-card:hover .cat-img::after { opacity: 1; }

.cat-card h3 {
  font-size: 1.32rem;
  margin: 0 0 .2em;
}
.cat-link {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clay);
}


/* ==========================================================================
   08. ÜRÜN IZGARASI & KARTLAR
   ========================================================================== */
.shop { background: var(--cream); }

/* --- Filtre sekmeleri --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-btn {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: .86rem;
  letter-spacing: .04em;
  transition: all var(--t-fast);
}
.filter-btn:hover {
  border-color: var(--clay);
  color: var(--clay);
}
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* --- Izgara --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 34px 26px;
}

/* --- Kart --- */
.product-card {
  background: transparent;
  animation: cardIn .5s var(--ease) both;
}

.card-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.product-card:hover .card-media {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card:hover .card-media img { transform: scale(1.07); }

/* Rozetler */
.card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 2;
}
.badge {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.badge-soft { background: rgba(255,255,255,.92); color: var(--ink); }
.badge-sale { background: var(--sale);            color: var(--white); }
.badge-out  { background: rgba(59,52,45,.86);     color: var(--cream); }

/* Hızlı bakış — hover'da alttan kayar */
.quick-view {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  padding: 11px;
  background: rgba(253, 250, 245, .95);
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t), transform var(--t), background var(--t-fast);
}
.quick-view:hover { background: var(--white); color: var(--clay); }
.product-card:hover .quick-view,
.product-card:focus-within .quick-view { opacity: 1; transform: translateY(0); }

/* Kart gövdesi */
.card-cat {
  margin: 0 0 2px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-title {
  font-size: 1.08rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin: 0 0 3px;
  line-height: 1.35;
}
.card-note {
  margin: 0 0 8px;
  font-size: .84rem;
  color: var(--muted);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 14px;
}
.price-now { font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.price-old {
  font-size: .88rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* Sepete ekle */
.btn-add {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all var(--t-fast);
}
.btn-add:hover:not(:disabled) {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--white);
}
.btn-add:disabled {
  color: var(--muted);
  cursor: not-allowed;
  border-style: dashed;
}

/* Tükenmiş ürün */
.product-card.is-soldout .card-media img { filter: grayscale(.45) opacity(.75); }

.empty-state {
  text-align: center;
  color: var(--ink-soft);
  padding: 48px 0 0;
}


/* ==========================================================================
   09. HAKKIMIZDA
   ========================================================================== */
.about { background: var(--cream-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-media img {
  width: 100%;
  border-radius: 220px 220px var(--radius) var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--sand);
  box-shadow: var(--shadow-md);
}

/* Dönen "el yapımı" mührü */
.about-stamp {
  position: absolute;
  right: -18px; bottom: 24px;
  width: 108px; height: 108px;
  display: grid; place-items: center;
  background: var(--clay);
  color: var(--cream);
  border-radius: 50%;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: var(--shadow-md);
}

.about-copy p { color: var(--ink-soft); }

.about-list {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
}
.about-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: var(--ink-soft);
  font-size: .96rem;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sage);
}
.about-list strong { color: var(--ink); font-weight: 500; }


/* ==========================================================================
   10. AVANTAJ ŞERİDİ
   ========================================================================== */
.perks {
  padding: 64px 0;
  border-block: 1px solid var(--sand-deep);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.perk { text-align: center; }
.perk svg {
  width: 30px; height: 30px;
  color: var(--clay);
  margin-bottom: 12px;
  stroke-width: 1.3;
}
.perk h3 { font-size: 1.06rem; margin: 0 0 .25em; }
.perk p  { margin: 0; font-size: .89rem; color: var(--ink-soft); }


/* ==========================================================================
   11. INSTAGRAM IZGARASI
   ========================================================================== */
.insta { background: var(--cream); }
.insta .section-sub a { color: var(--clay); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter var(--t);
}
.insta-item:hover img { transform: scale(1.09); filter: brightness(.9); }


/* ==========================================================================
   12. İLETİŞİM
   ========================================================================== */
.contact { background: var(--cream-2); }

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

.contact-copy p { color: var(--ink-soft); }

.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: .96rem;
}
.contact-list svg { color: var(--clay); flex: none; }

/* --- Form --- */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(192, 133, 96, .14);
}
.field ::placeholder { color: var(--muted); }

.form-note {
  margin: 14px 0 0;
  font-size: .87rem;
  color: var(--sage);
  text-align: center;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #D8CFC4;
  padding-top: 66px;
}
.site-footer a { color: #D8CFC4; }
.site-footer a:hover { color: var(--blush); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-brand .brand-name {
  display: block;
  color: var(--cream);
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: .92rem;
  max-width: 30ch;
  color: #B7ADA1;
}

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(216, 207, 196, .28);
  border-radius: 50%;
  transition: all var(--t-fast);
}
.socials a:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--white);
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; font-size: .92rem; }
.newsletter p { font-size: .9rem; color: #B7ADA1; }

.news-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.news-form input {
  flex: 1; min-width: 0;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(216, 207, 196, .22);
  border-radius: var(--radius-pill);
  color: var(--cream);
  font-family: inherit;
  font-size: .9rem;
}
.news-form input::placeholder { color: #8E857A; }
.news-form input:focus { outline: none; border-color: var(--clay); }
.news-form button {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  flex: none;
  background: var(--clay);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  transition: background var(--t-fast);
}
.news-form button:hover { background: var(--clay-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid rgba(216, 207, 196, .16);
  font-size: .84rem;
  color: #9A9086;
}
.footer-bottom p { margin: 0; }
.handmade-note { font-family: var(--font-hand); font-size: 1.1rem; color: var(--blush); }


/* ==========================================================================
   14. SEPET ÇEKMECESİ & BİLDİRİM
   ========================================================================== */
.drawer-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(59, 52, 45, .42);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--t);
}
.drawer-overlay.is-open { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 210;
  width: min(400px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateX(102%);
  transition: transform .38s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--sand-deep);
}
.drawer-head h3 { margin: 0; font-size: 1.2rem; }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-empty {
  text-align: center;
  padding: 56px 0;
  color: var(--muted);
}
.cart-empty svg {
  width: 44px; height: 44px;
  color: var(--sand-deep);
  margin: 0 auto 14px;
  stroke-width: 1.2;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand-deep);
}
.cart-line img {
  width: 74px; height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--sand);
}
.cart-line-info h4 {
  margin: 0 0 3px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
}
.cart-line-price { margin: 0 0 9px; font-size: .88rem; color: var(--ink-soft); }

.qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty button {
  width: 28px; height: 28px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  transition: background var(--t-fast);
}
.qty button:hover { background: var(--sand); }
.qty span { min-width: 24px; text-align: center; font-size: .9rem; }

.cart-remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 4px;
  transition: color var(--t-fast);
}
.cart-remove:hover { color: var(--sale); }
.cart-remove svg { width: 16px; height: 16px; }

.drawer-foot {
  padding: 20px 22px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--sand-deep);
  background: var(--cream-2);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: .95rem;
}
.cart-total strong { font-size: 1.2rem; font-weight: 500; }
.drawer-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
}

/* --- Bildirim balonu --- */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  z-index: 300;
  transform: translate(-50%, 20px);
  max-width: min(90vw, 420px);
  padding: 13px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-size: .88rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }


/* Görsel yüklenemediğinde devreye giren yedek desen */
.img-fallback { object-fit: cover; background: var(--sand); }


/* ==========================================================================
   15. ANİMASYONLAR
   ========================================================================== */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bölümlerin kaydırdıkça belirmesi */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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


/* ==========================================================================
   16. RESPONSIVE
   ========================================================================== */

/* ---------- ≤ 1024px : tablet yatay ---------- */
@media (max-width: 1024px) {
  .section       { padding: 76px 0; }
  .hero-grid     { gap: 40px; }
  .about-grid    { gap: 44px; }
  .contact-grid  { gap: 40px; }
  .primary-nav ul { gap: 24px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .insta-grid    { grid-template-columns: repeat(3, 1fr); }
  .hero-note     { display: none; }
}

/* ---------- ≤ 900px : tablet dikey / mobil menü devreye girer ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: grid; }

  .brand { margin-right: 0; }

  /* Menü açılır panel olur */
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand-deep);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .primary-nav.is-open { max-height: 340px; }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 18px;
  }
  .primary-nav li { border-bottom: 1px solid var(--sand); }
  .primary-nav li:last-child { border-bottom: 0; }
  .nav-link { display: block; padding: 15px 0; font-size: .95rem; }
  .nav-link::after { display: none; }

  /* Hero tek kolona iner, görsel üstte */
  .hero { padding: 44px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { order: 2; text-align: center; }
  .hero-media { order: 1; max-width: 420px; margin-inline: auto; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-img-sub { left: -18px; bottom: -20px; width: 132px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; margin-inline: auto; }
  .about-copy  { text-align: center; }
  .about-list li { text-align: left; }

  .perks-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ---------- ≤ 640px : mobil ---------- */
@media (max-width: 640px) {
  :root { --gutter: 18px; }

  body { font-size: 15px; }

  .section       { padding: 60px 0; }
  .section-tight { padding: 44px 0; }
  .section-head  { margin-bottom: 30px; }

  .announcement { font-size: .72rem; padding: 8px var(--gutter); }
  .header-inner { min-height: 62px; gap: 8px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .brand-name { font-size: 1.08rem; }
  .brand-tag  { font-size: .82rem; }
  .icon-btn { width: 38px; height: 38px; }

  .hero-title { font-size: clamp(2rem, 8.4vw, 2.6rem); }
  .hero-text  { font-size: .98rem; }
  .btn { padding: 12px 22px; font-size: .82rem; }
  .hero-actions .btn { flex: 1 1 auto; }

  /* Kategoriler yatay kaydırılabilir şerit olur */
  .cat-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-card { flex: 0 0 63%; scroll-snap-align: start; }

  /* Filtreler tek satırda kaydırılabilir */
  .filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 6px;
    scrollbar-width: none;
    margin-bottom: 30px;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex: none; padding: 9px 17px; font-size: .8rem; }

  /* Mobilde 2 sütunlu ürün ızgarası */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .card-title { font-size: .95rem; }
  .card-note  { font-size: .78rem; }
  .price-now  { font-size: .96rem; }
  .btn-add    { padding: 10px; font-size: .74rem; }
  .quick-view { display: none; }   /* dokunmatikte hover yok */

  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .contact-form { padding: 22px; }

  .about-stamp { width: 84px; height: 84px; font-size: 1.1rem; right: -6px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 36px; }
  .footer-brand p { max-width: none; }
  .footer-bottom { justify-content: center; text-align: center; }

  .cart-drawer { width: 100%; }
  .toast { bottom: 18px; font-size: .84rem; padding: 11px 18px; }
}

/* ---------- ≤ 420px : küçük telefonlar ---------- */
@media (max-width: 420px) {
  .hero-badges { font-size: .74rem; gap: 8px 16px; }
  .perks-grid  { grid-template-columns: 1fr; gap: 26px; }
  .cat-card    { flex-basis: 76%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
