/* ==========================================================================
   Turşucum Ekşiköy — v2 tasarım sistemi (3D'siz)
   Poster tipografisi, renk blokları, marquee, yığılan süreç kartları.
   Sıcak kâğıt + şişe yeşili + fermente biber kırmızısı.
   ========================================================================== */

:root {
  --paper: #F5EFE2;
  --paper-2: #ECE3CE;
  --card: #FCF8EC;
  --ink: #172119;
  --ink-soft: #4C5A4E;
  --green: #245B33;
  --green-deep: #1A4626;
  --green-soft: #A9C79A;
  --red: #D9502F;
  --red-deep: #B93E20;
  --cream: #F3EDDC;
  --line: #DCD2B8;
  --shadow: 0 24px 70px rgb(23 33 25 / .12);
  --font-disp: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-text: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 74px;
  --ease: cubic-bezier(.22, .61, .21, 1);
}

/* --- taban ------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--red); color: var(--cream); }

h1, h2, h3 {
  font-family: var(--font-disp);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 .5em;
  color: inherit;
  text-wrap: balance;
}

h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
[hidden] { display: none !important; }

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

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green);
  margin: 0 0 18px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--red); }
.kicker-light { color: var(--green-soft); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* animasyon başlangıç durumları — yalnız JS animasyonu aktifken (FOUC yok) */
html.js-anim [data-reveal]:not(.in),
html.js-anim [data-intro]:not(.in) { opacity: 0; transform: translateY(26px); }
html.js-anim .veg { animation: none; } /* salınımı GSAP devralır */
html.js-anim .line-in { display: inline-block; transform: translateY(115%); }
.line { display: block; overflow: hidden; }
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.wi { display: inline-block; }
html.js-anim .wi { transform: translateY(115%); }

/* --- header ------------------------------------------------------------- */

#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: transform .45s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgb(245 239 226 / .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
#site-header.hide { transform: translateY(-105%); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--ink);
}
.logo em { font-style: normal; color: var(--red); }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 36px); }

.nav-link {
  font-size: .95rem; font-weight: 500;
  background: linear-gradient(var(--red), var(--red)) no-repeat left bottom / 0% 2px;
  padding-bottom: 3px;
  transition: background-size .35s var(--ease), color .2s;
}
.nav-link:hover { color: var(--green); background-size: 100% 2px; }

.ig-btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 42px; padding: 0 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: .9rem; font-weight: 600;
  transition: background .25s, color .25s, transform .25s var(--ease), box-shadow .25s;
}
.ig-btn:hover {
  background: var(--red); border-color: var(--red); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgb(217 80 47 / .3);
}

/* --- butonlar ------------------------------------------------------------ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: .98rem; font-weight: 600; line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid { background: var(--green); color: var(--cream); }
.btn-solid:hover { background: var(--green-deep); box-shadow: 0 14px 32px rgb(36 91 51 / .3); }

.btn-line { border-color: rgb(23 33 25 / .45); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.btn-block { width: 100%; }

.btn-arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* --- hero ---------------------------------------------------------------- */

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: clip;
}

.hero-inner {
  position: relative;
  display: flex; flex-direction: column;
  flex: 1;
  padding-top: calc(var(--header-h) + clamp(28px, 6vh, 72px));
  padding-bottom: 90px;
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  width: max-content;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(252 248 236 / .7);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green);
  margin: 0 0 clamp(20px, 4vh, 44px);
}
.hero-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.5); opacity: .55; } }

