:root {
  --green: #5cc16a;
  --green-dark: #47a855;
  --rose: #e48aa6;
  --rose-dark: #c7627f;
  --ink: #1b2433;
  --muted: #5b6474;
  --line: #f5e3e9;
  --bg: #fff8fa;
  --bg-soft: #fdeff3;
  --plum: #3b2533;
  --red: #e0453f;
  --radius: 18px;
  --header-h: 84px;
  --shadow: 0 10px 30px rgba(27, 36, 51, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { width: 1.2em; height: 1.2em; flex-shrink: 0; }

.container { width: min(1240px, 100% - 40px); margin-inline: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.8em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--wa, .btn--primary { background: var(--green); color: #fff; }
.btn--wa:hover, .btn--primary:hover { background: var(--green-dark); box-shadow: 0 10px 24px rgba(92, 193, 106, 0.35); }
.btn--lg { padding: 1.05em 2.1em; font-size: 1.15rem; font-weight: 700; box-shadow: 0 14px 30px rgba(92, 193, 106, 0.35); }
.btn--block { width: 100%; border-radius: 10px; padding: 0.85em 1em; font-size: 1.05rem; }

/* ---------- Duyuru şeridi ---------- */
.announce { background: #000; color: #fff; overflow: hidden; }
.announce__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.announce:hover .announce__track { animation-play-state: paused; }
.announce__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.85em 3.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled { box-shadow: 0 6px 20px rgba(199, 98, 127, 0.1); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.55rem; letter-spacing: -0.02em; }
.logo__icon { width: 1.5em; height: 1.5em; color: var(--rose-dark); }
.logo--light { color: #fff; }
.logo--light .logo__icon { color: var(--rose); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a:not(.btn) { font-size: 1.05rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav > a:not(.btn):hover { color: var(--green-dark); }
.nav .btn { font-size: 1.05rem; }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 120px 0 130px; text-align: center; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; pointer-events: none; }
.hero__blob--a { width: 380px; height: 380px; background: #fbd9e3; top: -80px; left: -120px; }
.hero__blob--b { width: 420px; height: 420px; background: #f6e3f7; bottom: -160px; right: -120px; }
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.hero__intro {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--rose-dark);
}
.hero__intro svg { width: 1.1em; height: 1.1em; color: var(--rose); }

.hero__title { margin: 1.6rem 0 0.6rem; font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; }
.hero__subtitle { margin: 0 0 2.6rem; font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--muted); max-width: 40ch; }

/* ---------- Kategoriler ---------- */
.categories { background: var(--bg-soft); padding: 70px 0 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.categories__title { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 2.2rem; font-size: 1.9rem; font-weight: 700; }
.categories__title svg { color: var(--rose); width: 1.1em; height: 1.1em; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.cat-card__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.5s ease; }
.cat-card:hover .cat-card__media { transform: scale(1.06); }
.cat-card__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7)); }
.cat-card__body { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; padding: 1.5rem 1rem; text-align: center; color: #fff; }
.cat-card__name { font-weight: 600; font-size: 1.1rem; line-height: 1.3; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); }
.cat-card__btn { padding: 0.35em 1.4em; border: 1.5px solid rgba(255, 255, 255, 0.9); border-radius: 999px; font-size: 0.95rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
.cat-card:hover .cat-card__btn { background: #fff; color: var(--ink); }

/* ---------- Yer tutucu görsel ---------- */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(145deg, var(--ph-a), var(--ph-b));
  color: rgba(27, 36, 51, 0.35);
  font-size: 0.85rem;
  font-weight: 500;
}
.placeholder svg { width: 56px; height: 56px; }
.cat-card .placeholder { justify-content: flex-start; padding-top: 30%; }

/* ---------- Ürünler ---------- */
.products { padding: 80px 0; }
.products--alt { background: var(--bg-soft); }
.section-title { position: relative; margin: 0 0 3rem; text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }
.section-title::after { content: ""; display: block; width: 64px; height: 4px; margin: 0.8rem auto 0; border-radius: 4px; background: var(--rose); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(199, 98, 127, 0.14); }
.product__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.product__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product:hover .product__img { transform: scale(1.05); }
.product__discount { position: absolute; top: 12px; left: 12px; padding: 0.25em 0.7em; border-radius: 999px; background: var(--red); color: #fff; font-size: 0.78rem; font-weight: 600; }
.product__body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.4rem 1.5rem; }
.product__cat { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rose); }
.product__name { margin: 0.3rem 0 1rem; font-size: 1.1rem; font-weight: 500; line-height: 1.4; min-height: 2.8em; }
.product__prices { margin-top: auto; margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.product__old { color: #9aa1ac; font-size: 0.92rem; }
.product__price { font-size: 1.45rem; font-weight: 700; }

/* ---------- Footer ---------- */
.footer { background: var(--plum); color: #ecd9e0; padding: 60px 0 110px; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.footer__text { margin: 0; max-width: 48ch; }
.footer__copy { margin: 1rem 0 0; font-size: 0.85rem; color: #b999a7; }

/* ---------- Sağ alt WhatsApp ---------- */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.wa-float__label {
  position: relative;
  padding: 0.3em 0.75em;
  background: #fff;
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.72rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.wa-float__label::after { content: ""; position: absolute; left: 50%; bottom: -4px; width: 8px; height: 8px; margin-left: -4px; background: #fff; transform: rotate(45deg); }
.wa-float__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(92, 193, 106, 0.5);
  transition: transform 0.2s ease;
}
.wa-float__btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: ring 2s ease-out infinite; z-index: -1; }
.wa-float__btn svg { width: 34px; height: 34px; }
.wa-float:hover .wa-float__btn { transform: scale(1.08); }
@keyframes ring { from { transform: scale(1); opacity: 0.6; } to { transform: scale(1.6); opacity: 0; } }

/* ---------- Mobil ---------- */
@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .logo { font-size: 1.25rem; }
  .burger { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 20px 1.2rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(27, 36, 51, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav > a:not(.btn) { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 1rem; }
  .hero { padding: 80px 0 90px; }
  .hero__intro { gap: 0.5em; }
  .categories { padding: 50px 0 60px; }
  .cat-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 8px; margin-inline: -20px; padding-inline: 20px; }
  .cat-card { flex: 0 0 44%; scroll-snap-align: start; }
  .products { padding: 56px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product__body { padding: 0.9rem 0.9rem 1rem; }
  .product__name { font-size: 0.95rem; }
  .product__price { font-size: 1.15rem; }
  .btn--block { font-size: 0.95rem; }
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float__label { font-size: 0.66rem; }
}

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