.hero-title {
  font-size: clamp(3.4rem, 11.5vw, 10rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin: 0;
}
.hero-title em { font-style: normal; color: var(--green); }
.tit-dot { color: var(--red); }

.hero-foot {
  margin-top: auto;
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 28px 56px;
  padding-top: clamp(32px, 6vh, 64px);
}
.hero-sub { color: var(--ink-soft); font-size: 1.06rem; margin: 0; max-width: 38ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* dönen rozet */
.badge-wrap {
  position: absolute;
  right: clamp(8px, 4vw, 64px);
  top: calc(var(--header-h) + clamp(16px, 5vh, 56px));
  width: clamp(104px, 11vw, 148px);
  color: var(--ink);
}
.badge { display: block; animation: spin 18s linear infinite; }
.badge-text { font-family: var(--font-text); font-size: 10.6px; font-weight: 600; letter-spacing: 2.6px; fill: currentColor; }
.badge-core { color: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }
.badge { transform-origin: 50% 50%; }

/* yüzen sebzeler */
.veg { position: absolute; pointer-events: none; filter: drop-shadow(0 14px 18px rgb(23 33 25 / .14)); }
.veg-1 { width: clamp(44px, 5vw, 66px); right: 13%; top: 46%; rotate: -16deg; animation: bob 6s ease-in-out infinite; }
.veg-2 { width: clamp(30px, 3.6vw, 46px); right: 30%; top: 26%; rotate: 22deg; animation: bob 7.5s ease-in-out .8s infinite; }
.veg-3 { width: clamp(36px, 4vw, 52px); right: 5%; top: 72%; rotate: -8deg; animation: bob 8.5s ease-in-out 1.6s infinite; }
@keyframes bob { 50% { transform: translateY(-14px); } }

.scroll-cue {
  position: absolute; left: 0; bottom: 30px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-soft);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.scroll-cue i {
  width: 44px; height: 2px;
  background: var(--red);
  transform-origin: left;
  animation: cue-x 2.2s var(--ease) infinite;
}
@keyframes cue-x {
  0% { transform: scaleX(0); opacity: 0; }
  35% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1) translateX(14px); opacity: 0; }
}

/* --- marquee ---------------------------------------------------------------- */

.marquee {
  position: relative;
  background: var(--green);
  color: var(--cream);
  transform: rotate(-1.2deg) scale(1.04);
  overflow: hidden;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--green-soft); margin: 0 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --- manifesto --------------------------------------------------------------- */

#manifesto {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(110px, 16vh, 190px);
  margin-top: -26px; /* marquee rotasyon boşluğunu kapat */
}

.statement {
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  max-width: 24ch;
  margin: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(40px, 7vh, 72px);
}
.manifesto-grid p { color: #AEB8A9; margin: 0; }

.manifesto-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  rotate: -1.5deg;
  box-shadow: 0 30px 80px rgb(0 0 0 / .4);
  aspect-ratio: 4 / 5;
  max-width: 380px;
}
.manifesto-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* --- süreç: yığılan kartlar ------------------------------------------------------ */

#surec { padding-block: clamp(100px, 14vh, 170px); }

.section-head { margin-bottom: clamp(44px, 7vh, 76px); }
.section-head h2 { margin: 0; }
.section-head-split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.section-sub { color: var(--ink-soft); margin: 0; }
.section-sub strong { color: var(--green); }

.steps { display: grid; gap: 22px; }

.step-card {
  position: sticky;
  border-radius: 28px;
  padding: clamp(28px, 4.5vw, 56px);
  min-height: min(460px, 62vh);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.step-1 { top: calc(var(--header-h) + 22px); background: var(--card); border: 1px solid var(--line); }
.step-2 { top: calc(var(--header-h) + 40px); background: var(--green); color: var(--cream); }
.step-3 { top: calc(var(--header-h) + 58px); background: var(--red); color: #FDF3EA; }

.step-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: auto;
}
.step-no {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  opacity: .3;
}
.step-ico { width: clamp(40px, 4.4vw, 54px); height: auto; opacity: .85; }

.step-card h3 { margin: 28px 0 10px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.step-card p { max-width: 52ch; margin: 0 0 22px; opacity: .88; }

.step-tag {
  width: max-content;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .75;
}

/* --- ürünler ---------------------------------------------------------------------- */

#urunler { padding-block: 0 clamp(100px, 14vh, 170px); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow); }

.card-media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  background: var(--paper-2);
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.card:hover .card-media img,
.card:focus-visible .card-media img { transform: scale(1.06); }

/* karta gelince: Instagram'da Gör örtüsü */
.card-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: rgb(23 33 25 / .48);
  color: var(--cream);
  font-weight: 600; font-size: .95rem;
  opacity: 0;
  transition: opacity .3s;
}
.card:hover .card-overlay,
.card:focus-visible .card-overlay { opacity: 1; }

.card-go {
  font-family: var(--font-disp);
  font-weight: 700; font-size: 1.2rem;
  color: var(--red);
  transition: transform .3s var(--ease);
}
.card:hover .card-go { transform: translateX(5px); }

.card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--green); color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
}
.card-badge.hot { background: var(--red); color: #fff; }

.card-body { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px 22px; flex: 1; }
.card-body h3 { font-size: 1.28rem; margin: 0; }
.card-desc { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; margin: 0; flex: 1; }

.card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.card-grams {
  color: var(--ink-soft); font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ürünler altı CTA */
.urunler-cta { text-align: center; margin-top: clamp(36px, 6vh, 56px); }
.cta-note { margin: 14px 0 0; font-size: .9rem; color: var(--ink-soft); }
.cta-note strong { color: var(--green); }

/* --- instagram fotoğraf şeridi -------------------------------------------------------- */

#galeri { padding-block: 0 clamp(100px, 14vh, 170px); }

.galeri-head { margin-bottom: clamp(28px, 4vh, 44px); }
.galeri-head h2 { margin: 0; }

.photo-marquee { position: relative; display: block; overflow: clip; }

.photo-track {
  display: flex; gap: 16px;
  width: max-content;
  padding-block: 6px;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.photo-track img {
  height: clamp(190px, 24vw, 300px);
  width: auto;
  border-radius: 18px;
  display: block;
}
.photo-marquee:hover .photo-track { animation-play-state: paused; }

.photo-pill {
  position: absolute; left: 50%; top: 50%;
  translate: -50% -50%;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: var(--cream);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  box-shadow: 0 18px 44px rgb(23 33 25 / .35);
  opacity: 0; scale: .9;
  transition: opacity .3s, scale .3s var(--ease);
}
.photo-marquee:hover .photo-pill,
.photo-marquee:focus-visible .photo-pill { opacity: 1; scale: 1; }

/* --- rakamlar ----------------------------------------------------------------------- */

#rakamlar {
  background: var(--green);
  color: var(--cream);
  padding-block: clamp(72px, 10vh, 120px);
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }

.stat { padding: 10px 30px; border-left: 1px solid rgb(243 237 220 / .2); }
.stat:first-child { border-left: 0; padding-left: 0; }

.stat dt {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}
.stat dd { margin: 10px 0 0; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-soft); }

/* --- footer ---------------------------------------------------------------------------- */

#iletisim { background: var(--ink); color: var(--cream); overflow: clip; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(72px, 10vh, 120px) 40px;
}

.footer-logo { font-family: var(--font-disp); font-weight: 800; font-size: 1.5rem; margin: 0 0 10px; }
.footer-logo em { font-style: normal; color: var(--red); }
.footer-brand p:last-child { color: #AEB8A9; max-width: 30ch; }

.footer-title {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { width: max-content; opacity: .85; transition: opacity .2s, transform .25s var(--ease); }
.footer-nav a:hover { opacity: 1; transform: translateX(4px); }
.footer-contact p { color: #AEB8A9; }
.footer-contact a { text-decoration: underline; text-underline-offset: 4px; }
.footer-phones a { text-decoration: none; }
.footer-phones a:hover { color: #fff; }

.footer-social { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 500;
  opacity: .85;
  transition: opacity .2s, transform .25s var(--ease);
}
.footer-social a:hover { opacity: 1; transform: translateY(-2px); color: #fff; }
.footer-social svg { flex: none; }

.footer-big {
  line-height: .8;
  white-space: nowrap;
  text-align: center;
  user-select: none;
}
.footer-big span {
  display: inline-block;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(5rem, 17vw, 15rem);
  letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgb(243 237 220 / .22);
}

.footer-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 22px 30px;
  border-top: 1px solid rgb(243 237 220 / .14);
  font-size: .85rem; color: #AEB8A9;
  margin-top: -14px;
}
.footer-bar p { margin: 0; }
.demo-note { font-size: .8rem; color: #8b948785; color: #8B9487; }
.footer-bar .site-credit { flex-basis: 100%; font-size: .72rem; color: #8B9487; opacity: .68; margin-top: 2px; }
.footer-bar .site-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer-bar .site-credit a:hover { color: #F3EDDC; }

/* --- responsive ------------------------------------------------------------------------------ */

@media (max-width: 900px) {
  .veg-2 { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-desktop { display: none; }
  .ig-btn span { display: none; }
  .ig-btn { width: 42px; padding: 0; justify-content: center; }

  .hero-title { font-size: clamp(3.2rem, 16.5vw, 5.4rem); }

  .badge-wrap {
    width: 86px;
    right: 18px;
    top: calc(var(--header-h) + 12px);
  }

  .veg-1 { right: 6%; top: 38%; }
  .veg-3 { display: none; }

  .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; }

  .marquee { transform: rotate(-1.2deg) scale(1.08); }

  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-photo { max-width: 320px; margin-inline: auto; }

  .step-card { min-height: 400px; }
  .step-1 { top: calc(var(--header-h) + 14px); }
  .step-2 { top: calc(var(--header-h) + 28px); }
  .step-3 { top: calc(var(--header-h) + 42px); }

  .stats { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .stat { padding: 0 22px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 40px); }
  .hero-ctas .btn { padding: 13px 22px; font-size: .92rem; }
  .scroll-cue span { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-contact a { overflow-wrap: anywhere; }
}

/* --- sürpriz katmanı: gren, dolan kavanoz, imleç, uçan ürün, konfeti ------------------------------ */

/* ince film greni — premium doku */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 250;
  opacity: .05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".9" numOctaves="2"/><feColorMatrix values="0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .6 0"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
  background-size: 240px 240px;
}

/* dolan kavanoz — scroll ilerlemesi + başa dön */
#jar-progress {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 58px; height: 74px;
  padding: 7px 7px 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(252 248 236 / .78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0; transform: translateY(90px);
  transition: opacity .4s, transform .45s var(--ease), box-shadow .3s;
}
#jar-progress.show { opacity: 1; transform: none; }
#jar-progress:hover { box-shadow: var(--shadow); }
#jar-progress svg { display: block; width: 100%; height: auto; }
.jp-lid { fill: var(--red); }
.jp-glass { fill: none; stroke: rgb(23 33 25 / .55); stroke-width: 2; }
.jp-fill { fill: #C3D48B; }
.jp-bubble { fill: #fff; opacity: 0; }
#jar-progress.bubbly .jp-bubble { opacity: .75; animation: jp-rise 2.4s linear infinite; }
#jar-progress.bubbly .jp-b2 { animation-delay: 1.2s; }
@keyframes jp-rise {
  from { transform: translateY(0); opacity: .75; }
  to { transform: translateY(-26px); opacity: 0; }
}
#jar-progress.full svg { animation: jp-pop .5s var(--ease); }
@keyframes jp-pop { 40% { transform: scale(1.12) rotate(-3deg); } }

@media (max-width: 560px) {
  #jar-progress { right: 12px; bottom: 12px; width: 50px; height: 66px; }
}

/* --- hareket azaltma --------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none; }
  .photo-track { animation: none; }
  .badge { animation: none; }
  .veg { animation: none; }
}
